By default, ignore case when testing inhibit-local-variables (bug#10610)
[bpt/emacs.git] / lisp / ChangeLog
1 2012-11-29 Glenn Morris <rgm@gnu.org>
2
3 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
4 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
5 Doc fix.
6 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
7 Doc fixes.
8
9 2012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
10
11 * calc/calc-forms.el (calc-date-notation): Fix regexp
12 used to find time codes. Fix symbol for seconds.
13
14 2012-11-27 Glenn Morris <rgm@gnu.org>
15
16 * emacs-lisp/derived.el (derived-mode-make-docstring):
17 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
18
19 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
20
21 * textmodes/table.el (table-insert): Don't use `symbol-name' on
22 lexically scoped variables (bug#13005).
23
24 2012-11-27 Glenn Morris <rgm@gnu.org>
25
26 * vc/vc-hooks.el (vc-mistrust-permissions):
27 Default to t, to avoid data-loss. (Bug#11490)
28
29 2012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
30
31 * progmodes/python.el (python-indent-guess-indent-offset):
32 If indentation is guessed make python-indent-offset buffer-local.
33
34 Fix Imenu regression.
35 * progmodes/python.el (python-nav-beginning-of-defun):
36 Fix forward movement when statement(s) separates point from defun.
37 (python-imenu-prev-index-position): New function.
38
39 2012-11-27 Eli Zaretskii <eliz@gnu.org>
40
41 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
42
43 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
44 Don't set buffer-file-type. Return nil. (Bug#12989)
45
46 2012-11-27 Glenn Morris <rgm@gnu.org>
47
48 * hippie-exp.el (hippie-expand-try-functions-list):
49 Re-autoload it. (Bug#12982)
50
51 2012-11-27 Eli Zaretskii <eliz@gnu.org>
52
53 * descr-text.el (describe-char-padded-string):
54 Call internal-char-font only on GUI frames. (Bug#11964)
55
56 2012-11-27 Andreas Schwab <schwab@linux-m68k.org>
57
58 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
59 and obsoletion message.
60
61 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
62
63 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
64 the constructs to keep outside of the `cl-block' (bug#12977).
65
66 2012-11-27 Chong Yidong <cyd@gnu.org>
67
68 * mouse.el (mouse-drag-line): Even if the line is not draggable,
69 keep reading until we get the up-event anyway, in order to process
70 the up-event for mouse-1-click-follows-link (Bug#12971).
71
72 2012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
73
74 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
75 base function is not yet defined (bug#12965).
76 (ad-activate-advised-definition): Use ad-compile-function.
77 (ad-activate): Use cond.
78
79 2012-11-25 Leo Liu <sdl.web@gmail.com>
80
81 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
82 (Bug#12979)
83
84 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
85
86 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
87 reftex-section-info-function in order to be compatible with
88 Texinfo integration.
89
90 * textmodes/reftex.el (reftex-section-pre-regexp)
91 (reftex-section-post-regexp, reftex-section-info-function):
92 New variable.
93 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
94 reftex-section-post-regexp, and reftex-section-info-function in order
95 to be compatible with Texinfo integration.
96
97 * textmodes/reftex-toc.el (reftex-toc-promote-action):
98 use reftex-section-pre-regexp variable in order to be compatible with
99 Texinfo integration.
100
101 2012-11-25 Chong Yidong <cyd@gnu.org>
102
103 * faces.el: Make face-spec-set more analogous to setq.
104 (face-spec-set): Change the third arg to specify whether this
105 function is being called via defface, customize, or a third party.
106 Set the appropriate symbol properties. Clear the override spec if
107 setting via Custom. Initialize face if necessary. (Bug#4988)
108 (face-spec-recalc): Allow theme faces to completely replace the
109 defface spec, in the same way as custom faces (Bug#8454).
110
111 * cus-face.el (custom-declare-face): Move face initialization to
112 face-spec-set.
113 (custom-theme-set-faces): Don't initialize the face name here, as
114 that is now done in face-spec-set.
115
116 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
117 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
118 Simplify by using the new arg to face-spec-set.
119
120 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
121 reset face-override-spec too, and use custom-declare-face.
122
123 2012-11-24 Jan Djärv <jan.h.d@swipnet.se>
124
125 * term/ns-win.el (ns-initialize-window-system): Move creation of
126 fontsets here (Bug#11964).
127
128 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
129
130 * ses.el (ses-rename-cell): Correct bug on mode-line update after
131 cell renaming.
132
133 2012-11-24 Chong Yidong <cyd@gnu.org>
134
135 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
136 obsolete.
137
138 * custom.el (custom-theme-set-variables): Use a topological sort
139 for ordering by custom dependencies (Bug#12952).
140 (custom--sort-vars, custom--sort-vars-1): New functions.
141
142 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
143
144 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
145 lexical-binding (bug#12938).
146
147 2012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
148
149 * image-mode.el (image-transform-check-size): Use assertions only
150 for images of type imagemagick.
151
152 Otherwise no error, image-transform-fit-to-{width,height} is
153 silently ignored, as before. Doc fix.
154
155 2012-11-24 Chong Yidong <cyd@gnu.org>
156
157 * faces.el (color-defined-p): Doc fix (Bug#12853).
158
159 2012-11-24 Juri Linkov <juri@jurta.org>
160
161 * dired.el (dired-mark): Add optional arg `interactive'.
162 Check for `use-region-p' if `interactive' is non-nil.
163 (dired-unmark, dired-flag-file-deletion): Add optional arg
164 `interactive'. Call `dired-mark' with the arg `interactive'.
165 (Bug#10624)
166
167 * wdired.el: Revert 2012-10-17 change partly and replace it with
168 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
169 (wdired-finish-edit): Add marks for new file names to
170 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
171 after `revert-buffer'.
172 (wdired-do-renames): Remove calls to `dired-remove-file',
173 `dired-add-file', `dired-add-entry'. (Bug#11795)
174
175 2012-11-24 Alan Mackenzie <acm@muc.de>
176
177 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
178
179 Fix bugs in the state cache. Enhance a debugging mechanism.
180 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
181 "brace at column zero" strategy for C++.
182 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
183 (c-parse-state-point): New variable.
184 (c-record-parse-state-state): Record old parse state with
185 `copy-tree'. Record previous value of point.
186 (c-debug-parse-state-double-cons): New debugging function.
187 (c-debug-parse-state): Call the above new function.
188 (c-toggle-parse-state-debug): Output a confirmatory message.
189
190 * progmodes/cc-mode.el (c-before-change, c-after-change):
191 Call c-invalidate-state-cache from `c-before-change' instead of
192 `c-after-change'.
193
194 2012-11-23 Chong Yidong <cyd@gnu.org>
195
196 * find-cmd.el (find-constituents): Add executable, ipath,
197 readable, samefile, writable, daystart, regextype (Bug#12856).
198
199 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
200
201 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
202
203 2012-11-22 Paul Eggert <eggert@cs.ucla.edu>
204
205 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
206 definition. This fixes a bootstrap failure.
207 (calc-gregorian-switch): In menu, put dates before regions.
208 This is easier to follow, lines up better in the menu, and lets us
209 coalesce regions that switch at the same time. Give country
210 names, not "Vatican", as that's better for non-expert users.
211 Use names that are stable between the date of switch and now, e.g.,
212 Bohemia and Moravia (which existed then and now) and not
213 Czechoslovakia (which didn't exist then and doesn't exist now).
214 What is now the U.S. mostly did not switch at the same time as
215 Britain, so omit the U.S. Correct spelling of "Britain".
216 Catholic Switzerland was too much of a mess, so omit it.
217
218 2012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
219
220 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
221 after the variable is changed.
222
223 2012-11-21 Daniel Colascione <dancol@dancol.org>
224
225 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
226 in SQL declarations for font-lock.
227 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
228
229 2012-11-21 Glenn Morris <rgm@gnu.org>
230
231 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
232 (face-italic-p): Add optional argument "inherit".
233
234 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
235 Remove -p suffix from names, for consistency with other set-face-*.
236 (set-face-inverse-video): Fix interactive spec.
237 * play/gamegrid.el (gamegrid-make-mono-tty-face):
238 * textmodes/table.el (table--update-cell-face):
239 Use set-face-inverse-video rather than now obsolete alias.
240
241 2012-11-21 Eli Zaretskii <eliz@gnu.org>
242
243 * simple.el (line-move): Don't call line-move-partial if
244 scroll-conservatively is in effect. (Bug#12927)
245
246 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
247
248 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
249 Fallback on completion-at-point rather than
250 pcomplete-expand-and-complete, and only if pcomplete actually failed.
251 (eshell-cmpl-initialize): Setup completion-at-point.
252
253 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
254
255 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
256
257 2012-11-21 Michael Albinus <michael.albinus@gmx.de>
258
259 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
260 are remote, check out-of-band property for both.
261
262 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
263
264 * window.el (switch-to-buffer): Re-add the warning that was lost in the
265 code rewrite.
266
267 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
268
269 More minor time fixes.
270 * calendar/time-date.el: Commentary fix.
271 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
272 too much other code depends on (0 0) time stamps.
273 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
274 Add a couple of FIXME comments.
275
276 Minor cleanup for times as lists of four integers.
277 * files.el (dir-locals-directory-cache):
278 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
279 Doc fixes.
280 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
281 * ps-bdf.el (bdf-file-newer-than-time):
282 Process four-integers time stamps, not two. Doc fixes.
283
284 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
285
286 * uniquify.el (uniquify-managed): Use defvar-local.
287 (rename-buffer, create-file-buffer): Advise with advice-add.
288 (uniquify-unload-function): Unadvise accordingly.
289
290 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
291 (trace-buffer): Don't purecopy.
292 (trace-entry-message, trace-exit-message): Add `context' arg.
293 (trace--timer): New var.
294 (trace-make-advice): Adjust for use in nadvice.
295 Add `context' argument. Delay `display-buffer' via a timer.
296 (trace-function-internal): Use advice-add.
297 (trace--read-args): New function.
298 (trace-function-foreground, trace-function-background): Use it.
299 (trace-function): Rename to trace-function-foreground and redefine as
300 an alias to that new name.
301 (untrace-function, untrace-all): Adjust to the use of nadvice.
302
303 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
304
305 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
306
307 * subr.el (called-interactively-p-functions): New var.
308 (internal--called-interactively-p--get-frame): New macro.
309 (called-interactively-p, interactive-p): Rewrite in Lisp.
310 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
311 (called-interactively-p-functions): Use it.
312 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
313 (called-interactively-p-functions): Use it.
314 * allout.el (allout-called-interactively-p): Don't assume
315 called-interactively-p is a subr.
316
317 2012-11-20 Glenn Morris <rgm@gnu.org>
318
319 * profiler.el (profiler-report-mode-map): Add a menu.
320 No need to bind `q' because we derive from special-mode.
321 (profiler-report-find-entry): Handle calls from the menu-bar.
322
323 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
324
325 * emacs-lisp/byte-run.el (defun-declarations-alist):
326 Allow a compiler-macro to be a lambda expression.
327
328 * progmodes/python.el: Use cl-lib. Move var declarations outside of
329 eval-when-compile.
330 (python-syntax-context): Add compiler-macro.
331 (python-font-lock-keywords): Simplify with De Morgan.
332
333 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
334
335 * files.el (load-file): Require match in minibuffer selection, as was
336 the case in Emacs-20 before we changed the spec to allow .elc files
337 (bug#12935).
338
339 * json.el: Don't require cl since we don't use it.
340 * color.el: Don't require cl.
341 (color-complement): `caddr' -> `nth 2'.
342
343 * calendar/time-date.el (time-to-seconds): De-obsolete.
344
345 2012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
346
347 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
348 year numbers.
349 (math-date-to-julian-dt): Adjust the initial approximation for the
350 year to deal with the new definition of the DATE.
351
352 2012-11-19 Daniel Colascione <dancol@dancol.org>
353
354 * term/w32-win.el (cygwin-convert-path-from-windows):
355 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
356
357 2012-11-18 Chong Yidong <cyd@gnu.org>
358
359 * filecache.el (file-cache--read-list): New function.
360 (file-cache-add-directory-list, file-cache-add-file-list)
361 (file-cache-delete-file-list, file-cache-delete-directory-list):
362 Use it to read a list of files or directories (Bug#12846).
363 (file-cache-add-file, file-cache-add-directory)
364 (file-cache-delete-file-list, file-cache-delete-file-regexp)
365 (file-cache-delete-directory): Print an message.
366
367 2012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
368
369 * calc/calc-forms.el (math-date-to-dt): Use integer date when
370 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
371
372 2012-11-18 Glenn Morris <rgm@gnu.org>
373
374 * image.el (insert-image, insert-sliced-image): Doc fix.
375
376 2012-11-18 Chong Yidong <cyd@gnu.org>
377
378 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
379 (Bug#12810).
380
381 2012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
382
383 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
384 response when the target file is in a subdirectory (Bug#12757).
385
386 2012-11-18 Chong Yidong <cyd@gnu.org>
387
388 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
389
390 2012-11-18 Glenn Morris <rgm@gnu.org>
391
392 * emacs-lisp/cl-lib.el (face-underline-p):
393 Use set-face-underline rather than the alias set-face-underline-p.
394
395 * window.el (with-temp-buffer-window): Doc fix.
396 * subr.el (with-output-to-temp-buffer):
397 Add doc xref to with-temp-buffer-window.
398
399 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
400
401 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
402 * calc/calc.el (math-format-date-cache): Declare.
403
404 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
405
406 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
407 It also uses January 1, 1 AD as its day number 1.
408 * calc/calc-forms.el (math-julian-date-beginning)
409 (math-julian-date-beginning-int): Implement this.
410
411 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
412
413 * descr-text.el (quail-find-key):
414 * dired.el (desktop-file-name):
415 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
416 * generic-x.el (comint-mode, comint-exec):
417 * image-dired.el (widget-forward):
418 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
419 (speedbar-change-expand-button-char)
420 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
421 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
422 * printing.el (easy-menu-add-item, easy-menu-remove-item)
423 (widget-field-action, widget-value-set):
424 * speedbar.el (imenu--make-index-alist):
425 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
426 (ring-length, ring-insert):
427 * vcursor.el (compare-windows-skip-whitespace):
428 * woman.el (dired-get-filename):
429 Declare functions.
430
431 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
432
433 2012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
434
435 * calc/calc.el (calc-gregorian-switch): New variable.
436
437 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
438 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
439 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
440 (math-leap-year-p): Add option to distinguish between Julian
441 and Gregorian calendars.
442 (math-day-number): Use `math-day-in-year' to do the computations.
443 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
444 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
445 to do the computations.
446 (math-date-to-dt): Use `math-date-to-julian-dt' and
447 `math-date-to-gregorian-dt' to do the computations.
448 (calcFunc-weekday, math-format-date-part): Use the new version of
449 the DATE to determine the weekday.
450 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
451 when necessary.
452
453 2012-11-17 Eli Zaretskii <eliz@gnu.org>
454
455 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
456 Cygwin; otherwise use 'file:'. (Bug#12914)
457 (cygwin-convert-path-from-windows): Declare, to avoid
458 byte-compiler warnings.
459
460 2012-11-17 Andreas Politz <politza@fh-trier.de>
461
462 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
463 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
464 prefix and negative numeric prefix args (Bug#12795).
465
466 2012-11-17 Stephen Berman <stephen.berman@gmx.net>
467
468 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
469 Don't signal an error with a score that is too low to add to the
470 list of top scores. (Bug#12779)
471
472 2012-11-17 Chong Yidong <cyd@gnu.org>
473
474 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
475
476 * filecache.el (file-cache-add-file): Handle relative file name in
477 the argument (Bug#12694).
478
479 2012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
480
481 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
482
483 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
484
485 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
486
487 * emacs-lisp/cl-lib.el: Set more meaningful version number.
488
489 2012-11-16 Martin Rudalics <rudalics@gmx.at>
490
491 * window.el (enlarge-window, shrink-window): Don't mention return
492 value in doc-string (Bug#12896).
493 (window--display-buffer): Don't resize frames - it won't work
494 with all window managers and defeat pop-up-frame-alist.
495 (display-buffer-alist): In doc-string explain that CONDITION can
496 be a function and which arguments are passed to it (Bug#12854).
497 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
498 expressions (Bug#12854).
499 (display-buffer): Pass ACTION argument to
500 display-buffer-assq-regexp.
501
502 2012-11-16 Glenn Morris <rgm@gnu.org>
503
504 * window.el (fit-frame-to-buffer-bottom-margin)
505 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
506
507 * faces.el (face-underline-p): Use face-attribute-specified-or.
508
509 2012-11-16 Juanma Barranquero <lekktu@gmail.com>
510
511 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
512
513 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
514
515 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
516
517 2012-11-16 Glenn Morris <rgm@gnu.org>
518
519 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
520 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
521
522 * faces.el (face-underline-p): Doc fix. Handle :underline being
523 things other than `t' (a string, a list).
524 (face-inverse-video-p): Doc fix.
525 (set-face-underline): Rename it back from set-face-underline-p.
526 Doc fix. Allow interactive input of values other than t.
527 (read-face-attribute): Apply formatting to :underline,
528 since like :box and :stipple it can take list values.
529
530 * term.el (ansi-term): Don't let C-x escape-char binding
531 clobber the more standard C-c binding. (Bug#12842)
532
533 * subr.el (set-temporary-overlay-map): Doc fix.
534
535 2012-11-16 Martin Rudalics <rudalics@gmx.at>
536
537 * window.el (record-window-buffer)
538 (display-buffer-record-window): When copying the markers to
539 window-point preserve window-point-insertion-type. (Bug#12588)
540
541 2012-11-16 Glenn Morris <rgm@gnu.org>
542
543 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
544 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
545 Use new names for hooks rather than obsolete aliases.
546
547 2012-11-15 Daniel Colascione <dancol@dancol.org>
548
549 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
550 prefix instead of "file:" so that when FILE-NAME begins with "//",
551 as it does when the target file is on a network share, url-handler
552 isn't confused.
553
554 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
555
556 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
557 a preactivated advice from an old advice.el; they're not compatible!
558
559 2012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
560
561 * emacs-lisp/nadvice.el (advice--make-interactive-form):
562 Fix string-spec case.
563
564 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
565
566 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
567
568 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
569 (advice--buffer-local-function-sample): New var.
570 (advice--set-buffer-local, advice--buffer-local): New functions.
571 (add-function, remove-function): Use them.
572
573 2012-11-15 Drew Adams <drew.adams@oracle.com>
574
575 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
576
577 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
578
579 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
580 potential binding of print-gensym to t, and prettify (back)quotes in
581 case they appear in args's default values (bug#12884).
582
583 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
584
585 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
586 (advice-eval-interactive-spec): New function.
587 (advice--make-interactive-form): Support around advice (bug#12844).
588
589 2012-11-14 Dmitry Gutov <dgutov@yandex.ru>
590
591 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
592 more strict. Add docstring.
593 (ruby-expression-expansion-re): Extract from
594 `ruby-match-expression-expansion'.
595 (ruby-syntax-propertize-function): After everything else, search
596 for expansions in string literals, mark their insides as
597 whitespace syntax and save match data for font-lock.
598 (ruby-font-lock-keywords): Use the 2nd group from expression
599 expansion matches.
600 (ruby-match-expression-expansion): Use the match data saved to the
601 text property in ruby-syntax-propertize-function.
602
603 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
604
605 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
606 (bug#12879).
607
608 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
609
610 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
611 start/end keyword a bit harder. Works with different values of N.
612 Add more comments.
613 (ruby-end-of-block): Update accordingly.
614
615 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
616
617 * woman.el (woman-file-name): Don't mess with unread-command-events
618 (bug#12861).
619
620 * emacs-lisp/advice.el: Layer on top of nadvice.el.
621 Remove out of date self-require hack.
622 (ad-do-advised-functions): Use simple `dolist'.
623 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
624 (ad-advice-definition): Redefine as functions.
625 (ad-advice-classes): Move before first use.
626 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
627 (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
628 (ad--defalias-fset): Remove functions.
629 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
630 (ad-get-orig-definition): Rewrite.
631 (ad-make-advised-definition-docstring): Change base docstring.
632 (ad-real-orig-definition): Rewrite.
633 (ad-map-arglists): Change name of called function.
634 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
635 (ad-make-advised-definition): Simplify.
636 (ad-assemble-advised-definition): Tweak for new calling context.
637 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
638 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
639 function and call ad-activate if needed.
640 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
641 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
642 (ad-compile-function): Compile ad-Advice-*.
643 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
644 (ad-start-advice, ad-stop-advice): Remove.
645
646 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
647
648 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
649 period before class method names, not after. Remove handling of
650 one impossible case. Add comments.
651
652 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
653
654 * emacs-lisp/advice.el: Remove support for freezing.
655 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
656 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
657 Remove support for `freeze'.
658
659 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
660 override the default.
661 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
662 cl--dotimes/dolist.
663 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
664 `cl' is loaded.
665
666 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
667 from add-advice.
668 (advice--strip-macro): New function.
669 (advice--defalias-fset): Use them to handle macros.
670 (advice-add): Use them.
671 (advice-member-p): Correctly handle macros.
672
673 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
674
675 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
676 Never font-lock the beginning of singleton class as heredoc.
677
678 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
679
680 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
681
682 2012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
683
684 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
685 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
686 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
687
688 2012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
689
690 Fix end-of-defun misbehavior.
691 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
692 python-beginning-of-defun-function. Handle nested defuns
693 correctly.
694 (python-nav-end-of-defun): Rename from
695 python-end-of-defun-function. Ensure forward movement.
696 (python-info-current-defun): Reimplement to work as intended
697 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
698 parent defuns as soon as possible.
699
700 2012-11-13 Glenn Morris <rgm@gnu.org>
701
702 * progmodes/flymake.el (flymake-error-bitmap)
703 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
704 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
705
706 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
707
708 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
709 backward, always stop at indentation. Reverts the change from
710 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
711
712 2012-11-13 Glenn Morris <rgm@gnu.org>
713
714 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
715 Add ibuffer-filter-by-derived-mode.
716
717 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
718 the same name shadowing each other.
719
720 * window.el (with-temp-buffer-window): Doc tweak.
721
722 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
723
724 * help.el (temp-buffer-max-height):
725 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
726 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
727
728 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
729
730 * emacs-lisp/nadvice.el: New package.
731 * subr.el (special-form-p): New function.
732 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
733 (elp-all-instrumented-list): Remove var.
734 (elp-not-profilable): Remove elp-wrapper.
735 (elp-profilable-p): Use autoloadp and special-form-p.
736 (elp--advice-name): New const.
737 (elp-instrument-function): Use advice-add.
738 (elp--instrumented-p): New predicate.
739 (elp-restore-function): Use advice-remove.
740 (elp-restore-all, elp-reset-all): Use mapatoms.
741 (elp-set-master): Use elp--instrumented-p.
742 (elp--make-wrapper): Rename from elp-wrapper, return a function
743 suitable for advice-add. Use cl-inf.
744 (elp-results): Use mapatoms+elp--instrumented-p.
745 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
746 (debug-function-list): Remove var.
747 (debug): Rename arg, and then let-bind it explicitly inside.
748 (debugger-setup-buffer): Rename arg.
749 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
750 (debugger-frame-number): Adjust to new debug-on-entry setup.
751 (debug--implement-debug-on-entry): Rename from
752 implement-debug-on-entry, add argument.
753 (debugger-special-form-p): Remove, use special-form-p instead.
754 (debug-on-entry): Use advice-add.
755 (debug--function-list): New function.
756 (cancel-debug-on-entry): Use it, along with advice-remove.
757 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
758 (debugger-list-functions): Use debug--function-list instead of
759 debug-function-list.
760 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
761 (ad-special-form-p): Remove, use special-form-p instead.
762 (ad-set-advice-info): Use add-function and remove-function.
763 (ad--defalias-fset): Adjust accordingly.
764
765 2012-11-10 Glenn Morris <rgm@gnu.org>
766
767 * mail/emacsbug.el (report-emacs-bug-tracker-url)
768 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
769 (report-emacs-bug-create-existing-bugs-buffer)
770 (report-emacs-bug-parse-query-results)
771 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
772
773 * term.el (term-default-fg-color, term-default-bg-color):
774 Make obsolete, rather than just saying "deprecated" in the doc.
775
776 * term.el (term): Rename from `term-face'.
777 (term-current-face, ansi-term-color-vector)
778 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
779 Update all users.
780
781 2012-11-10 Jan Djärv <jan.h.d@swipnet.se>
782
783 * server.el (server-create-window-system-frame): Handle Nextstep
784 specially (Bug#12780).
785
786 2012-11-10 Glenn Morris <rgm@gnu.org>
787
788 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
789 Unautoload, and make obsolete. (Bug#7449)
790
791 2012-11-10 Chong Yidong <cyd@gnu.org>
792
793 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
794 rename from diff-remove-trailing-whitespace (Bug#12831).
795
796 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
797
798 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
799 miscompilation of trace.el.
800
801 2012-11-10 Glenn Morris <rgm@gnu.org>
802
803 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
804
805 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
806
807 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
808 (bug#12812).
809
810 2012-11-10 Chong Yidong <cyd@gnu.org>
811
812 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
813 a defcustom with an appropriate :set function.
814 (minibuffer-default--in-prompt-regexps): New function.
815
816 2012-11-10 Glenn Morris <rgm@gnu.org>
817
818 * emacs-lisp/cl.el (define-setf-expander, defsetf)
819 (define-modify-macro): Doc fixes.
820
821 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
822 (gv-define-simple-setter): Update doc of `fix-return'.
823
824 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
825
826 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
827 twice when `fix-return' is set (bug#12813).
828
829 * emacs-lisp/cl.el (defsetf): Pass the third arg to
830 gv-define-simple-setter (bug#12812).
831
832 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
833 (bug#12756).
834
835 2012-11-10 Glenn Morris <rgm@gnu.org>
836
837 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
838
839 * emacs-lisp/cl-extra.el (cl-prettyexpand):
840 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
841 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
842 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
843
844 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
845
846 2012-11-10 Leo Liu <sdl.web@gmail.com>
847
848 * ido.el (ido-set-matches-1): Improve flex matching performance by
849 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
850
851 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
852
853 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
854 (ad--defalias-fset): New function.
855 (ad-safe-fset): Remove.
856 (ad-make-freeze-definition): Use cl-letf*.
857
858 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
859
860 * subr.el (dolist): Don't bind VAR in RESULT.
861
862 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
863 (fset, documentation): Don't save real def since we don't advise.
864 (ad-do-advised-functions): Remove problematic `result-form'.
865 (ad-safe-fset): `ad-real-fset' => `fset'.
866 (ad-read-advised-function): Don't assume that ad-do-advised-functions
867 uses CL's dolist internally.
868 (ad-arglist): Remove unused arg `name'.
869 (ad-docstring, ad-make-advised-docstring):
870 `ad-real-documentation' => `documentation'.
871 (warning-suppress-types): Declare.
872 (ad-set-arguments): Simple CSE.
873 (ad-recover-normality): Sanity check.
874
875 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
876 (funcall '(lambda ..) ..) into ((lambda ..) ..).
877
878 2012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
879
880 * ses.el: symbol to coordinate mapping is made by symbol property
881 `ses-cell'. This means that the same mapping is done for all SES
882 sheets. That is good enough for cells with standard A1 names, but
883 not for named cell. So a hash map is added for the latter.
884 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
885 (ses-sym-rowcol): Use hashmap for named cell.
886 (ses-is-cell-sym-p): New defun.
887 (ses-decode-cell-symbol): New defun.
888 (ses-create-cell-variable): Add cell to hashmap when name is not
889 A1-like.
890 (ses-rename-cell): Check that cell new name is not already in
891 spreadsheet with the use of ses-is-cell-sym-p
892 (ses-rename-cell): Use hash map for named cells, but accept also
893 renaming back to A1-like.
894
895 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
896
897 * emacs-lisp/advice.el: Use new dynamic docstrings.
898 (ad-make-advised-definition-docstring, ad-advised-definition-p):
899 Use dynamic-docstring-function instead of ad-advice-info.
900 (ad--make-advised-docstring): New function extracted from
901 ad-make-advised-docstring.
902 (ad-make-advised-docstring): Use it.
903 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
904 from sql-help.
905 (sql-help): Use it with dynamic-docstring-function.
906
907 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
908
909 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
910
911 * files.el (hack-one-local-variable--obsolete): New function.
912 (hack-one-local-variable): Use it for obsolete settings.
913
914 * subr.el (locate-user-emacs-file): If both old and new name exist, use
915 the new name.
916
917 * progmodes/js.el (js--filling-paragraph): New var.
918 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
919 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
920 less sneaky.
921
922 2012-11-08 Julien Danjou <julien@danjou.info>
923
924 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
925 `auto-mode-alist' (Bug#12835).
926
927 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
928
929 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
930 (perl--prettify-symbols-alist): New const.
931 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
932 New functions.
933 (perl-font-lock-keywords-2): Use them.
934 (perl-electric-noindent-p): New function.
935 (perl-mode): Use it to set up electric-indent-mode.
936 (perl-electric-terminator, perl-indent-command): Mark obsolete.
937 (perl-mode-map): Remove bindings for them.
938 (perl-imenu-generic-expression, perl-outline-level):
939 Match functions&packages in column>0.
940
941 * env.el (env--substitute-vars-regexp): New const.
942 (substitute-env-vars): Use it. Add `only-defined' arg.
943 * net/tramp.el (tramp-replace-environment-variables): Use it.
944
945 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
946 Byte-compile *before* eval in eval-and-compile.
947 (byte-compile-log-warning): Remove redundant inhibit-read-only.
948 (byte-compile-file-form-autoload): Don't hide actual definition.
949 (byte-compile-maybe-guarded): Accept `functionp' as well.
950
951 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
952
953 2012-11-07 Michael Albinus <michael.albinus@gmx.de>
954
955 * notifications.el (notifications-get-server-information-method):
956 New defconst.
957 (notifications-get-capabilities): Fix docstring.
958 (notifications-get-server-information): New defun.
959
960 2012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
961
962 * textmodes/ispell.el (ispell-region): Standard re-indent for better
963 readability.
964
965 * textmodes/ispell.el: Experimental support for support debugging.
966 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
967 buffer for ispell.
968 (ispell-print-if-debug): New function to print stuff to
969 `ispell-debug-buffer' if debugging is enabled.
970 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
971 show some debugging info.
972 (ispell-buffer-with-debug): New function that creates a debugging
973 buffer and calls `ispell-buffer' with debugging enabled.
974
975 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
976 comment in autoconf mode. (Bug#12768)
977
978 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
979
980 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
981 frame-first-window, frame-root-window, frame-selected-window,
982 minibuffer-selected-window, minibuffer-window,
983 window-absolute-pixel-edges, window-at, window-body-height,
984 window-body-width, window-display-table, window-combination-limit,
985 window-frame, window-fringes, window-inside-absolute-pixel-edges,
986 window-inside-edges, window-inside-pixel-edges, window-left-child,
987 window-left-column, window-margins, window-next-buffers,
988 window-next-sibling, window-new-normal, window-new-total,
989 window-normal-size, window-parameter, window-parameters, window-parent,
990 window-pixel-edges, window-point, window-prev-buffers,
991 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
992 window-start, window-text-height, window-top-child, window-top-line,
993 window-total-height, window-total-width and window-use-time to the list
994 of functions without side-effects.
995 (toplevel): Add window-valid-p to the list of error-free functions
996 without side-effects.
997
998 2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
999
1000 * textmodes/ispell.el (ispell-program-name):
1001 Update spellchecker parameters when customized.
1002
1003 2012-11-04 Glenn Morris <rgm@gnu.org>
1004
1005 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
1006
1007 2012-11-04 Chong Yidong <cyd@gnu.org>
1008
1009 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
1010 same-window-* variables.
1011
1012 2012-11-04 Juri Linkov <juri@jurta.org>
1013
1014 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
1015 (isearch-describe-key, isearch-describe-mode): Use a display
1016 action instead of binding same-window-* variables (Bug#10040).
1017
1018 2012-11-03 Glenn Morris <rgm@gnu.org>
1019
1020 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
1021 Rename handler properties back from cl-- to cl-. (Bug#12788)
1022
1023 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
1024
1025 2012-11-03 Eli Zaretskii <eliz@gnu.org>
1026
1027 * term/pc-win.el: Don't load term/internal from here.
1028
1029 * loadup.el: Load term/internal from here.
1030
1031 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
1032
1033 * progmodes/python.el (inferior-python-mode): Fix hang in
1034 jit-lock (Bug#12645).
1035
1036 2012-11-03 Martin Rudalics <rudalics@gmx.at>
1037
1038 * window.el (switch-to-visible-buffer)
1039 (switch-to-buffer-preserve-window-point): Fix doc-strings.
1040
1041 2012-11-03 Glenn Morris <rgm@gnu.org>
1042
1043 * emacs-lisp/cl-lib.el (cl--random-time):
1044 Rename from cl-random-time. (Bug#12773)
1045 (cl--gensym-counter, cl--random-state): Update callers.
1046 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
1047
1048 2012-11-03 Chong Yidong <cyd@gnu.org>
1049
1050 * cus-start.el: Make cursor-type customizable (Bug#11633).
1051
1052 2012-11-02 Glenn Morris <rgm@gnu.org>
1053
1054 * filecache.el: No need to load find-lisp when compiling.
1055 (find-lisp-find-files): Autoload it.
1056 (file-cache-add-directory-recursively): Don't require find-lisp.
1057
1058 * image.el (image-type-from-file-name): Trivial simplification.
1059
1060 * emacs-lisp/bytecomp.el (byte-compile-eval):
1061 Decouple "noruntime" and "cl-functions" warnings.
1062
1063 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
1064
1065 * play/gomoku.el (gomoku-display-statistics): Update mode line
1066 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
1067
1068 2012-10-31 Martin Rudalics <rudalics@gmx.at>
1069
1070 * window.el (quit-restore-window): If the window has been
1071 created on an existing frame and ended up as the sole window on
1072 that frame, do not delete it (Bug#12764).
1073
1074 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
1075
1076 * progmodes/sh-script.el (sh--inside-noncommand-expression):
1077 Rename from sh--inside-arithmetic-expression, handle more cases
1078 (bug#11263).
1079
1080 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
1081 (sh-font-lock-open-heredoc): Use it (bug#12770).
1082
1083 2012-10-30 Glenn Morris <rgm@gnu.org>
1084
1085 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
1086
1087 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
1088
1089 2012-10-29 Chong Yidong <cyd@gnu.org>
1090
1091 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
1092 function key is stored in a keyboard macro (Bug#4894).
1093
1094 * thingatpt.el (number-at-point): Apply a thing-at-point property.
1095
1096 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
1097
1098 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
1099 header comments".
1100 (diff-unified->context, diff-context->unified)
1101 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
1102
1103 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
1104
1105 * files.el (find-alternate-file): Only ask one question (bug#12487).
1106
1107 2012-10-29 Chong Yidong <cyd@gnu.org>
1108
1109 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
1110 Suggested by Dan Nicolaescu (Bug#6326).
1111
1112 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
1113
1114 * startup.el (fancy-about-screen): Don't message (Bug#12680).
1115
1116 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
1117
1118 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
1119
1120 * face-remap.el (face-remap-add-relative): Handle the case where a
1121 face-remapping-alist entry is a cons cell (Bug#12762).
1122
1123 2012-10-29 Kevin Ryde <user42@zip.com.au>
1124
1125 * woman.el (woman-parse-numeric-value): Handle picas correctly
1126 (Bug#12639).
1127
1128 2012-10-29 Glenn Morris <rgm@gnu.org>
1129
1130 * emacs-lisp/cl.el (defsetf): Doc fix.
1131
1132 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
1133
1134 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
1135 syntax to the matching opener, if any (bug#12547).
1136 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
1137 matching open as a "case-(".
1138 (sh-smie-rc-grammar): Add a corresponding rule for it.
1139
1140 2012-10-28 Daniel Hackney <dan@haxney.org>
1141
1142 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
1143 "PKGNAME-autoloads.el" in case we created it.
1144
1145 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1146
1147 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
1148 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
1149 (completion--twq-all): Disable too-strict assertions.
1150
1151 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
1152
1153 2012-10-27 Eli Zaretskii <eliz@gnu.org>
1154
1155 * profiler.el (profiler-report-make-entry-part): Fix help-echo
1156 text to match the real keybindings.
1157
1158 2012-10-27 Juri Linkov <juri@jurta.org>
1159
1160 * wdired.el (wdired-keep-marker-rename): New defcustom.
1161 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
1162 (Bug#11795)
1163
1164 * dired.el (dired-keep-marker-rename): Add reference to
1165 `wdired-keep-marker-rename' in the docstring.
1166 Add default character value ?R to display initially in
1167 Customization UI instead of ?@.
1168
1169 2012-10-27 Martin Rudalics <rudalics@gmx.at>
1170
1171 * window.el (display-buffer): In doc-string describe
1172 window-height and window-width alist entries.
1173
1174 * time.el (display-time-world): Restore fit-window-to-buffer
1175 behavior.
1176
1177 2012-10-27 Chong Yidong <cyd@gnu.org>
1178
1179 * subr.el (insert-buffer-substring-as-yank): Doc fix.
1180
1181 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
1182
1183 * minibuffer.el (completion-category-overrides): New completion
1184 category `bookmark' (bug#11131).
1185
1186 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1187
1188 * emacs-lisp/advice.el (ad-assemble-advised-definition):
1189 Silence bogus compiler warnings for ad-do-it.
1190
1191 * bookmark.el (bookmark-completing-read): Set the completion category
1192 to `bookmark' (bug#11131).
1193
1194 2012-10-26 Bastien <bzg@altern.org>
1195 Stefan Monnier <monnier@iro.umontreal.ca>
1196
1197 * face-remap.el: Use lexical-binding.
1198 (text-scale-adjust): Improve docstring. Use itself for the temporary
1199 overlay-map bindings, so as to repeat the "Use..." message each time.
1200
1201 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1202
1203 * emacs-lisp/macroexp.el (macroexp--expand-all):
1204 Obey byte-compile-warning-enabled-p (bug#12486).
1205
1206 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
1207 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
1208
1209 2012-10-26 Martin Rudalics <rudalics@gmx.at>
1210
1211 * mouse.el (mouse-drag-line): Move last form into preceding when
1212 clause (Bug#12731).
1213
1214 * help.el (resize-temp-buffer-window): Fix doc-string.
1215
1216 2012-10-25 David Engster <deng@randomsample.de>
1217
1218 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
1219 Remove. This feature is already integrated in imenu.
1220
1221 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
1222 always loaded. Require `speedbar' unconditionally.
1223
1224 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1225
1226 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
1227
1228 * minibuffer.el (minibuffer-force-complete): Fix thinko.
1229
1230 * net/ldap.el (ldap-search-internal): The official ldif format starts
1231 with a "version: 1" header (bug#12724).
1232
1233 * emacs-lisp/package.el (package-installed-p): Warn if not ready
1234 (bug#12721).
1235
1236 2012-10-25 Glenn Morris <rgm@gnu.org>
1237
1238 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
1239
1240 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1241
1242 * minibuffer.el (minibuffer-force-complete): Use one more marker
1243 for the temporary-overlay-map command (bug#12619).
1244
1245 2012-10-24 Chong Yidong <cyd@gnu.org>
1246
1247 * time.el (display-time-world-mode): Derive from special-mode.
1248 (display-time-world): Use display-buffer (Bug#12708).
1249 (display-time-world-mode-map): Variable deleted.
1250 (display-time-world-display): Wrap the final delete-char inside
1251 inhibit-read-only.
1252
1253 2012-10-24 Chong Yidong <cyd@gnu.org>
1254
1255 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
1256 Doc fix.
1257
1258 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
1259
1260 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1261
1262 * minibuffer.el (completion--all-sorted-completions-location): New var.
1263 (completion--cache-all-sorted-completions)
1264 (completion--flush-all-sorted-completions): Use it.
1265 (completion-in-region, completion-in-region--postch)
1266 (completion-at-point, completion-help-at-point): Use markers in
1267 completion-in-region--data (bug#12619).
1268
1269 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1270
1271 * progmodes/compile.el (compilation-start): Try to handle common
1272 quoting of `cd' argument (bug#12640).
1273
1274 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
1275 (bug#12671).
1276
1277 2012-10-23 Glenn Morris <rgm@gnu.org>
1278
1279 * progmodes/gud.el (gud-menu-map):
1280 Check gdb-active-process is bound. (Bug#12358)
1281
1282 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1283
1284 * repeat.el (repeat): Set real-this-command (bug#12232).
1285
1286 * htmlfontify.el (hfy-post-html-hook):
1287 * filesets.el (filesets-cache-fill-content-hook):
1288 * arc-mode.el (archive-extract-hook):
1289 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
1290 * net/rcirc.el (rcirc-sentinel-functions)
1291 (rcirc-receive-message-functions, rcirc-activity-functions)
1292 (rcirc-print-functions):
1293 * net/dbus.el (dbus-event-error-functions):
1294 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
1295 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
1296 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
1297 * term/sun.el (sun-raw-prefix-hooks):
1298 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
1299
1300 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
1301
1302 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1303 Set `tramp-chunksize' to 1. This improves the performance.
1304 (tramp-smb-wait-for-output): Add timeout to
1305 `tramp-accept-process-output' calls.
1306
1307 2012-10-23 Chong Yidong <cyd@gnu.org>
1308
1309 * faces.el (font-list-limit): Define as an obsolete variable.
1310
1311 * startup.el (command-line):
1312 * cus-start.el: Don't refer to font-list-limit.
1313
1314 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
1315
1316 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1317
1318 * subr.el (internal-temp-output-buffer-show): Rename from
1319 temp-output-buffer-show, since previously compiled files expect this name.
1320
1321 2012-10-23 Glenn Morris <rgm@gnu.org>
1322
1323 * image.el (image-type-from-file-name): If multiple types match,
1324 return the first one that is supported. (Bug#9045)
1325
1326 2012-10-22 Glenn Morris <rgm@gnu.org>
1327
1328 * image.el (imagemagick-enabled-types): Doc fix.
1329
1330 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
1331
1332 * progmodes/which-func.el (which-func-current): The hash-table may have
1333 an explicit nil (bug#12338).
1334
1335 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
1336
1337 * electric.el (electric-pair-delete-selection-self-insert-function):
1338 Rename to electric-pair-will-use-region, return a boolean.
1339 (electric-pair-mode): Adjust accordingly. Don't require delsel.
1340
1341 * delsel.el (delete-selection-helper): Use a function instead of a hook.
1342 (delete-selection-pre-hook): Use use-region-p.
1343 (delete-selection-self-insert-function): Remove.
1344 (self-insert-command): Obey self-insert-uses-region-functions.
1345 (self-insert-iso): Revert to previous setting, since we don't actually
1346 know what that command does.
1347 (delete-selection-self-insert-hooks): Remove.
1348
1349 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
1350
1351 * delsel.el (delete-selection-helper): New function, extracted from
1352 delete-selection-pre-hook.
1353 (delete-selection-pre-hook): Use it.
1354 (delete-selection-self-insert-function): New function.
1355 (delete-selection-self-insert-hooks): New hook.
1356 (self-insert-command, self-insert-iso): Use it.
1357 * electric.el (electric-pair-syntax): New function, extracted from
1358 electric-pair-post-self-insert-function.
1359 (electric-pair-post-self-insert-function): Use it.
1360 (electric-pair-delete-selection-self-insert-function): New function.
1361 (electric-pair-mode): Require delsel and setup
1362 delete-selection-self-insert-hooks (bug#11520).
1363
1364 2012-10-20 Chong Yidong <cyd@gnu.org>
1365
1366 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
1367 no changes to show (Bug#12586).
1368
1369 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
1370 list explicitly (Bug#12571).
1371
1372 2012-10-20 Arne Jørgensen <arne@arnested.dk>
1373
1374 * progmodes/flymake.el (flymake-create-temp-inplace):
1375 Use file-truename.
1376
1377 2012-10-20 Eli Zaretskii <eliz@gnu.org>
1378
1379 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
1380
1381 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
1382
1383 * calc/calc-units.el (math-extract-units): Properly extract powers
1384 of units.
1385
1386 2012-10-20 Daniel Colascione <dancol@dancol.org>
1387
1388 * frame.el (make-frame): Set x-display-name as we used to in order
1389 to unbreak creating an X11 frame from an Emacs daemon started
1390 without a display.
1391
1392 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1393
1394 * minibuffer.el (minibuffer-force-complete): Make the next completion use
1395 the same completion-field (bug#12221).
1396
1397 2012-10-19 Martin Rudalics <rudalics@gmx.at>
1398
1399 * emacs-lisp/debug.el (debug): Record height of debugger window
1400 also when debugger will be back (Bug#8789).
1401
1402 2012-10-18 Chong Yidong <cyd@gnu.org>
1403
1404 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
1405 Convert to defcustom.
1406 (gdb-get-source-file): Don't bind pop-up-windows.
1407
1408 * progmodes/gud.el (gud-display-line): Don't specially re-use
1409 other frames for the gdb-mi case (Bug#12648).
1410
1411 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1412
1413 * emacs-lisp/advice.el: Clean up commentary a bit.
1414 (ad-do-advised-functions, ad-with-originals): Use `declare'.
1415 (byte-code-function-p): Never redefine.
1416
1417 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
1418
1419 2012-10-18 Glenn Morris <rgm@gnu.org>
1420
1421 * dired.el (dired-sort-toggle): Some ls implementations only allow
1422 a single option string. (Bug#12666)
1423
1424 * minibuffer.el (completion-cycle-threshold): Doc fix.
1425
1426 2012-10-17 Kenichi Handa <handa@gnu.org>
1427
1428 * international/mule.el (set-keyboard-coding-system):
1429 Recover input meta mode when the new coding system doesn not use 8-bit.
1430 Supply TERMINAL arg to set-input-meta-mode.
1431
1432 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
1433
1434 * wdired.el (wdired-old-marks): New variable.
1435 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
1436 (wdired-do-renames): Move point with renamed file and don't lose
1437 mark status (Bug#11795).
1438
1439 2012-10-16 Juri Linkov <juri@jurta.org>
1440
1441 * replace.el (query-replace-help): Mention multi-buffer replacement
1442 keys in the Help message. (Bug#12655)
1443
1444 2012-10-15 Chong Yidong <cyd@gnu.org>
1445
1446 * emacs-lisp/byte-run.el (defsubst): Doc fix.
1447
1448 2012-10-14 Eli Zaretskii <eliz@gnu.org>
1449
1450 * window.el (display-buffer): Doc fix.
1451
1452 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1453 Adjust the msft regexp to the output of Studio 2010, and move msft
1454 before edg-1. See the discussion on emacs-devel,
1455 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
1456 for the details.
1457
1458 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
1459
1460 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
1461 (oset): Move uses of object-class-fast macro after its definition.
1462
1463 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
1464
1465 2012-10-13 Chong Yidong <cyd@gnu.org>
1466
1467 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
1468 enabled, re-enable it (Bug#11963).
1469
1470 2012-10-13 Martin Rudalics <rudalics@gmx.at>
1471
1472 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
1473 non-nil, restore window configuration (Bug#12623).
1474
1475 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1476
1477 * help-fns.el (describe-variable, describe-function-1):
1478 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
1479
1480 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
1481
1482 2012-10-12 Glenn Morris <rgm@gnu.org>
1483
1484 * mail/rmailsum.el (rmail-header-summary):
1485 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
1486
1487 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
1488
1489 * progmodes/python.el (python-mode-map):
1490 Replace subtitute-key-definition with proper command remapping.
1491 (python-nav--up-list): Fix behavior for blocks on the same level.
1492
1493 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1494
1495 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
1496
1497 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
1498 changes to the format of load-history.
1499
1500 * international/mule-cmds.el (read-char-by-name): Move let-binding of
1501 completion-ignore-case in case that var is buffer-local (bug#12615).
1502
1503 2012-10-11 Kenichi Handa <handa@gnu.org>
1504
1505 * international/eucjp-ms.el: Re-generated.
1506
1507 2012-10-10 Kenichi Handa <handa@gnu.org>
1508
1509 * select.el (xselect--encode-string): If a coding is specified for
1510 selection, and that is compatible with COMPOUND_TEXT, use it.
1511
1512 2012-10-10 Martin Rudalics <rudalics@gmx.at>
1513
1514 * window.el (switch-to-buffer-preserve-window-point): New option.
1515 (switch-to-buffer):
1516 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
1517
1518 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1519
1520 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
1521 Don't document nil as a useful value (bug#12583).
1522
1523 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
1524
1525 * net/tramp.el (tramp-debug-message):
1526 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
1527 (with-tramp-progress-reporter): Rename from
1528 `tramp-with-progress-reporter'.
1529 (with-tramp-file-property, with-tramp-connection-property):
1530 Move from tramp-cache.el, rename from `with-file-property' and
1531 `with-connection-property', respectively.
1532
1533 * net/tramp-cache.el: Remove `with-file-property' and
1534 `with-connection-property'.
1535
1536 * net/tramp.el:
1537 * net/tramp-gvfs.el:
1538 * net/tramp-sh.el:
1539 * net/tramp-smb.el: Adapt callees.
1540
1541 * net/trampver.el: Update release number.
1542
1543 2012-10-09 Glenn Morris <rgm@gnu.org>
1544
1545 * w32-fns.el (set-message-beep):
1546 * term/w32-win.el (set-message-beep): Update declarations.
1547
1548 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1549
1550 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
1551 (mode-line-widen, mode-line-input-method-map)
1552 (mode-line-coding-system-map, mode-line-remote)
1553 (mode-line-unbury-buffer, mode-line-bury-buffer)
1554 (mode-line-next-buffer, mode-line-previous-buffer):
1555 Replace save-selected-window+select-window => with-selected-window.
1556
1557 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
1558 * progmodes/cc-vars.el (bq-process): Remove, unused.
1559
1560 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
1561
1562 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
1563
1564 Implemented `backward-up-list'-like navigation.
1565 * progmodes/python.el (python-nav-up-list)
1566 (python-nav-backward-up-list): New functions.
1567 (python-mode-map): Define substitute key for backward-up-list to
1568 python-nav-backward-up-list.
1569
1570 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1571
1572 * progmodes/python.el (python-fill-paragraph): Rename from
1573 python-fill-paragraph-function. Fixed fill-paragraph for
1574 decorators (Bug#12605).
1575
1576 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1577
1578 * progmodes/python.el (python-shell-output-filter): Handle extra
1579 carriage return in OSX (Bug#12409).
1580
1581 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1582
1583 Fix shell handling of unbalanced quotes and parens in output.
1584 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
1585 (python-syntax-propertize-function): Use it.
1586 (python-shell-output-syntax-table): New var.
1587 (inferior-python-mode): Prevent unbalanced parens/quotes from
1588 previous output mess with current input context.
1589
1590 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
1591
1592 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
1593 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
1594
1595 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
1596
1597 * ffap.el (ffap-replace-file-component): Support Tramp file name
1598 syntax, not only ange-ftp's one.
1599
1600 2012-10-08 Glenn Morris <rgm@gnu.org>
1601
1602 * cus-start.el (message-log-max): Set :version.
1603
1604 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
1605
1606 2012-10-08 Martin Rudalics <rudalics@gmx.at>
1607
1608 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
1609 the minibuffer window (Bug#10851).
1610
1611 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1612
1613 Enhancements on forward-sexp movement.
1614 * progmodes/python.el (python-nav-beginning-of-statement)
1615 (python-nav-end-of-statement): Return point-marker.
1616 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
1617 (python-info-current-symbol)
1618 (python-info-statement-starts-block-p): Rename from
1619 python-info-beginning-of-block-p.
1620 (python-info-statement-ends-block-p): Rename from
1621 python-info-end-of-block-p.
1622 (python-info-beginning-of-statement-p)
1623 (python-info-end-of-statement-p)
1624 (python-info-beginning-of-block-p, python-info-end-of-block-p):
1625 New functions.
1626
1627 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1628
1629 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
1630 frame-selected-windows.
1631
1632 2012-10-08 Daniel Colascione <dancol@dancol.org>
1633
1634 * battery.el (battery-status-function): Check for
1635 w32-battery-status itself, not system-time windows-nt.
1636
1637 * frame.el: Require cl-lib.
1638 (display-format-alist): New variable mapping frame types to
1639 functions that initialize them.
1640 (window-system-for-display): New function: interprets
1641 display-format-alist.
1642 (make-frame-on-display): Remove existing display-selection logic
1643 and just forward to make-frame, which will now DTRT.
1644 (make-frame): Restructure to use window-system-for-display to
1645 figure out how to create a frame on a given display.
1646 (display-mouse-p): Look for frame-type w32, not a particular
1647 system-type.
1648
1649 * loadup.el: Load w32 lisp code when we have the w32 feature.
1650
1651 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
1652 system-type windows-nt.
1653
1654 * server.el (server-create-window-system-frame): Look for window
1655 type.
1656 (server-proces-filter): Only force a window system when windows-nt
1657 _and_ w32. Explain why.
1658
1659 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
1660 of window systems we configure for the mode.
1661
1662 * startup.el (command-line): Mark window system is initialized
1663 after we've done it.
1664
1665 * common-win.el (x-select-text): Look for w32, not windows-nt.
1666
1667 * ns-win.el: Require cl-lib. Add ourselves to
1668 display-format-alist.
1669 (ns-initialize-window-system): Assert we're not initialized twice.
1670
1671 * w32-win.el: Enable lexical binding; require cl-lib; add
1672 ourselves to display-format-alist.
1673 (w32-handle-dropped-file): Convert incoming dropped files from
1674 Windows paths to Cygwin ones before passing them on to the rest of
1675 Emacs.
1676 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
1677 (w32-initialize-window-system): Assert we're not initialized twice.
1678
1679 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
1680 (x-initialize-window-system): Assert we're not initialized twice.
1681
1682 * w32-common-fns.el: New File.
1683 (w32-version, w32-using-nt, w32-get-clipboard-data)
1684 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1685 (w32-charset-info-alist, x-last-selected, text)
1686 (x-get-selection-value, x-selection-value): Move here.
1687
1688 * w32-fns.el: Require w32-common-fns.
1689 (w32-version, w32-using-nt, w32-get-clipboard-data)
1690 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1691 (w32-charset-info-alist, x-last-selected, text)
1692 (x-get-selection-value, x-selection-value): Move to
1693 w32-common-fns.
1694
1695 * w32-vars.el:
1696 (w32-allow-system-shell, w32-system-shells): Define only in
1697 non-cygwin case.
1698
1699 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1700
1701 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
1702 (read-passwd): Remove a few more potential sources of leaks.
1703
1704 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1705
1706 * progmodes/python.el (inferior-python-mode)
1707 (python-shell-make-comint): Fix initialization of local
1708 variables copied from parent buffer.
1709
1710 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
1711
1712 * term/ns-win.el (ns-read-file-name): Update declaration to match
1713 nsfns.m.
1714 (ns-respond-to-change-font): Change fontsize separatly so we are sure
1715 it is set when font is acted upon.
1716
1717 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1718
1719 Enhancements to indentation.
1720 * progmodes/python.el (python-indent-context): Give priority to
1721 inside-string context. Make comments indentation markers.
1722 (python-indent-region): Do not mess with strings, unless it's the
1723 enclosing set of quotes.
1724
1725 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1726
1727 * window.el (internal--before-save-selected-window)
1728 (internal--after-save-selected-window): New functions extracted from
1729 save-selected-window. Make sure we return the `alist' we construct.
1730 (save-selected-window): Use them.
1731
1732 * textmodes/tex-mode.el (tex-recenter-output-buffer):
1733 Use with-selected-window.
1734
1735 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
1736 forms that define macros (bug#12593).
1737
1738 2012-10-07 Kenichi Handa <handa@gnu.org>
1739
1740 * international/mule-conf.el (compound-text-with-extensions):
1741 Add :mime-charset property as x-ctext.
1742
1743 2012-10-07 Stefan Merten <smerten@oekonux.de>
1744
1745 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1746 (rst-indent-literal-normal, rst-indent-literal-minimized)
1747 (rst-indent-comment): Correct :version tag.
1748 (rst-official-cvs-rev): Correct version string.
1749
1750 2012-10-07 Glenn Morris <rgm@gnu.org>
1751
1752 * mail/rmailmm.el (rmail-mime-process-multipart):
1753 Do not confuse a multipart message with an epilogue
1754 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
1755
1756 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1757
1758 Fix shell output retrieval and comint-prompt-regexp init.
1759 * progmodes/python.el (inferior-python-mode):
1760 (python-shell-make-comint): Fix initialization of
1761 comint-prompt-regexp from copied file local variables.
1762 (python-shell-fetched-lines): Remove var.
1763 (python-shell-output-filter-in-progress): Rename from
1764 python-shell-fetch-lines-in-progress.
1765 (python-shell-output-filter-buffer): Rename from
1766 python-shell-fetch-lines-string.
1767 (python-shell-fetch-lines-filter): Delete function.
1768 (python-shell-output-filter): New function.
1769 (python-shell-send-string-no-output): Use them.
1770
1771 2012-10-07 Glenn Morris <rgm@gnu.org>
1772
1773 * hi-lock.el (hi-lock-process-phrase):
1774 Try to make it less fragile. (Bug#7161)
1775
1776 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
1777
1778 2012-10-06 Glenn Morris <rgm@gnu.org>
1779
1780 * ehelp.el (electric-help-mode): Use help-mode rather than
1781 non-existent mode `help'.
1782 (electric-help-map): Use button-buffer-map. (Bug#10917)
1783
1784 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
1785 (reftex-create-bibtex-footer): Fix custom types.
1786
1787 * progmodes/sh-script.el (sh-indent-after-continuation):
1788 Add explicit :group.
1789
1790 * textmodes/rst.el (rst-preferred-decorations)
1791 (rst-shift-basic-offset): Clarify obsolescence versions.
1792
1793 * profiler.el (profiler): Add missing group :version tag.
1794 * avoid.el (mouse-avoidance-banish-position):
1795 * proced.el (proced-renice-command):
1796 * calc/calc.el (calc-ensure-consistent-units):
1797 * calendar/icalendar.el (icalendar-import-format-uid):
1798 * net/tramp.el (tramp-save-ad-hoc-proxies):
1799 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1800 * progmodes/flymake.el (flymake-error-bitmap)
1801 (flymake-warning-bitmap, flymake-fringe-indicator-position):
1802 * progmodes/sh-script.el (sh-indent-after-continuation):
1803 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
1804 (verilog-before-save-font-hook, verilog-after-save-font-hook):
1805 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
1806 (vhdl-array-index-record-field-in-sensitivity-list)
1807 (vhdl-indent-comment-like-next-code-line):
1808 * textmodes/reftex-vars.el (reftex-ref-style-alist)
1809 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
1810 (reftex-cite-key-separator, reftex-create-bibtex-header)
1811 (reftex-create-bibtex-footer):
1812 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1813 (rst-indent-literal-normal, rst-indent-literal-minimized)
1814 (rst-indent-comment): Add missing custom :version tags.
1815
1816 * calendar/timeclock.el (timeclock-modeline-display):
1817 Add missing obsolete alias for renamed user option.
1818
1819 * strokes.el (strokes-modeline-string):
1820 * emulation/crisp.el (crisp-mode-modeline-string):
1821 * eshell/esh-mode.el (eshell-status-in-modeline):
1822 Aliases to defcustoms must come before the defcustom.
1823
1824 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
1825 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
1826 (cal-tex-cursor-week-monday): Doc fixes.
1827 (cal-tex-cursor-week2-summary): Doc fix.
1828 Rename from cal-tex-cursor-week-at-a-glance.
1829
1830 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
1831 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
1832
1833 * calendar/calendar.el (calendar-mode-map):
1834 Add cal-tex-cursor-week2-summary.
1835
1836 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
1837
1838 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
1839
1840 * subr.el (read-passwd-map): New var.
1841 (read-passwd): Use `read-string' again.
1842 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
1843
1844 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
1845
1846 * register.el (append-to-register, prepend-to-register):
1847 Deactivate mark, as does `copy-to-register' (bug#12389).
1848
1849 2012-10-06 Chong Yidong <cyd@gnu.org>
1850
1851 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
1852
1853 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
1854
1855 * international/characters.el: Fix simple mistake ((car chars) ->
1856 elt), delete duplicated code.
1857
1858 2012-10-06 Glenn Morris <rgm@gnu.org>
1859
1860 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
1861
1862 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
1863
1864 * color.el (color-hsl-to-rgb): Fix incorrect results for
1865 small and large hue values. (Bug#12559)
1866
1867 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
1868
1869 Enhancements to docstring formatting when filling paragraphs.
1870 * progmodes/python.el (python-fill-docstring-style): Rename from
1871 python-fill-string-style. Added new style.
1872 (python-fill-string): Use new style. Better checks for
1873 docstrings.
1874
1875 2012-10-05 Glenn Morris <rgm@gnu.org>
1876
1877 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
1878
1879 * color.el (color-name-to-rgb, color-rgb-to-hex)
1880 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1881 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1882 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1883 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1884
1885 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
1886
1887 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
1888
1889 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
1890 to get the correct size across symlinks.
1891
1892 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
1893
1894 2012-10-04 Juri Linkov <juri@jurta.org>
1895
1896 * replace.el (query-replace-interactive): Declare obsolete.
1897 (query-replace-read-from): Add the last incremental search string
1898 to the list of default values accessible via M-n.
1899 (map-query-replace-regexp): Use `read-regexp'.
1900 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1901 (map-query-replace-regexp, replace-string, replace-regexp):
1902 Fix docstrings to replace mentions of `query-replace-interactive'
1903 with alternatives. (Bug#12526)
1904
1905 2012-10-04 Juri Linkov <juri@jurta.org>
1906
1907 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
1908 (dired-pop-to-buffer): Declare obsolete.
1909 (dired-mark-pop-up): Doc fix.
1910
1911 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
1912
1913 Allow user to set docstring style for fill-paragraph.
1914 * progmodes/python.el
1915 (python-fill-comment-function, python-fill-string-function)
1916 (python-fill-decorator-function, python-fill-paren-function):
1917 Remove :safe for defcustoms.
1918 (python-fill-string-style): New defcustom
1919 (python-fill-paragraph-function): Enhance context detection.
1920 (python-fill-string): Honor python-fill-string-style settings.
1921
1922 2012-10-04 Martin Rudalics <rudalics@gmx.at>
1923
1924 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
1925 after setting its buffer (Bug#10805).
1926
1927 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
1928
1929 Fix cornercase for string syntax.
1930 * progmodes/python.el (python-syntax-propertize-function):
1931 Simplify and enhance the regexp for unescaped quotes. Now it also
1932 matches quotes in weird situations like the single quote in
1933 "something\"'".
1934 (python-syntax-stringify): Simplify num-quotes detecting code.
1935
1936 2012-10-03 Glenn Morris <rgm@gnu.org>
1937
1938 * help-macro.el (three-step-help):
1939 Revert 2012-09-29 change. (Bug#12567)
1940
1941 2012-10-03 Martin Rudalics <rudalics@gmx.at>
1942
1943 * menu-bar.el (kill-this-buffer): Don't do anything when
1944 `menu-frame' is not alive or visible (Bug#8184).
1945
1946 * emacs-lisp/debug.el (debug): When quitting the debugger window
1947 restore current buffer (Bug#12502).
1948
1949 2012-10-02 Chong Yidong <cyd@gnu.org>
1950
1951 * progmodes/hideif.el (hif-lookup, hif-defined):
1952 Handle semantic-c-takeover-hideif.
1953
1954 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1955
1956 Change sampling interval units from ms to ns.
1957 * profiler.el (profiler-sampling-interval): Change units
1958 from ms to ns, multiplying the default by 1000000 so that
1959 it remains 1 ms.
1960 (profiler-report-cpu-line-format): Give enough room for
1961 the maximum counters on 64-bit hosts.
1962 (profiler-report-render-calltree-1): Call them "CPU samples",
1963 not "Time (ms)", since they are not milliseconds now (and
1964 never really were).
1965
1966 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
1967
1968 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
1969 Fix querying BBDB for entries without a last name (Bug#11580).
1970
1971 2012-10-02 Chong Yidong <cyd@gnu.org>
1972
1973 * emacs-lisp/eieio.el: Restore Version header.
1974
1975 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1976
1977 * vc/diff-mode.el (diff--auto-refine-data): New var.
1978 (diff-hunk): Use it to delay refinement.
1979 (diff-mode): Remove overlays when we turn off font-lock.
1980
1981 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
1982 (table-initialize-table-fixed-width-mode)
1983 (table-set-table-fixed-width-mode): Remove functions.
1984 (table-command-list): Move initialization into declaration.
1985 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
1986 (table-with-cache-buffer): Use `declare'.
1987 (table-span-cell): Simplify via CSE.
1988 (table-fixed-width-mode): Use define-minor-mode.
1989 (table-call-interactively, table-funcall, table-apply): Remove.
1990 (table-function): New function, to replace them.
1991
1992 * bookmark.el (bookmark-search-pattern): Remove var.
1993 (bookmark-read-search-input): Remove function.
1994 (bookmark-bmenu-search): Reimplement using a minibuffer.
1995
1996 * faces.el (modeline): Remove obsolete face name.
1997
1998 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
1999 and give a non-nil default value.
2000 (add-change-log-entry): Simplify accordingly.
2001
2002 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
2003
2004 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
2005 (vc-git-log-edit-toggle-amend): New function.
2006 (vc-git-log-edit-toggle-signoff): New function.
2007 (vc-git-log-edit-mode): New major mode.
2008 (vc-git-log-edit-mode-map): Keymap for it.
2009 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
2010
2011 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
2012 header names.
2013 (log-edit-toggle-header): New function.
2014 (log-edit-extract-headers): Accept function values in HEADERS alist.
2015
2016 2012-10-01 David Engster <deng@randomsample.de>
2017
2018 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
2019 from symbol property and change message to be more consistent with
2020 Emacs proper.
2021 (eieio-describe-generic): Add filename for each implementation.
2022 Fix indices for generic and normal methods.
2023 (eieio-method-def, eieio-class-def): New buttons.
2024 (eieio-help-find-method-definition)
2025 (eieio-help-find-class-definition): New functions.
2026 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
2027 class, constructor and method definitions.
2028
2029 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
2030 information in symbol property.
2031 (scoped-class): Remove.
2032 (eieio-slot-name-index, call-next-method): Check if it is bound.
2033
2034 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
2035
2036 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
2037 (eieio-custom-mode): New major mode.
2038 (eieio-customize-object): Use it.
2039
2040 2012-10-01 Eric Ludlam <zappo@gnu.org>
2041
2042 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
2043 specifying the expected class, and whether subclassing is allowed.
2044 (eieio-persistent-convert-list-to-object):
2045 (eieio-persistent-validate/fix-slot-value)
2046 (eieio-persistent-slot-type-is-class-p): New functions.
2047 (eieio-named::slot-missing): Doc fix.
2048
2049 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
2050 Stop using unused publd variable.
2051
2052 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
2053 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
2054 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
2055 (eieio-speedbar-handle-click): Do not specify a class for the
2056 method. Fixes method invocation order problems with EDE.
2057
2058 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
2059
2060 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
2061 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
2062
2063 2012-10-01 Karl Fogel <kfogel@red-bean.com>
2064
2065 * bookmark.el (bookmark-version-control): Give tags in the
2066 :type choices (Bug#12309), and improve doc string.
2067 (bookmark-write-file): Bind `print-circle' to `t' to allow
2068 circular custom bookmark types. (Bug#12503)
2069
2070 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
2071
2072 Revert the FOLLOW-SYMLINKS change for file-attributes.
2073 * files.el (remote-file-name-inhibit-cache, after-find-file):
2074 * time.el (display-time-file-nonempty-p): Undo last change.
2075
2076 * profiler.el (profiler-sampling-interval): Change default back to 1.
2077 See Stefan Monnier in
2078 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
2079
2080 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
2081
2082 Shell output catching a la gud-gdb.
2083 * progmodes/python.el (python-shell-fetch-lines-in-progress)
2084 (python-shell-fetch-lines-string, python-shell-fetched-lines):
2085 New Vars.
2086 (python-shell-fetch-lines-filter): New function.
2087 (python-shell-send-string-no-output): Use them.
2088
2089 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
2090
2091 * profiler.el (profiler-sampling-interval): Rename from
2092 profiler-sample-interval.
2093 (profiler-sampling-interval): Default to 10.
2094 (profiler-find-profile): New command (was profiler-find-log).
2095 (profiler-find-profile-other-window): New command.
2096 (profiler-find-profile-other-frame): New command.
2097 (profiler-profile): Introduce API-level data structure.
2098
2099 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
2100
2101 file-attributes has a new optional arg FOLLOW-SYMLINKS.
2102 * files.el (remote-file-name-inhibit-cache):
2103 * time.el (display-time-file-nonempty-p): Use it.
2104 * files.el (after-find-file): Don't chase links before calling
2105 file-exists-p, as file-exists-p already does the right thing.
2106
2107 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
2108
2109 Merge from standalone RefTeX repository.
2110
2111 The following ChangeLog entries are shortened versions of the
2112 original ones with file paths adapted. A not so strongly edited
2113 version of the original ChangeLog can be found in the commit log.
2114
2115 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
2116 (reftex-arg-cite): Use `reftex-cite-key-separator'.
2117 Correctly handle new value type returned by `reftex-citation'.
2118
2119 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
2120 that entries with whitespace at various places are found.
2121 Doc fix. Include entries that are cross-referenced from cited entries.
2122 Include @String definitions in the resulting bib file. Add header
2123 and footer defined in `reftex-create-bibtex-header' and
2124 `reftex-create-bibtex-footer'.
2125 (reftex-do-citation): Make it possible again to insert
2126 non-existent entries. Save match data when asking for optional
2127 arguments. Return all keys, not just the first one.
2128 (reftex-all-used-citation-keys): Fix regexp to correctly extract
2129 all citations in the same line.
2130 (reftex-parse-bibtex-entry): Accept additional optional argument
2131 `raw' and keep quotes or braces if it is non-nil. Match fields
2132 containing hyphens besides word constituents.
2133 (reftex-get-string-refs): New function.
2134 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
2135 and ask if it should be reread in case it did.
2136 (reftex-pop-to-bibtex-entry)
2137 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
2138 entries with spaces or tabs in front of arguments.
2139 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
2140 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
2141 Match entries containing numbers and symbol constituents.
2142 (reftex-do-citation, reftex-figure-out-cite-format):
2143 Use `reftex-cite-key-separator'.
2144
2145 * textmodes/reftex-dcr.el: Move provide statement to end of file.
2146 (reftex-mouse-view-crossref): Explain why point is set.
2147
2148 * textmodes/reftex-global.el: Whitespace changes.
2149
2150 * textmodes/reftex-index.el: Move provide statement to end of
2151 file.
2152 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
2153 (reftex-index-visit-phrases-buffer): Set marker when visiting
2154 buffer. This allows for returning from the phrases file to the
2155 file one was just editing instead of the file where the last
2156 phrases was added from.
2157 (reftex-index-phrases-syntax-table): New variable. Give ?\"
2158 punctuation syntax as it usually is not used as string quote in
2159 TeX-related modes and may occur unmatched. The change also
2160 prevents fontification of quoted content.
2161 (reftex-index-phrases-mode): Use it.
2162
2163 * textmodes/reftex-parse.el (reftex-parse-from-file):
2164 Move backward one char if a `\' was matched after a section macro.
2165 (reftex-parse-from-file): Use beginning of match instead of end as
2166 bound.
2167
2168 * textmodes/reftex-ref.el: Adapt creation of
2169 `reftex-<package>-<macro>' functions to new structure of
2170 `reftex-ref-style-alist'.
2171 (reftex-reference): Use `reftex-ref-style-list' function.
2172 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
2173 reference macro if `reftex-ref-macro-prompt' is non-nil.
2174 (reftex-reference): Pass refstyle to `reftex-format-special'.
2175 Determine reference macro by looking at
2176 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
2177 Use only one special format function.
2178 (reftex-varioref-vref, reftex-fancyref-fref)
2179 (reftex-fancyref-Fref): Remove definitions. The functions are now
2180 generated from `reftex-ref-style-alist'.
2181 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
2182 Remove.
2183 (reftex-format-special): New function.
2184
2185 * textmodes/reftex-sel.el
2186 (reftex-select-cycle-ref-style-internal): Adapt to new structure
2187 of `reftex-ref-style-alist'. Remove code for testing macro type.
2188 (reftex-select-toggle-varioref)
2189 (reftex-select-toggle-fancyref): Remove.
2190 (reftex-select-cycle-ref-style-internal)
2191 (reftex-select-cycle-ref-style-forward)
2192 (reftex-select-cycle-ref-style-backward): New functions.
2193 (reftex-select-label-map): Use `v' and `V' for general cycling
2194 through reference styles. Add `p' for switching between number
2195 and page reference types.
2196
2197 * textmodes/reftex-toc.el (reftex-re-enlarge):
2198 Call `enlarge-window' only if there is something to do because in Emacs
2199 the horizontal version throws an error even if the parameter is 0.
2200
2201 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
2202 (reftex-plug-into-AUCTeX): Doc fix.
2203 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
2204 string. Adapt to new name.
2205 (reftex-ref-style-alist): Change structure so that it is not
2206 possible to use multiple different package names within a style.
2207 Remove the symbols for symbols for macro type distinction.
2208 Add characters for macro selection.
2209 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
2210 (reftex-create-bibtex-footer): New variables.
2211 (reftex-format-ref-function): Mention third argument of special
2212 format function.
2213 (reftex-ref-style-alist, reftex-ref-style-default-list):
2214 New variables.
2215 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
2216 to new implementation. Mark as obsolete. Add compatibility code
2217 for honoring the variable values in case they are set.
2218 (reftex-cite-format-builtin, reftex-bibliography-commands):
2219 Add support for ConTeXt.
2220 (reftex-format-ref-function, reftex-format-cite-function):
2221 Fix custom type.
2222 (reftex-cite-key-separator): New variable.
2223
2224 * textmodes/reftex.el (reftex-syntax-table-for-bib)
2225 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
2226 `reftex-syntax-table' because parens have to retain their paren
2227 syntax in order for parsing of BibTeX entries like @book(...) to
2228 work.
2229 (reftex-in-comment): Do not error out if `comment-start-skip' is
2230 not set. Deal correctly with escaped comment characters.
2231 (reftex-tie-multifile-symbols): Add doc string.
2232 Initialize `reftex-ref-style-list'.
2233 (reftex-untie-multifile-symbols): Add doc string.
2234 (reftex-add-index-macros): Doc fix.
2235 (reftex-ref-style-activate, reftex-ref-style-toggle)
2236 (reftex-ref-style-list): New functions.
2237 (reftex-mode-menu): Use them. Adapt to new structure of
2238 `reftex-ref-style-alist'.
2239 (reftex-select-with-char): Kill the RefTeX Select buffer when
2240 done.
2241 (reftex-remove-if): New function.
2242 (reftex-erase-all-selection-and-index-buffers)
2243 (reftex-mode-menu): Reference styles are now computed from
2244 `reftex-ref-style-alist'. Fix typo.
2245 (reftex-report-bug): New function.
2246 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
2247 algorithms with O(n log n). Introduce optional argument SORT (not
2248 yet used).
2249
2250 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
2251
2252 Enhancements for triple-quote string syntax.
2253 * progmodes/python.el (python-syntax-propertize-function):
2254 Match both quote cases in one regexp.
2255 (python-syntax-stringify): Handle matches properly.
2256
2257 2012-09-30 Juri Linkov <juri@jurta.org>
2258
2259 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
2260 to nil around the call to `insert' to prevent
2261 directory time modification by lock_file. (Bug#2295)
2262 * tar-mode.el (tar-summarize-buffer): Idem.
2263
2264 2012-09-30 Juri Linkov <juri@jurta.org>
2265
2266 * facemenu.el (list-colors-sort): Add option "Luminance".
2267 (list-colors-sort-key): Implement it.
2268
2269 * vc/diff-mode.el (diff-refine-removed):
2270 * vc/ediff-init.el (ediff-fine-diff-A):
2271 * vc/smerge-mode.el (smerge-refined-removed):
2272 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
2273
2274 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
2275
2276 * term/ns-win.el (x-file-dialog): New function.
2277
2278 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
2279
2280 * ido.el (ido-max-directory-size): Default to nil; the current
2281 default is small for POSIX systems, and impractical on Windows 7
2282 now that lstat returns directory sizes for NTFS.
2283
2284 2012-09-30 Martin Rudalics <rudalics@gmx.at>
2285
2286 In buffer display functions handle window-height/window-width
2287 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
2288 * window.el (window--display-buffer): New argument ALIST.
2289 Obey window-height and window-width alist entries.
2290 (window--try-to-split-window): New argument ALIST.
2291 Bind window-combination-limit to t when the window's size shall be
2292 changed and window-combination-limit equals `window-size'.
2293 (display-buffer-in-atom-window)
2294 (display-buffer-in-major-side-window)
2295 (display-buffer-in-side-window, display-buffer-same-window)
2296 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2297 (display-buffer-pop-up-window, display-buffer-below-selected)
2298 (display-buffer-at-bottom, display-buffer-in-previous-window)
2299 (display-buffer-use-some-window): Adjust all callers of
2300 window--display-buffer and window--try-to-split-window.
2301 (fit-frame-to-buffer): New option.
2302 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
2303 is non-nil.
2304 (display-buffer-in-major-side-window): Evaluate window-height /
2305 window-width alist entries.
2306
2307 * help.el (temp-buffer-resize-frames)
2308 (temp-buffer-resize-regexps): Remove options.
2309 (temp-buffer-resize-mode): Adjust doc-string.
2310 (resize-temp-buffer-window): Don't consult
2311 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
2312 temp-buffer-resize-frames.
2313
2314 * dired.el (dired-mark-pop-up):
2315 Call display-buffer-below-selected with a fit-window-to-buffer alist
2316 entry.
2317
2318 2012-09-30 Chong Yidong <cyd@gnu.org>
2319
2320 * server.el (server-host): Document the security implications.
2321 (server-auth-key): Doc fix.
2322
2323 * startup.el (initial-buffer-choice): Doc fix.
2324
2325 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
2326
2327 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
2328 restriction change.
2329
2330 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
2331
2332 * help-fns.el (help-fns--obsolete): Fix last change.
2333
2334 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
2335
2336 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
2337 (minor-mode-map-alist): Remove redundant code.
2338
2339 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
2340 visited in a buffer.
2341 (cvs-insert-visited-file): New function.
2342 (find-file-hook): Use it.
2343
2344 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
2345
2346 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
2347 chose face.
2348 (log-edit-empty-buffer-p): Don't require a space after a header.
2349
2350 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
2351
2352 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
2353
2354 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
2355 a proper minor-mode.
2356
2357 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
2358
2359 2012-09-29 Glenn Morris <rgm@gnu.org>
2360
2361 * winner.el (winner-mode): Remove variable (let define-minor-mode
2362 handle it).
2363 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
2364 Doc fixes.
2365 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
2366 (winner-mode): Use define-minor-mode.
2367
2368 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
2369 the full definition in loaddefs, rather than duplicating it.
2370
2371 * help-macro.el (three-step-help): No need to autoload defcustom.
2372
2373 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
2374 (inferior-lisp-program, inferior-lisp-load-command)
2375 (inferior-lisp-prompt, inferior-lisp-mode-hook):
2376 No need to autoload defcustoms.
2377
2378 * hippie-exp.el (hippie-expand-try-functions-list)
2379 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
2380 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
2381 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
2382 (hippie-expand-only-buffers): No need to autoload defcustoms.
2383 * progmodes/vhdl-mode.el (vhdl-line-expand):
2384 Explicitly load hippie-exp, so it does not get autoloaded
2385 while hippie-expand-try-functions-list is let-bound.
2386
2387 2012-09-28 Glenn Morris <rgm@gnu.org>
2388
2389 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
2390
2391 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
2392 Only "cl.el" counts as cl these days.
2393
2394 2012-09-28 Juri Linkov <juri@jurta.org>
2395
2396 Display archive errors in the echo area instead of inserting
2397 to the file buffer.
2398
2399 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
2400 to STDERR-TEST that can be a regexp matching a successful output.
2401 Create a temporary file and redirect stderr to it. Search for
2402 STDERR-TEST in the stderr output and display it in the echo area
2403 if no match is found.
2404 (archive-extract-by-file): New function like
2405 `archive-extract-by-stdout' but extracting archives to files
2406 and looking for successful matches in stdout. Function body is
2407 mostly copied from `archive-rar-extract'.
2408 (archive-rar-extract): Use `archive-extract-by-file'.
2409 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
2410
2411 2012-09-28 Leo Liu <sdl.web@gmail.com>
2412
2413 * pcomplete.el (pcomplete-show-completions):
2414 Use minibuffer-message to make pcomplete usable in minibuffer.
2415
2416 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
2417
2418 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2419
2420 * type-break.el: Use lexical-binding.
2421 (type-break-mode): Use define-minor-mode.
2422
2423 * emacs-lisp/pcase.el (pcase--mark-used): New.
2424 (pcase--u1): Use it (bug#12512).
2425
2426 * custom.el (load-theme): Set buffer-file-name so the load is recorded
2427 in load-history with the right file name.
2428
2429 2012-09-28 Tassilo Horn <tsdh@gnu.org>
2430
2431 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
2432 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
2433 (doc-view-get-bounding-box): Make bounding box slicing work for
2434 ODF and DVI documents.
2435
2436 2012-09-28 Glenn Morris <rgm@gnu.org>
2437
2438 * type-break.el (type-break-mode, type-break-interval)
2439 (type-break-good-rest-interval, type-break-keystroke-threshold):
2440 No need to autoload.
2441 (type-break-good-rest-interval, type-break-keystroke-threshold):
2442 Add :set-after.
2443
2444 2012-09-28 Chong Yidong <cyd@gnu.org>
2445
2446 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
2447 Add :version tag.
2448
2449 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2450
2451 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
2452
2453 2012-09-27 Glenn Morris <rgm@gnu.org>
2454
2455 * faces.el (x-display-name): Declare (for without-x builds).
2456
2457 * linum.el (linum-format): Don't autoload it. Improve :type.
2458
2459 * progmodes/tcl.el: Don't require outline when compiling.
2460 (outline-regexp, outline-level): Declare.
2461 * textmodes/sgml-mode.el: Don't require outline when compiling.
2462 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
2463
2464 * term.el (term-ansi-reset):
2465 Try setting term-ansi-face-already-done to nil. (Bug#11785)
2466
2467 * vc/vc.el (vc-next-action): Only gripe about committing read-only
2468 files for RCS and SCCS. (Bug#9781)
2469
2470 2012-09-27 Chong Yidong <cyd@gnu.org>
2471
2472 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
2473 change; value should be t.
2474
2475 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2476
2477 * image-mode.el: Use lexical-binding.
2478 (image-mode-winprops): Use t to stand for the window of
2479 a buffer that's not displayed.
2480 * doc-view.el (doc-view-new-window-function): Handle the new
2481 t in winprops.
2482 (doc-view-enlarge): Make it a real nop if the size is not changed.
2483 (doc-view-display): Handle the case where the buffer is not (yet?)
2484 displayed in any window.
2485 (doc-view-saved-settings): New var.
2486 (doc-view-mode): Use it.
2487 (doc-view-fallback-mode): Set it.
2488
2489 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
2490 Set lexical-binding.
2491 (minibuffer-eldef-shorten-default): New var.
2492 (minibuffer-default-in-prompt-regexps): Use it for new default.
2493 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
2494
2495 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2496
2497 * international/uni-bidi.el:
2498 * international/uni-category.el:
2499 * international/uni-name.el:
2500 * international/uni-numeric.el: Regenerate.
2501
2502 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2503 Stefan Monnier <monnier@iro.umontreal.ca>
2504
2505 * profiler.el: New file.
2506
2507 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
2508
2509 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
2510 (testcover-reinstrument): Simplify with CSE.
2511
2512 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2513
2514 * window.el (temp-buffer-window-setup): Fix typo in docstring.
2515
2516 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
2517
2518 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
2519 (verilog-auto-input, verilog-auto-insert-lisp)
2520 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
2521 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
2522 (verilog-auto-unused, verilog-auto-wire)
2523 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
2524 newline. Reported by Andrew Jones.
2525 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
2526 Reported by Brad Dobbie.
2527 (verilog-batch-delete-trailing-whitespace):
2528 Create verilog-batch-delete-trailing-whitespace.
2529 Reported by Brad Dobbie.
2530 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
2531 parameters from another module. Reported by Dan Katz.
2532 (verilog-auto, verilog-auto-assign-modport)
2533 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
2534 AUTOINOUTMODPORT for UVM interface module shell generation.
2535 Reported by Brad Dobbie.
2536 (verilog-auto-inst-interfaced-ports): Make default nil, as more
2537 standard behavior.
2538 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
2539 Reported by Matt Martin.
2540
2541 2012-09-25 Martin Rudalics <rudalics@gmx.at>
2542
2543 * window.el (window--resize-child-windows): When resizing child
2544 windows proportionally, process them in reverse order to
2545 preserve the "when splitting a window the new one gets the odd
2546 line" behavior.
2547 (window--resize-root-window-vertically): When resizing the
2548 minibuffer window try to affect only windows at the bottom of the
2549 frame. (Bug#12419)
2550
2551 2012-09-25 Chong Yidong <cyd@gnu.org>
2552
2553 * subr.el (declare): Doc fix.
2554
2555 * help-fns.el (help-fns--obsolete): Handle macros properly.
2556
2557 2012-09-25 Chong Yidong <cyd@gnu.org>
2558
2559 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
2560 this function obsolete.
2561
2562 * calendar/cal-x.el (calendar-two-frame-setup)
2563 (calendar-only-one-frame-setup, calendar-one-frame-setup):
2564 * calendar/calendar.el (american-calendar, european-calendar)
2565 (calendar-for-loop):
2566 * comint.el (comint-dynamic-simple-complete)
2567 (comint-dynamic-complete-as-filename, comint-unquote-filename):
2568 * desktop.el (desktop-load-default):
2569 * dired-x.el (dired-omit-here-always)
2570 (dired-hack-local-variables, dired-default-directory):
2571 * emacs-lisp/derived.el (derived-mode-class):
2572 * emacs-lisp/timer.el (timer-set-time-with-usecs):
2573 * emacs-lock.el (toggle-emacs-lock):
2574 * epa.el (epa-display-verify-result):
2575 * epg.el (epg-sign-keys, epg-start-sign-keys)
2576 (epg-passphrase-callback-function):
2577 * eshell/esh-util.el (eshell-for):
2578 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
2579 (eshell-add-to-window-buffer-names):
2580 * files.el (locate-file-completion):
2581 * imenu.el (imenu-example--create-c-index)
2582 (imenu-example--create-lisp-index)
2583 (imenu-example--lisp-extract-index-name)
2584 (imenu-example--name-and-position):
2585 * international/mule-cmds.el (princ-list):
2586 * international/mule-diag.el (decode-codepage-char):
2587 * international/mule-util.el (detect-coding-with-priority):
2588 * iswitchb.el (iswitchb-read-buffer):
2589 * mail/mailalias.el (mail-complete):
2590 * mail/sendmail.el (mail-sent-via):
2591 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
2592 (mouse-major-mode-menu):
2593 * password-cache.el (password-read-and-add):
2594 * pcomplete.el (pcomplete-parse-comint-arguments):
2595 * progmodes/sh-script.el (sh-maybe-here-document):
2596 * replace.el (query-replace-regexp-eval):
2597 * savehist.el (savehist-load):
2598 * simple.el (choose-completion-delete-max-match):
2599 * term.el (term-dynamic-simple-complete):
2600 * vc/ediff-init.el (ediff-check-version):
2601 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
2602 * vc/vc.el (vc-diff-switches-list):
2603 * view.el (view-return-to-alist-update): Likewise.
2604
2605 * subr.el (eval-next-after-load, makehash, insert-string)
2606 (assoc-ignore-representation, assoc-ignore-case): Use declare to
2607 mark obsolete.
2608 (mode-line-inverse-video): Variable deleted.
2609
2610 * international/mule-util.el (string-to-sequence): Remove.
2611
2612 * calendar/calendar.el (calendar-version):
2613 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
2614 (icalendar-convert-diary-to-ical):
2615 * cus-edit.el (custom-mode):
2616 * ansi-color.el (ansi-color-unfontify-region):
2617 * international/latin1-disp.el (latin1-char-displayable-p):
2618 * progmodes/cwarn.el (turn-on-cwarn-mode):
2619 * progmodes/which-func.el (which-func-update-1):
2620 Use define-obsolete-function-alias.
2621
2622 * net/newst-backend.el (newsticker-cache-filename):
2623 * net/newst-treeview.el (newsticker-groups-filename):
2624 Fix incorrect obsolescence declaration.
2625
2626 * allout.el (allout-passphrase-hint-string): Likewise.
2627 (allout-init): Use a declare form to mark obsolete.
2628
2629 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
2630 this applies to functions.
2631
2632 * iswitchb.el (iswitchb-read-buffer): Move code of
2633 iswitchb-define-mode-map here, and delete that obsolete function.
2634
2635 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
2636 font-lock-reference-face.
2637
2638 2012-09-25 Glenn Morris <rgm@gnu.org>
2639
2640 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
2641 Doc fixes.
2642
2643 * eshell/em-term.el (eshell-term-name):
2644 Default to term-term-name. (Bug#12485)
2645
2646 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2647
2648 * progmodes/python.el (python-shell-send-buffer): Better handling
2649 of "if __name__ == '__main__':" conditionals when sending the buffer.
2650
2651 2012-09-24 Glenn Morris <rgm@gnu.org>
2652
2653 * eshell/esh-cmd.el (eshell-find-alias-function):
2654 Tighten up file-name regexp. (Bug#12499)
2655
2656 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2657
2658 Enhancements for triple-quote string syntax.
2659 * progmodes/python.el (python-quote-syntax): Remove.
2660 (python-syntax-propertize-function): New value.
2661 (python-syntax-count-quotes, python-syntax-stringify):
2662 New functions.
2663
2664 2012-09-24 Chong Yidong <cyd@gnu.org>
2665
2666 * mail/supercite.el (sc-version): Remove obsolete function.
2667 (sc-describe): Don't mark as obsolete, since it is bound.
2668 (sc-submit-bug-report): Remove.
2669
2670 * vc/log-edit.el (cvs-changelog-full-paragraphs)
2671 (cvs-commit-buffer-require-final-newline): Remove.
2672 (log-edit-require-final-newline)
2673 (log-edit-changelog-full-paragraphs): Default to t.
2674
2675 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
2676 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
2677 * vc/vc.el (vc-checkout-carefully): Likewise.
2678
2679 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
2680 (emerge-version): Remove.
2681
2682 * progmodes/compile.el (compile-internal): Remove.
2683 (compilation-parse-errors-function): Fix typo.
2684
2685 * international/mule.el (set-char-table-default): Remove.
2686 (set-coding-priority, make-coding-system, generic-char-p)
2687 (charset-list, charset-bytes, charset-id): Use declare to mark
2688 functions as obsolete.
2689
2690 * vc/pcvs-defs.el (cvs-buffer-name-alist)
2691 (cvs-invert-ignore-marks): Remove references to obsolete vars.
2692 * vc/vc-hooks.el (vc-default-registered): Don't use
2693 vc-master-templates.
2694
2695 * font-lock.el (font-lock-reference-face):
2696 Use define-obsolete-variable-alias.
2697
2698 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
2699 * calendar/calendar.el (calendar-font-lock-keywords):
2700 * calendar/diary-lib.el (diary-font-lock-keywords)
2701 (diary-fancy-font-lock-keywords):
2702 * textmodes/reftex-sel.el (reftex-insert-docstruct):
2703 * textmodes/reftex-index.el (reftex-insert-index):
2704 * textmodes/reftex-cite.el (reftex-format-bib-entry):
2705 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2706 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
2707 * progmodes/prolog.el (prolog-font-lock-keywords):
2708 * progmodes/idlwave.el (idlwave-idl-keywords):
2709 * progmodes/ada-mode.el (ada-font-lock-keywords):
2710 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
2711
2712 2012-09-24 Glenn Morris <rgm@gnu.org>
2713
2714 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
2715
2716 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
2717
2718 * progmodes/python.el (python-indent-line): More consistent cursor
2719 movement behavior.
2720
2721 2012-09-23 Stefan Merten <smerten@oekonux.de>
2722
2723 * textmodes/rst.el: Fix compiler warning.
2724
2725 2012-09-23 Roland Winkler <winkler@gnu.org>
2726
2727 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
2728 Transcribe also LaTeX hyphenation.
2729 (bibtex-reformat): Bug fix. Do not quote twice the elements of
2730 bibtex-reformat-previous-options.
2731
2732 2012-09-23 Roland Winkler <winkler@gnu.org>
2733
2734 * proced.el (proced-renice-command): New variable.
2735 (proced-marked-processes): New function.
2736 (proced-with-processes-buffer): New macro.
2737 (proced-send-signal): Use them.
2738 (proced-renice): New command bound to r.
2739
2740 2012-09-23 Roland Winkler <winkler@gnu.org>
2741
2742 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
2743 ibuffer-saved-filter-groups has one element, shortcut the call of
2744 completing-read. (Bug#12331)
2745
2746 2012-09-23 Chong Yidong <cyd@gnu.org>
2747
2748 * bindings.el (mode-line-toggle-read-only):
2749 * bs.el (bs-toggle-readonly):
2750 * buff-menu.el (Buffer-menu-toggle-read-only):
2751 * dired.el (dired-toggle-read-only):
2752 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
2753
2754 2012-09-23 Chong Yidong <cyd@gnu.org>
2755
2756 * image.el (image-type-available-p): Adapt to init-image-library
2757 argument changes.
2758
2759 2012-09-22 Juri Linkov <juri@jurta.org>
2760
2761 * dired.el (dired-mode-map): Add [remap read-only-mode] for
2762 `dired-toggle-read-only'. (Bug#12462)
2763
2764 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2765
2766 * subr.el (temp-output-buffer-show): New function.
2767 (with-output-to-temp-buffer): Call temp-output-buffer-show
2768 instead of internal-temp-output-buffer-show.
2769
2770 2012-09-22 Chong Yidong <cyd@gnu.org>
2771
2772 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
2773 (Bug#12462).
2774
2775 * repeat.el (repeat): Doc fix (Bug#12348).
2776
2777 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
2778 (Bug#10909).
2779
2780 * simple.el (shell-command-on-region): Doc fix.
2781 (read-only-mode): Doc fix.
2782
2783 2012-09-22 Eli Zaretskii <eliz@gnu.org>
2784
2785 * emacs-lisp/timer.el (run-with-idle-timer)
2786 (timer-activate-when-idle): Warn against reinvoking an idle timer
2787 from within its own timer action. (Bug#12447)
2788
2789 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2790
2791 * cus-start.el (window-combination-limit): Add new optional
2792 values.
2793 * window.el (temp-buffer-window-show)
2794 (window--try-to-split-window): Handle new values of
2795 window-combination-limit (Bug#1806).
2796 (split-window): Test window-combination-limit for t instead of
2797 non-nil.
2798 (display-buffer-at-bottom): New buffer display action function.
2799 * help.el (temp-buffer-resize-regexps): New option.
2800 (temp-buffer-resize-mode): Rewrite doc-string.
2801 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
2802 Don't resize reused window. Suggested by Glenn Morris.
2803
2804 2012-09-22 Stefan Merten <smerten@oekonux.de>
2805
2806 * textmodes/rst.el: Revamp section title faces.
2807 (rst-official-version)
2808 (rst-package-emacs-version-alist): Sync with official version
2809 V1.4.0.
2810 (rst-faces-defaults, rst-set-level-default)
2811 (rst-level-face-max, rst-level-face-base-color)
2812 (rst-level-face-base-light, rst-level-face-format-light)
2813 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
2814 (rst-adornment-faces-alist): Match new setup.
2815 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
2816 (rst-level-5, rst-level-6): New faces.
2817
2818 2012-09-22 Chong Yidong <cyd@gnu.org>
2819
2820 * simple.el (undo): Handle indirect buffers (Bug#8207).
2821
2822 2012-09-21 Leo Liu <sdl.web@gmail.com>
2823
2824 IDO: Disable match re-ordering for buffer switching.
2825 * ido.el (ido-buffer-disable-smart-matches): New variable.
2826 (ido-set-matches-1): Use it. (Bug#2042)
2827
2828 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
2829
2830 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
2831 Fix 2011-05-17 change. (Bug#12418)
2832
2833 2012-09-21 Leo Liu <sdl.web@gmail.com>
2834
2835 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
2836
2837 2012-09-21 Glenn Morris <rgm@gnu.org>
2838
2839 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
2840 Be more robust about locating simple.el.
2841
2842 2012-09-21 Glenn Morris <rgm@gnu.org>
2843
2844 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
2845
2846 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
2847
2848 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
2849
2850 2012-09-20 Juri Linkov <juri@jurta.org>
2851
2852 * replace.el (query-replace-read-from): Use `read-regexp' instead
2853 of `read-from-minibuffer' when `regexp-flag' is non-nil.
2854 (occur-read-primary-args): Use `read-regexp' instead of
2855 `read-string'.
2856 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
2857 `read-from-minibuffer'.
2858 * isearch.el (isearch-occur): Use `read-regexp' instead of
2859 `read-string'.
2860 * dired.el (dired-read-regexp): Use `read-regexp' instead of
2861 `read-from-minibuffer'.
2862 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
2863 of `read-string'. (Bug#7567)
2864
2865 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
2866 and allow accepting a list of strings prepended to a list of
2867 standard default values. Doc fix. (Bug#12321)
2868
2869 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
2870
2871 * replace.el (read-regexp): Don't add ": " when PROMPT already
2872 ends with a colon and space. (Bug#12321)
2873
2874 2012-09-20 Tassilo Horn <tsdh@gnu.org>
2875
2876 * doc-view.el (doc-view-display): Better fix for the cl-assertion
2877 error.
2878
2879 2012-09-20 Stefan Merten <smerten@oekonux.de>
2880
2881 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
2882 Fixes feature request bug#11711.
2883 (rst-mode): Create `imenu-create-index-function'.
2884 (rst-get-stripped-line): Delete after refactoring.
2885 (rst-section-tree, rst-section-tree-rec)
2886 (rst-section-tree-point): Refactor and document properly.
2887 (rst-imenu-find-adornments-for-position)
2888 (rst-imenu-convert-cell, rst-imenu-create-index):
2889 New function.
2890
2891 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2892
2893 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
2894 (macroexp--expand-all): Use it.
2895 (macroexp--funcall-and-return): Remove by folding it into its sole
2896 caller (macroexp--warn-and-return).
2897 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
2898 Use macroexp--obsolete-warning.
2899
2900 * calc/calc.el: Fix last change by removing the whole chunk, since it
2901 was only needed back when Calc was not bundled.
2902
2903 2012-09-20 Martin Rudalics <rudalics@gmx.at>
2904
2905 * emacs-lisp/debug.el (debug): Restore assignment to
2906 debugger-old-buffer removed on 2012-09-08.
2907
2908 2012-09-20 Juri Linkov <juri@jurta.org>
2909
2910 * dired-aux.el (dired-diff): Remove (require 'diff) since
2911 `diff-latest-backup-file' is now autoloaded.
2912
2913 2012-09-20 Chong Yidong <cyd@gnu.org>
2914
2915 * vc/diff.el (diff-latest-backup-file): Autoload.
2916
2917 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2918
2919 * calc/calc.el: Remove redundant autoload shape check.
2920 (sel-mode): Don't defvar.
2921 (calc-get-stack-element): Add `sel-mode' arg instead.
2922 (calc-top, calc-top-list): Pass it this additional argument.
2923 * calc/calc-store.el (calc-store-map):
2924 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
2925 (calc-map-equation, calc-outer-product, calc-inner-product):
2926 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
2927
2928 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
2929
2930 2012-09-19 Juri Linkov <juri@jurta.org>
2931
2932 * dired-aux.el (dired-diff): Add (require 'diff) because
2933 `diff-latest-backup-file' is not autoloaded.
2934 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
2935 of `dired-get-filename' to t to not report error when there is
2936 no default file on the current line.
2937
2938 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2939
2940 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
2941 macroexp--eval-if-compile.
2942 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
2943 (macroexp--expand-all): Use them (bug#12371).
2944
2945 * doc-view.el (doc-view-guess-paper-size)
2946 (doc-view-scale-bounding-box): Fix unbound `caddr'.
2947
2948 2012-09-19 Tassilo Horn <tsdh@gnu.org>
2949
2950 New feature: set optimal slice from BoundingBox information.
2951 * doc-view.el (doc-view-mode-map): Add keybinding.
2952 (doc-view-menu): Add menu entry.
2953 (doc-view-set-slice): Adapt docstring.
2954 (doc-view-get-bounding-box, doc-view-guess-paper-size)
2955 (doc-view-scale-bounding-box)
2956 (doc-view-set-slice-from-bounding-box): New functions.
2957 (doc-view-paper-sizes): New defvar.
2958
2959 2012-09-19 Glenn Morris <rgm@gnu.org>
2960
2961 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
2962 (byte-compile-log-warning): Autoload. (Bug#12371)
2963
2964 * calendar/calendar.el (calendar-american-month-header)
2965 (calendar-european-month-header, calendar-iso-month-header)
2966 (calendar-month-header): New options.
2967 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
2968 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
2969
2970 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
2971
2972 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
2973
2974 2012-09-18 Juri Linkov <juri@jurta.org>
2975
2976 * dired-aux.el (dired-diff): Restore original functionality of
2977 getting the default value, but keep new feature of using the
2978 latest existing backup file (`diff-latest-backup-file').
2979
2980 2012-09-18 Juri Linkov <juri@jurta.org>
2981
2982 * dired.el (dired-mark): If the region is active in Transient Mark
2983 mode, mark all files in the active region. Doc fix.
2984 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
2985 Doc fix. (Bug#10624)
2986
2987 2012-09-18 Juri Linkov <juri@jurta.org>
2988
2989 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
2990 attributes for M-n are pulled from the file at point.
2991 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
2992 Suggested by Drew Adams. (Bug#10624)
2993
2994 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
2995
2996 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
2997 whitespace after "end".
2998 (ruby-do-end-to-brace): Collapse block to one line if it fits
2999 within fill-column.
3000
3001 2012-09-18 Martin Rudalics <rudalics@gmx.at>
3002
3003 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
3004 value.
3005 (debug): Don't remove debugger window when debugger is expected
3006 to be back.
3007
3008 2012-09-18 Chong Yidong <cyd@gnu.org>
3009
3010 * custom.el (defface): Doc fix.
3011
3012 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
3013
3014 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
3015
3016 * progmodes/compile.el (compilation-start): Use compilation-always-kill
3017 to initialize query-on-exit; then test that instead (bug#12288).
3018
3019 2012-09-17 Stefan Merten <smerten@oekonux.de>
3020
3021 * textmodes/rst.el: Add support for `testcover'.
3022 (rst-defcustom-testcover, rst-testcover-add-compose)
3023 (rst-testcover-add-1value): New functions.
3024 (rst-portable-mark-active-p): Replace by `use-region-p'.
3025 (rst-update-section, rst-classify-adornment)
3026 (rst-find-title-line): Mark `1value' forms.
3027 (rst-classify-adornment): Remove superfluous form.
3028 (rst-update-section, rst-get-adornments-around)
3029 (rst-adornment-complete-p, rst-get-next-adornment)
3030 (rst-adjust, rst-promote-region)
3031 (rst-display-adornments-hierarchy, rst-straighten-adornments)
3032 (rst-find-pfx-in-region, rst-section-tree-rec)
3033 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
3034 (rst-toc-node, rst-toc, rst-forward-section)
3035 (rst-iterate-leftmost-paragraphs)
3036 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
3037 (rst-bullet-list-region)
3038 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
3039 (rst-compile-find-conf, rst-compile)
3040 (rst-repeat-last-character): Fix style.
3041
3042 2012-09-17 Chong Yidong <cyd@gnu.org>
3043
3044 * comint.el (comint--complete-file-name-data): Don't add a space
3045 if the status is `sole'; that adds a gratuitous space in the
3046 completion-cycling case (Bug#12092).
3047
3048 * pcomplete.el (pcomplete-completions-at-point): Likewise.
3049
3050 2012-09-17 Richard Stallman <rms@gnu.org>
3051
3052 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
3053 only in the mime-shown mode, not in raw mode.
3054 (rmail-mime): Toggle off mime by displaying the message without
3055 mime processing. (Bug#12305)
3056
3057 * mail/rmail.el (rmail-retry-failure):
3058 Turn off mime processing first. (Bug#12037)
3059
3060 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
3061
3062 2012-09-17 Chong Yidong <cyd@gnu.org>
3063
3064 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
3065 (shell-dynamic-complete-functions): Convert to defcustom.
3066 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
3067
3068 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
3069 * comint.el (comint-prompt-read-only):
3070 * custom.el (defcustom):
3071 * hi-lock.el (hi-lock-mode):
3072 * ibuffer.el (ibuffer-formats):
3073 * ielm.el (ielm-prompt-read-only):
3074 * novice.el (disable-command):
3075 * saveplace.el (toggle-save-place):
3076 * speedbar.el (speedbar-supported-extension-expressions):
3077 * startup.el (auto-save-list-file-prefix, init-file-user)
3078 (after-init-hook, inhibit-startup-echo-area-message):
3079 * strokes.el (strokes-help):
3080 * time-stamp.el (time-stamp):
3081 * calendar/calendar.el (calendar, diary-file):
3082 * calendar/diary-lib.el (diary-mail-entries, diary)
3083 (diary-list-entries-hook):
3084 * calendar/holidays.el (holidays, calendar-holidays):
3085 * calendar/lunar.el (lunar-phases):
3086 * calendar/solar.el (sunrise-sunset):
3087 * emulation/edt.el (edt-load-keys):
3088 * emulation/viper.el (viper-mode):
3089 * eshell/em-alias.el (eshell-command-aliases-list):
3090 * eshell/esh-util.el (eshell-convert-numeric-arguments):
3091 * international/ogonek.el (ogonek-information):
3092 * net/tramp-cmds.el (tramp-bug):
3093 * net/quickurl.el (quickurl-reread-hook-postfix):
3094 * play/decipher.el (decipher-font-lock-keywords):
3095 * progmodes/cc-styles.el (c-set-style):
3096 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
3097 * progmodes/inf-lisp.el (inferior-lisp-prompt):
3098 * progmodes/octave-mod.el (octave-mode):
3099 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
3100 * progmodes/verilog-mode.el (verilog-read-defines):
3101 * textmodes/two-column.el (2C-mode): Likewise.
3102
3103 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
3104
3105 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
3106 that holds many addresses.
3107
3108 2012-09-16 Chong Yidong <cyd@gnu.org>
3109
3110 * align.el (align-areas): Call the indication function with
3111 positions instead of markers for arguments (Bug#12343).
3112
3113 * files.el (parse-colon-path): Use split-string (Bug#12351).
3114
3115 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
3116 (display-buffer-function): Mark as obsolete.
3117
3118 * progmodes/compile.el (compilation-parse-errors): Accept list
3119 values similar to font-lock-keywords (Bug#12136).
3120 Suggested by Oleksandr Manzyuk.
3121 (compilation-error-regexp-alist): Doc fix.
3122
3123 2012-09-15 Glenn Morris <rgm@gnu.org>
3124
3125 * version.el (emacs-bzr-version-bzr): New function.
3126 (emacs-bzr-get-version): Add optional EXTERNAL argument.
3127
3128 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
3129 checkouts, check the parent dirstate matches the branch.
3130 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
3131 empty string.
3132
3133 * version.el (emacs-bzr-version): Doc fix.
3134 (emacs-bzr-version-dirstate): New function.
3135 (emacs-bzr-get-version): For lightweight checkouts, if the parent
3136 is local try and check that it matches the branch. If not, just
3137 use dirstate information. (Bug#12441)
3138
3139 2012-09-14 Juri Linkov <juri@jurta.org>
3140
3141 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
3142 (Bug#12399)
3143
3144 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
3145
3146 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
3147
3148 * emacs-lisp/edebug.el: Miscellaneous cleanup.
3149 Remove obsolete byte-compiler hack that tried to silence some warnings.
3150 (edebug-submit-bug-report): Remove.
3151 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
3152 Remove aliases, use the un-prefixed name instead.
3153 (edebug-pop-to-buffer): Consider other frames.
3154 (edebug-original-read):: Make it more obvious that it's always defined.
3155 (edebug--make-form-data-entry, edebug--form-data-name)
3156 (edebug--form-data-begin, edebug--form-data-end): Rename from the
3157 single-dashed name, and implement with cl-defstruct.
3158 (edebug-set-form-data-entry): Use the standard accessors.
3159 (edebug-make-top-form-data-entry): Use push.
3160 (edebug-no-match): Drop useless `funcall'.
3161 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
3162 to functions.
3163 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
3164 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
3165 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
3166 (easy-menu-define, with-custom-print): Remove redundant specs.
3167 (edebug-outside-overriding-local-map)
3168 (edebug-outside-overriding-terminal-local-map): Remove, unused.
3169 (edebug--display): Bind unread-command-events directly to nil rather
3170 than binding it to unread-command-events and later setting it to nil.
3171 (edebug--display): Kill edebug-eval-buffer here...
3172 (edebug--recursive-edit): ...rather than here.
3173 Bind standard-output and standard-input.
3174 (edebug-eval): Check cl-macroexpand-all is fboundp.
3175 (edebug-temp-display-freq-count): Fix last change.
3176
3177 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
3178 * subr.el (noreturn, 1value): Add `debug' spec.
3179 * emacs-lisp/advice.el: Require cl-lib.
3180 (ad-copy-tree): Remove, use copy-tree instead.
3181 (ad-dolist): Remove use dolist or cl-dolist instead.
3182 (ad-do-return): Remove, use cl-return instead.
3183 (defadvice): Add `debug' spec.
3184
3185 2012-09-13 Juri Linkov <juri@jurta.org>
3186
3187 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
3188 (Bug#12399)
3189
3190 2012-09-13 Glenn Morris <rgm@gnu.org>
3191
3192 * calc/calc.el (math-compose-expr):
3193 * calc/calc-ext.el (math-compose-expr):
3194 * progmodes/cc-defs.el (cl-macroexpand-all):
3195 * progmodes/cc-langs.el (delete-duplicates, mapcan)
3196 (cl-macroexpand-all): Update declarations.
3197
3198 * vc/vc.el: No need to require ediff.
3199 (ediff-load-version-control): Declare.
3200 (ediff-vc-internal): Fix declaration.
3201 (vc-version-ediff): Require ediff.
3202
3203 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3204
3205 Use a more backwards-compatible timer format (Bug#12430).
3206 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
3207 being right after USECS, as that better supports old code that
3208 inadvisedly looked directly at the timer vector.
3209
3210 2012-09-13 Kenichi Handa <handa@gnu.org>
3211
3212 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
3213 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
3214 `coding-priority' property of these language environment.
3215
3216 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3217
3218 Fix glitches caused by addition of psec to timers (Bug#12430).
3219 * image.el (image-animate-timer):
3220 * time.el (display-time-world-timer):
3221 Use timer--function and timer--args rather than raw access to
3222 timer vector.
3223
3224 2012-09-13 Glenn Morris <rgm@gnu.org>
3225
3226 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
3227 If not compiling a file, try using load-file-name.
3228
3229 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
3230
3231 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
3232 Fix last change.
3233 (edebug-update-eval-list): Use `push'.
3234
3235 * emacs-lisp/edebug.el: Use lexical-binding.
3236 Remove the "edebug-" prefix from non-dynamically-scoped variables.
3237 Mark unused args with underscore.
3238 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
3239 (edebug-form-data): Use defvar-local.
3240 (edebug-make-before-and-after-form, edebug-make-after-form):
3241 Use backquote.
3242 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
3243 Not dynamically scoped any more.
3244 (edebug--enter-trace): Add arguments `function' and `args'.
3245 Rename from edebug-enter-trace.
3246 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
3247 (edebug--update-coverage): Add `after-index' and `value' args.
3248 Rename from edebug-update-coverage.
3249 (edebug-slow-after): Call it accordingly.
3250 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
3251 edebug-recursive-edit.
3252 (edebug--display): Call it accordingly. Add args `value',
3253 `offset-index', and `arg-mode'. Rename from edebug-display.
3254 (edebug-debugger, edebug): Call it accordingly.
3255 (edebug-eval-display-list): Use dolist.
3256
3257 2012-09-12 Juri Linkov <juri@jurta.org>
3258
3259 * info.el (Info-search): Don't check for isearch-mode and
3260 isearch-regexp before let-binding search-spaces-regexp to
3261 Info-search-whitespace-regexp.
3262 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
3263 search-whitespace-regexp if isearch-lax-whitespace or
3264 isearch-regexp-lax-whitespace is non-nil.
3265 (Info-mode): Don't set local variable search-whitespace-regexp.
3266 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
3267
3268 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3269
3270 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
3271 (debugger-env-macro): Remove support for unread-command-char.
3272
3273 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
3274 the temporary map re-appearing on emulation-mode-map-alists.
3275
3276 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
3277 since 22.1.
3278
3279 * ehelp.el (with-electric-help): Accept functions in
3280 electric-help-form-to-execute.
3281 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
3282 And replace unread-command-char -> unread-command-events.
3283
3284 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
3285
3286 Sync with Tramp 2.2.6.
3287
3288 * net/tramp.el (tramp-accept-process-output): Don't use
3289 JUST-THIS-ONE in the XEmacs case.
3290
3291 * net/trampver.el: Update release number.
3292
3293 2012-09-12 Martin Rudalics <rudalics@gmx.at>
3294
3295 * emacs-lisp/debug.el (debugger-previous-window-height):
3296 New variable.
3297 (debug): When debugger-jumping-flag is non-nil try to restore
3298 height of debugger window. (Bug#8789)
3299
3300 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3301
3302 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
3303 overriding-local-map and pre/post-command-hook here.
3304 (edebug-recursive-edit): Do it here instead (bug#12345).
3305 (edebug-outside-unread-command-char): Remove all uses of
3306 unread-command-char.
3307
3308 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
3309 inhibit-debugger is bound instead.
3310
3311 2012-09-11 Bastien Guerry <bzg@gnu.org>
3312
3313 * subr.el (set-temporary-overlay-map): Add a docstring.
3314 (Bug#12346)
3315
3316 2012-09-11 Bastien Guerry <bzg@gnu.org>
3317
3318 * minibuffer.el (completion-table-subvert): Fix docstring.
3319 (Bug#12347)
3320
3321 2012-09-11 Bastien Guerry <bzg@gnu.org>
3322
3323 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
3324
3325 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
3326
3327 * progmodes/sql.el: Version 3.1
3328 (sql-db2-escape-newlines): New variable.
3329 (sql-escape-newlines-filter): Use it.
3330
3331 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
3332
3333 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
3334
3335 2012-09-10 Dan Nicolaescu <dann@gnu.org>
3336
3337 * vc/diff-mode.el (diff-mode-menu):
3338 Bind diff-remove-trailing-whitespace.
3339
3340 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
3341
3342 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
3343 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
3344 (emacs-lisp-byte-code-mode): New functions.
3345 (eval-sexp-add-defvars): Don't skip defvars in column >0.
3346 (eval-defun-2): Remove bogus interactive spec.
3347 (lisp-indent-line): Remove redundant whole-exp code, now done in
3348 indent-according-to-mode.
3349 (save-match-data): Remove redundant indent data.
3350
3351 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
3352 Use `declare'.
3353
3354 2012-09-09 Juri Linkov <juri@jurta.org>
3355
3356 * replace.el (replace-regexp-lax-whitespace): New defcustom.
3357 (replace-lax-whitespace, query-replace-regexp)
3358 (query-replace-regexp-eval, replace-regexp): Doc fix.
3359 (perform-replace, replace-highlight): Let-bind
3360 isearch-lax-whitespace to replace-lax-whitespace and
3361 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
3362
3363 * isearch.el (isearch-query-replace): Let-bind
3364 replace-lax-whitespace to isearch-lax-whitespace and
3365 replace-regexp-lax-whitespace to
3366 isearch-regexp-lax-whitespace. (Bug#10885)
3367
3368 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3369
3370 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
3371
3372 2012-09-09 Alan Mackenzie <acm@muc.de>
3373
3374 * progmodes/cc-engine.el (c-state-cache-init):
3375 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
3376 (c-record-parse-state-state):
3377 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
3378
3379 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
3380
3381 * register.el (register-separator): Rename from
3382 separator-register. All uses changed. Doc fix.
3383 (register): Fix version.
3384
3385 2012-09-09 Chong Yidong <cyd@gnu.org>
3386
3387 * replace.el (query-replace-map): Bind four new symbols for
3388 requesting window scrolling.
3389
3390 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
3391 query-replace-map (Bug#8948).
3392
3393 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
3394
3395 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
3396 since they are now in query-replace-map.
3397
3398 * window.el (scroll-other-window-down): Make the arg optional.
3399
3400 2012-09-09 Chong Yidong <cyd@gnu.org>
3401
3402 * files.el (hack-local-variables-confirm): Use quit-window to kill
3403 the *Local Variables* buffer.
3404
3405 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3406
3407 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
3408 not just expect to be at its beginning. Adjust callees.
3409 Succeed when do-end block has no space before the pipe character.
3410 (ruby-brace-to-do-end): When the original block is one-liner,
3411 convert to multiline. Reindent the result.
3412
3413 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
3414
3415 * register.el (register): New group.
3416 (separator-register): New user option.
3417 (increment-register): Route it to `append-to-register', if
3418 register contains text. Implication is that `C-x r +' can now be
3419 used for appending to a text register (bug#12217).
3420 (append-to-register, prepend-to-register): Add separator based on
3421 `separator-register'.
3422
3423 2012-09-08 Alan Mackenzie <acm@muc.de>
3424
3425 AWK Mode: make auto-newline work when there's "==" in the pattern.
3426 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
3427 correctly.
3428 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
3429 Test more rigorously for "=" token.
3430
3431 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3432
3433 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
3434 Only fail when reached LIMIT.
3435
3436 2012-09-08 Chong Yidong <cyd@gnu.org>
3437
3438 * dired.el (dired-mode-map): Don't bind M-=.
3439
3440 * dired-aux.el (dired-diff): Use backup file as default.
3441
3442 2012-09-08 Drew Adams <drew.adams@oracle.com>
3443
3444 * subr.el (add-to-history): Fix delete usage (Bug#12314).
3445
3446 2012-09-08 Chong Yidong <cyd@gnu.org>
3447
3448 * subr.el (syntax-after, syntax-class): Doc fix.
3449
3450 2012-09-08 Martin Rudalics <rudalics@gmx.at>
3451
3452 * window.el (display-buffer-in-previous-window): New buffer
3453 display action function.
3454
3455 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
3456 (debugger-previous-window): New variable.
3457 (debug): Rewrite using display-buffer-in-previous-window,
3458 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
3459
3460 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3461
3462 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
3463
3464 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
3465
3466 * progmodes/python.el (python-shell-send-string):
3467 When default-directory is remote, create temp file on remote
3468 filesystem.
3469 (python-shell-send-file): When file is remote, pass local view of
3470 file paths to remote Python interpreter. (Bug#12340)
3471
3472 2012-09-07 Chong Yidong <cyd@gnu.org>
3473
3474 * window.el (switch-to-buffer): Doc fix (Bug#12181).
3475
3476 * files.el (after-find-file): Don't fail on a read-only buffer if
3477 require-final-newline is `visit' or `visit-save' (Bug#11156).
3478
3479 * subr.el (read-char-choice): Allow quitting via ESC ESC.
3480
3481 * userlock.el (ask-user-about-supersession-threat):
3482 Use read-char-choice (Bug#12093).
3483
3484 2012-09-07 Chong Yidong <cyd@gnu.org>
3485
3486 * subr.el (buffer-narrowed-p): New function.
3487
3488 * ses.el (ses-widen):
3489 * simple.el (count-words--buffer-message):
3490 * net/browse-url.el (browse-url-of-buffer): Use it.
3491
3492 * simple.el (count-words-region): Don't signal an error if there
3493 is a non-nil prefix arg and the mark is not set.
3494
3495 * help.el (describe-key-briefly): Allow the message to be seen
3496 when invoked from the minibuffer (Bug#7014).
3497
3498 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3499
3500 * progmodes/ruby-mode.el (ruby-end-of-defun)
3501 (ruby-beginning-of-defun): Simplify, allow indentation before
3502 block beginning and end keywords.
3503 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
3504 (ruby-end-of-defun): Expect that the point is at the beginning of
3505 the defun.
3506
3507 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
3508
3509 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
3510 (bug#12367).
3511 (cl--make-usage-args): Strip _ from argument names.
3512
3513 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3514
3515 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
3516 obsolete alias speedbar-key-map.
3517 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
3518 (vhdl-index-menu-init): Don't use obsolete variable
3519 font-lock-maximum-size.
3520
3521 2012-09-06 Chong Yidong <cyd@gnu.org>
3522
3523 * frame.el (window-system-version): Mark as obsolete.
3524
3525 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
3526 of obsolete variable speedbar-key-map.
3527
3528 2012-09-06 Juri Linkov <juri@jurta.org>
3529
3530 * replace.el (replace-lax-whitespace): New defcustom.
3531 (query-replace, query-replace-regexp, query-replace-regexp-eval)
3532 (replace-string, replace-regexp): Mention it in docstrings.
3533 (perform-replace, replace-highlight): Let-bind
3534 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
3535 to the values of replace-lax-whitespace and regexp-flag.
3536 Don't let-bind search-whitespace-regexp. (Bug#10885)
3537
3538 * isearch.el (isearch-query-replace): Let-bind
3539 replace-lax-whitespace instead of let-binding
3540 replace-search-function and replace-re-search-function.
3541 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
3542 and isearch-regexp-lax-whitespace to lazy-highlight variables.
3543 (isearch-toggle-symbol): Set isearch-regexp to nil
3544 in isearch-word mode (like in isearch-toggle-word).
3545
3546 2012-09-06 Juri Linkov <juri@jurta.org>
3547
3548 * replace.el (replace-search-function)
3549 (replace-re-search-function): Set default values to nil.
3550 (perform-replace): Let-bind isearch-related variables based on
3551 replace-related values, call `isearch-search-fun' and let-bind
3552 the result to `search-function'. Remove code that sets
3553 `search-function' and `search-string' separately for
3554 `delimited-flag'.
3555 (replace-highlight): Add new argument `delimited-flag' and
3556 rename other arguments to the names used in `perform-replace'.
3557 Let-bind `isearch-word' to the argument `delimited-flag'.
3558 (Bug#10885, bug#10887)
3559
3560 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3561
3562 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
3563 ruby-beginning-of-indent, simplify, allow all keywords to have
3564 indentation before them.
3565 (ruby-beginning-of-indent): Adjust for above. Search until the
3566 found point is not inside a string or comment.
3567 (ruby-font-lock-keywords): Allow symbols to start with "@"
3568 character, give them higher priority than variables.
3569 (ruby-syntax-propertize-function)
3570 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
3571 matchers. Expression expansions are not comments when inside a
3572 string, and there comment syntax status is irrelevant.
3573 (ruby-match-expression-expansion): New function. Check that
3574 expression expansion is inside a string, and it's not escaped.
3575 (ruby-font-lock-keywords): Use it.
3576
3577 2012-09-05 Martin Rudalics <rudalics@gmx.at>
3578
3579 * help.el (temp-buffer-max-height): New default value.
3580 (temp-buffer-resize-frames): New option.
3581 (resize-temp-buffer-window): Optionally resize frame.
3582
3583 * window.el (fit-frame-to-buffer-bottom-margin): New option.
3584 (fit-frame-to-buffer): New function.
3585
3586 2012-09-05 Glenn Morris <rgm@gnu.org>
3587
3588 * emulation/cua-rect.el (cua--init-rectangles):
3589 * textmodes/picture.el (picture-mode-map):
3590 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
3591 like forward-char and backward-char. (Bug#12317)
3592
3593 2012-09-05 Leo Liu <sdl.web@gmail.com>
3594
3595 * progmodes/flymake.el (flymake-warning-re): New variable.
3596 (flymake-parse-line): Use it.
3597
3598 2012-09-05 Glenn Morris <rgm@gnu.org>
3599
3600 * calendar/holidays.el (holiday-christian-holidays):
3601 Rename an entry. (Bug#12289)
3602
3603 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
3604
3605 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
3606 (bug#12222).
3607
3608 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
3609
3610 * loadup.el: Load macroexp. Remove hack.
3611 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
3612 (macroexp--expand-all): Use it to get better warnings.
3613 (macroexp--backtrace, macroexp--trim-backtrace-frame)
3614 (internal-macroexpand-for-load): New functions.
3615 (macroexp--pending-eager-loads): New var.
3616 (emacs-startup-hook): New hack to replace one in loadup.el.
3617 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
3618 (cl--compiler-macro-cXXr): Move to top, before they can be used.
3619 (cl-psetf): Simplify.
3620 (cl-defstruct): Add indent rule.
3621
3622 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
3623
3624 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
3625 over `user-mail-address' for the SMTP MAIL FROM envelope.
3626 (smtpmail-via-smtp): Ditto.
3627
3628 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
3629
3630 * progmodes/ruby-mode.el: Clean up keybindings.
3631 (ruby-mode-map): Don't bind ruby-electric-brace,
3632 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
3633 backward-kill-word, reindent-then-newline-and-indent.
3634 (ruby-mark-defun): Remove.
3635 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
3636 (ruby-mode): Set local beginning-of-defun-function and
3637 end-of-defun-function values.
3638
3639 2012-09-03 Martin Rudalics <rudalics@gmx.at>
3640
3641 * window.el (temp-buffer-window-setup-hook)
3642 (temp-buffer-window-show-hook): New hooks.
3643 (temp-buffer-window-setup, temp-buffer-window-show)
3644 (with-temp-buffer-window): New functions.
3645 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
3646 (special-display-popup-frame): Make sure the window used shows BUFFER.
3647
3648 * help.el (temp-buffer-resize-mode): Fix doc-string.
3649 (resize-temp-buffer-window): New optional argument WINDOW.
3650
3651 * files.el (recover-file, save-buffers-kill-emacs):
3652 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
3653
3654 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
3655
3656 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
3657 remote definition of `default-directory', ensure we can connect.
3658
3659 2012-09-02 Juri Linkov <juri@jurta.org>
3660
3661 Toggle whitespace matching mode with M-s SPC.
3662 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
3663
3664 * isearch.el (search-whitespace-regexp): Doc fix.
3665 Remove cons cell customization.
3666 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
3667 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
3668 New variables.
3669 (isearch-forward, isearch-forward-regexp): Doc fix.
3670 (isearch-toggle-lax-whitespace): New command.
3671 (search-forward-lax-whitespace, search-backward-lax-whitespace)
3672 (re-search-forward-lax-whitespace)
3673 (re-search-backward-lax-whitespace): New functions.
3674 (isearch-whitespace-regexp): Remove function.
3675 (isearch-query-replace): Let-bind replace-search-function and
3676 replace-re-search-function.
3677 (isearch-occur): Let-bind search-spaces-regexp according to the
3678 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
3679 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
3680 condition for C-q SPC.
3681 (isearch-search-fun-default): Use new functions mentioned above.
3682 (isearch-search-forward, isearch-search-backward): Remove functions.
3683 (isearch-search): Don't let-bind search-spaces-regexp.
3684 (isearch-lazy-highlight-space-regexp): Remove variable.
3685 (isearch-lazy-highlight-lax-whitespace)
3686 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
3687 (isearch-lazy-highlight-new-loop): Use them.
3688 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
3689
3690 2012-09-02 Chong Yidong <cyd@gnu.org>
3691
3692 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
3693
3694 2012-09-02 Glenn Morris <rgm@gnu.org>
3695
3696 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
3697
3698 2012-09-01 Glenn Morris <rgm@gnu.org>
3699
3700 * term.el: Tidy up menu definitions.
3701 (term-mode-map): Use easymenu for In/Out, Complete menus.
3702 (term-pager-break-map): Initialize in the defvar.
3703 (term-terminal-menu, term-signals-menu): Define with easymenu.
3704 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
3705 (term-pager-menu): New, extracted from term-process-pager.
3706 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
3707 (term-update-mode-line): Propertize line/char and page items.
3708 (term-process-pager): Move keymap initialization elsewhere.
3709
3710 2012-09-01 Martin Rudalics <rudalics@gmx.at>
3711
3712 * window.el (switch-to-prev-buffer): Handle additional values of
3713 BURY-OR-KILL argument. Don't switch in minibuffer window.
3714 (switch-to-next-buffer): Don't switch in minibuffer window.
3715 (quit-restore-window): New function based on quit-window.
3716 Handle additional values of former KILL argument.
3717 (quit-window): Call quit-restore-window with appropriate
3718 interpretation of KILL argument.
3719 (display-buffer-below-selected): New buffer display action
3720 function.
3721
3722 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3723
3724 * minibuffer.el (completion-at-point-functions): Complete docstring
3725 (bug#12254).
3726
3727 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
3728
3729 Better seed support for (random).
3730 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
3731 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
3732 * play/mpuz.el, play/tetris.el, play/zone.el:
3733 * calc/calc-comb.el (math-init-random-base):
3734 * play/blackbox.el (bb-init-board):
3735 * play/life.el (life):
3736 * server.el (server-use-tcp):
3737 * type-break.el (type-break):
3738 Remove unnecessary call to (random t).
3739 * net/sasl.el (sasl-unique-id-function):
3740 Change (random t) to (random), now that the latter is more random.
3741 * play/life.el (life-initialized): Remove no-longer-needed var.
3742
3743 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
3744
3745 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
3746 Consider frame's buffer predicate when choosing the buffer.
3747 (Bug#12081)
3748
3749 2012-08-30 Richard Stallman <rms@gnu.org>
3750
3751 * simple.el (special-mode-map): Delete binding for `z'.
3752
3753 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
3754
3755 * progmodes/compile.el (compilation-always-kill): Doc fix.
3756
3757 2012-08-30 Chong Yidong <cyd@gnu.org>
3758
3759 * window.el (display-buffer-reuse-frames): Make the obsolescence
3760 message more informative.
3761
3762 2012-08-30 Glenn Morris <rgm@gnu.org>
3763
3764 * paren.el (show-paren-delay):
3765 Add a :set function. Doc fix. (Bug#12297)
3766
3767 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
3768
3769 * progmodes/compile.el (compilation-always-kill): New var.
3770 (compilation-start): Use it.
3771
3772 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
3773
3774 * simple.el (read-only-mode): Move from files.el for bootstrapping.
3775 * files.el (read-only-mode): Move to simple.el.
3776
3777 * files.el (read-only-mode): New minor mode.
3778 (toggle-read-only): Use it and mark obsolete.
3779 (find-file--read-only):
3780 * vc/vc.el (vc-next-action, vc-checkout):
3781 * vc/vc-cvs.el (vc-cvs-checkout):
3782 * obsolete/vc-mcvs.el (vc-mcvs-update):
3783 * ffap.el (ffap--toggle-read-only): Update callers.
3784
3785 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
3786
3787 * eshell/esh-ext.el (eshell-external-command): Do not examine
3788 remote shell scripts.
3789 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
3790
3791 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
3792 "/usr/local/sbin".
3793
3794 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3795
3796 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
3797
3798 2012-08-28 Leo Liu <sdl.web@gmail.com>
3799
3800 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
3801 completion-at-point. (Bug#12220)
3802
3803 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
3804
3805 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
3806
3807 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3808
3809 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
3810 be buffer-local; add delete-trailing-whitespace (bug#12259).
3811
3812 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
3813
3814 * progmodes/hideif.el (hif-compress-define-list):
3815 Fix typo. (Bug#11951)
3816
3817 2012-08-28 Dan Nicolaescu <dann@gnu.org>
3818
3819 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
3820 buffer local setting.
3821
3822 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
3823 rcirc-encode-coding-system.
3824
3825 2012-08-28 Leo Liu <sdl.web@gmail.com>
3826
3827 * net/rcirc.el (rcirc-split-message): New function.
3828 (rcirc-send-message): Use it. (Bug#12051)
3829
3830 2012-08-28 Juri Linkov <juri@jurta.org>
3831
3832 * info.el (Info-fontify-node): Hide empty lines at the end of
3833 the node. (Bug#12272)
3834
3835 2012-08-27 Drew Adams <drew.adams@oracle.com>
3836
3837 * dired.el (dired-pop-to-buffer): Make window start at beginning
3838 of buffer (Bug#12281).
3839
3840 2012-08-26 Chong Yidong <cyd@gnu.org>
3841
3842 * window.el (special-display-regexps, special-display-frame-alist)
3843 (special-display-buffer-names, special-display-function)
3844 (display-buffer-reuse-frames): Mark as obsolete.
3845
3846 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
3847
3848 * help.el (help-print-return-message): Don't treat
3849 display-buffer-reuse-frames specially.
3850
3851 2012-08-26 Chong Yidong <cyd@gnu.org>
3852
3853 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
3854 New variable, replacing gdb-frame-parameters.
3855 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
3856 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
3857 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
3858 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
3859 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
3860 the functions directly with gdb-display-buffer-other-frame-action.
3861 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
3862 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
3863 (gdb-display-stack-buffer, gdb-display-locals-buffer)
3864 (gdb-display-registers-buffer): Define directly.
3865 (def-gdb-display-buffer): Macro deleted.
3866 (gdb-display-buffer): Remove second and third args, callers don't
3867 use them. Defer to the default display-buffer behavior, apart
3868 from making windows dedicated.
3869 (gdb-setup-windows): Don't call display-buffer unnecessarily.
3870
3871 * progmodes/gud.el (gud-display-line): Just use display-buffer.
3872
3873 * window.el (display-buffer-pop-up-frame): Handle a
3874 pop-up-frame-parameters alist entry.
3875 (display-buffer): Document it.
3876
3877 2012-08-26 Chong Yidong <cyd@gnu.org>
3878
3879 * isearch.el (search-whitespace-regexp): Make string and nil
3880 values apply to both ordinary and regexp search. Allow a cons
3881 cell value to distinguish between the two.
3882 (isearch-whitespace-regexp, isearch-search-forward)
3883 (isearch-search-backward): New functions.
3884 (isearch-occur, isearch-search-fun-default, isearch-search)
3885 (isearch-lazy-highlight-new-loop): Use them.
3886 (isearch-forward, isearch-forward-regexp): Doc fix.
3887
3888 2012-08-26 Chong Yidong <cyd@gnu.org>
3889
3890 * faces.el (help-argument-name): Always inherit from italic
3891 (Bug#12213).
3892
3893 2012-08-25 Martin Rudalics <rudalics@gmx.at>
3894
3895 * window.el (window--even-window-heights): Even heights when
3896 WINDOW and the selected window form a vertical combination.
3897 (display-buffer-use-some-window): Provide that window used gets
3898 sized back by quit-window. (Bug#11880) and (Bug#12091)
3899
3900 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
3901
3902 Fix file time stamp problem with bzr and CVS (Bug#12001).
3903 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
3904 in the file's time stamp, since the version control system loses
3905 that information.
3906
3907 2012-08-22 Juri Linkov <juri@jurta.org>
3908
3909 * info.el (Info-fontify-node): Hide the suffix of the
3910 Info file name in the header line. (Bug#12187)
3911
3912 2012-08-22 Glenn Morris <rgm@gnu.org>
3913
3914 * calendar/cal-tex.el (cal-tex-weekly-common):
3915 Restore leading blank page.
3916
3917 2012-08-22 Le Wang <l26wang@gmail.com> (tiny change)
3918
3919 * misc.el (forward-to-word, backward-to-word): Activate or extend
3920 the region under `shift-select-mode'. (Bug#12231)
3921
3922 2012-08-22 Bastien Guerry <bzg@gnu.org>
3923
3924 * progmodes/executable.el (executable-prefix): Set to "#!" instead
3925 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
3926 gives details on why the space is never needed.
3927
3928 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3929
3930 * window.el (walk-window-tree, window-with-parameter):
3931 New optional argument MINIBUF to control whether these functions
3932 should run on the minibuffer window.
3933 (window-at-side-list): Don't operate on minibuffer window.
3934 (window-in-direction): Simplify and rewrite doc-string.
3935 (window--size-ignore): Rename to window--size-ignore-p.
3936 Update callers.
3937 (display-buffer-in-atom-window, window--major-non-side-window)
3938 (window--major-side-window, display-buffer-in-major-side-window)
3939 (delete-side-window, display-buffer-in-side-window):
3940 New functions.
3941 (window--side-check, window-deletable-p, delete-window)
3942 (delete-other-windows, split-window): Handle side windows and
3943 atomic windows appropriately.
3944 (window--display-buffer): Call display-buffer-record-window also
3945 when the window buffer did not change.
3946
3947 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
3948
3949 * help-fns.el (help-fns--key-bindings):
3950 Abbreviate non-symbol remap targets. (Bug#12174)
3951
3952 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3953
3954 * dired.el (dired-mark-remembered): Don't clobber point.
3955 (Bug#11795)
3956
3957 2012-08-22 Glenn Morris <rgm@gnu.org>
3958
3959 * progmodes/bug-reference.el (bug-reference): New custom group.
3960 (bug-reference-bug-regexp): Make it a defcustom.
3961
3962 2012-08-22 Daiki Ueno <ueno@unixuser.org>
3963
3964 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
3965 (js-paren-indent-offset, js-square-indent-offset)
3966 (js-curly-indent-offset): Add :safe (Bug#12257).
3967
3968 2012-08-22 Edward O'Connor <hober0@gmail.com>
3969
3970 * json.el (json-key-format): Add error properties.
3971 (json-encode-key): New function.
3972 (json-encode-hash-table, json-encode-alist, json-encode-plist):
3973 Use json-encode-key.
3974
3975 2012-08-22 Glenn Morris <rgm@gnu.org>
3976
3977 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
3978 (cal-tex-leftday, cal-tex-rightday): Remove functions.
3979 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
3980 Update for above change.
3981
3982 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
3983
3984 * cus-face.el (custom-face-attributes): Fix customize type for the
3985 :underline attribute. (Bug#11805)
3986
3987 2012-08-21 Martin Rudalics <rudalics@gmx.at>
3988
3989 * window.el (window-point-1, set-window-point-1): Remove.
3990 (window-in-direction, record-window-buffer)
3991 (set-window-buffer-start-and-point, split-window-below)
3992 (window--state-get-1, display-buffer-record-window):
3993 Replace calls to window-point-1 and set-window-point-1 by calls to
3994 window-point and set-window-point respectively.
3995
3996 2012-08-21 Glenn Morris <rgm@gnu.org>
3997
3998 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
3999 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
4000 Use it.
4001
4002 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
4003 (cal-tex-shortday): New function.
4004 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
4005 (cal-tex-cursor-filofax-daily): Use the above.
4006
4007 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
4008 New functions.
4009 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
4010 (cal-tex-cursor-filofax-week): Use them.
4011
4012 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
4013 New constants.
4014 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
4015 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
4016
4017 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
4018 (cal-tex-end-document): Don't rely on buffer name.
4019
4020 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
4021 Use cal-tex-vspace.
4022 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
4023 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
4024 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
4025 Use cal-tex-arg.
4026
4027 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
4028 (cal-tex-cursor-week, cal-tex-cursor-week2)
4029 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
4030 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
4031 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
4032 (cal-tex-insert-preamble, cal-tex-b-document)
4033 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
4034 Improve cal-tex-cmd usage.
4035
4036 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
4037 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
4038 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
4039 (cal-tex-weekly-paper): New function.
4040 (cal-tex-cursor-week, cal-tex-cursor-week2)
4041 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
4042 (cal-tex-cursor-day): Use it.
4043
4044 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
4045 (cal-tex-cursor-filofax-week): Remove leading blank page.
4046
4047 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
4048 Add autoload cookie. For now at least, don't use color, since
4049 no other cal-tex function does.
4050
4051 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
4052 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
4053 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
4054
4055 2012-08-21 Juri Linkov <juri@jurta.org>
4056
4057 * info.el (Info-file-attributes): New variable.
4058 (info-insert-file-contents): Add file attributes to
4059 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
4060 `Info-toc-nodes' when previous modtime of the Info file is less
4061 than new modtime.
4062 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
4063 of info.el. (Bug#12230)
4064
4065 2012-08-20 Glenn Morris <rgm@gnu.org>
4066
4067 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
4068 * calendar/holidays.el (calendar-holiday-list):
4069 Report errors with display-warning rather than beep'n'sleep.
4070
4071 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
4072
4073 * net/tramp.el (tramp-accept-process-output): Accept only output
4074 from PROC. Otherwise, process filters and sentinels might be
4075 confused. (Bug#12145)
4076
4077 2012-08-20 Chong Yidong <cyd@gnu.org>
4078
4079 * descr-text.el (describe-text-properties-1): Use overlays-in to
4080 report on empty overlays (Bug#3322).
4081
4082 2012-08-20 Glenn Morris <rgm@gnu.org>
4083
4084 * mail/rmailout.el (rmail-output-read-file-name):
4085 Trap and report errors in rmail-output-file-alist elements.
4086
4087 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
4088 since most non-font-lock faces are not also variables).
4089
4090 2012-08-20 Edward Reingold <reingold@iit.edu>
4091
4092 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
4093 New function. (Bug12160)
4094
4095 2012-08-19 Glenn Morris <rgm@gnu.org>
4096
4097 * mail/rmailout.el (rmail-output-read-file-name):
4098 Fix previous change (when the alist is nil or does not match).
4099
4100 2012-08-19 Chong Yidong <cyd@gnu.org>
4101
4102 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
4103 (Bug#12228).
4104
4105 2012-08-18 Chong Yidong <cyd@gnu.org>
4106
4107 * simple.el (yank-handled-properties): New defcustom.
4108 (yank-excluded-properties): Add font-lock-face and category.
4109 (yank): Doc fix.
4110
4111 * subr.el (remove-yank-excluded-properties):
4112 Obey yank-handled-properties. The special handling of font-lock-face
4113 and category is now done this way, instead of being hard-coded.
4114 (insert-for-yank-1): Remove font-lock-face handling.
4115 (yank-handle-font-lock-face-property)
4116 (yank-handle-category-property): New function.
4117
4118 2012-08-17 Glenn Morris <rgm@gnu.org>
4119
4120 * mail/rmailout.el (rmail-output-read-file-name):
4121 Check rmail-output-file-alist against the full message body
4122 in the correct rmail buffer. (Bug#12214)
4123
4124 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
4125
4126 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
4127 Eliminate superfluous prompt. (Bug#12203)
4128
4129 2012-08-17 Chong Yidong <cyd@gnu.org>
4130
4131 * mouse.el (mouse-appearance-menu): If x-select-font returns a
4132 font spec, set the font directly (Bug#3228).
4133
4134 2012-08-17 Martin Rudalics <rudalics@gmx.at>
4135
4136 * window.el (delete-window): Fix last fix.
4137
4138 2012-08-16 Martin Rudalics <rudalics@gmx.at>
4139
4140 * window.el (window-valid-p): Move to window.c.
4141 (window-child, window-child-count, window-last-child)
4142 (window-normalize-window, window-combined-p)
4143 (window-combinations, window-atom-root, window-min-size)
4144 (window-sizable, window-sizable-p, window-size-fixed-p)
4145 (window-min-delta, window-max-delta, window--resizable)
4146 (window--resizable-p, window-resizable, window-total-size)
4147 (window-full-height-p, window-full-width-p, window-body-size)
4148 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
4149 (minimize-window, window-deletable-p, delete-window)
4150 (delete-other-windows, set-window-buffer-start-and-point)
4151 (next-buffer, previous-buffer, split-window, balance-windows-2)
4152 (set-window-text-height, window-buffer-height)
4153 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
4154 (truncated-partial-width-window-p): Minor code adjustments.
4155 In doc-strings state whether the argument window has to denote a
4156 live, valid or any window.
4157
4158 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
4159
4160 * progmodes/subword.el (subword-forward-function)
4161 (subword-backward-function, subword-forward-regexp)
4162 (subword-backward-regexp): New variables.
4163 (subword-forward, subword-forward-internal, subword-backward-internal):
4164 Use new variables, eg so that different "word" definitions
4165 can be easily used. (Bug#11411)
4166
4167 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
4168
4169 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
4170 for composite selectors.
4171 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
4172 operation just because we can't find a previous revision.
4173
4174 2012-08-15 Chong Yidong <cyd@gnu.org>
4175
4176 * frame.el (set-frame-font): Accept font objects.
4177
4178 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
4179
4180 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
4181
4182 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
4183
4184 * man.el (Man-overstrike-face, Man-underline-face)
4185 (Man-reverse-face): Remove variables.
4186 (Man-overstrike, Man-underline, Man-reverse): New faces.
4187 (Man-fontify-manpage): Use them instead of the variables.
4188 (Man-cleanup-manpage): Comment change.
4189 (Man-ansi-color-map): New variable.
4190 (Man-fontify-manpage): Use it.
4191 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
4192
4193 Implement ANSI SGR parameters 22-27 (bug#12146).
4194 * ansi-color.el (ansi-colors): Doc fix.
4195 (ansi-color-context, ansi-color-context-region): Doc fix.
4196 (ansi-color--find-face): New function.
4197 (ansi-color-apply, ansi-color-apply-on-region): Use it.
4198 Rename the local variable `face' to `codes' since it is now a list of
4199 ansi codes. Doc fix.
4200 (ansi-color-get-face): Remove.
4201 (ansi-color-parse-sequence): New function, derived from
4202 ansi-color-get-face.
4203 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
4204 codes 22-27.
4205
4206 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
4207
4208 * subr.el (read-passwd): Allow use from a minibuffer.
4209
4210 2012-08-14 Eli Zaretskii <eliz@gnu.org>
4211
4212 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
4213 inside comments and strings as identifiers.
4214
4215 * progmodes/gud.el (gud-tooltip-print-command): Quote the
4216 expression to evaluate. This allows to evaluate expressions with
4217 embedded whitespace.
4218 (gud-tooltip-tips): Add a blank before the newline in the
4219 message-box text, for the benefit of message-box emulation on
4220 MS-Windows.
4221
4222 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
4223 messages from GDB, pop them up in a tooltip to give feedback to
4224 user.
4225 (gdb-tooltip-print-1): Quote the expression to evaluate.
4226 This allows to evaluate expressions with embedded whitespace.
4227 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
4228 if the TTY name is nil or empty (which happens when communicating
4229 with the inferior via pipes, e.g. on MS-Windows).
4230 (gdb-internals): If GDB sends a "&\n" empty debugging message,
4231 don't send that to the GUD buffer.
4232
4233 2012-08-14 Glenn Morris <rgm@gnu.org>
4234
4235 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
4236 Optimize away setq-default with no args, as for setq. (Bug#12195)
4237
4238 2012-08-14 Chong Yidong <cyd@gnu.org>
4239
4240 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
4241
4242 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
4243 (Bug#12085).
4244
4245 2012-08-14 Glenn Morris <rgm@gnu.org>
4246
4247 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
4248
4249 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
4250
4251 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
4252 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4253 Use cached shell name.
4254
4255 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4256
4257 * progmodes/python.el (python-shell-send-string):
4258 (python-shell-send-setup-code): Do not use `format' with `message'.
4259
4260 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
4261
4262 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
4263 (ruby-percent-literal-beg-re): New constant.
4264 (ruby-syntax-general-delimiters-goto-beg): Rename to
4265 `ruby-syntax-enclosing-percent-literal', improve literal type check.
4266 (ruby-syntax-propertize-general-delimiters): Rename to
4267 `ruby-syntax-propertize-percent-literal', it's a shorter and more
4268 popular term. Adjust comments everywhere.
4269 (ruby-syntax-propertize-percent-literal): Only propertize when not
4270 inside a simple string or comment. When the literal is unclosed,
4271 leave the text after it unpropertized.
4272 (ruby-syntax-methods-before-regexp): New constant.
4273 (ruby-syntax-propertize-function): Use it to recognize regexps.
4274 Don't look at the text after regexp, just use the whitelist.
4275
4276 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
4277
4278 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
4279 non-nil always load the compiled file if it exists. (Bug#12197)
4280
4281 2012-08-14 Chong Yidong <cyd@gnu.org>
4282
4283 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
4284 (hi-lock-set-pattern): When deciding whether to use font lock or
4285 overlays, look at font-lock-mode instead of font-lock-fontified
4286 (Bug#12168).
4287 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
4288 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
4289
4290 2012-08-14 Daiki Ueno <ueno@unixuser.org>
4291
4292 * subr.el (internal--after-with-selected-window): Fix typo
4293 (Bug#12193).
4294
4295 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4296
4297 Use `completion-table-dynamic' for completion functions.
4298 * progmodes/python.el
4299 (python-shell-completion--do-completion-at-point)
4300 (python-shell-completion--get-completions):
4301 Remove functions.
4302 (python-shell-completion-complete-at-point): New function.
4303 (python-completion-complete-at-point): Use it.
4304
4305 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
4306
4307 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
4308 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
4309
4310 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
4311
4312 * subr.el (function-get): Refine `autoload' arg so it can also
4313 autoload functions for gv.el (bug#12191).
4314 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
4315 autoloads macros.
4316
4317 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
4318 Prefer pcase-let over destructuring-bind.
4319 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
4320 Also, remove whitespace as we go, rather than after accumulating the
4321 various places.
4322
4323 * subr.el (internal--before-with-selected-window)
4324 (internal--after-with-selected-window): Fix typo seleted->selected.
4325 (with-selected-window): Adjust callers.
4326 Reported by Dmitry Gutov <dgutov@yandex.ru>.
4327
4328 2012-08-13 Bastien Guerry <bzg@gnu.org>
4329
4330 * window.el (special-display-popup-frame): Minor docstring
4331 enhancement. (Bug#12172)
4332
4333 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
4334
4335 * tar-mode.el (tar-header-data-end): Only ignore size for files of
4336 type 1-6.
4337 (tar-header-block-summarize, tar-get-descriptor): Handle pax
4338 extended headers.
4339
4340 * files.el (hack-local-variables-filter): Remove useless eval.
4341
4342 2012-08-13 Martin Rudalics <rudalics@gmx.at>
4343
4344 * subr.el (with-selected-window): Fix last change.
4345
4346 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4347
4348 * subr.el (internal--before-with-seleted-window)
4349 (internal--after-with-seleted-window): New functions.
4350 (with-selected-window): Use them, to replace dependency on
4351 tty-top-frame.
4352
4353 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
4354
4355 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
4356 binding for `newline'.
4357 (ruby-move-to-block): When moving backward, stop at block opening,
4358 not indentation.
4359 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
4360 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
4361 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
4362 `ruby-toggle-block'.
4363
4364 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4365
4366 * ibuffer.el (ibuffer-do-toggle-read-only):
4367 * dired.el (dired-toggle-read-only):
4368 * buff-menu.el (Buffer-menu-toggle-read-only):
4369 * bindings.el (mode-line-toggle-read-only):
4370 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
4371
4372 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
4373
4374 * descr-text.el (describe-char): Put the overlays over the
4375 "displayed as" character.
4376
4377 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
4378
4379 * calc/calc-units.el (math-default-units-table): Give an
4380 initial value.
4381 (math-put-default-units): Add options to put composite units and
4382 unit systems in the default units table.
4383 (calc-convert-units): Send composite units to
4384 `math-put-default-units' when appropriate.
4385
4386 2012-08-11 Glenn Morris <rgm@gnu.org>
4387
4388 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
4389
4390 * tutorial.el (help-with-tutorial):
4391 * emacs-lisp/copyright.el (copyright-update-directory):
4392 * emacs-lisp/autoload.el (autoload-find-generated-file)
4393 (autoload-find-file): Disable local eval: (for insurance).
4394
4395 * files.el (hack-local-variables-filter): If an eval: form is not
4396 known to be safe, and enable-local-variables is :safe, then ignore
4397 the form totally, as is done for non-eval forms. (Bug#12155)
4398 This is CVE-2012-3479.
4399
4400 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4401
4402 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
4403 (rx-form): Simplify.
4404
4405 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
4406
4407 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
4408 ?, _, and : are symbol constituents, ! is not (but kinda should be).
4409 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
4410 (ruby-syntax-propertize-function): Adjust for changes in
4411 `ruby-syntax-propertize-heredoc'.
4412
4413 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
4414
4415 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
4416 binding (use `M-;' instead).
4417 (ruby-singleton-class-p): New function.
4418 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
4419
4420 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4421
4422 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
4423
4424 2012-08-10 Chong Yidong <cyd@gnu.org>
4425
4426 * progmodes/python.el (python-shell-get-process-name): Don't mess
4427 with same-window-buffer-names.
4428
4429 * eshell/eshell.el (eshell-add-to-window-buffer-names)
4430 (eshell-remove-from-window-buffer-names): Make obsolete.
4431 (eshell-buffer-name, eshell-unload-hook): Don't use them.
4432 (eshell): Just use pop-to-buffer-same-window instead.
4433
4434 2012-08-10 Chong Yidong <cyd@gnu.org>
4435
4436 * bindings.el: Bind M-= back to count-words-region.
4437
4438 * simple.el (count-words-region): Accept a prefix arg for acting
4439 on the entire buffer.
4440 (count-words--buffer-message): New helper function.
4441
4442 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4443
4444 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
4445 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
4446 (event-start, event-end): Use posn-at-point to return a more
4447 informative posn.
4448 (posnp): New function.
4449 * mouse.el (popup-menu-normalize-position): Use it.
4450
4451 2012-08-10 Masatake YAMATO <yamato@redhat.com>
4452
4453 * mouse.el (popup-menu-normalize-position): New function.
4454 (popup-menu): Use `popup-menu-normalize-position' to normalize
4455 the form for POSITION argument.
4456
4457 * term/x-win.el (x-menu-bar-open):
4458 Use the value returend from (posn-at-point) as position
4459 passed to `popup-menu'.
4460
4461 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4462
4463 * calc/calccomp.el (math-compose-expr): Add extra argument
4464 indicating that parentheses should be put around products in
4465 denominators. Give multiplication precedence over division during
4466 composition.
4467
4468 2012-08-09 Chong Yidong <cyd@gnu.org>
4469
4470 * man.el (Man-switches, Man-sed-command, Man-awk-command)
4471 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
4472 (Man-untabify-command, manual-program): Convert to defcustom
4473 (Bug#10429).
4474
4475 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
4476
4477 * descr-text.el (describe-char): Don't insert extra newlines
4478 (Bug#10127).
4479
4480 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
4481 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
4482
4483 * align.el (align-region): Delete temporary markers (Bug#10047).
4484 Plus some code cleanups.
4485
4486 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4487
4488 * progmodes/python.el (python-pdbtrack-tracked-buffer)
4489 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
4490 (python-shell-internal-last-output): Use make-local-variable
4491 instead of make-variable-buffer-local.
4492
4493 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4494
4495 * progmodes/python.el: Enhancements to forward-sexp.
4496 (python-nav-forward-sexp): Rename from
4497 python-nav-forward-sexp-function.
4498 (python-nav--forward-sexp, python-nav--backward-sexp):
4499 New functions.
4500
4501 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4502
4503 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
4504 modes and simplification modes.
4505
4506 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
4507
4508 * delsel.el (delete-selection-pre-hook): Don't propagate the
4509 file-supersession signals (bug#12161).
4510
4511 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4512
4513 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
4514 (cl-map-extents): Add compatibility aliases (bug#12135).
4515
4516 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
4517
4518 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
4519 tests by `ignore-error'.
4520 (tramp-find-shell): Open also a new shell, when cache is already
4521 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
4522
4523 2012-08-08 Juri Linkov <juri@jurta.org>
4524
4525 * bookmark.el: Add `defaults' property to the bookmark record.
4526 (bookmark-current-buffer): Doc fix.
4527 (bookmark-make-record): Add `defaults' property with default values
4528 to the bookmark record.
4529 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
4530 with `bookmark-insert-current-bookmark'.
4531 (bookmark-set): Get `defaults' property from the bookmark record
4532 and use it in `read-from-minibuffer'.
4533 (bookmark-insert-current-bookmark): Remove function.
4534
4535 * info.el (Info-bookmark-make-record): Add `defaults' property
4536 with values of canonical Info node name, the current Info file
4537 name and the current Info node name. (Bug#12107)
4538
4539 2012-08-08 Juri Linkov <juri@jurta.org>
4540
4541 * files.el (basic-save-buffer): Use `buffer-name' as the default
4542 of `read-file-name' when buffer is not visiting a file (bug#12128).
4543
4544 2012-08-08 Juri Linkov <juri@jurta.org>
4545
4546 * info.el (Info-isearch-search): Doc fix.
4547 (Info-search): Change search-failed message from "initial node" to
4548 "end of node" (bug#12078).
4549 (Info-isearch-search): Change `isearch-string-state' to
4550 `isearch--state-string'.
4551
4552 2012-08-08 Glenn Morris <rgm@gnu.org>
4553
4554 * language/persian.el: Remove file.
4555 * language/misc-lang.el: Move unique part of persian.el here.
4556 * loadup.el: Remove language/persian.
4557
4558 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
4559
4560 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
4561
4562 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
4563
4564 * progmodes/python.el Fixed defsubst warning.
4565 (python-syntax-context) Rename from python-info-ppss-context.
4566 (python-syntax-context-type): Rename from
4567 python-info-ppss-context-type.
4568 (python-syntax-comment-or-string-p): Rename from
4569 python-info-ppss-comment-or-string-p.
4570
4571 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
4572
4573 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
4574
4575 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
4576
4577 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
4578 a defcustom that is quoted with backquote.
4579
4580 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
4581 Fix handling of interactive spec when the body uses return.
4582 (math-do-arg-check, math-define-function-body): Use backquote forms.
4583 * calc/calc-ext.el (math-defcache): Likewise.
4584 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
4585 * allout.el (allout-new-exposure): Likewise.
4586 * calc/calcalg2.el (math-tracing-integral): Likewise.
4587 * info.el (Info-last-menu-item): Likewise.
4588 * emulation/vip.el (vip-loop): Likewise.
4589 * textmodes/artist.el (artist-funcall): Likewise.
4590 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
4591 Construct menu-item directly.
4592
4593 * progmodes/autoconf.el (font-lock-syntactic-keywords):
4594 Don't declare.
4595
4596 2012-08-07 Chong Yidong <cyd@gnu.org>
4597
4598 * simple.el (deactivate-mark): Preserve text properties when
4599 saving the primary selection (Bug#8384).
4600
4601 2012-08-07 Kevin Ryde <user42@zip.com.au>
4602
4603 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
4604 (woman-parse-numeric-value): On a bad .IP line, issue a warning
4605 and continue processing (Bug#12110).
4606
4607 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4608
4609 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
4610 syntax-propertize-function (bug#10095).
4611
4612 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4613
4614 * help-fns.el (help-fns--key-bindings, help-fns--signature)
4615 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
4616 describe-function-1.
4617 (describe-function-1): Use them. Move compiler macro after sig.
4618 (help-fns--compiler-macro): Use function-get. Assume we're already in
4619 standard-output. Adjust layout to new call order.
4620
4621 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
4622 re-binding a symbol that has a symbol-macro (bug#12119).
4623
4624 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
4625
4626 * language/persian.el: New file. (Bug#11812)
4627 * loadup.el: Add language/persian.el.
4628
4629 2012-08-06 Chong Yidong <cyd@gnu.org>
4630
4631 * window.el (window--maybe-raise-frame): New function.
4632 (window--display-buffer): Split off from here.
4633 (display-buffer-reuse-window, display-buffer-pop-up-frame)
4634 (display-buffer-pop-up-window, display-buffer-use-some-window):
4635 Obey an inhibit-switch-frame action alist entry.
4636 (display-buffer): Update doc.
4637
4638 * replace.el (occur-after-change-function): Avoid losing focus by
4639 using the inhibit-switch-frame display parameter (Bug#12139).
4640
4641 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
4642
4643 Make internal shell process buffer names start with space.
4644 * progmodes/python.el (python-shell-make-comint): Add optional
4645 argument INTERNAL.
4646 (run-python-internal): Use it.
4647 (python-shell-internal-get-or-create-process): Check for new
4648 internal buffer names.
4649
4650 2012-08-06 Glenn Morris <rgm@gnu.org>
4651
4652 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
4653 Do less getting and setting of environment variables.
4654
4655 2012-08-05 Chong Yidong <cyd@gnu.org>
4656
4657 * proced.el (proced): Add substitution string to docstring to
4658 trigger autoloading of the proced library on C-h f (Bug#1768).
4659
4660 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
4661 Don't show defvars which have no second argument (Bug#8638).
4662
4663 * imenu.el (imenu-generic-expression): Move documentation here
4664 from imenu--generic-function.
4665 (imenu--generic-function): Refer to imenu-generic-expression.
4666
4667 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
4668
4669 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
4670 indentation declaration.
4671 (viper-loop): Add indentation declaration (Bug#7025).
4672
4673 2012-08-05 Chong Yidong <cyd@gnu.org>
4674
4675 * help-fns.el (describe-variable): Add hyperlink for
4676 directory-local variables files. Improve buffer-local and
4677 permanent-local reporting; suggested by MON KEY (Bug#6644).
4678
4679 * help-mode.el (help-dir-local-var-def): New button type.
4680
4681 * files.el (kill-buffer-hook): Provide a defvar.
4682
4683 2012-08-05 Glenn Morris <rgm@gnu.org>
4684
4685 * eshell/esh-ext.el (eshell/addpath):
4686 Also update eshell-path-env. (Bug#12013)
4687
4688 2012-08-05 Chong Yidong <cyd@gnu.org>
4689
4690 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
4691
4692 * fringe.el (fringe-styles): Add docstring.
4693 (fringe--check-mode): New function.
4694 (set-fringe-mode, set-fringe-style): Use it.
4695 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
4696
4697 * files.el (set-auto-mode): Fix invalid setq call.
4698
4699 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
4700
4701 * isearch.el: Misc simplification; use defstruct.
4702 (isearch-mode-map): Dense maps now work like sparse ones.
4703 (isearch--state): New defstruct.
4704 (isearch-string-state, isearch-message-state, isearch-point-state)
4705 (isearch-success-state, isearch-forward-state)
4706 (isearch-other-end-state, isearch-word-state, isearch-error-state)
4707 (isearch-wrapped-state, isearch-barrier-state)
4708 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
4709 replaced by defstruct's accessors.
4710 (isearch--set-state): Rename from isearch-top-state and change
4711 calling convention.
4712 (isearch-push-state): Use new isearch--get-state.
4713 (isearch-toggle-word): Disable regexp when enabling word.
4714 (isearch-message-prefix): Remove unused arg _c-q-hack.
4715 (isearch-message-suffix): Remove unused arg _ellipsis.
4716
4717 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
4718
4719 * simple.el (list-processes--refresh): For a server use :host or
4720 :local as the address.
4721 (list-processes): Doc fix.
4722
4723 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
4724
4725 * lisp/mpc.el: Support password in host argument.
4726 (mpc--proc-connect): Parse and use new password element.
4727 Set mpc-proc variable instead of returning process.
4728 (mpc-proc): Adjust accordingly.
4729
4730 2012-08-03 Eli Zaretskii <eliz@gnu.org>
4731
4732 * whitespace.el (whitespace-display-mappings): Use Unicode
4733 codepoints, instead of emacs-mule codepoints. See
4734 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
4735 for the details.
4736
4737 * files.el (file-truename): Don't skip symlink-chasing part on
4738 windows-nt. Incorporate the resolution of 8+3 short aliases on
4739 Windows into the loop that recursively chases symlinks.
4740 Compare directory and its parent case-insensitively on MS-Windows and
4741 MS-DOS.
4742
4743 2012-08-03 Chong Yidong <cyd@gnu.org>
4744
4745 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
4746
4747 * sort.el (sort-regexp-fields): Doc fix.
4748
4749 2012-08-03 Tassilo Horn <tsdh@gnu.org>
4750
4751 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
4752 labels regex position point at the expected place.
4753
4754 2012-08-03 MON KEY <monkey@sandpframing.com>
4755
4756 * net/imap.el (imap-interactive-login, imap-authenticate)
4757 (imap-mailbox-lsub, imap-mailbox-list)
4758 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
4759 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
4760 (imap-parse-response): Doc fix.
4761
4762 2012-08-03 João Távora <joaotavora@gmail.com>
4763
4764 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
4765 if sexp scanning does not move point (Bug#5734).
4766
4767 2012-08-02 Tassilo Horn <tsdh@gnu.org>
4768
4769 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
4770 Add listings, minted, and ctable packages.
4771 (reftex-label-alist-builtin): Move listings, minted, and ctable
4772 entries before LaTeX.
4773 (reftex-label-alist): Docfix.
4774
4775 2012-08-02 Bastien Guerry <bzg@gnu.org>
4776
4777 * replace.el (occur): Fix docstring (bug#12122).
4778
4779 2012-08-02 Glenn Morris <rgm@gnu.org>
4780
4781 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
4782
4783 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4784
4785 Obsolete alias inactivate-current-input-method-function (Bug#10150).
4786 * international/mule-cmds.el: Create
4787 inactivate-current-input-method-function as an obsolete alias for
4788 deactivate-current-input-method-function. See Katsumi Yamaoka in
4789 <http://bugs.gnu.org/10150#46>.
4790
4791 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
4792
4793 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
4794 of nested `if's.
4795
4796 2012-08-01 Glenn Morris <rgm@gnu.org>
4797
4798 * progmodes/autoconf.el (autoconf-definition-regexp):
4799 Add AH_TEMPLATE, adjust submatch numbering.
4800 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
4801 (autoconf-current-defun-function): Update for above change.
4802 (autoconf-current-defun-function): First skip to end of current word.
4803
4804 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
4805
4806 * calendar/cal-html.el (cal-html-insert-agenda-days):
4807 Fix typo. (Bug#12018)
4808
4809 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4810
4811 Shell processes: enhancements to startup and CEDET compatibility.
4812 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
4813 (python-shell-make-comint): accept-process-output at startup.
4814 (run-python-internal): Set inferior-python-mode-hook to nil.
4815 (python-shell-internal-get-or-create-process): call sit-for.
4816 (python-preoutput-result): Add obsolete alias.
4817 (python-shell-internal-send-string): Use it.
4818 (python-shell-send-setup-code): Remove call to
4819 accept-process-output.
4820
4821 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
4822
4823 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
4824 (Bug#12108)
4825
4826 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
4827
4828 * calc-mode.el (calc-basic-simplification-mode): Rename from
4829 `calc-limited-simplification-mode'.
4830 (calc-alg-simplification-mode): New function.
4831 (calc-set-simplify-mode): Adjust message.
4832
4833 * calc.el (calc-set-mode-line): Adjust mode line display for
4834 basic simplification mode.
4835
4836 * calc-help.el (calc-m-prefix-help): Update help message.
4837
4838 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
4839 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
4840
4841 2012-07-31 Bastien Guerry <bzg@gnu.org>
4842
4843 * man.el (man): Fix comment. (bug#12101)
4844
4845 2012-07-31 Martin Rudalics <rudalics@gmx.at>
4846
4847 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
4848 Don't return a non-nil value when no suitable buffer was found.
4849
4850 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4851
4852 * progmodes/python.el (run-python-internal): Disable font lock for
4853 internal shells.
4854
4855 2012-07-30 Stefan Merten <smerten@oekonux.de>
4856
4857 * textmodes/rst.el: Silence `checkdoc-ispell'.
4858 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
4859 (rst-official-version, rst-official-cvs-rev)
4860 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
4861 (rst-mode-map): New key binding.
4862
4863 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4864
4865 Update .PHONY listings in makefiles.
4866 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
4867 autoloads, update-subdirs, updates, bzr-update, update-authors,
4868 compile-onefile, compile-calc, backup-compiled-files,
4869 compile-after-backup, compile-one-process, mh-autoloads,
4870 bootstrap-clean, distclean, maintainer-clean.
4871
4872 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
4873
4874 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
4875 (calc-set-mode-line): Don't display "AlgSimp ".
4876
4877 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
4878 (calc-lim-simplify-mode): New function.
4879 (calc-set-simplify-mode): Default to 'alg.
4880 (calc-default-simplify-mode): Make algebraic simplifications
4881 the default.
4882
4883 * calc/calc-ext.el (calc-init-extensions): Remove binding for
4884 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
4885
4886 * calc/calc-help.el (calc-m-prefix-help): Change messages to
4887 indicate new simplification modes.
4888
4889 * calc/README: Mention new default simplification mode.
4890
4891 * calc/calc.el (math-normalize-error): New variable.
4892 (math-normalize): Set `math-normalize-error' to t
4893 when there's an error.
4894
4895 * calc/calc-alg.el (math-simplify): Don't simplify when
4896 `math-normalize' returns an error.
4897
4898 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4899
4900 * international/mule-cmds.el (set-locale-environment): Revert last
4901 change, since display-graphic-p returns nil when this function is
4902 called during startup. Instead...
4903
4904 * term/w32console.el (terminal-init-w32console): ...setup the
4905 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
4906
4907 2012-07-29 Juri Linkov <juri@jurta.org>
4908
4909 * simple.el (goto-line): Don't display default line number in the
4910 prompt because it should be displayed by `read-number' (bug#9952).
4911 Add the current line number to the defaults of `goto-line' to
4912 allow its easier modification by users with `M-n' (bug#9201).
4913
4914 * subr.el (read-number): Support multiple default values like in
4915 other minibuffer reading functions. Replace `read' with
4916 `string-to-number' for consistency with `number-to-string'.
4917
4918 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4919
4920 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
4921 * emulation/viper-init.el (viper-deactivate-input-method-action):
4922 Rename from viper-inactivate-input-method-action.
4923 (viper-deactivate-input-method):
4924 Rename from viper-inactivate-input-method.
4925 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
4926 * international/mule-cmds.el (deactivate-input-method):
4927 Rename from inactivate-input-method.
4928 Also run input-method-deactivate-hook.
4929 (deactivate-current-input-method-function):
4930 Rename from inactivate-current-input-method-function.
4931 (input-method-deactivate-hook): New hook.
4932 (input-method-inactivate-hook): Mark obsolete.
4933 (inactivate-input-method): Mark obsolete.
4934
4935 * international/quail.el (quail-activate):
4936 Also run quail-deactivate-hook.
4937 (quail-deactivate): Rename from quail-inactivate.
4938 * international/robin.el (robin-activate):
4939 Also run robin-deactivate-hook.
4940 (robin-deactivate): Rename from robin-inactivate.
4941
4942 2012-07-29 Chong Yidong <cyd@gnu.org>
4943
4944 * simple.el (indicate-copied-region): New function.
4945 (kill-ring-save): Split off from here.
4946
4947 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
4948 (kill-rectangle): Set deactivate-mark to t on read-only error.
4949
4950 * register.el (copy-to-register, copy-rectangle-to-register):
4951 Deactivate the mark, and use indicate-copied-region (Bug#10056).
4952 (append-to-register, prepend-to-register): Call indicate-copied-region.
4953
4954 2012-07-29 Juri Linkov <juri@jurta.org>
4955
4956 * simple.el (async-shell-command-buffer): New defcustom.
4957 (shell-command): Use it. (Bug#4719)
4958
4959 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4960
4961 * international/mule-cmds.el (set-locale-environment): In a
4962 console session on MS-Windows, set up keyboard and terminal
4963 encoding from the OEM codepage, not the ANSI codepage.
4964 (Bug#12055)
4965
4966 2012-07-28 Chong Yidong <cyd@gnu.org>
4967
4968 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
4969 gdb-get-location.
4970
4971 2012-07-28 Leo Liu <sdl.web@gmail.com>
4972
4973 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
4974 the alist (bug#12029).
4975
4976 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4977
4978 * makefile.w32-in (custom-deps, finder-data, updates, compile)
4979 (compile-always, compile-first)
4980 ($(lisp)/calendar/cal-loaddefs.el)
4981 ($(lisp)/calendar/diary-loaddefs.el)
4982 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4983 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
4984 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
4985 instead of on update-subdirs.
4986 (bootstrap-clean): Delete $(lisp)/subdirs.el.
4987
4988 2012-07-28 Chong Yidong <cyd@gnu.org>
4989
4990 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
4991 directory if vc-deduce-backend returns nil (Bug#7350).
4992
4993 * simple.el (delete-trailing-lines): New option.
4994 (delete-trailing-whitespace): Obey it (Bug#11879).
4995
4996 2012-07-28 David Engster <deng@randomsample.de>
4997
4998 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
4999 Explanation of new 'symbol-qnames feature in doc-strings.
5000 (xml-maybe-do-ns): Return expanded names as plain symbols if
5001 'symbol-qnames was provided in XML-NS argument (Bug#11916).
5002 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
5003
5004 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
5005
5006 Consistent completion in inferior python with emacs -nw.
5007 * progmodes/python.el (inferior-python-mode): replace "<tab>"
5008 binding in inferior-python-mode-map with "\t".
5009 (python-shell-completion-complete-at-point)
5010 (python-completion-complete-at-point): Remove interactive spec.
5011
5012 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
5013
5014 * calc/calccomp.el (math-compose-expr): Undo previous change.
5015
5016 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
5017
5018 * progmodes/python.el (python-mode-map): Add keybinding for
5019 run-python.
5020 (python-shell-make-comint): Fix pop-to-buffer call.
5021 (run-python): Autoload. New arg SHOW.
5022 (python-shell-get-or-create-process): Do not pop python process
5023 buffer.
5024
5025 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
5026
5027 * notifications.el (notifications-on-action-signal)
5028 (notifications-on-closed-signal): Use also the bus address for the map.
5029 (notifications-notify, notifications-close-notification)
5030 (notifications-get-capabilities): Add optional argument BUS.
5031
5032 2012-07-27 Tassilo Horn <tsdh@gnu.org>
5033
5034 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
5035 Add support for the lstlisting and minted environments, and for the
5036 ctable macro.
5037 * textmodes/reftex.el (reftex-compile-variables): Also recognize
5038 labels written in keyvals syntax.
5039
5040 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
5041
5042 * calc/calccomp.el (math-compose-expr): Use parentheses when
5043 there is a product in the denominator of a fraction.
5044
5045 2012-07-26 Eli Zaretskii <eliz@gnu.org>
5046
5047 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
5048 ($(lisp)/calendar/diary-loaddefs.el)
5049 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
5050 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
5051 Fixes failures in parallel bootstrap because subdirs.el is being
5052 rewritten while the autoload files are built at the same time,
5053 which needs to load subdirs.el.
5054
5055 2012-07-26 Martin Rudalics <rudalics@gmx.at>
5056
5057 * mouse.el (popup-menu): Fix doc-string and re-indent code.
5058 (mouse-drag-line): Don't exit tracking when a switch-frame or
5059 switch-window event occurs (Bug#12006).
5060
5061 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
5062
5063 * mouse.el (popup-menu): Fix last change.
5064
5065 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
5066
5067 Autoload from Lisp with more care. Follow aliases when looking for
5068 function properties.
5069 * subr.el (autoloadp): New function.
5070 (symbol-file): Use it.
5071 (function-get): New function.
5072 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
5073 autoload-do-load.
5074 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
5075 (lisp-indent-function):
5076 * emacs-lisp/gv.el (gv-get):
5077 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
5078 * emacs-lisp/byte-opt.el (byte-optimize-form):
5079 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
5080 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
5081 Use function-get.
5082 * emacs-lisp/cl.el: Don't propagate function properties any more.
5083
5084 * speedbar.el (speedbar-add-localized-speedbar-support):
5085 * emacs-lisp/disass.el (disassemble-internal):
5086 * desktop.el (desktop-load-file):
5087 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
5088 (describe-function-1):
5089 * emacs-lisp/find-func.el (find-function-noselect):
5090 * emacs-lisp/elp.el (elp-instrument-function):
5091 * emacs-lisp/advice.el (ad-has-proper-definition):
5092 * apropos.el (apropos-safe-documentation, apropos-macrop):
5093 * emacs-lisp/debug.el (debug-on-entry):
5094 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
5095 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
5096 * calc/calc.el (name): Use autoloadp & autoload-do-load.
5097
5098 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
5099
5100 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
5101 function, not an obsolete variable (Bug#12046).
5102
5103 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
5104
5105 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
5106
5107 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
5108
5109 * emacs-lisp/pp.el (pp-display-expression): Select old selected
5110 window only if it is still live (Bug#12034).
5111
5112 2012-07-25 Martin Rudalics <rudalics@gmx.at>
5113
5114 * subr.el (redirect-frame-focus): Add advertised calling
5115 convention (Bug#12030).
5116
5117 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
5118
5119 Prefer typical American spelling for "acknowledgment".
5120 * vc/add-log.el (change-log-acknowledgment): Rename from
5121 change-log-acknowledgement, with an alias for the old name.
5122
5123 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
5124
5125 * calc-alg.el (math-simplify-divide): Don't cross multiply
5126 in an equation when the lhs is a variable.
5127
5128 2012-07-24 Julien Danjou <julien@danjou.info>
5129
5130 * net/netrc.el (netrc-find-service-number, netrc-store-data):
5131 Remove, unused.
5132
5133 2012-07-23 Eli Zaretskii <eliz@gnu.org>
5134
5135 * startup.el (command-line): Don't display an empty user name in
5136 the error message about non-existent home directory, when
5137 init-file-user was set to an empty string. See
5138 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
5139 for the details and context.
5140
5141 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
5142
5143 * ses.el (ses-cell-formula-aset): New macro.
5144 (ses-cell-references-aset): New macro.
5145 (ses-cell-p): New function.
5146 (ses-rename-cell): Do no longer rely on complex operations like
5147 ses-cell-set-formula or ses-set-cell to change the cell and handle
5148 the undo at the same time, but rather use lower level new macros
5149 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
5150 the undo directly. Refresh the mode line.
5151
5152 2012-07-21 Leo Liu <sdl.web@gmail.com>
5153
5154 * progmodes/cc-cmds.el (c-defun-name):
5155 Use match-string-no-properties instead for consistency.
5156
5157 2012-07-20 Leo Liu <sdl.web@gmail.com>
5158
5159 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
5160 (Bug#7879)
5161
5162 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
5163
5164 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
5165
5166 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
5167 * progmodes/bug-reference.el, misearch.el: Provide themselves
5168 (bug#11915).
5169
5170 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
5171 of narrowed buffer (bug#11966).
5172
5173 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
5174
5175 * ses.el (ses-rename-cell): Set new name also in reference list of
5176 cells of which the renamed cell depends.
5177
5178 2012-07-20 Masatake YAMATO <yamato@redhat.com>
5179
5180 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
5181 to check whether menu-bar is shown or not. If not shown,
5182 show the menu-bar as a popup menu instead of using tmm.
5183 * mouse.el (popup-menu): Accept `point' as `position' argument.
5184
5185 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
5186
5187 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
5188 up inside string symbol literal (bug#11923).
5189
5190 2012-07-20 Eli Zaretskii <eliz@gnu.org>
5191
5192 * startup.el (fancy-startup-text): Read the whole tutorial, not
5193 just its first 256 bytes. Prevents gibberish in display of the
5194 tutorial title.
5195
5196 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5197
5198 Drop idle buffer compaction due to an absence of the
5199 proved efficiency.
5200 * compact.el: Remove.
5201
5202 2012-07-19 Sam Steingold <sds@gnu.org>
5203
5204 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
5205 vc-bzr-pull & vc-bzr-merge-branch.
5206 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
5207 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
5208 for consistency with compilation-error-regexp-alist.
5209 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
5210 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
5211 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
5212 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
5213
5214 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5215
5216 * emacs-lisp/chart.el: Use lexical-binding.
5217 (chart-emacs-storage): Don't hardcode the list of entries.
5218
5219 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5220
5221 Next round of tweaks caused by Fgarbage_collect changes.
5222 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
5223
5224 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5225
5226 Compact buffers when idle.
5227 * compact.el: New file.
5228
5229 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5230
5231 * subr.el (eventp): Presume that if it looks vaguely like an event,
5232 it's an event (bug#10190).
5233
5234 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
5235
5236 Enhancements to ppss related code (thanks Stefan).
5237 * progmodes/python.el (python-indent-context)
5238 (python-indent-calculate-indentation, python-indent-dedent-line)
5239 (python-indent-electric-colon, python-nav-forward-block)
5240 (python-mode-abbrev-table)
5241 (python-info-assignment-continuation-line-p): Simplify checks
5242 for ppss context.
5243 (python-info-continuation-line-p): Cleanup.
5244 (python-info-ppss-context): Do not catch 'quote.
5245 (python-info-ppss-context-type)
5246 (python-info-ppss-comment-or-string-p): Simplify.
5247
5248 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
5249
5250 * progmodes/python.el: Enhancements to eldoc support.
5251 (python-info-current-symbol): New function.
5252 (python-eldoc-at-point): Use python-info-current-symbol.
5253 (python-info-current-defun): Fix cornercase on first defun scan.
5254 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
5255 and signal error when no inferior python process is available.
5256
5257 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
5258
5259 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
5260 assume it's always t.
5261 (vc-git-registered): Remove caching, the function is only called
5262 once.
5263 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
5264
5265 2012-07-18 Chong Yidong <cyd@gnu.org>
5266
5267 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
5268
5269 * simple.el (count-words): Report on narrowing (Bug#9959).
5270
5271 * bindings.el: Bind M-= to count-words.
5272
5273 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
5274
5275 2012-07-18 Masatake YAMATO <yamato@redhat.com>
5276
5277 * progmodes/sh-script.el (sh-imenu-generic-expression):
5278 Capture a function with `function' keyword and without parentheses
5279 like "function FOO" (bug#11856).
5280
5281 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
5282
5283 * window.el (split-window-sensibly): Make WINDOW argument
5284 optional.
5285
5286 2012-07-18 Chong Yidong <cyd@gnu.org>
5287
5288 * subr.el (keyboard-translate): Doc fix (Bug#7261).
5289
5290 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
5291 and make C-x 8 RET exit isearch (Bug#11439).
5292
5293 * international/iso-transl.el: Move isearch-mode-map key
5294 definitions to isearch.el.
5295
5296 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
5297
5298 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
5299 (eieio-defclass): Use gv-define-setter when possible.
5300
5301 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5302
5303 Reflect recent changes in Fgarbage_collect.
5304 * emacs-lisp/chart.el (chart-emacs-storage): Change to
5305 reflect new format of data returned by Fgarbage_collect.
5306
5307 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5308
5309 New utility functions + python-info-ppss-context fix (Bug#11910).
5310 * progmodes/python.el (python-info-beginning-of-block-statement-p)
5311 (python-info-ppss-comment-or-string-p): New functions.
5312 (python-info-ppss-context): Small fix for string check.
5313
5314 2012-07-17 Juri Linkov <juri@jurta.org>
5315
5316 * dired-aux.el (dired-do-async-shell-command): Doc fix.
5317 (dired-do-async-shell-command): Don't add `*' at the end of the
5318 command (Bug#11815).
5319 (dired-do-shell-command): Doc fix.
5320 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
5321 Join the individual commands using either "&" or ";" as the
5322 separator depending on the values of these trailing characters.
5323 At the end re-add the trailing "&". (Bug#10598)
5324
5325 * simple.el (async-shell-command): Sync the interactive spec with
5326 `shell-command'. Doc fix.
5327 (shell-command): Doc fix.
5328
5329 2012-07-17 Juri Linkov <juri@jurta.org>
5330
5331 * descr-text.el (describe-char): Fix format args. (Bug#10129)
5332
5333 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5334
5335 Final renames and doc fixes for movement commands (bug#11899).
5336 * progmodes/python.el (python-nav-beginning-of-statement):
5337 Rename from python-nav-statement-start.
5338 (python-nav-end-of-statement): Rename from
5339 python-nav-statement-end.
5340 (python-nav-beginning-of-block): Rename from
5341 python-nav-block-start.
5342 (python-nav-end-of-block): Rename from python-nav-block-end.
5343
5344 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5345
5346 * progmodes/python.el (python-shell-send-string-no-output):
5347 Allow accept-process-output to quit, keeping shell process ready for
5348 future interactions (Bug#11868).
5349
5350 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5351
5352 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
5353
5354 * emacs-lisp/elint.el (elint-find-args-in-code):
5355 Use help-function-arglist, so as to handle lexical byte-code.
5356
5357 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
5358 change (bug#11826).
5359
5360 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5361
5362 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
5363 Avoid spuriously marking the buffer as modified because of c-is-sws.
5364
5365 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
5366 as not-a-comment (bug#11946).
5367
5368 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
5369 for uninterned vars.
5370
5371 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
5372 Use read-event since we don't really want to read chars but bytes.
5373
5374 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
5375 $$..$$ but also $..$ using regexps (bug#11953).
5376 Use tex-verbatim for \url and \path.
5377 (tex-font-lock-keywords): Define as defconst like the others.
5378 (tex-common-initialization): Don't use font-lock-syntax-table any more.
5379
5380 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
5381
5382 * international/mule-cmds.el (ucs-insert): Make it an obsolete
5383 alias for insert-char.
5384
5385 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5386
5387 * progmodes/python.el: Simplified imenu implementation.
5388 (python-nav-jump-to-defun): Remove command.
5389 (python-mode-map): Use `imenu' instead.
5390 (python-nav-list-defun-positions-cache)
5391 (python-imenu-include-defun-type, python-imenu-make-tree)
5392 (python-imenu-subtree-root-label, python-imenu-index-alist):
5393 Remove vars.
5394 (python-nav-list-defun-positions, python-nav-read-defun)
5395 (python-imenu-tree-assoc, python-imenu-make-element-tree)
5396 (python-imenu-make-tree, python-imenu-create-index):
5397 Remove functions.
5398 (python-mode): Update to interact with imenu by setting
5399 `imenu-extract-index-name-function' only.
5400
5401 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5402
5403 * progmodes/python.el: Enhancements to navigation commands.
5404 (python-nav-backward-sentence)
5405 (python-nav-forward-sentence): Remove.
5406 (python-nav-backward-statement, python-nav-forward-statement)
5407 (python-nav-statement-start, python-nav-statement-end)
5408 (python-nav-backward-block, python-nav-forward-block)
5409 (python-nav-block-start, python-nav-block-end)
5410 (python-nav-forward-sexp-function)
5411 (python-info-current-line-comment-p)
5412 (python-info-current-line-empty-p): New functions.
5413 (python-indent-context): Use `python-nav-statement-start'.
5414
5415 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
5416
5417 * eshell/em-ls.el (eshell/ls): Use `apply'.
5418
5419 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
5420 multi-hops, instead of Tramp internals.
5421
5422 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
5423
5424 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
5425 when F1 and F2 are located on different hosts.
5426
5427 2012-07-14 Chong Yidong <cyd@gnu.org>
5428
5429 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
5430 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
5431 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
5432 (xterm-mouse--read-event-sequence-1000)
5433 (xterm-mouse--read-event-sequence-1006): New functions. For old
5434 mouse protocol, handle M-mouse-X events correctly.
5435 (xterm-mouse-event): New arg specifying mouse protocol.
5436 (turn-on-xterm-mouse-tracking-on-terminal)
5437 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
5438 sequence to toggle extended coordinates on newer XTerms.
5439 This appears to be harmless on terminals which do not support this.
5440
5441 2012-07-14 Leo Liu <sdl.web@gmail.com>
5442
5443 Add fringe bitmap indicators for flymake. (Bug#11253)
5444 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
5445 (flymake-make-overlay): New arg BITMAP.
5446 (flymake-error-bitmap, flymake-warning-bitmap)
5447 (flymake-fringe-indicator-position): New user variables.
5448
5449 * fringe.el: New bitmap exclamation-mark.
5450
5451 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
5452
5453 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
5454 also (Bug#7879).
5455
5456 2012-07-14 Chong Yidong <cyd@gnu.org>
5457
5458 * electric.el (electric-pair-post-self-insert-function): Fix pair
5459 insertion in empty-region case (Bug#11520).
5460
5461 2012-07-14 Chong Yidong <cyd@gnu.org>
5462
5463 * bindings.el: Consolidate ctl-x-r-map bindings.
5464 Bind copy-rectangle-as-kill to C-x r w.
5465
5466 * rect.el, register.el: Move bindings to bindings.el.
5467
5468 2012-07-14 Reuben Thomas <rrt@sc3d.org>
5469
5470 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
5471
5472 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
5473
5474 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
5475
5476 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
5477
5478 * bindings.el (top): Use `mapc' instead of `mapcar'.
5479
5480 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
5481
5482 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
5483
5484 * progmodes/sql.el (sql-comint): Suppress the check for program on
5485 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
5486 (Bug#11908)
5487
5488 2012-07-13 Chong Yidong <cyd@gnu.org>
5489
5490 * bindings.el: Assign a non-nil permanent-local property to
5491 per-buffer variables which lack a default value (Bug#11930).
5492
5493 * help-fns.el (describe-variable): In the "automatically becomes
5494 local" notice, take note of permanent-local variables.
5495
5496 2012-07-13 Chong Yidong <cyd@gnu.org>
5497
5498 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
5499 to allow printing the message when called from Lisp.
5500
5501 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5502 Remove toggle-read-only.
5503
5504 * bs.el (bs-toggle-readonly):
5505 * buff-menu.el (Buffer-menu-toggle-read-only):
5506 Remove with-no-warnings around toggle-read-only.
5507
5508 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
5509 Remove with-no-warnings around toggle-read-only.
5510 (ffap-read-only, ffap-read-only-other-window)
5511 (ffap-read-only-other-frame): Callers changed.
5512
5513 * help-mode.el: Don't require view package.
5514 (help-mode-finish): Set buffer-read-only instead of calling
5515 toggle-read-only.
5516
5517 * bindings.el (mode-line-toggle-read-only):
5518 * dired.el (dired-toggle-read-only):
5519 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
5520 with non-nil second arg.
5521
5522 * emacs-lisp/eieio-custom.el (eieio-customize-object):
5523 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
5524 directly.
5525
5526 2012-07-12 Eli Zaretskii <eliz@gnu.org>
5527
5528 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
5529 not incf.
5530
5531 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
5532
5533 More CL cleanups and reduction of use of cl.el.
5534 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
5535 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
5536 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
5537 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
5538 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
5539 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
5540 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
5541 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
5542 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
5543 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
5544 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
5545 * eshell/em-cmpl.el, eshell/em-banner.el:
5546 * calendar/parse-time.el: Use cl-lib.
5547 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
5548 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
5549 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
5550 * term/ns-win.el, term.el, shell.el, ps-samp.el:
5551 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
5552 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
5553 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
5554 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
5555 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
5556 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
5557 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
5558 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
5559 `lambda' rather than with `quote'.
5560 (eshell-do-opt): Adjust accordingly.
5561 (eshell-process-option): Simplify.
5562 * eshell/esh-var.el:
5563 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
5564 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
5565 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
5566 to `pcase--dontcare'.
5567 * emacs-lisp/cl.el (labels): Mark obsolete.
5568 (cl--letf, letf): Move to cl-lib.
5569 (cl--letf*, letf*): Remove.
5570 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
5571 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
5572 (cl-progv): Rewrite.
5573 (cl--letf, cl-letf): Move from cl.el.
5574 (cl-letf*): New macro.
5575 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
5576
5577 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
5578
5579 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
5580
5581 2012-07-11 Chong Yidong <cyd@gnu.org>
5582
5583 * vc/log-edit.el (log-edit-vc-backend): New variable.
5584 (log-edit): Doc fix.
5585
5586 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
5587 argument of log-edit to set up all local variables.
5588 (vc-start-logentry): New optional arg specifying VC backend.
5589
5590 * vc/vc.el (vc-checkin): Use it.
5591 (vc-deduce-fileset): Handle Log Edit buffers.
5592 (vc-diff): Make first argument optional too.
5593
5594 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
5595
5596 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
5597
5598 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
5599 command, just in case. The function is not needed anymore.
5600 (eshell-external-command): Do not call `eshell-remote-command'.
5601
5602 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
5603
5604 Reduce use of (require 'cl).
5605 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
5606 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
5607 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
5608 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
5609 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
5610 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
5611 * battery.el, avoid.el, abbrev.el: Use cl-lib.
5612 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
5613 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
5614 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
5615 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
5616 * calculator.el, autorevert.el, apropos.el: Don't require CL.
5617 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
5618 (byte-compile-unfold-bcf, byte-compile-check-variable):
5619 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
5620 (byte-compile-nilconstp):
5621 * emacs-lisp/autoload.el (make-autoload): Use pcase.
5622 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
5623
5624 * emacs-lisp/gv.el (cond): Make it a valid place.
5625 (if): Simplify slightly.
5626
5627 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
5628 (pcase--self-quoting-p): New function.
5629 (pcase--u1): Use it.
5630
5631 2012-07-10 Glenn Morris <rgm@gnu.org>
5632
5633 * emacs-lisp/authors.el (authors-fixed-entries):
5634 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
5635
5636 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
5637
5638 Rename configure.in to configure.ac (Bug#11603).
5639 * emacs-lisp/authors.el (authors-canonical-file-name):
5640 * progmodes/autoconf.el (autoconf-mode):
5641 Prefer configure.ac to configure.in.
5642
5643 2012-07-08 Chong Yidong <cyd@gnu.org>
5644
5645 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
5646 Implement the mouse-1-click-follows-link handling properly.
5647
5648 * info.el (Info-link-keymap): Use follow-link mechanism for
5649 header-line links (Bug#374).
5650
5651 * simple.el (deactivate-mark): Do not set the primary selection
5652 if another program has acquired it (Bug#11772).
5653
5654 2012-07-07 Kevin Ryde <user42@zip.com.au>
5655
5656 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
5657 (woman-decode-region): Replace escaped-escapes without destroying
5658 bold or underline (Bug#11552).
5659 (woman2-process-escapes): Handle nofill regions (Bug#11591).
5660
5661 2012-07-07 Chong Yidong <cyd@gnu.org>
5662
5663 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
5664 (interprogram-cut-function, interprogram-paste-function):
5665 Mention that we typically mean the clipboard.
5666
5667 2012-07-06 Glenn Morris <rgm@gnu.org>
5668
5669 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
5670
5671 * files.el (toggle-read-only): Restrict message to interactive use.
5672
5673 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
5674
5675 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
5676
5677 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
5678
5679 2012-07-06 Glenn Morris <rgm@gnu.org>
5680
5681 * Makefile.in (compile-one-process): Rename from "recompile".
5682
5683 * Makefile.in (bzr-update): "compile" is the same as "recompile
5684 autoloads", but parallelizable, so use that instead.
5685
5686 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
5687
5688 * window.el (quit-window): Always restore window height when
5689 it's saved in quit-restore parameter (Bug#11810).
5690
5691 2012-07-06 Glenn Morris <rgm@gnu.org>
5692
5693 * simple.el (kill-whole-line): Doc tweak.
5694
5695 2012-07-06 Eli Zaretskii <eliz@gnu.org>
5696
5697 * files.el (file-relative-name): Compare file names
5698 case-insensitively if on MS-Windows or MS-DOS, or if
5699 read-file-name-completion-ignore-case is non-nil. Don't use
5700 case-fold-search for this purpose. (Bug#11827)
5701
5702 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5703
5704 * calendar/cal-dst.el (calendar-current-time-zone):
5705 Return calendar-current-time-zone-cache if non-nil.
5706
5707 2012-07-17 Masatake YAMATO <yamato@redhat.com>
5708 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
5709
5710 * calendar/cal-dst.el (calendar-current-time-zone):
5711 Return calendar-current-time-zone-cache if non-nil.
5712
5713 2012-07-06 Glenn Morris <rgm@gnu.org>
5714
5715 * Makefile.in (cvs-update): Remove old alias.
5716
5717 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
5718
5719 Sync with Tramp 2.2.6-pre.
5720
5721 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
5722 compatible declaration.
5723
5724 * net/tramp-cmds.el (tramp-append-tramp-buffers):
5725 Protect `list-load-path-shadows' call.
5726
5727 * net/tramp-compat.el (top): Require packages, which aren't
5728 autoloaded anymore for XEmacs. Protect call of
5729 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
5730 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
5731 it hurts at least for SXEmacs.
5732 (tramp-compat-temporary-file-directory): In XEmacs, there is no
5733 standard-value for `temporary-file-directory'.
5734
5735 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
5736 Redirect stderr to /dev/null.
5737 (tramp-sh-handle-write-region): uid and gid can be floats.
5738 Reported by Russell Sim <russell.sim@gmail.com>.
5739 (tramp-sh-handle-vc-registered): Hide errors.
5740 (tramp-vc-file-name-handler): Use dummy results for `process-file'
5741 and `start-file-process'.
5742 (tramp-maybe-open-connection): Check also whether `non-essential'
5743 is bound.
5744
5745 2012-07-04 Chong Yidong <cyd@gnu.org>
5746
5747 * xml.el (xml--parse-buffer): Use xml-syntax-table.
5748 (xml-parse-tag): Likewise, and avoid changing entity tables.
5749 (xml-syntax-table): Define from scratch, making sure not to give
5750 x2000 and other Unicode spaces whitespace syntax, since those are
5751 not spaces in XML.
5752 (xml-parse-fragment): Delete unused function.
5753 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
5754 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
5755 (xml-entity-ref, xml-pe-reference-re)
5756 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
5757 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
5758 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
5759 (xml-entity-value-re): Use syntax references in regexps where
5760 possible; no need to define inside a let-binding.
5761 (xml-parse-dtd): Use xml-pe-reference-re.
5762 (xml-entity-or-char-ref-re): New defconst.
5763 (xml-parse-string, xml-substitute-special): Use it.
5764
5765 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5766
5767 * files.el (locate-dominating-file): Allow `name' to be a predicate.
5768 (find-file--read-only): New function.
5769 (find-file-read-only, find-file-read-only-other-window)
5770 (find-file-read-only-other-frame): Use it.
5771 (insert-file-contents-literally): Don't `fset'.
5772 (get-free-disk-space): Use locate-dominating-file.
5773
5774 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
5775 function is already compiled.
5776
5777 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
5778
5779 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
5780
5781 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
5782 files on the same host.
5783
5784 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
5785
5786 * help-fns.el (describe-function-1): Only call
5787 help-fns--autoloaded-p when we have a file name. (Bug#11848)
5788
5789 2012-07-03 Chong Yidong <cyd@gnu.org>
5790
5791 * xml.el: Protect parser against XML bombs.
5792 (xml-entity-expansion-limit): New variable.
5793 (xml-parse-string, xml-substitute-special): Use it.
5794 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
5795
5796 2012-07-03 Glenn Morris <rgm@gnu.org>
5797
5798 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5799 Allow linking to specific messages in debbugs reports (eg 123#5).
5800
5801 2012-07-02 Chong Yidong <cyd@gnu.org>
5802
5803 * xml.el: Fix entity and character reference expansion, allowing
5804 them to expand into markup as per XML spec.
5805 (xml-default-ns): New variable.
5806 (xml-entity-alist): Use XML spec definitions for lt and amp.
5807 (xml-parse-region): Make first two arguments optional.
5808 Discard text properties.
5809 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
5810 All callers changed.
5811 (xml-parse-tag): Call xml-parse-tag-1. For backward
5812 compatibility, this function should not modify buffer contents.
5813 (xml-parse-tag-1): Fix opening-tag regexp.
5814 (xml-parse-string): Rewrite, handling entity and character
5815 references properly.
5816 (xml--entity-replacement-text): Signal an error if a parameter
5817 entity is undefined.
5818
5819 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
5820
5821 * comint.el (comint-output-filter): Filter out repeated prompts.
5822
5823 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
5824 and file-name-absolute-p.
5825 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
5826 internal calls.
5827
5828 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
5829
5830 Spelling fixes.
5831 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
5832 Rename from byte-compile--refiy-function. All uses changed.
5833
5834 2012-07-01 Chong Yidong <cyd@gnu.org>
5835
5836 * xml.el (xml--parse-buffer): New function. Move most of
5837 xml-parse-region here.
5838 (xml-parse-region): Copy region into a temporary buffer, since
5839 parameter entity substitution requires changing buffer contents.
5840 Use xml--parse-buffer.
5841 (xml-parse-file): Use xml--parse-buffer.
5842 (xml-parse-dtd): Make parameter entity substitution work right.
5843 Use proper regexps for ELEMENT declarations (Bug#7172).
5844
5845 2012-06-30 Glenn Morris <rgm@gnu.org>
5846
5847 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
5848
5849 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
5850 Remove outdated and unnecessary dbus declarations.
5851
5852 2012-06-30 Eli Zaretskii <eliz@gnu.org>
5853
5854 * emacs-lisp/timer.el (timer-until): Subtract results of
5855 float-time, instead of taking float-time of the result of
5856 time-subtract, since float-time signals an error for negative time
5857 arguments.
5858
5859 2012-06-30 Chong Yidong <cyd@gnu.org>
5860
5861 * xml.el (xml-*-re): Convert defvars into defconsts, and
5862 eval-and-compile them so eval-and-compile works on derivatives.
5863 (xml--entity-replacement-text): Use eval-and-comple.
5864
5865 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
5866
5867 * vc/vc-git.el (vc-git-registered): Use cache property
5868 `git-registered'.
5869 (vc-git-mode-line-string): Call `vc-working-revision' instead of
5870 `vc-git-working-revision' in order to benefit from the cache.
5871 (vc-git-root): Use cache property `git-root'. (Bug#11757)
5872
5873 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
5874
5875 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
5876 removed (likely outside Emacs). (Bug#11757)
5877
5878 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5879
5880 * emacs-lisp/cl-lib.el: Require macroexp.
5881
5882 2012-06-30 Chong Yidong <cyd@gnu.org>
5883
5884 * xml.el: Implement XML parameter entities.
5885 (xml-parameter-entity-alist): New variable.
5886 (xml-parse-region, xml-parse-fragment): Preserve previous values
5887 of xml-entity-alist and xml-parameter-entity-alist, so that
5888 repeated calls on different documents do not change them.
5889 (xml-parse-tag): Fix doctype regexp.
5890 (xml--entity-replacement-text): New function.
5891 (xml-parse-dtd): Use it. Don't handle system entities; doing that
5892 properly requires url retrieval which is unimplemented.
5893 (xml-escape-string): Doc fix.
5894
5895 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5896
5897 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
5898
5899 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5900
5901 * fringe.el (fringe-mode): Doc fix.
5902
5903 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
5904
5905 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
5906 is non-nil.
5907 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
5908 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
5909
5910 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
5911
5912 * calendar/cal-dst.el (calendar-current-time-zone):
5913 Return calendar-current-time-zone-cache if non-nil.
5914
5915 2012-06-29 Masatake YAMATO <yamato@redhat.com>
5916
5917 * progmodes/which-func.el (which-func-format):
5918 Add mouse-face. (Bug#11698)
5919
5920 2012-06-29 Leo Liu <sdl.web@gmail.com>
5921
5922 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
5923
5924 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5925
5926 * minibuffer.el (minibuffer-confirm-exit-commands):
5927 Add completion-at-point (bug#11725).
5928
5929 2012-06-29 Glenn Morris <rgm@gnu.org>
5930
5931 * progmodes/f90.el (f90-font-lock-keywords-2):
5932 Add some preprocessor elements. (Bug#10499)
5933
5934 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5935
5936 * progmodes/cperl-mode.el (cperl-update-syntaxification):
5937 Use syntax-propertize (bug#11739).
5938
5939 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
5940
5941 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
5942
5943 2012-06-28 Julien Danjou <julien@danjou.info>
5944
5945 * term.el (term-handle-colors-array): Use a set of new faces to
5946 color the terminal. Also uses :inverse-video property.
5947 (term-default-fg-color): Set to nil by default, deprecate in favor
5948 of `term-face'.
5949 (term-default-bg-color): Set to nil by default, deprecate in favor
5950 of `term-face'.
5951 (term-current-face): Use `term-face' by default.
5952 (term-bold-attribute): Variable deleted.
5953
5954 2012-06-28 Glenn Morris <rgm@gnu.org>
5955
5956 * simple.el (completion-list-mode-finish):
5957 Don't use toggle-read-only. (Since completion-list-mode has
5958 a special mode-class, it wasn't doing anything extra anyway.)
5959
5960 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
5961
5962 Make inlining of other-mode interpreted functions work (bug#11799).
5963 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
5964 (byte-compile): Use it to fix compilation of lexical-binding closures.
5965 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
5966 function, if needed.
5967
5968 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5969
5970 * help-mode.el (help-make-xrefs): Don't just withstand
5971 cyclic-variable-indirection but any error in documentation-property.
5972
5973 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
5974 memory use.
5975 * bindings.el (bindings--define-key): New function.
5976 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
5977 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
5978 * bindings.el: Use it to purecopy define-key bindings.
5979
5980 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
5981
5982 * emacs-lisp/cl.el (flet): Mark obsolete.
5983 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
5984 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
5985 * progmodes/js.el (js-c-fill-paragraph):
5986 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
5987 (ebrowse-switch-member-buffer-to-derived-class):
5988 * play/5x5.el (5x5-solver): Use cl-flet.
5989
5990 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
5991 (cl--symbol-function): New macro.
5992 (cl--letf, cl--letf*): Use it.
5993
5994 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5995 Strip "toggle-" if any.
5996
5997 2012-06-27 Glenn Morris <rgm@gnu.org>
5998
5999 * info.el (Info-default-directory-list): Move here from paths.el.
6000 * paths.el: Remove file, which is now empty.
6001 * loadup.el: No longer load "paths".
6002
6003 * custom.el (custom-initialize-delay): Doc fix.
6004
6005 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
6006 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
6007 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
6008 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
6009 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
6010 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
6011 * eshell/eshell.el (eshell-defgroup): Remove alias.
6012
6013 2012-06-27 Chong Yidong <cyd@gnu.org>
6014
6015 * help.el (help-enable-auto-load): New variable.
6016
6017 * help-fns.el (help-fns--autoloaded-p): New function.
6018 (describe-function-1): Refer to a function as "autoloaded" if it
6019 was autoloaded at any time in the past. Perform autoloading if
6020 help-enable-auto-load is non-nil.
6021
6022 2012-06-26 Eli Zaretskii <eliz@gnu.org>
6023
6024 * makefile.w32-in (compile, compile-always): Depend on
6025 update-subdirs, not on subdirs.el. Otherwise, several different
6026 sub-targets of 'bootstrap' running in parallel could
6027 simultaneously write to subdirs.el, producing a garbled file.
6028
6029 2012-06-26 Sam Steingold <sds@gnu.org>
6030
6031 * files.el (file-name-base): New convenience function.
6032 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
6033 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
6034 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
6035 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
6036 * textmodes/ispell.el, textmodes/reftex-ref.el:
6037 * textmodes/tex-mode.el: Use it.
6038 Did not touch cedet and org because they are maintained elsewhere.
6039
6040 2012-06-26 Martin Rudalics <rudalics@gmx.at>
6041
6042 * calendar/calendar.el (calendar-exit): Don't try to delete or
6043 iconify last frame. See:
6044 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
6045
6046 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
6047
6048 * server.el (server-process-filter): Remember dir in the
6049 process's `server-client-directory' properties.
6050
6051 2012-06-24 Chong Yidong <cyd@gnu.org>
6052
6053 * xml.el (xml-parse-tag): Correctly handle comment embedded in
6054 non-tag text.
6055
6056 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
6057
6058 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
6059
6060 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
6061
6062 * help-fns.el (describe-variable): Don't croak when doc is not found.
6063 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
6064 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
6065 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
6066 * emacs-lisp/smie.el (smie-next-sexp): CSE.
6067 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
6068 ((lambda ..) ..).
6069 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
6070
6071 2012-06-23 Chong Yidong <cyd@gnu.org>
6072
6073 * info.el (Info-mouse-follow-link): Accept symbol values of
6074 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
6075 (Info-fontify-node): Use Info-link-keymap for all navigation
6076 buttons, with link-args property to perform the desired action.
6077 (Info-link-keymap): Doc fix.
6078 (Info-next-link-keymap, Info-prev-link-keymap)
6079 (Info-up-link-keymap): Delete now-unused keymaps.
6080
6081 2012-06-23 Chong Yidong <cyd@gnu.org>
6082
6083 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
6084
6085 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
6086 system abbrevs.
6087
6088 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
6089
6090 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
6091
6092 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
6093 (bug#11719).
6094
6095 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
6096 the requote function doesn't work properly (bug#11714).
6097
6098 2012-06-23 Glenn Morris <rgm@gnu.org>
6099
6100 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
6101
6102 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
6103
6104 Further GV/CL cleanups.
6105 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
6106 gv-expander.
6107 (gv--defun-declaration): New function.
6108 (defun-declarations-alist): Use it.
6109 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
6110 (gv-place): Autoload.
6111 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
6112 original definition of dotimes and dolist.
6113 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
6114 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
6115 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
6116 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
6117 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
6118 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
6119 to the function's definition.
6120 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
6121 * window.el:
6122 * files.el:
6123 * faces.el:
6124 * env.el: Don't use CL.
6125
6126 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
6127
6128 Support higher-resolution time stamps (Bug#9000).
6129
6130 * calendar/time-date.el (with-decoded-time-value): New arg
6131 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
6132 (encode-time-value): New optional arg PICO. New type 3.
6133 (time-to-seconds) [!float-time]: Support the new picoseconds
6134 component if it's used.
6135 (seconds-to-time, time-subtract, time-add):
6136 Support ps-resolution time stamps as well.
6137
6138 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
6139 (timerp): Timer vectors now have length 9, not 8.
6140 (timer--time): Support new-style (4-part) time stamps.
6141 (timer-next-integral-multiple-of-time): Time stamps now have
6142 picosecond resolution, so take a bit more care about rounding.
6143 (timer-relative-time, timer-inc-time): New optional arg psecs.
6144 (timer-set-time-with-usecs): Set psecs to 0.
6145 (timer--activate): Check psecs component, too.
6146
6147 * proced.el (proced-time-lessp): Support ps-resolution stamps.
6148
6149 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
6150
6151 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
6152 Move the non-essential binding to the post/pre-command-hook where it is
6153 more obviously correct.
6154
6155 * subr.el (read-passwd): Don't use a history at all.
6156 * savehist.el (savehist-save): Remove password saved accidentally
6157 because of the above bug.
6158
6159 2012-06-22 Bastien Guerry <bzg@gnu.org>
6160
6161 * files.el (toggle-read-only): Display a message telling whether
6162 the buffer is read-only or not (bug#11726).
6163
6164 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
6165
6166 * emacs-lisp/gv.el: New file.
6167 * subr.el (push, pop): Extend to generalized variables.
6168 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
6169 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
6170 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
6171 gv-define-simple-setter, and gv-define-expander.
6172 Remove setf-methods defined in gv. Rename cl-setf -> setf.
6173 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
6174 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
6175 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
6176 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
6177 gv-letplace.
6178 (cl-defstruct): Don't define setf-method any more.
6179 * emacs-lisp/cl.el (flet): Don't autoload.
6180 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
6181 (define-setf-expander, defsetf, define-modify-macro)
6182 (cl-struct-setf-expander): Move from cl-lib.el.
6183 * emacs-lisp/syntax.el:
6184 * emacs-lisp/ewoc.el:
6185 * emacs-lisp/smie.el:
6186 * emacs-lisp/cconv.el:
6187 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
6188 (timer--time): Use gv-define-simple-setter.
6189 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
6190 to avoid coding-system problems in subr.el. Adjust all users.
6191 (macroexp--maxsize, macroexp-small-p): New functions.
6192 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
6193 * scroll-bar.el (scroll-bar-mode):
6194 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
6195 (normal-erase-is-backspace-mode): Don't use the `eq' place.
6196 * winner.el (winner-configuration, winner-make-point-alist)
6197 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
6198 * files.el (locate-file-completion-table): Avoid list*.
6199
6200 2012-06-22 Chong Yidong <cyd@gnu.org>
6201
6202 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
6203 (dired-create-files): Doc fix (Bug#11329).
6204 (dired-do-copy): Doc fix (Bug#11334).
6205 (dired-mark-read-string): Doc fix (Bug#11553).
6206
6207 * dired.el (dired-recursive-copies, dired-recursive-deletes):
6208 Doc fix (Bug#11326).
6209 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
6210 (dired-dwim-target): Doc fix.
6211
6212 * wdired.el (wdired-mode): Doc fix.
6213
6214 2012-06-22 Glenn Morris <rgm@gnu.org>
6215
6216 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
6217 (pcmpl-rpm-cache-stamp-file): New constant.
6218 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
6219 (pcmpl-rpm-packages): Optionally cache list of packages.
6220
6221 * pcmpl-rpm.el (pcmpl-rpm): New group.
6222 (pcmpl-rpm-query-options): New option.
6223 (pcmpl-rpm-packages): No need to inline it.
6224 Use pcmpl-rpm-query-options.
6225
6226 * calendar/calendar.el (calendar-in-read-only-buffer):
6227 Avoid some needless mode changes.
6228
6229 2012-06-21 Chong Yidong <cyd@gnu.org>
6230
6231 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
6232 (desktop-path): Remove . from the default value (Bug#10977).
6233 (desktop-read): Use user-emacs-directory if desktop-path is nil.
6234
6235 2012-06-20 Chong Yidong <cyd@gnu.org>
6236
6237 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
6238
6239 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
6240
6241 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
6242 (bug#11201).
6243
6244 2012-06-20 Chong Yidong <cyd@gnu.org>
6245
6246 * term.el (term-window-width): Handle the case of a missing right
6247 fringe (Bug#8837).
6248 (term-check-size): Use window-text-height (Bug#5445).
6249 (term-mode): Use define-derived-mode. Minor cleanups.
6250 Set font-lock-defaults (Bug#7692).
6251 (term-move-columns, term-insert-char, term-emulate-terminal)
6252 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
6253
6254 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
6255
6256 * net/ange-ftp.el (ange-ftp-get-passwd):
6257 Bind `enable-recursive-minibuffers'.
6258 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
6259
6260 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
6261
6262 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
6263
6264 2012-06-19 Glenn Morris <rgm@gnu.org>
6265
6266 * progmodes/python.el (python-mode): Derive from prog-mode.
6267
6268 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
6269
6270 * emulation/edt.el (edt-default-menu-bar-update-buffers)
6271 (edt-user-menu-bar-update-buffers): New functions.
6272 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
6273
6274 2012-06-19 Chong Yidong <cyd@gnu.org>
6275
6276 * subr.el (with-selected-window): Preserve the selected window's
6277 terminal's top-frame (Bug#4702).
6278
6279 * window.el (save-selected-window): Likewise.
6280
6281 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6282
6283 * progmodes/python.el (python-rx-constituents): Move backquote.
6284 (python-skeleton-define, python-define-auxiliary-skeleton):
6285 Use `declare'.
6286
6287 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
6288
6289 * minibuffer.el (read-file-name-default): Revert the patch from
6290 2012-06-17.
6291
6292 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6293
6294 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
6295 (pcase--u1, pcase--q1): Don't use apply-partially.
6296
6297 2012-06-18 Glenn Morris <rgm@gnu.org>
6298
6299 * progmodes/python.el (python-proc, python-buffer)
6300 (python-send-receive, python-send-string): Fix obsolete versions.
6301
6302 2012-06-18 Martin Rudalics <rudalics@gmx.at>
6303
6304 * window.el (special-display-p): Completely remove stringp
6305 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
6306
6307 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
6308
6309 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
6310
6311 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
6312
6313 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
6314 * net/tramp-sh.el (tramp-maybe-open-connection):
6315 Throw if `non-essential' is non-nil.
6316
6317 2012-06-17 Martin Rudalics <rudalics@gmx.at>
6318
6319 * window.el (special-display-p): Signal an error if BUFFER-NAME
6320 is not a string (Bug#11713).
6321
6322 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
6323
6324 * progmodes/python.el (python-info-beginning-of-backslash):
6325 Rename from python-info-beginning-of-backlash, as a spelling fix.
6326
6327 2012-06-17 Chong Yidong <cyd@gnu.org>
6328
6329 * term.el (term-emulate-terminal): If term-check-size is called,
6330 move point to the process mark without resetting point (Bug#4635).
6331
6332 2012-06-17 Glenn Morris <rgm@gnu.org>
6333
6334 * international/mule-cmds.el (mule-menu-keymap)
6335 (set-language-environment, set-locale-environment): Doc tweaks.
6336
6337 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
6338
6339 * cus-face.el (custom-face-attributes): Add wave-style underline
6340 attribute.
6341 * faces.el (set-face-attribute): Update docstring to describe
6342 wave-style underline attribute.
6343
6344 2012-06-16 Chong Yidong <cyd@gnu.org>
6345
6346 * term/xterm.el (terminal-init-xterm): Discard input before
6347 querying background mode (Bug#10959).
6348
6349 2012-06-16 Stefan Merten <smerten@oekonux.de>
6350
6351 * textmodes/rst.el: Added and corrected some comments.
6352 (rst-re-alist-def): Improve symbol syntax.
6353 (rst-mode-syntax-table): Correct syntax entries.
6354 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
6355 (rst-official-version, rst-official-cvs-rev): Update version
6356 information.
6357
6358 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
6359
6360 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
6361 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
6362
6363 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
6364
6365 * progmodes/python.el: New python.el merge.
6366 (python-guess-indent): Obsolete var.
6367 (python-indent-guess-indent-offset): New defcustom.
6368 (python-indent): Obsolete var.
6369 (python-indent-offset): New defcustom.
6370 (python-python-command, python-jython-command): Delete var.
6371 (python-shell-interpreter): New defcustom.
6372 (python-pdbtrack-do-tracking-p): Delete var.
6373 (python-pdbtrack-activate): New defcustom.
6374 (python-use-skeletons): Obsolete var.
6375 (python-skeleton-autoinsert): New defcustom.
6376 (inferior-python-filter-regexp, python-continuation-offset)
6377 (python-honour-comment-indentation, python-indent-string-contents)
6378 (python-jython-packages, python-mode-hook)
6379 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
6380 (python-shell-prompt-alist)
6381 (python-source-modes): Delete defcustoms.
6382 (python-check-buffer-name, python-eldoc-setup-code)
6383 (python-eldoc-string-code, python-ffap-setup-code)
6384 (python-ffap-string-code, python-fill-comment-function)
6385 (python-fill-decorator-function, python-fill-paren-function)
6386 (python-fill-string-function, python-imenu-include-defun-type)
6387 (python-imenu-make-tree, python-imenu-subtree-root-label)
6388 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
6389 (python-shell-compilation-regexp-alist)
6390 (python-shell-completion-module-string-code)
6391 (python-shell-completion-pdb-string-code)
6392 (python-shell-completion-setup-code)
6393 (python-shell-completion-string-code)
6394 (python-shell-enable-font-lock, python-shell-exec-path)
6395 (python-shell-extra-pythonpaths)
6396 (python-shell-internal-buffer-name, python-shell-interpreter-args)
6397 (python-shell-process-environment)
6398 (python-shell-prompt-block-regexp)
6399 (python-shell-prompt-output-regexp)
6400 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
6401 (python-shell-send-setup-max-wait, python-shell-setup-codes)
6402 (python-shell-virtualenv-path): New defcustoms.
6403 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
6404 (inferior-python-mode-syntax-table, python--prompt-regexp)
6405 (python-buffer, python-command python-python-command)
6406 (python-default-template, python-imports, python-indent-index)
6407 (python-indent-list, python-indent-list-length)
6408 (python-mode-running, python-pdbtrack-is-tracking-p)
6409 (python-preoutput-continuation, python-preoutput-leftover)
6410 (python-preoutput-result, python-preoutput-skip-next-prompt)
6411 (python-prev-dir/file, python-recursing)
6412 (python-saved-check-command, python-version-checked)
6413 (python-which-func-length-limit)
6414 (view-return-to-alist): Delete vars.
6415 (python-check-custom-command, python-dotty-syntax-table)
6416 (python-imenu-index-alist, python-indent-current-level)
6417 (python-indent-dedenters, python-indent-levels)
6418 (python-nav-beginning-of-defun-regexp)
6419 (python-nav-list-defun-positions-cache)
6420 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
6421 (python-shell-internal-buffer)
6422 (python-skeleton-available): New vars.
6423 (def-python-skeleton): Delete macro.
6424 (python-skeleton-define): New macro.
6425 (python-define-auxiliary-skeleton, python-rx): New macros.
6426 (python-insert-class): Delete command.
6427 (python-skeleton-class): New command.
6428 (python-insert-def): Delete command.
6429 (python-skeleton-def): New command.
6430 (python-insert-for): Delete command.
6431 (python-skeleton-for): New command.
6432 (python-insert-if): Delete command.
6433 (python-skeleton-if): New command.
6434 (python-insert-try/except, python-insert-try/finally): Delete commands.
6435 (python-skeleton-try): New command.
6436 (python-insert-while): Delete command.
6437 (python-skeleton-while): New command.
6438 (python-backspace): Delete command.
6439 (python-indent-dedent-line-backspace): New command.
6440 (python-electric-colon): Delete command.
6441 (python-indent-electric-colon): New command.
6442 (python-guess-indent): Delete command.
6443 (python-indent-guess-indent-offset): New command.
6444 (python-shift-left): Delete command.
6445 (python-indent-shift-left): New command.
6446 (python-shift-right): Delete command.
6447 (python-indent-shift-right): New command.
6448 (python-find-function): Delete command.
6449 (python-nav-jump-to-defun): New command.
6450 (python-next-statement): Delete command.
6451 (python-nav-forward-sentence): New command.
6452 (python-previous-statement): Delete command.
6453 (python-nav-backward-sentence): New command.
6454 (python-fill-paragraph): Delete command.
6455 (python-fill-paragraph-function): New command.
6456 (python-send-buffer): Delete command.
6457 (python-shell-send-buffer): New command.
6458 (python-send-defun): Delete command.
6459 (python-shell-send-defun): New command.
6460 (python-send-region, python-send-region-and-go): Delete commands.
6461 (python-shell-send-region)
6462 (python-shell-switch-to-shell): New commands.
6463 (python-send-string): Delete command.
6464 (python-shell-send-string): New command.
6465 (python-switch-to-python): Delete command.
6466 (python-shell-switch-to-shell): New command.
6467 (python-describe-symbol): Delete command.
6468 (python-eldoc-at-point): New command.
6469 (python--set-prompt-regexp, python-args-to-list)
6470 (python-after-info-look, python-check-version)
6471 (python-check-comint-prompt, python-find-imports)
6472 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
6473 (python-unload-function, python-expand-template)
6474 (python-maybe-jython, python-preoutput-filter)
6475 (python-pdbtrack-get-source-buffer)
6476 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
6477 (python-pdbtrack-toggle-stack-tracking)
6478 (python-pdbtrack-track-stack-file, python-initial-text)
6479 (python-first-word, python-comment-line-p, python-send-command)
6480 (python-setup-brm, python-sentinel, python-set-proc)
6481 (python-skip-out, python-input-filter, python-outdent-p)
6482 (python-outline-level, python-backslash-continuation-line-p)
6483 (python-end-of-block, python-end-of-statement, python-mark-block)
6484 (python-beginning-of-block, python-beginning-of-statement)
6485 (python-blank-line-p, python-beginning-of-string)
6486 (python-open-block-statement-p): Delete functions.
6487 (python-indent-line, python-indent-line-1): Delete functions.
6488 (python-indent-line): New function.
6489 (python-indentation-levels): Delete function.
6490 (python-indent-calculate-levels): New function.
6491 (python-proc): Delete function.
6492 (python-shell-get-process): New function.
6493 (python-send-receive): Delete function.
6494 (python-shell-send-string-no-output): New function.
6495 (python-module-path): Delete function.
6496 (python-ffap-module-path): New function.
6497 (python-completion-at-point)
6498 (python-symbol-completions): Delete functions.
6499 (python-completion-complete-at-point): New function.
6500 (python-load-file): Delete function.
6501 (python-shell-send-file): New function.
6502 (python-calculate-indentation): Delete function.
6503 (python-indent-calculate-indentation): New function.
6504 (python-skip-comments/blanks): Delete function.
6505 (python-util-forward-comment): New function.
6506 (python-continuation-line-p): Delete function.
6507 (python-info-continuation-line-p): New function.
6508 (python-which-func, python-current-defun): Delete function.
6509 (python-info-current-defun): New function.
6510 (python-beginning-of-defun): Delete function.
6511 (python-nav-beginning-of-defun): New function.
6512 (python-close-block-statement-p)
6513 (python-block-end-p): Delete function.
6514 (python-info-closing-block): New function.
6515 (python-comint-output-filter-function)
6516 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
6517 (python-fill-comment, python-fill-decorator, python-fill-paren)
6518 (python-fill-string, python-imenu-make-element-tree)
6519 (python-imenu-make-tree, python-imenu-tree-assoc)
6520 (python-indent-context, python-indent-dedent-line)
6521 (python-indent-line-function)
6522 (python-indent-post-self-insert-function)
6523 (python-indent-toggle-levels)
6524 (python-info-assignment-continuation-line-p)
6525 (python-info-beginning-of-backlash)
6526 (python-info-block-continuation-line-p)
6527 (python-info-closing-block-message)
6528 (python-info-line-ends-backslash-p)
6529 (python-info-looking-at-beginning-of-defun)
6530 (python-info-ppss-context, python-info-ppss-context-type)
6531 (python-nav-list-defun-positions, python-nav-read-defun)
6532 (python-nav-sentence-end, python-nav-sentence-start)
6533 (python-pdbtrack-comint-output-filter-function)
6534 (python-pdbtrack-set-tracked-buffer)
6535 (python-shell-calculate-exec-path)
6536 (python-shell-calculate-process-environment)
6537 (python-shell-completion--do-completion-at-point)
6538 (python-shell-completion--get-completions)
6539 (python-shell-completion-complete-at-point)
6540 (python-shell-completion-complete-or-indent)
6541 (python-shell-get-or-create-process)
6542 (python-shell-get-process-name)
6543 (python-shell-internal-get-or-create-process)
6544 (python-shell-internal-get-process-name)
6545 (python-shell-internal-send-string, python-shell-make-comint)
6546 (python-shell-parse-command, python-shell-send-setup-code)
6547 (python-skeleton-add-menu-items)
6548 (python-util-clone-local-variables, python-util-position)
6549 (run-python-internal, python-indentation-levels)
6550 (python-nav-beginning-of-defun)
6551 (python-completion-complete-at-point): New functions.
6552 (run-python): Change arguments. New API requirements.
6553
6554 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6555
6556 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
6557 (bug#11649).
6558
6559 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
6560 (macroexp--expand-all): Use it.
6561
6562 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
6563 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
6564 Use `cl-function' instead.
6565
6566 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
6567
6568 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
6569 Suggested by Stefan Monnier while discussing bug#11657.
6570
6571 2012-06-14 Sam Steingold <sds@gnu.org>
6572
6573 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
6574
6575 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
6576
6577 * play/doctor.el (doctor-doc): Remove parameter and use
6578 doctor-sent instead of sent.
6579 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
6580
6581 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6582
6583 * files.el: Require cl-lib.
6584 (file-name-non-special): Replace case -> cl-case.
6585
6586 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
6587
6588 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
6589 mapping from #' to function*.
6590
6591 2012-06-13 Chong Yidong <cyd@gnu.org>
6592
6593 * mouse.el (mouse-drag-track): Do not set the mark if the user
6594 releases the mouse without selecting anything (Bug#11588).
6595
6596 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6597
6598 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
6599 as well (bug#11646).
6600
6601 * loadup.el: Count byte-code functions as well.
6602
6603 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
6604 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
6605
6606 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
6607 (bug#11649). Add cl-defun and cl-defmacro.
6608
6609 2012-06-13 Drew Adams <drew.adams@oracle.com>
6610
6611 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6612 Fix last change.
6613
6614 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
6615
6616 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
6617 Otherwise, it blocks in batch mode.
6618
6619 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
6620
6621 * help-mode.el (bookmark-make-record-default): Declare.
6622
6623 2012-06-13 Chong Yidong <cyd@gnu.org>
6624
6625 * emacs-lisp/package.el (list-packages): Compute a list of
6626 packages that are newly-available since the last list-packages
6627 invocation.
6628 (package-menu--new-package-list): New var.
6629 (package-menu--generate, package-menu--print-info)
6630 (package-menu--status-predicate, package-menu-mark-install):
6631 Handle new status label "new".
6632
6633 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6634
6635 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
6636 conversion to backquotes.
6637
6638 2012-06-12 Chong Yidong <cyd@gnu.org>
6639
6640 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
6641 Rename from gud-inhibit-global-bindings.
6642
6643 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
6644
6645 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
6646 hook from nxml-glyph-set-hook.
6647
6648 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
6649 declaration.
6650
6651 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
6652
6653 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
6654 Convert to defcustom.
6655
6656 2012-06-12 Drew Adams <drew.adams@oracle.com>
6657
6658 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6659 New functions.
6660 (help-mode): Use them.
6661
6662 2012-06-11 Glenn Morris <rgm@gnu.org>
6663
6664 * progmodes/fortran.el (fortran-font-lock-keywords-3):
6665 Use preprocessor face for directives.
6666 (fortran-directive-re): Doc fix.
6667
6668 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6669
6670 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
6671 conversion to backquotes (bug#11652).
6672
6673 Fix compiler-expansion of CL's cXXr functions (bug#11673).
6674 * emacs-lisp/cl-lib.el (cl--defalias): New function.
6675 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
6676 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
6677 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
6678 (cl-ninth, cl-tenth): Mark them as inlinable.
6679 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
6680 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
6681 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
6682 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
6683 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
6684 (cl-list*, cl-adjoin): Don't put an autoload manually.
6685 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
6686 (cl--compiler-macro-list*): Add autoload cookie.
6687 (cl--compiler-macro-cXXr): New function.
6688
6689 * help-fns.el (help-fns--compiler-macro): New function extracted from
6690 describe-function-1; follow aliases and use `compiler-macro' property.
6691 (describe-function-1): Use it.
6692
6693 2012-06-11 Chong Yidong <cyd@gnu.org>
6694
6695 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
6696 is uninstalled, if imagemagick is installed.
6697
6698 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6699
6700 * emacs-lisp/cl-lib.el: Use lexical-binding.
6701 (cl-map-extents, cl-maclisp-member): Remove.
6702 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
6703 (cl--set-substring, cl--block-wrapper, cl--block-throw)
6704 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
6705 * emacs-lisp/cl-extra.el: Use lexical-binding.
6706 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
6707 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
6708 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
6709 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
6710 * emacs-lisp/cl-seq.el: Use lexical-binding.
6711 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
6712 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
6713 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
6714 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
6715 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
6716 CL's internals.
6717
6718 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
6719
6720 Sync with Tramp 2.2.6-pre.
6721
6722 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
6723 `print-length' and `print-level' to nil, in order to avoid
6724 truncation. Reported by Christopher Schmidt
6725 <christopher@ristopher.com>.
6726
6727 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
6728
6729 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
6730 New defmacro.
6731 (tramp-compat-copy-directory): Add optional argument
6732 COPY-CONTENTS. It is not handled yet.
6733
6734 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
6735 (tramp-ftp-file-name-p): Simplify.
6736
6737 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
6738 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
6739 connection vector.
6740
6741 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
6742 (tramp-methods): Do not use `tramp-password-end-of-line'.
6743 (tramp-completion-function-alist-putty): Handle UNIX case.
6744 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
6745 (tramp-do-file-attributes-with-stat)
6746 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
6747 gid as real numbers. They could run out of integer range on cygwin.
6748 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
6749 (tramp-sh-handle-expand-file-name): Handle hops.
6750 (tramp-open-connection-setup-interactive-shell):
6751 Use `tramp-cleanup'. Move check for busyboxes ...
6752 (tramp-find-shell): ... here. Simplify implementation.
6753 Set "remote-shell" property also for alternative shells.
6754 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
6755 If failing, a regular file would be written otherwise.
6756 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
6757 (tramp-find-inline-encoding): Cache the coding commands in the
6758 process cache. Apply test command on the remote side, if defined.
6759 (tramp-find-inline-compress): Cache the compress commands in the
6760 process cache.
6761 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
6762 when requested. Handle hops.
6763 (tramp-current-connection): New defvar.
6764 (tramp-maybe-open-connection): Use `tramp-cleanup'.
6765 Throw `suppress', if there was a failed connection shortly before.
6766 Handle user interrupt. (Bug#10187)
6767 (tramp-get-inline-compress, tramp-get-inline-coding):
6768 Read connection properties from the process cache.
6769
6770 * net/tramp-smb.el (tramp-smb-server-version)
6771 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
6772 New defconsts.
6773 (tramp-smb-prompt): Extend for powershell prompt.
6774 (tramp-smb-file-name-handler-alist): Add handlers for
6775 `process-file', `shell-command' and `start-file-process'.
6776 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
6777 (tramp-smb-winexe-shell-command-switch): New defcustoms.
6778 (tramp-smb-file-name-p): Simplify.
6779 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
6780 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
6781 (tramp-smb-shell-quote-argument): New defuns.
6782 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
6783 Implement using "tar". By this, time-stamps are preserved.
6784 (tramp-smb-handle-copy-file): Handle also the case of directories.
6785 (tramp-smb-do-file-attributes-with-stat)
6786 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
6787 Use `tramp-get-connection-buffer').
6788 (tramp-smb-handle-rename-file): Use "rename", when source and
6789 target are on the same share.
6790 (tramp-smb-maybe-open-connection): Handle wrong passwords.
6791 Use `tramp-smb-server-version'.
6792 (tramp-smb-wait-for-output): Remove prompt.
6793
6794 * net/tramp.el (top): Require 'cl.
6795 (tramp-methods, tramp-rsh-end-of-line):
6796 Remove `tramp-password-end-of-line' from docstring.
6797 (tramp-save-ad-hoc-proxies): New defcustom.
6798 (tramp-completion-function-alist): Adapt docstring.
6799 (tramp-default-password-end-of-line): Remove defcustom.
6800 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
6801 (tramp-user-regexp, tramp-file-name-regexp-unified)
6802 (tramp-file-name-regexp-url): Extend regexp by hop separator.
6803 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
6804 (tramp-remote-file-name-spec-regexp): New defconst.
6805 (tramp-file-name-structure): Extend structure for hops.
6806 (tramp-get-method-parameter): Move up.
6807 (tramp-file-name-p, tramp-dissect-file-name)
6808 (with-parsed-tramp-file-name): Handle hops.
6809 (tramp-file-name-hop): New defun.
6810 (tramp-make-tramp-file-name): New optional arg HOP.
6811 (tramp-message-show-progress-reporter-message): New defvar.
6812 (tramp-with-progress-reporter): Use it. We cannot use
6813 `tramp-message-show-message' here, because this suppresses also
6814 error buffers.
6815 (tramp-error-with-buffer): Suppress buffer view, if
6816 `tramp-message-show-message' is nil.
6817 Use `tramp-get-connection-buffer'.
6818 (tramp-cleanup): New defun.
6819 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
6820 (tramp-file-name-handler): If `debug-on-error' is set, propagate
6821 an error unchanged.
6822 (tramp-completion-handle-file-name-all-completions): Handle hops.
6823 Fix an error when called from ido.
6824 (tramp-completion-dissect-file-name): Use better local variable
6825 name. Add hop to the vector.
6826 (tramp-handle-insert-file-contents): Use progress-reporter for the
6827 whole scenario.
6828 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
6829 to `t'.
6830 (tramp-check-for-regexp): Simplify search.
6831 (tramp-enter-password): Remove it. Move implementation ...
6832 (tramp-action-password): ... here.
6833 (tramp-mode-string-to-int, tramp-local-host-p)
6834 (tramp-make-tramp-temp-file, tramp-read-passwd)
6835 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
6836 Set tramp-autoload cookie.
6837
6838 * net/trampver.el: Update release number.
6839
6840 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6841 Michael Albinus <michael.albinus@gmx.de>
6842
6843 * net/tramp.el (tramp-set-completion-function): Fix docstring.
6844 (tramp-parse-group, tramp-parse-file)
6845 (tramp-parse-shostkeys-sknownhosts): New defuns.
6846 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
6847 (tramp-parse-shosts-group, tramp-parse-sconfig)
6848 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
6849 (tramp-parse-sknownhosts, tramp-parse-hosts)
6850 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
6851 Use them.
6852 (tramp-parse-passwd-group, tramp-parse-netrc-group)
6853 (tramp-parse-putty-group): Don't narrow.
6854 (tramp-parse-putty): Make a loop.
6855 (tramp-file-name-handler): Catch the `suppress' signal.
6856
6857 2012-06-11 Chong Yidong <cyd@gnu.org>
6858
6859 * image.el (imagemagick-register-types): Put the ImageMagick entry
6860 at the end of image-type-file-name-regexps.
6861
6862 2012-06-11 Johan Bockgård <bojohan@gnu.org>
6863
6864 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
6865 (pcase, pcase-let*, pcase-dolist): Use them.
6866
6867 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6868
6869 * emacs-lisp/pcase.el (pcase--let*): New function.
6870 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
6871 (pcase--expand): Use macroexp-let².
6872
6873 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6874
6875 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
6876 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
6877 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
6878 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
6879 * emacs-lisp/derived.el: Use pcase instead of `cl'.
6880 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
6881
6882 2012-06-10 Glenn Morris <rgm@gnu.org>
6883
6884 * mail/rmail.el (rmail-yank-current-message): Leave point at
6885 correct position. (Bug#11660)
6886
6887 2012-06-10 Chong Yidong <cyd@gnu.org>
6888
6889 * allout-widgets.el: Fix code header.
6890
6891 2012-06-10 Chong Yidong <cyd@gnu.org>
6892
6893 * cus-edit.el (customize-changed-options-previous-release):
6894 Bump to 24.1.
6895
6896 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
6897
6898 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
6899
6900 2012-06-09 Chong Yidong <cyd@gnu.org>
6901
6902 * ebuff-menu.el (electric-buffer-list): Preserve header line.
6903
6904 2012-06-09 Martin Rudalics <rudalics@gmx.at>
6905
6906 * window.el (special-display-popup-frame): Don't use
6907 window--display-buffer (Bug#11651).
6908
6909 2012-06-09 Eli Zaretskii <eliz@gnu.org>
6910
6911 Fix parallel builds: make sure loaddefs.el is not being written
6912 while Lisp files are compiled.
6913 (compile): Don't depend on 'mh-autoloads'.
6914 (compile-CMD, compile-SH): Depend on 'autoloads'.
6915 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
6916
6917 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
6918
6919 2012-06-09 Chong Yidong <cyd@gnu.org>
6920
6921 * face-remap.el (face-remap-add-relative, face-remap-set-base)
6922 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
6923 Doc fixes (Bug#11225).
6924
6925 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6926
6927 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
6928 a function if there's a clear indication that it has a compiler-macro.
6929 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
6930 (macro-declarations-alist): Add arglist to declaration functions.
6931 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
6932 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
6933 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
6934 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
6935 Also add autoload to find the compiler macro.
6936 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
6937 (cl--compiler-macro-member, cl--compiler-macro-assoc)
6938 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
6939 (cl--compiler-macro-get): New functions, replacing calls to
6940 cl-define-compiler-macro.
6941 (cl-typep) [compiler-macro]: Use macroexp-let².
6942
6943 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
6944
6945 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
6946 string properly, fixes Bug#11473.
6947
6948 2012-06-08 Chong Yidong <cyd@gnu.org>
6949
6950 * faces.el (set-face-attribute): Doc fix.
6951 (modify-face): Don't use :bold and :italic.
6952 (error, warning, success): Tweak definitions.
6953
6954 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
6955 (custom-modified, custom-set, custom-changed, custom-themed)
6956 (custom-saved, custom-button, custom-button-mouse)
6957 (custom-button-pressed, custom-state, custom-comment-tag)
6958 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
6959 (custom-group-subtitle): Use new-style face specs.
6960 (custom-invalid-face, custom-rogue-face, custom-modified-face)
6961 (custom-set-face, custom-changed-face, custom-saved-face)
6962 (custom-button-face, custom-button-pressed-face)
6963 (custom-documentation-face, custom-state-face)
6964 (custom-comment-face, custom-comment-tag-face)
6965 (custom-variable-tag-face, custom-variable-button-face)
6966 (custom-face-tag-face, custom-group-tag-face-1)
6967 (custom-group-tag-face): Remove obsolete face alias.
6968
6969 * epa.el (epa-validity-high, epa-validity-medium)
6970 (epa-validity-low, epa-mark, epa-field-name, epa-string)
6971 (epa-field-name, epa-field-body):
6972 * font-lock.el (font-lock-comment-face, font-lock-string-face)
6973 (font-lock-keyword-face, font-lock-builtin-face)
6974 (font-lock-function-name-face, font-lock-variable-name-face)
6975 (font-lock-type-face, font-lock-constant-face):
6976 * ido.el (ido-first-match, ido-only-match, ido-subdir)
6977 (ido-virtual, ido-indicator, ido-incomplete-regexp):
6978 * speedbar.el (speedbar-button-face, speedbar-file-face)
6979 (speedbar-directory-face, speedbar-tag-face)
6980 (speedbar-selected-face, speedbar-highlight-face)
6981 (speedbar-separator-face):
6982 * whitespace.el (whitespace-newline, whitespace-space)
6983 (whitespace-hspace, whitespace-tab, whitespace-trailing)
6984 (whitespace-line, whitespace-space-before-tab)
6985 (whitespace-space-after-tab, whitespace-indentation)
6986 (whitespace-empty):
6987 * emulation/cua-base.el (cua-global-mark):
6988 * eshell/em-prompt.el (eshell-prompt):
6989 * net/newst-plainview.el (newsticker-new-item-face)
6990 (newsticker-old-item-face, newsticker-immortal-item-face)
6991 (newsticker-obsolete-item-face, newsticker-date-face)
6992 (newsticker-statistics-face, newsticker-default-face):
6993 * net/newst-reader.el (newsticker-feed-face)
6994 (newsticker-extra-face, newsticker-enclosure-face):
6995 * net/newst-treeview.el (newsticker-treeview-face)
6996 (newsticker-treeview-new-face, newsticker-treeview-old-face)
6997 (newsticker-treeview-immortal-face)
6998 (newsticker-treeview-obsolete-face)
6999 (newsticker-treeview-selection-face):
7000 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
7001 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
7002 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
7003 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
7004 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
7005 (nxml-outline-active-indicator, nxml-outline-ellipsis):
7006 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
7007 (mpuz-text):
7008 * progmodes/vera-mode.el (vera-font-lock-number)
7009 (vera-font-lock-function, vera-font-lock-interface):
7010 * textmodes/table.el (table-cell): Use new-style face specs, and
7011 don't use the old :bold and :italic attributes.
7012
7013 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
7014 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
7015 (ebrowse-member-class, ebrowse-progress): Likewise.
7016 (ebrowse-tree-mark-face, ebrowse-root-class-face)
7017 (ebrowse-file-name-face, ebrowse-default-face)
7018 (ebrowse-member-attribute-face, ebrowse-member-class-face)
7019 (ebrowse-progress-face): Remove obsolete faces.
7020
7021 * progmodes/flymake.el (flymake-errline, flymake-warnline):
7022 Inherit from error and warning faces respectively.
7023
7024 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
7025 Likewise.
7026 (flyspell-incorrect-face, flyspell-duplicate-face):
7027 Remove obsolete aliases.
7028
7029 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
7030
7031 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
7032 Avoid infloop.
7033
7034 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
7035
7036 * startup.el (argv, argi): Make lexically scoped.
7037 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
7038 * emacs-lisp/cl-macs.el: Use lexical-binding.
7039 Rename cl-bind-* to cl--bind-*.
7040 * files.el: Don't require `cl' since it doesn't use it.
7041 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
7042
7043 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
7044
7045 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
7046 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
7047 instead of calling external sort utility.
7048 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
7049
7050 2012-06-08 Eli Zaretskii <eliz@gnu.org>
7051
7052 * descr-text.el (describe-char): Mention how to insert the
7053 character, if the current input method doesn't support it.
7054 See the discussion in this thread for the details:
7055 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
7056
7057 2012-06-08 Sam Steingold <sds@gnu.org>
7058
7059 * bindings.el (global-map): Bind XF86Forward to next-buffer and
7060 XF86Back to previous-buffer.
7061 (minibuffer-local-map): Bind them to next-history-element and
7062 previous-history-element respectively.
7063 * help-mode.el (help-mode-map): Bind them to help-go-forward and
7064 help-go-back respectively.
7065 * info.el (Info-mode-map): Bind them to Info-history-forward and
7066 Info-history-back respectively.
7067 These are the keys next to Up on the ThinkPad keyboard.
7068
7069 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
7070
7071 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
7072 * emacs-lisp/cl-macs.el: Provide itself.
7073 (cl--labels-convert-cache): New var.
7074 (cl--labels-convert): New function.
7075 (cl-flet, cl-labels): New implementation with new semantics, relying on
7076 lexical-binding.
7077 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
7078 (cl-closure-vars, cl--function-convert-cache)
7079 (cl--function-convert): Move from cl-macs.el.
7080 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
7081 rename by removing the "cl-" prefix.
7082 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
7083
7084 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
7085
7086 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
7087 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
7088 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
7089 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
7090 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
7091 (cl-hash-table-count): Add old compatibility aliases.
7092
7093 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
7094 Use macroexpand-all-environment instead.
7095 (cl--old-macroexpand): New var.
7096 (cl--sm-macroexpand): New function.
7097 (cl-symbol-macrolet): Use it during macro expansion.
7098 (cl--function-convert-cache): New var.
7099 (cl--function-convert): New function, extracted from
7100 cl-macroexpand-all.
7101 (cl-lexical-let): Use it.
7102
7103 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
7104 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
7105 (cl-member): Remove old alias.
7106
7107 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
7108 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
7109 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
7110 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
7111 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
7112 (cl-macroexpand-cmacs): Remove var.
7113 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
7114 Use macroexpand-all instead.
7115
7116 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
7117
7118 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
7119 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
7120 (macroexp-copyable-p): New functions and macros.
7121 * emacs-lisp/edebug.el (edebug-unwrap):
7122 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
7123 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
7124 (pcase--let*): Remove.
7125 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
7126 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
7127 macroexp-const-p instead.
7128 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
7129
7130 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
7131 instead of "cl-" for internal definitions. Use macroexp-const-p.
7132 (cl-old-bc-file-form): Remove var.
7133 (cl-const-exprs-p): Remove fun.
7134 (cl-labels, cl-macrolet): Use backquote.
7135 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
7136 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
7137 (cl-define-setf-expander): Rename from cl-define-setf-method.
7138 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
7139
7140 * international/mule-cmds.el: Don't require CL.
7141 (view-hello-file): Don't use `letf'.
7142
7143 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
7144
7145 * tmm.el (tmm-prompt): Use string-prefix-p.
7146 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
7147 (tmm-add-prompt): Use minibuffer-completion-help.
7148 (tmm-delete-map): Remove.
7149
7150 * subr.el (kbd): Make it its own function.
7151
7152 2012-06-07 Stefan Merten <smerten@oekonux.de>
7153
7154 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
7155 Silence compiler warnings. Fix versions.
7156 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
7157 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
7158 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
7159 (rst-package-emacs-version-alist): Correct Emacs version to
7160 represent major merge with upstream.
7161 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
7162
7163 2012-06-06 Glenn Morris <rgm@gnu.org>
7164
7165 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
7166 Only print environment variables if set.
7167
7168 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
7169
7170 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
7171 (macroexp--cons): Rename from maybe-cons.
7172 (macroexp--accumulate): Rename from macroexp-accumulate.
7173 (macroexp--all-forms): Rename from macroexpand-all-forms.
7174 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
7175 (macroexp--expand-all): Rename from macroexpand-all-1.
7176
7177 2012-06-06 Sam Steingold <sds@gnu.org>
7178
7179 * calendar/calendar.el (calendar-in-read-only-buffer):
7180 Call `special-mode' to enable the standard read-only keybindings.
7181
7182 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
7183
7184 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
7185 with "loading" messages (bug#11635).
7186
7187 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
7188
7189 * files.el (enable-remote-dir-locals): New option.
7190 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
7191
7192 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
7193 Ensure, that the temp directory is local.
7194
7195 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
7196 `temporary-file-directory'.
7197
7198 * progmodes/python.el (python-send-region): Ensure, that the
7199 temporary file is created also in the remote case.
7200
7201 2012-06-06 Glenn Morris <rgm@gnu.org>
7202
7203 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
7204 (vc-rcs-update-changelog): Use it.
7205
7206 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
7207
7208 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
7209 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
7210 (vc-sccs-diff): Replace use of the external vcdiff script.
7211
7212 2012-06-05 Glenn Morris <rgm@gnu.org>
7213
7214 * ledit.el: Move to obsolete/.
7215
7216 2012-06-05 Sam Steingold <sds@gnu.org>
7217
7218 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
7219 patch (Bug#11140).
7220
7221 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
7222
7223 * emacs-lisp/cust-print.el: Move to obsolete.
7224
7225 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
7226 compiler-macro expansion.
7227
7228 Add native compiler-macro support.
7229 * emacs-lisp/macroexp.el (macroexpand-all-1):
7230 Support compiler-macros directly. Properly follow aliases and apply
7231 the compiler macros more thoroughly.
7232 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
7233 macroexpand now properly follows aliases.
7234 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
7235 (cl-compiler-macroexpand): Use new prop.
7236 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
7237
7238 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
7239
7240 2012-06-05 Martin Rudalics <rudalics@gmx.at>
7241
7242 * window.el (get-lru-window, get-mru-window, get-largest-window):
7243 New argument NOT-SELECTED to avoid picking the selected window.
7244 (window--display-buffer-1, window--display-buffer-2): Replace by
7245 new function window--display-buffer
7246 (display-buffer-same-window, display-buffer-reuse-window)
7247 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7248 Use window--display-buffer.
7249 (display-buffer-use-some-window): Remove temporary dedication
7250 hack by calling get-lru-window and get-largest-window with
7251 NOT-SELECTED argument non-nil. Call window--display-buffer.
7252
7253 2012-06-05 Glenn Morris <rgm@gnu.org>
7254
7255 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
7256 Replace external vcdiff script.
7257
7258 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7259
7260 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
7261
7262 2012-06-04 Chong Yidong <cyd@gnu.org>
7263
7264 * image.el (imagemagick-types-inhibit): Revert last change.
7265 Add INFO and M.
7266 (imagemagick-enabled-types): Remove CIN and EPS*.
7267
7268 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7269
7270 * emacs-lisp/cl-lib.el: Rename from cl.el.
7271 * emacs-lisp/cl.el: New compatibility file.
7272 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
7273 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
7274 to obey the "cl-" prefix.
7275 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
7276
7277 2012-06-03 Glenn Morris <rgm@gnu.org>
7278
7279 * emacs-lisp/authors.el (authors-aliases): Addition.
7280
7281 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
7282 Fix :version.
7283
7284 2012-06-03 Stefan Merten <smerten@oekonux.de>
7285
7286 * textmodes/rst.el: Add comments.
7287 (rst-transition, rst-adornment): New faces.
7288 (rst-adornment-faces-alist): Make default safe to reevaluate.
7289 Fixes
7290 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
7291 Improve customization tags.
7292 (rst-define-level-faces): Clarify meaning.
7293
7294 2012-06-03 Chong Yidong <cyd@gnu.org>
7295
7296 * progmodes/compile.el (compilation-mode-line-fail)
7297 (compilation-mode-line-run, compilation-mode-line-exit):
7298 New faces.
7299 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
7300
7301 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
7302
7303 * progmodes/which-func.el (which-func-update-ediff-windows):
7304 New function. Use it in ediff-select-hook (Bug#11478).
7305
7306 2012-06-03 Chong Yidong <cyd@gnu.org>
7307
7308 * bindings.el: Remove explicit help text from format-mode-line.
7309 It is now supplied by mode-line-default-help-echo.
7310 (mode-line-front-space, mode-line-end-spaces)
7311 (mode-line-misc-info): New variables.
7312 (mode-line-modes, mode-line-position): Move the default value to
7313 the variable definition.
7314 (mode-line-default-help-echo): New defcustom.
7315 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
7316 (mode-line-modified-help-echo): New functions.
7317 (mode-line-mule-info, mode-line-modified): Use them.
7318 (mode-line-eol-desc, propertized-buffer-identification):
7319 Consistency fixes for help text.
7320 (mode-line-coding-system-map): Allow using mouse-3 to invoke
7321 set-buffer-file-coding-system (Bug#289).
7322 (mode-line-mule-info-help-echo): Update help text.
7323
7324 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7325
7326 * simple.el (execute-extended-command): Set real-this-command
7327 (bug#11506).
7328
7329 2012-06-02 Chong Yidong <cyd@gnu.org>
7330
7331 Remove incorrect uses of "modeline" in comments, docstrings, and
7332 function/variable names (Bug#10329).
7333
7334 * cus-edit.el (mode-line):
7335 * dframe.el (dframe-mouse-hscroll):
7336 * emacs-lisp/re-builder.el:
7337 * emacs-lisp/easy-mmode.el (define-minor-mode):
7338 * frame.el (set-frame-name):
7339 * help.el (lookup-minor-mode-from-indicator):
7340 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
7341 * progmodes/cc-cmds.el (c-toggle-auto-newline)
7342 (c-toggle-hungry-state):
7343 * progmodes/antlr-mode.el (antlr-language-alist):
7344 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
7345 * progmodes/vhdl-mode.el (vhdl-mode):
7346 * progmodes/which-func.el (which-func, which-func-cleanup-function):
7347 * term/ns-win.el (ns-face-at-pos):
7348 * term/sup-mouse.el (sup-mouse-report):
7349 * textmodes/flyspell.el (flyspell-mode-line-string):
7350 * textmodes/ispell.el (ispell-highlight-face):
7351 * textmodes/reftex-global.el:
7352 * vc/vc-arch.el (vc-arch-mode-line-string):
7353 * vc/vc-cvs.el (vc-cvs-mode-line-string):
7354 * vc/vc-git.el (vc-git-mode-line-string):
7355 * vc/vc-hooks.el (vc-display-status)
7356 (vc-default-mode-line-string):
7357 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
7358
7359 * ansi-color.el (ansi-color-faces-vector): Change default faces.
7360
7361 * dired.el (dired-sort-set-mode-line): Rename from
7362 dired-sort-set-modeline. All callers changed.
7363
7364 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
7365 eshell-status-in-modeline.
7366
7367 * foldout.el (foldout-mode-line-string): Rename from
7368 foldout-modeline-string. All callers changed.
7369 (foldout-update-mode-line): Rename from foldout-update-modeline.
7370
7371 * subr.el (redraw-modeline): Make into obsolete alias.
7372
7373 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
7374 timeclock-modeline-display. Make old name an alias.
7375 (timeclock-update-mode-line): Likewise. All callers changed.
7376 (timeclock-mode-line-display): No need to check before using
7377 add-hook.
7378 (timeclock-relative, timeclock-day-over-hook)
7379 (timeclock-use-elapsed, timeclock-mode-string)
7380 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
7381
7382 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
7383 crisp-mode-modeline-string.
7384
7385 * play/solitaire.el (solitaire-build-mode-line): Rename from
7386 solitaire-build-modeline. All callers changed.
7387
7388 * play/zone.el (zone-hiding-mode-line): Rename from
7389 zone-hiding-modeline. All callers changed.
7390 (zone): Remove unusued `modeline-hidden-level' property.
7391
7392 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
7393 xscheme-modeline-initialize. All callers changed.
7394
7395 * strokes.el (strokes-lighter): Rename from
7396 strokes-modeline-string.
7397
7398 * textmodes/sgml-mode.el (html-face-tag-alist)
7399 (html-tag-face-alist): Use mode-line face instead of obsolete
7400 alias modeline.
7401
7402 2012-06-02 Stefan Merten <smerten@oekonux.de>
7403
7404 * textmodes/rst.el: Always require `cl'.
7405 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
7406
7407 2012-06-02 Chong Yidong <cyd@gnu.org>
7408
7409 * image.el (imagemagick-enabled-types): Rename from
7410 imagemagick-types-enable. Add many more types.
7411 (imagemagick-types-inhibit): Change default to nil.
7412 (imagemagick-filter-types): Caller changed.
7413
7414 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
7415
7416 * emacs-lisp/cl-macs.el: Use backquotes.
7417 (cl-transform-function-property): Use eval-and-compile rather than
7418 abusing `require'.
7419 (defstruct): Use declare-function instead of with-no-warnings.
7420
7421 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
7422 (byte-compile-output-docform): Re-add the print-circle bindings.
7423 (byte-compile-fix-header): Use #$ just because it's shorter.
7424 (byte-compile-output-file-form): Remove defun/defmacro.
7425
7426 2012-06-01 Martin Rudalics <rudalics@gmx.at>
7427
7428 * simple.el (choose-completion): Remove now obsolete binding for
7429 owindow.
7430
7431 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
7432
7433 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
7434 in order to avoid "Stack overflow in regexp matcher".
7435
7436 2012-05-31 Glenn Morris <rgm@gnu.org>
7437
7438 * image.el: For clarity, call imagemagick-register-types at
7439 top-level, rather than relying on a custom :initialize.
7440 (imagemagick-types-enable): New option. (Bug#11557)
7441 (imagemagick-filter-types): New function. (Bug#7406)
7442 (imagemagick-register-types): Use imagemagick-filter-types.
7443 If disabling support, remove elements altogether rather
7444 than using an impossible regexp.
7445 (imagemagick-types-inhibit): Give it the default init function.
7446
7447 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7448
7449 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
7450 Handle arbitrary file name lengths (Bug#11585).
7451
7452 2012-05-31 Martin Rudalics <rudalics@gmx.at>
7453
7454 * desktop.el (desktop-read): Clear previous and next buffers for
7455 all windows and bury *Messages* buffer (bug#11556).
7456
7457 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7458
7459 Add `declare' for `defun'. Align `defmacro's with it.
7460 * emacs-lisp/easy-mmode.el (define-minor-mode)
7461 (define-globalized-minor-mode): Don't autoload the var definitions.
7462 * emacs-lisp/byte-run.el: Use lexical-binding.
7463 (defun-declarations-alist, macro-declarations-alist): New vars.
7464 (defmacro, defun): Use them.
7465 (make-obsolete, define-obsolete-function-alias)
7466 (make-obsolete-variable, define-obsolete-variable-alias):
7467 Use `declare'.
7468 (macro-declaration-function): Mark obsolete.
7469 * emacs-lisp/autoload.el: Use lexical-binding.
7470 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
7471
7472 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7473
7474 * textmodes/ispell.el (ispell-with-no-warnings):
7475 Define as a macro.
7476 (ispell-kill-ispell, ispell-change-dictionary):
7477 Use `called-interactively-p' for Emacs instead of obsolete
7478 `interactive-p'.
7479
7480 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
7481
7482 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
7483 (macro-declaration-function): Move var from C code.
7484 (macro-declaration-function): Define function with defalias.
7485 * emacs-lisp/macroexp.el (macroexpand-all-1):
7486 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
7487 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
7488 defun/defmacro any more.
7489 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
7490 Provide fallback for unknown arglist.
7491 (byte-compile-arglist-warn): Change calling convention.
7492 (byte-compile-output-file-form): Move print-vars binding.
7493 (byte-compile-output-docform): Simplify accordingly.
7494 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
7495 (byte-compile-defmacro-declaration): Remove.
7496 (byte-compile-file-form-defmumble): Generalize to defalias.
7497 (byte-compile-output-as-comment): Return byte-positions.
7498 Simplify callers accordingly.
7499 (byte-compile-lambda): Use `assert'.
7500 (byte-compile-defun, byte-compile-defmacro): Remove.
7501 (byte-compile-file-form-defalias):
7502 Use byte-compile-file-form-defmumble.
7503 (byte-compile-defalias-warn): Remove.
7504
7505 2012-05-29 Stefan Merten <smerten@oekonux.de>
7506
7507 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
7508 possible. Fix authors. Improve comments. Improve loading of `cl'.
7509
7510 (rst-mode-abbrev-table): Merge definition.
7511 (rst-mode): Make sure `font-lock-defaults' is buffer local.
7512 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
7513
7514 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
7515
7516 * calendar/icalendar.el
7517 (icalendar-export-region): Export UID properly.
7518
7519 2012-05-29 Leo Liu <sdl.web@gmail.com>
7520 * calendar/icalendar.el (icalendar-import-format):
7521 Add `icalendar-import-format-uid' (Bug#11525).
7522 (icalendar-import-format-uid): New.
7523 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
7524 Export UID.
7525
7526 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
7527
7528 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
7529 different alternative patterns.
7530 (pcase-codegen): Be more careful to preserve identity.
7531 (pcase--u1): Don't forget to mark vars as used.
7532
7533 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
7534 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
7535 (byte-compile-from-buffer): ...rather than here.
7536
7537 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
7538 functions from byte-compile-function-environment.
7539
7540 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
7541
7542 * window.el (window-deletable-p): Avoid deleting the root window
7543 of a frame with an active minibuffer.
7544
7545 2012-05-29 Martin Rudalics <rudalics@gmx.at>
7546
7547 * simple.el (choose-completion): Use quit-window (Bug#11567).
7548
7549 2012-05-29 Chong Yidong <cyd@gnu.org>
7550
7551 * whitespace.el (whitespace-cleanup): Fix usage of
7552 whitespace-empty-at-bob-regexp (Bug#11492).
7553
7554 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7555
7556 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
7557 revert (Bug#11488).
7558
7559 2012-05-29 Juri Linkov <juri@jurta.org>
7560
7561 * isearch.el (isearch-mode-map): Bind `M-s _' to
7562 `isearch-toggle-symbol'. Bind `M-s c' to
7563 `isearch-toggle-case-fold'.
7564 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
7565 (isearch-forward): Add `M-s _' to the docstring.
7566 (isearch-forward-symbol, isearch-toggle-case-fold)
7567 (isearch-symbol-regexp): New functions. (Bug#11381)
7568
7569 2012-05-29 Juri Linkov <juri@jurta.org>
7570
7571 * isearch.el (isearch-word): Add docstring. (Bug#11381)
7572 (isearch-occur, isearch-search-and-update): If `isearch-word' is
7573 a function, call it to get the regexp.
7574 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
7575 property `isearch-message-prefix' instead of the string "word ".
7576 (isearch-search-fun-default): For the case of `isearch-word',
7577 return a lambda that calls re-search-forward/re-search-backward
7578 with a regexp returned by `word-search-regexp' or by the function
7579 in `isearch-word'.
7580
7581 2012-05-29 Juri Linkov <juri@jurta.org>
7582
7583 * isearch.el (isearch-search-fun-default): New function.
7584 (isearch-search-fun): Move default part to the new function
7585 `isearch-search-fun-default'.
7586 (isearch-search-fun-function): Set the default value to
7587 `isearch-search-fun-default'. (Bug#11381)
7588
7589 * comint.el (comint-history-isearch-end):
7590 Use `isearch-search-fun-default'.
7591 (comint-history-isearch-search): Use `isearch-search-fun-default'
7592 and remove spacial case for `isearch-word'.
7593 (comint-history-isearch-wrap): Remove spacial case for
7594 `isearch-word'.
7595
7596 * hexl.el (hexl-isearch-search-function):
7597 Use `isearch-search-fun-default'.
7598
7599 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
7600 Use `word-search-regexp' for `isearch-word'.
7601
7602 * misearch.el (multi-isearch-search-fun):
7603 Use `isearch-search-fun-default'.
7604
7605 * simple.el (minibuffer-history-isearch-search):
7606 Use `isearch-search-fun-default' and remove spacial case for
7607 `isearch-word'.
7608 (minibuffer-history-isearch-wrap): Remove spacial case for
7609 `isearch-word'.
7610
7611 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
7612 Remove spacial case for `isearch-word'.
7613 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
7614
7615 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7616
7617 Decrease XEmacs incompatibilities.
7618 * textmodes/flyspell.el (flyspell-check-pre-word-p):
7619 Use `string-match'.
7620 (flyspell-delete-region-overlays): Use alternative definition for
7621 XEmacs.
7622 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
7623 (flyspell-word): Use `process-kill-without-query' if XEmacs.
7624 (flyspell-mode-on): Use `interactive-p' if XEmacs.
7625 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
7626 `define-obsolete-face-alias' under XEmacs, but old method.
7627
7628 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
7629 `with-no-warnings' definition or Emacs alias.
7630 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
7631 (ispell-word): Do not use `region-p' if XEmacs.
7632
7633 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7634
7635 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7636 Check for `ispell-dictionary-base-alist' instead of full
7637 `ispell-dictionary-alist'.
7638 (ispell-init-process): Show spellchecker when starting new Ispell
7639 process.
7640
7641 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
7642
7643 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
7644 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
7645
7646 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
7647
7648 * version.el (motif-version-string, gtk-version-string)
7649 (ns-version-string): Declare.
7650
7651 2012-05-27 Juri Linkov <juri@jurta.org>
7652
7653 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
7654 after the `eval-defun-1' specialcaseing
7655 like in `edebug-eval-defun' (bug#10181).
7656
7657 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
7658 like in `eval-defun-1'.
7659
7660 2012-05-27 Eli Zaretskii <eliz@gnu.org>
7661
7662 * mail/sendmail.el (mail-yank-region):
7663 Recognize rmail-yank-current-message in addition to insert-buffer.
7664 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
7665 a *mail* buffer created through rmail-start-mail with sendmail as
7666 mail-user-agent.
7667
7668 2012-05-27 Chong Yidong <cyd@gnu.org>
7669
7670 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
7671 Default to 256 (Bug#11267).
7672
7673 * help.el (describe-mode): Doc fix.
7674
7675 2012-05-26 Glenn Morris <rgm@gnu.org>
7676
7677 * w32-fns.el (w32-init-info): Remove.
7678 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
7679
7680 * info.el (info-initialize): For self-contained NS builds, put the
7681 included info/ directory at the front. (Bug#2791)
7682
7683 * paths.el (Info-default-directory-list): Make it a defcustom,
7684 mainly so that we can use custom-initialize-delay.
7685
7686 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
7687
7688 * subr.el (buffer-has-markers-at): Mark obsolete.
7689
7690 * subr.el (lambda): Use declare.
7691
7692 * emacs-lisp/lisp-mode.el (lambda):
7693 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
7694
7695 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7696
7697 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
7698
7699 2012-05-26 Glenn Morris <rgm@gnu.org>
7700
7701 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
7702
7703 2012-05-25 Glenn Morris <rgm@gnu.org>
7704
7705 * paths.el: Remove no-byte-compile.
7706 * loadup.el: No need to load paths.el uncompiled.
7707
7708 * image.el (imagemagick-types-inhibit): Doc fix.
7709
7710 * version.el: Remove no-byte-compile and associated formatting.
7711 * loadup.el: No need to load version.el uncompiled. AFAICS, this
7712 is ancient code from when there was an "inc-vers.el".
7713
7714 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7715
7716 * progmodes/gdb-mi.el: Minor style changes.
7717 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
7718 Turn into minor modes.
7719 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
7720 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
7721 (gdb-shell): Remove unneeded let-binding.
7722 (gdb-get-many-fields): Eliminate O(n²) behavior.
7723
7724 2012-05-25 Eli Zaretskii <eliz@gnu.org>
7725
7726 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
7727 platforms that don't link in fontset.c.
7728
7729 2012-05-25 Juri Linkov <juri@jurta.org>
7730
7731 Use the same diff color scheme as in modern VCSes (bug#10181).
7732
7733 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
7734 to avoid confusion with `diff-added' that now uses green colors.
7735 (diff-removed): Use shades of red.
7736 (diff-added): Use shades of green.
7737 (diff-changed): Leave just the yellow color.
7738 (diff-use-changed-face): New variable.
7739 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
7740 how to highlight context diff changes.
7741 (diff-refine-change): Use shades of yellow.
7742 (diff-refine-removed): New face that uses shades of red.
7743 (diff-refine-added): New face that uses shades of green.
7744 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
7745 `diff-refine-removed' in the call to `smerge-refine-subst'
7746 depending on the value of `diff-use-changed-face'.
7747
7748 * vc/smerge-mode.el (smerge-mine): Use shades of red.
7749 (smerge-other): Use shades of green.
7750 (smerge-base): Use shades of yellow.
7751 (smerge-refined-change): Empty face.
7752 (smerge-refined-removed): New face that uses shades of red.
7753 (smerge-refined-added): New face that uses shades of green.
7754 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
7755 args `props-r' and `props-a', and use them. Doc fix.
7756 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
7757 on its value use different faces `smerge-refined-change',
7758 `smerge-refined-removed', `smerge-refined-added' in the call to
7759 `smerge-refine-subst'.
7760
7761 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
7762 Add face condition `min-colors 88' with shades of red.
7763 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
7764 `min-colors 88' with shades of green.
7765 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
7766 `min-colors 88' with shades of yellow.
7767
7768 2012-05-24 Glenn Morris <rgm@gnu.org>
7769
7770 * paths.el (prune-directory-list, remote-shell-program): Move to...
7771 * files.el (prune-directory-list, remote-shell-program): ...here.
7772 For the latter, delay initialization, prefer ssh, just search PATH.
7773
7774 * paths.el (term-file-prefix): Move to faces.el (the only user).
7775 * faces.el (term-file-prefix): Move here, make it a defcustom.
7776
7777 * paths.el (news-directory, news-path, news-inews-program):
7778 Move to gnus/nnspool.el.
7779
7780 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
7781
7782 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
7783 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
7784 Make the latter a defcustom, with a delayed initialization.
7785
7786 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
7787 These were deleted from Gnus itself late 2010.
7788
7789 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
7790
7791 * progmodes/which-func.el (which-func-ff-hook):
7792 Check against user-error, not error.
7793
7794 * emacs-lisp/edebug.el (top): Do not load or set up loading of
7795 cl-specs.el, which no longer exists.
7796
7797 2012-05-22 Glenn Morris <rgm@gnu.org>
7798
7799 * info.el (info-emacs-bug): New command.
7800 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
7801 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
7802
7803 2012-05-21 Glenn Morris <rgm@gnu.org>
7804
7805 * makefile.w32-in (update-subdirs-SH):
7806 * Makefile.in (update-subdirs): Update for moved update-subdirs.
7807
7808 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7809
7810 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
7811
7812 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7813 Simplify Maven regexp, and make sure the file can't start with a space
7814 (bug#11517).
7815
7816 2012-05-21 Glenn Morris <rgm@gnu.org>
7817
7818 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
7819 Scrap superfluous subshells.
7820
7821 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
7822
7823 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
7824 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
7825
7826 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
7827
7828 * calc/calc.el (calc-ensure-consistent-units): New variable.
7829
7830 * calc/calc-units.el (math-consistent-units-p)
7831 (math-check-unit-consistency): New functions.
7832 (calc-quick-units, calc-convert-units):
7833 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
7834 is non-nil.
7835 (calc-extract-units): Fix typo.
7836
7837 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7838
7839 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
7840
7841 * textmodes/flyspell.el: Commenting style, plus code simplifications.
7842 (flyspell-default-deplacement-commands): Don't spell check after
7843 repeated window/frame switches (e.g. triggered by mouse-movement).
7844 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
7845 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
7846 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
7847 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
7848 Remove unused vars.
7849 (flyspell-get-casechars, flyspell-get-not-casechars):
7850 Simplify; Don't bother removing a ] just to add it back.
7851 * textmodes/ispell.el (ispell-program-name): Use executable-find.
7852
7853 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7854
7855 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
7856 New functions.
7857 (math-function-table): Add support for more C functions.
7858
7859 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7860
7861 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7862 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7863 Protect delay handling for otherchars against empty otherchars.
7864
7865 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7866
7867 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
7868 their respective macro declarations.
7869 * skeleton.el (define-skeleton):
7870 * progmodes/compile.el (define-compilation-mode):
7871 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
7872 (define-ibuffer-filter):
7873 * emacs-lisp/generic.el (define-generic-mode):
7874 * emacs-lisp/easy-mmode.el (define-minor-mode)
7875 (define-globalized-minor-mode):
7876 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
7877 * emacs-lisp/byte-run.el (defsubst):
7878 * custom.el (deftheme): Add doc-string metadata.
7879
7880 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7881
7882 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
7883
7884 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7885
7886 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
7887
7888 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
7889 * emacs-lisp/cl-macs.el: Idem.
7890 * emacs-lisp/cl-specs.el: Remove.
7891
7892 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7893
7894 Minor renaming of internal CL functions and variables.
7895 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
7896 (cl--position): Rename from cl-position.
7897 (cl--delete-duplicates): Rename from cl-delete-duplicates.
7898 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
7899 (cl--random-state): Rename from *random-state*.
7900
7901 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7902
7903 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
7904 parens around the arg list (bug#11499).
7905
7906 2012-05-17 Juri Linkov <juri@jurta.org>
7907
7908 * isearch.el (word-search-regexp, word-search-backward)
7909 (word-search-forward, word-search-backward-lax)
7910 (word-search-forward-lax): Move functions from search.c
7911 (bug#10145, bug#11381).
7912
7913 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7914
7915 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7916 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7917 Delay for otherchars as for normal word components.
7918
7919 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
7920
7921 * minibuffer.el (completion--sifn-requote): Fix last change.
7922 (minibuffer-local-must-match-filename-map):
7923 Move define-obsolete-variable-alias before its var.
7924
7925 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7926
7927 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
7928
7929 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
7930 behavior.
7931 (completion--string-equal-p): New function.
7932 (completion--twq-all): Use it to get better assertion failure data.
7933
7934 Only handle ".." and '..' quoting in shell-mode (bug#11466).
7935 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
7936 (shell--requote-argument): New functions.
7937 (shell-completion-vars): Use them.
7938 (shell--parse-pcomplete-arguments): Rename from
7939 shell-parse-pcomplete-arguments.
7940 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
7941 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
7942 Obey comint-file-name-quote-list.
7943
7944 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
7945 (smie-indent-keyword): Use it.
7946
7947 2012-05-14 Stefan Merten <smerten@oekonux.de>
7948
7949 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
7950
7951 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7952
7953 * net/rlogin.el (rlogin-mode-map): Fix last change.
7954
7955 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
7956
7957 * mail/smtpmail.el (smtpmail-send-command): Send the command and
7958 the following \r\n using a single `process-send-string', since the
7959 Lotus SMTP server refuses to accept any commands if they are sent
7960 with two `process-send-string's (Bug#11444).
7961
7962 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7963
7964 * shell.el (shell-parse-pcomplete-arguments):
7965 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
7966
7967 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7968
7969 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
7970 (image-transform-scale, image-transform-right-angle-fudge): New vars.
7971 (image-transform-width, image-transform-fit-width): New functions.
7972 (image-transform-properties): Use them.
7973 (image-transform-check-size): New function.
7974 (image-toggle-display-image): Use it (for testing).
7975 (image-transform-set-rotation): Reduce angle mod 360.
7976 Delete obsolete comment.
7977
7978 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7979
7980 * image-mode.el: Fix scaling (bug#11399).
7981 (image-transform-resize): Doc fix.
7982 (image-transform-properties): Default scale is 1 and height should
7983 be an integer.
7984
7985 2012-05-13 Johan Bockgård <bojohan@gnu.org>
7986
7987 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
7988 than hard-coding `car', to fix misbehavior when moving forward.
7989
7990 2012-05-13 Chong Yidong <cyd@gnu.org>
7991
7992 * emacs-lisp/tabulated-list.el (tabulated-list-format)
7993 (tabulated-list-entries, tabulated-list-padding)
7994 (tabulated-list-sort-key): Make permanent-local.
7995
7996 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
7997 (electric-buffer-list): Put electric buffer menu
7998 command descriptions in this docstring, instead of the docstring
7999 of electric-buffer-menu-mode. Code cleanups.
8000 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
8001 Electric-buffer-menu-mode.
8002 (electric-buffer-update-highlight): Minor code cleanup.
8003
8004 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
8005
8006 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
8007 (Bug#11447)
8008
8009 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
8010
8011 Move define-obsolete-variable-alias before the var's definition.
8012 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
8013 * tooltip.el (tooltip-hook):
8014 * textmodes/reftex-toc.el (reftex-toc-map):
8015 * textmodes/reftex-sel.el (reftex-select-label-map)
8016 (reftex-select-bib-map):
8017 * textmodes/reftex-index.el (reftex-index-map)
8018 (reftex-index-phrases-map):
8019 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
8020 * progmodes/meta-mode.el (meta-mode-map):
8021 * novice.el (disabled-command-hook):
8022 * loadhist.el (unload-hook-features-list):
8023 * frame.el (blink-cursor):
8024 * files.el (find-file-not-found-hooks, write-file-hooks)
8025 (write-contents-hooks):
8026 * emulation/tpu-edt.el (GOLD-map):
8027 * emacs-lock.el (emacs-lock-from-exiting):
8028 * emacs-lisp/generic.el (generic-font-lock-defaults):
8029 * emacs-lisp/chart.el (chart-map):
8030 * dos-fns.el (register-name-alist):
8031 * dired-x.el (dired-omit-files-p):
8032 * desktop.el (desktop-enable):
8033 * cus-edit.el (custom-mode-hook):
8034 * buff-menu.el (buffer-menu-mode-hook):
8035 * bookmark.el (bookmark-read-annotation-text-func)
8036 (bookmark-exit-hooks):
8037 * allout.el (allout-mode-deactivate-hook)
8038 (allout-exposure-change-hook, allout-structure-added-hook)
8039 (allout-structure-deleted-hook, allout-structure-shifted-hook):
8040 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
8041 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
8042 comes before the corresponding variable's definition.
8043
8044 2012-05-12 Chong Yidong <cyd@gnu.org>
8045
8046 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
8047 (Buffer-menu-mouse-select): Restore function (Bug#11459).
8048 (Buffer-menu-mode-map): Bind it.
8049 (Buffer-menu--pretty-name): Add a mouse-face property.
8050
8051 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
8052
8053 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
8054 (prolog-upper-case-string, prolog-lower-case-string)
8055 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
8056 (prolog-use-smie, prolog-smie-grammar): New vars.
8057 (prolog-smie-forward-token, prolog-smie-backward-token)
8058 (prolog-smie-rules): New funs.
8059 (prolog-comment-indent): Remove.
8060 (prolog-mode-variables): Use default comment indentation instead.
8061 Setup SMIE.
8062 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
8063 (prolog-mode): Don't call them any more.
8064 (prolog-electric-colon, prolog-electric-dash)
8065 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
8066
8067 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
8068
8069 * minibuffer.el (completion--twq-all): Again, allow case differences.
8070
8071 * term.el: Move keymap initialization code to be more idiomatic.
8072 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
8073 (term-terminal-menu): Move initialization into declaration.
8074 (term-escape-char): Let the user set it in her .emacs.
8075
8076 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
8077 Provide SMIE-based indentation (not enabled by default yet).
8078 (sh-mode-map): Don't bind electric keys.
8079 Use electric-pair-mode instead of skeleton-pair.
8080 (sh-assignment-regexp): Fit within 80 columns.
8081 (sh-indent-supported): Specify actual shell name instead of boolean.
8082 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
8083 (sh-maybe-here-document): Use it. Make obsolete.
8084 (sh-electric-here-document-mode) New minor mode.
8085 (sh-mode): Use it. Don't set sh-indent-supported-here here.
8086 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
8087 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
8088 (sh-smie-rc-grammar, sh-use-smie): New vars.
8089 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
8090 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
8091 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
8092 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
8093 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
8094 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
8095 (sh-set-shell): Use smie-setup if requested.
8096
8097 * term.el (term-set-escape-char): Properly set term-escape-char.
8098 See http://stackoverflow.com/questions/10524656.
8099
8100 2012-05-10 Chong Yidong <cyd@gnu.org>
8101
8102 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
8103 Use url-generic-parse-url, and handle host names and Windows
8104 filenames properly.
8105 (ffap-url-unwrap-remote): Use url-generic-parse-url.
8106 (ffap-url-unwrap-remote): Accept list values, specifying a list of
8107 URL schemes to work on.
8108 (ffap--toggle-read-only): New function.
8109 (ffap-read-only, ffap-read-only-other-window)
8110 (ffap-read-only-other-frame): Use it.
8111 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
8112 necessary for ffap-url-unwrap-remote.
8113
8114 2012-05-10 Dave Abrahams <dave@boostpro.com>
8115
8116 * cus-start.el (create-lockfiles): Add it.
8117
8118 2012-05-09 Chong Yidong <cyd@gnu.org>
8119
8120 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
8121 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
8122
8123 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
8124
8125 * shell.el (shell-completion-vars): Fix last change (bug#11348).
8126
8127 2012-05-09 Chong Yidong <cyd@gnu.org>
8128
8129 * ansi-color.el (ansi-color-process-output): Check for validity of
8130 comint-last-output-start before using it. This avoids a bad
8131 interaction with gdb-mi's input/output buffer.
8132
8133 2012-05-09 Glenn Morris <rgm@gnu.org>
8134
8135 * files.el (dir-locals-read-from-file):
8136 Mention dir-locals in any error message.
8137
8138 2012-05-09 Chong Yidong <cyd@gnu.org>
8139
8140 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
8141 package (Bug#11410).
8142
8143 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
8144 variables into description.
8145
8146 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
8147
8148 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
8149 shell-delimiter-argument-list (bug#11348).
8150 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
8151
8152 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
8153
8154 * textmodes/rst.el: Silence byte-compiler warnings.
8155 (rst-re-alist, rst-reset-section-caches): Move around.
8156 (rst-re): Use `characterp', not `char-valid-p'.
8157 (font-lock-beg, font-lock-end): Declare.
8158
8159 * progmodes/idlw-shell.el (specs): Remove reference to deleted
8160 variable `idlwave-shell-activate-alt-keybindings' and simplify.
8161
8162 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
8163
8164 2012-05-08 Glenn Morris <rgm@gnu.org>
8165
8166 * files.el (auto-mode-alist): Treat ".make" like ".mk".
8167
8168 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8169
8170 * vc/log-edit.el: Add GNU coding standards highlighting.
8171 (log-edit-font-lock-gnu-style)
8172 (log-edit-font-lock-gnu-keywords): New vars.
8173 (log-edit-font-lock-keywords): New fun.
8174 (log-edit-mode): Don't fold case in font-lock.
8175 (log-edit-font-lock-keywords): Do not assume case-folding.
8176
8177 * imenu.el: Misc cleanup. Make docstrings out of comments.
8178 Use lexical-binding.
8179 (imenu--index-alist, imenu--last-menubar-index-alist)
8180 (imenu-menubar-modified-tick): Use defvar-local.
8181 (imenu--split-menu): Remove unused var.
8182 (imenu--cleanup-seen): Declare as global.
8183 (imenu--cleanup): Use dolist.
8184
8185 * subr.el (defvar-local): Add debug spec and doc-string position.
8186
8187 2012-05-08 Glenn Morris <rgm@gnu.org>
8188
8189 * language/burmese.el, language/cham.el, language/czech.el:
8190 * language/english.el, language/georgian.el, language/greek.el:
8191 * language/japanese.el, language/khmer.el, language/korean.el:
8192 * language/lao.el, language/misc-lang.el, language/romanian.el:
8193 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
8194 * language/thai.el, language/utf-8-lang.el:
8195 Remove no-byte-compile setting.
8196
8197 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
8198
8199 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8200
8201 * progmodes/make-mode.el (makefile-browse):
8202 Remove unnecessary interactive. (Bug#11324)
8203
8204 2012-05-07 Glenn Morris <rgm@gnu.org>
8205
8206 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
8207
8208 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
8209
8210 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8211
8212 * loadup.el: Preload newcomment.el.
8213 * newcomment.el: Move autoload-only code to toplevel.
8214
8215 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
8216 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
8217 Handle new :right-align column property.
8218 (tabulated-list-print-col): Idem, plus use `display' text-property to
8219 try and preserve alignment for variable pitch fonts.
8220
8221 2012-05-07 Chong Yidong <cyd@gnu.org>
8222
8223 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
8224 (tabulated-list-use-header-line): New var.
8225 (tabulated-list-init-header): Use it.
8226 (tabulated-list-print-fake-header): New function.
8227 (tabulated-list-print): Use it.
8228 (tabulated-list-sort-button-map): Add non-header-line commands.
8229 (tabulated-list-init-header): Add column name property to basic
8230 labels as well.
8231 (tabulated-list-col-sort): Handle non-header-line button case.
8232 (tabulated-list--sort-by-column-name): Fix a corner case.
8233
8234 * buff-menu.el (list-buffers--refresh):
8235 Handle Buffer-menu-use-header-line.
8236
8237 2012-05-06 Chong Yidong <cyd@gnu.org>
8238
8239 * buff-menu.el: Convert to Tabulated List mode.
8240 (Buffer-menu-buffer+size-width): Make obsolete.
8241 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
8242 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
8243 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
8244 documentation into docstring of buffer-menu.
8245 (Buffer-menu-toggle-files-only): Add an informative message.
8246 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
8247 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
8248 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
8249 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
8250 (Buffer-menu-execute, Buffer-menu-select)
8251 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
8252 (Buffer-menu-bury): Use Tabulated List machinery.
8253 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
8254 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
8255 Delete.
8256 (list-buffers--refresh): New function.
8257 (list-buffers-noselect): Use it.
8258 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
8259 (Buffer-menu--pretty-file-name): New helper functions.
8260
8261 * loadup.el: Preload tabulated-list.
8262
8263 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
8264 tabulated-list-sort-column.
8265 (tabulated-list-init-header): Add the initial aligning space even
8266 if tabulated-list-padding is zero.
8267
8268 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
8269
8270 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
8271 whose cdr is not a cons cell correctly (bug#11038).
8272
8273 2012-05-06 Chong Yidong <cyd@gnu.org>
8274
8275 * emacs-lisp/tabulated-list.el (tabulated-list-format):
8276 Accept additional plist in column descriptors.
8277 (tabulated-list-init-header): Obey it.
8278 (tabulated-list-get-entry): New function.
8279 (tabulated-list-put-tag): Use it. Use string-width instead of
8280 length.
8281 (tabulated-list--column-number): New function.
8282 (tabulated-list-print): Use it.
8283 (tabulated-list-print-col): New function.
8284 Set `tabulated-list-column-name' property on each column's text.
8285 (tabulated-list-print-entry): Use it.
8286 (tabulated-list-delete-entry, tabulated-list-set-col):
8287 New functions.
8288 (tabulated-list-sort-column): New command (Bug#11337).
8289
8290 * buff-menu.el (list-buffers): Move C-x C-b binding from
8291 buff-menu.el to bindings.el.
8292
8293 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
8294 :advertised-binding feature.
8295
8296 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
8297
8298 * progmodes/compile.el (compilation-internal-error-properties):
8299 Calculate start position correctly when end-col is set but
8300 end-line is not (Bug#11382).
8301
8302 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
8303
8304 * man.el (Man-unindent): Use text-property-default-nonsticky to
8305 prevent untabify from inheriting face properties (Bug#11408).
8306
8307 2012-05-05 Stefan Merten <smerten@oekonux.de>
8308
8309 * textmodes/rst.el: Major merge with upstream development up to
8310 Docutils SVN r7399 / rst.el V1.2.1.
8311
8312 Clarify maintainership and authors.
8313
8314 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
8315 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
8316 (rst-official-version, rst-official-cvs-rev, rst-version)
8317 (rst-package-emacs-version-alist): New functions and variables
8318 for version information.
8319
8320 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
8321 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
8322 (rst-mode-syntax-table, rst-mode): New and corrected functions
8323 and variables representing reStructuredText features.
8324
8325 (rst-re): New function for reStructuredText regexes. Use in
8326 many places.
8327
8328 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
8329 (rst-mode-map): Rebind keys.
8330
8331 (rst-mode-lazy, rst-font-lock-keywords)
8332 (rst-font-lock-extend-region)
8333 (rst-font-lock-extend-region-internal)
8334 (rst-font-lock-extend-region-extend)
8335 (rst-font-lock-find-unindented-line-limit)
8336 (rst-font-lock-find-unindented-line-match)
8337 (rst-adornment-level, rst-font-lock-adornment-level)
8338 (rst-font-lock-adornment-match)
8339 (rst-font-lock-handle-adornment-pre-match-form)
8340 (rst-font-lock-handle-adornment-matcher): Major revision of
8341 font-locking. Integrate with other code. Use `jit-lock-mode'.
8342
8343 (rst-preferred-adornments, rst-adjust-hook)
8344 (rst-new-adornment-down, rst-preferred-bullets)
8345 (rst-preferred-bullets, rst-indent, rst-indent-width)
8346 (rst-indent-field, rst-indent-literal-normal)
8347 (rst-indent-literal-minimized, rst-indent-comment): Change,
8348 extend and improve customization.
8349
8350 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
8351 (rst-normalize-cursor-position, rst-get-decoration)
8352 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
8353 (rst-rstrip, rst-toc-insert-find-delete-contents)
8354 (rst-shift-fill-region, rst-compute-bullet-tabs)
8355 (rst-debug-print-tabs, rst-debug-mark-found)
8356 (rst-shift-region-guts, rst-shift-region-right)
8357 (rst-shift-region-left, rst-use-char-classes)
8358 (rst-font-lock-keywords-function)
8359 (rst-font-lock-indentation-point)
8360 (rst-font-lock-find-unindented-line-begin)
8361 (rst-font-lock-find-unindented-line-end)
8362 (rst-font-lock-find-unindented-line)
8363 (rst-font-lock-adornment-point, rst-font-lock-level)
8364 (rst-adornment-level-alist): Remove functions and variables.
8365
8366 (rst-compare-adornments, rst-get-adornment-match)
8367 (rst-suggest-new-adornment, rst-get-adornments-around)
8368 (rst-adornment-complete-p, rst-get-next-adornment)
8369 (rst-adjust-adornment, rst-display-adornments-hierarchy)
8370 (rst-straighten-adornments): Standardize function names to
8371 use "adornment" instead of "decoration". Correct callers.
8372 Similar standardizing in many places.
8373
8374 (rst-update-section, rst-adjust, rst-promote-region)
8375 (rst-enumerate-region, rst-bullet-list-region)
8376 (rst-repeat-last-character): Correct use of `interactive'.
8377
8378 (rst-classify-adornment, rst-find-all-adornments)
8379 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
8380 (rst-find-leftmost-column, rst-repeat-last-character):
8381 Refactor functions.
8382
8383 (rst-find-title-line, rst-reset-section-caches)
8384 (rst-get-adornments-around, rst-adjust-adornment-work)
8385 (rst-arabic-to-roman, rst-roman-to-arabic)
8386 (rst-insert-list-pos, rst-insert-list-new-item)
8387 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
8388 New functions.
8389
8390 (rst-all-sections, rst-section-hierarchy)
8391 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
8392 New variables.
8393
8394 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
8395 configuration instead of only buffer. Change where necessary.
8396
8397 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
8398 (rst-shift-region, rst-adaptive-fill): New functions for
8399 indentation and filling.
8400
8401 (rst-comment-line-break, rst-comment-indent)
8402 (rst-comment-insert-comment, rst-comment-region)
8403 (rst-uncomment-region): New functions for handling comments.
8404
8405 (rst-compile): Quote shell arguments.
8406
8407 (rst-compile-pdf-preview, rst-compile-slides-preview):
8408 Delete temporary files after use.
8409
8410 2012-05-05 Glenn Morris <rgm@gnu.org>
8411
8412 * calendar/cal-html.el: Optionally include holidays in the output.
8413 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
8414 (cal-html-holidays): New option.
8415 (cal-html-css-default): Add holiday entry.
8416 (holiday-in-range): Autoload it.
8417 (cal-html-htmlify-entry): Add optional class argument.
8418 (cal-html-htmlify-list): Add optional holidays argument.
8419 (cal-html-insert-agenda-days): Include holidays in the output.
8420 (cal-html-one-month): Maybe include holidays.
8421
8422 * calendar/holidays.el (holiday-in-range):
8423 Move here from cal-tex-list-holidays.
8424 * calendar/cal-tex.el (cal-tex-list-holidays):
8425 Make it an obsolete alias for holiday-in-range. Update all callers.
8426
8427 2012-05-05 Chong Yidong <cyd@gnu.org>
8428
8429 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
8430 Nextstep.
8431
8432 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
8433
8434 * files.el (file-auto-mode-skip): New var.
8435 (set-auto-mode-1): Use it.
8436
8437 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8438
8439 * repeat.el: Use lexical-binding.
8440 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
8441 (repeat-undo-count): Remove.
8442 (repeat):
8443 * progmodes/octave-mod.el (octave-abbrev-start):
8444 * progmodes/f90.el (f90-abbrev-start):
8445 * face-remap.el (text-scale-adjust):
8446 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
8447
8448 * emacs-lisp/pcase.el (pcase--let*): New function.
8449 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
8450 a bit more.
8451 (pcase--split-pred): Be more clever about ruling out overlap between
8452 a predicate and some constant pattern.
8453 (pcase--q1): Use `null' instead of (eq foo nil).
8454
8455 * subr.el (setq-local, defvar-local): New macros.
8456 (kbd): Redefine as an alias.
8457 (with-selected-window): Leave unrelated frames alone.
8458 (set-temporary-overlay-map): New function.
8459
8460 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8461
8462 * subr.el (user-error): New function.
8463 * window.el (switch-to-buffer):
8464 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
8465 (smerge-match-conflict):
8466 * simple.el (previous-matching-history-element)
8467 (next-matching-history-element, goto-history-element, undo-more)
8468 (undo-start):
8469 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
8470 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
8471 (next-file, tags-loop-scan, list-tags, complete-tag):
8472 * progmodes/compile.el (compilation-loop):
8473 * mouse.el (mouse-minibuffer-check):
8474 * man.el (Man-bgproc-sentinel, Man-goto-page):
8475 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
8476 (Info-history-forward, Info-follow-reference, Info-menu)
8477 (Info-extract-menu-item, Info-extract-menu-counting)
8478 (Info-forward-node, Info-backward-node, Info-next-menu-item)
8479 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
8480 (Info-next-reference, Info-prev-reference, Info-index)
8481 (Info-index-next, Info-follow-nearest-node)
8482 (Info-copy-current-node-name):
8483 * imenu.el (imenu--make-index-alist)
8484 (imenu-default-create-index-function, imenu-add-to-menubar):
8485 * files.el (basic-save-buffer, recover-file):
8486 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8487 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
8488 (checkdoc-message-text, checkdoc-defun):
8489 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
8490 * cus-edit.el (customize-changed-options, customize-rogue)
8491 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
8492 (custom-variable-mark-to-reset-standard)
8493 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
8494 (custom-file):
8495 * completion.el (check-completion-length):
8496 * comint.el (comint-search-arg)
8497 (comint-previous-matching-input-string-position)
8498 (comint-previous-matching-input)
8499 (comint-replace-by-expanded-history-before-point, comint-send-input)
8500 (comint-copy-old-input, comint-backward-matching-input)
8501 (comint-goto-process-mark, comint-set-process-mark):
8502 * calendar/calendar.el (calendar-cursor-to-date): Use it.
8503 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
8504
8505 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8506
8507 * dabbrev.el (dabbrev--ignore-case-p): New function.
8508 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
8509 Use it.
8510
8511 * files.el (automount-dir-prefix): Mark as obsolete.
8512
8513 2012-05-04 Glenn Morris <rgm@gnu.org>
8514
8515 * patcomp.el, play/bruce.el: Move to obsolete/.
8516
8517 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
8518
8519 Fix minor Y10k bugs.
8520 * arc-mode.el (archive-unixdate):
8521 * autoinsert.el (auto-insert-alist):
8522 * calc/calc-forms.el (math-this-year):
8523 * emacs-lisp/copyright.el (copyright-current-year)
8524 (copyright-update-year, copyright):
8525 * tar-mode.el (tar-clip-time-string):
8526 * time.el (display-time-update):
8527 Don't assume years have 4 digits.
8528
8529 2012-05-04 Chong Yidong <cyd@gnu.org>
8530
8531 * dos-w32.el (file-name-buffer-file-type-alist)
8532 (direct-print-region-use-command-dot-com):
8533 * ffap.el (ffap-menu-regexp):
8534 * find-file.el (ff-special-constructs):
8535 * follow.el (follow-debug):
8536 * forms.el (forms--debug):
8537 * iswitchb.el (iswitchb-all-frames):
8538 * ido.el (ido-all-frames):
8539 * emacs-lisp/timer.el (timer-max-repeats):
8540 * mail/feedmail.el (feedmail-mail-send-hook)
8541 (feedmail-mail-send-hook-queued):
8542 * mail/footnote.el (footnote-signature-separator):
8543 * mail/mailabbrev.el (mail-alias-separator-string)
8544 (mail-abbrev-mode-regexp):
8545 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
8546 * progmodes/idlwave.el (idlwave-libinfo-file)
8547 (idlwave-default-completion-case-is-down)
8548 (idlwave-library-routines): Convert defvars to defcustoms.
8549
8550 * mail/rmail.el (rmail-decode-mime-charset):
8551 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
8552 (idlwave-shell-fix-inserted-breaks)
8553 (idlwave-shell-activate-alt-keybindings)
8554 (idlwave-shell-use-breakpoint-glyph):
8555 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
8556
8557 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8558
8559 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
8560
8561 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
8562
8563 * progmodes/verilog-mode.el (font-lock-keywords):
8564 Fix mis-highligting auto. Reported by Craig Barner.
8565 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
8566 defines from global name space. Reported by Dan Dever.
8567 (verilog-auto-reset, verilog-auto-reset-widths)
8568 (verilog-auto-tieoff): Support using unbased numbers for
8569 AUTORESET and AUTOTIEOFF.
8570 (verilog-submit-bug-report): Update variable list.
8571 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
8572 parenthesis from not matching. Reported by Michael Rytting.
8573 (verilog-auto-template-lint): Fix hash error when linting modules
8574 with no used templates.
8575 (verilog-warn, verilog-warn-error)
8576 (verilog-warn-fatal): When non-interactive report multiple
8577 warnings before exiting. Suggested by Brad Dobbie.
8578 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
8579 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
8580 to report unused template errors. Reported by Brad Dobbie.
8581 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
8582 nets, bug438. Reported by Vns Blore.
8583 (verilog-auto-inout-module, verilog-auto-reg)
8584 (verilog-read-decls, verilog-read-sub-decls-sig)
8585 (verilog-signals-edit-wire-reg, verilog-signals-with):
8586 Fix passing of Verilog data types in ANSI input/output ports
8587 such as "output logic" into the AUTOs. Special case "wire" and
8588 "reg" for backwards compatibility presuming Verilog 2001.
8589 (verilog-auto-ascii-enum): Add "auto enum" as alias.
8590 (verilog-preprocess): Fix replication of preprocess output.
8591 Reported by Brad Dobbie.
8592 (verilog-auto-inst-interfaced-ports):
8593 Create verilog-auto-inst-interfaced-ports, bug429.
8594 Reported by Julian Gorfajn.
8595 (verilog-after-save-font-hook)
8596 (verilog-before-save-font-hook): New variable.
8597 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
8598 (verilog-save-font-mods): Wrap disabling fontification, reported
8599 by David Rogoff.
8600 (verilog-do-indent, verilog-pretty-declarations-auto)
8601 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
8602 Reported by Pierre-David Pfister.
8603 (verilog-set-auto-endcomments): Fix endtask auto comments outside
8604 of class declarations, bug292. Reported by Kevin Heilman.
8605 (verilog-read-decls): Fix 'parameter type' not appearing in
8606 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
8607 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
8608 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
8609 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
8610 Reported by David Kravitz.
8611
8612 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
8613
8614 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
8615 assignment with tests in ifs and for loops.
8616 (verilog-extended-complete-re, verilog-complete-reg): Change so
8617 that DPI inport functions don't look like fuction declarations.
8618 (verilog-pretty-expr): Don't line up assignment
8619 operations to the test and increment in if and for loops
8620 (verilog-extended-complete-re, verilog-complete-reg): Change so
8621 that DPI inport functions don't look like fuction declarations.
8622
8623 2012-05-03 Kenichi Handa <handa@m17n.org>
8624
8625 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
8626 decoding, and show a warning message without signaling an error
8627 (Bug#11282).
8628
8629 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8630
8631 * emacs-lisp/bytecomp.el
8632 (byte-compile-file-form-custom-declare-variable): Compile all elements,
8633 since cconv.el might have introduced :fun-body, internal-make-closure,
8634 and friends for bytecomp to handle (bug#11391).
8635 * custom.el (defcustom): Avoid ((λ ..) ..).
8636
8637 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
8638
8639 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
8640
8641 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
8642
8643 * notifications.el (dbus-debug):
8644 * term/linux.el (gpm-mouse-enable):
8645 * term/screen.el (xterm-register-default-colors): Declare.
8646
8647 2012-05-02 Chong Yidong <cyd@gnu.org>
8648
8649 * cus-start.el (gc-cons-percentage, exec-suffixes)
8650 (dos-display-scancodes, dos-hyper-key, dos-super-key)
8651 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
8652 (make-cursor-line-fully-visible, void-text-area-pointer)
8653 (font-list-limit): Add customization data.
8654
8655 * allout.el (allout-exposure-change-functions)
8656 (allout-structure-added-functions)
8657 (allout-structure-deleted-functions)
8658 (allout-structure-shifted-functions): Rename abnormal hooks from
8659 *-hook, and convert to defcustoms.
8660 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
8661 Convert to defcustoms.
8662 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
8663
8664 * allout-widgets.el: Hook callers changed.
8665
8666 2012-05-02 Eli Zaretskii <eliz@gnu.org>
8667
8668 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
8669 the yanked message in preference to the default value of
8670 buffer-file-coding-system.
8671
8672 2012-05-02 Martin Rudalics <rudalics@gmx.at>
8673
8674 * window.el (display-buffer--action-function-custom-type):
8675 Fix entry.
8676
8677 2012-05-02 Alan Mackenzie <acm@muc.de>
8678
8679 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
8680
8681 2012-05-01 Glenn Morris <rgm@gnu.org>
8682
8683 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
8684
8685 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
8686
8687 * cus-edit.el (custom-variable-documentation): Simplify with format.
8688
8689 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8690 Stefan Monnier <monnier@iro.umontreal.ca>
8691
8692 * simple.el (suggest-key-bindings, execute-extended-command):
8693 Move from keyboard.c.
8694
8695 2012-05-01 Chong Yidong <cyd@gnu.org>
8696
8697 * follow.el: Eliminate advice.
8698 (set-process-filter, process-filter, sit-for): Advice deleted.
8699 (follow-mode-off-hook): Obsolete hook removed.
8700 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
8701 Vars deleted.
8702 (follow-auto): Use a :set function.
8703 (follow-mode): Rewritten. Don't advise process filters.
8704 (follow-switch-to-current-buffer-all, follow-scroll-up)
8705 (follow-scroll-down): Assume follow-mode is bound.
8706 (follow-comint-scroll-to-bottom)
8707 (follow-align-compilation-windows): New functions.
8708 (follow--window-sorter): New function.
8709 (follow-all-followers): Use it to explicitly sort windows by their
8710 positions; don't make assumptions about next-window order.
8711 (follow-windows-start-end, follow-delete-other-windows-and-split)
8712 (follow-calc-win-start): Doc fix.
8713 (follow-windows-aligned-p, follow-select-if-visible): Don't call
8714 vertical-motion unnecessarily.
8715 (follow-adjust-window): New function.
8716 (follow-post-command-hook): Use it.
8717 (follow-call-set-process-filter, follow-call-process-filter)
8718 (follow-intercept-process-output, follow-tidy-process-filter-alist)
8719 (follow-stop-intercept-process-output, follow-generic-filter):
8720 Functions deleted.
8721 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
8722 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
8723 New functions, replacing advice on scroll-bar-* commands.
8724 (follow-mwheel-scroll): New function (Bug#4112).
8725
8726 * comint.el (comint-adjust-point): New function.
8727 (comint-postoutput-scroll-to-bottom): Use it.
8728 Call follow-comint-scroll-to-bottom for Follow mode buffers.
8729
8730 2012-05-01 Glenn Morris <rgm@gnu.org>
8731
8732 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
8733 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
8734 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
8735 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
8736 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
8737 Remove no-byte-compile setting.
8738
8739 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8740
8741 * minibuffer.el (completion-table-with-quoting): Fix compatibility
8742 all-completions code to not return a number in the last cdr.
8743
8744 2012-04-30 Leo Liu <sdl.web@gmail.com>
8745
8746 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
8747 read-only error.
8748
8749 2012-04-29 Chong Yidong <cyd@gnu.org>
8750
8751 * follow.el (follow-calc-win-end): Rewrite to handle partial
8752 screen lines correctly (Bug#8390).
8753 (follow-avoid-tail-recenter): Minor cleanup.
8754
8755 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8756
8757 Avoid the obsolete `assoc' package.
8758 * speedbar.el (speedbar-refresh): Avoid adelete.
8759 (speedbar-file-lists): Simplify and avoid aput.
8760 * man.el (Man--sections, Man--refpages): New vars, replacing
8761 Man-sections-alist and Man-refpages-alist.
8762 (Man-build-section-alist, Man-build-references-alist):
8763 Use them; avoid aput.
8764 (Man--last-section, Man--last-refpage): New vars.
8765 (Man-follow-manual-reference): Use them.
8766 Use the `default' arg of completing-read.
8767 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
8768
8769 2012-04-27 Chong Yidong <cyd@gnu.org>
8770
8771 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
8772
8773 * startup.el (x-apply-session-resources): New function.
8774
8775 * term/ns-win.el (ns-initialize-window-system):
8776 * term/w32-win.el (w32-initialize-window-system):
8777 * term/x-win.el (x-initialize-window-system): Use it to properly
8778 set menu-bar-mode and other vars from X resources, even if the
8779 initial frame is not a window-system frame (Bug#2299).
8780
8781 * subr.el (read-key): Avoid running filter function when setting
8782 up temporary tool bar entries (Bug#9922).
8783
8784 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8785
8786 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
8787 (Bug#11344)
8788
8789 2012-04-27 Chong Yidong <cyd@gnu.org>
8790
8791 * select.el (xselect--encode-string): New function, split from
8792 xselect-convert-to-string.
8793 (xselect-convert-to-string): Use it.
8794 (xselect-convert-to-filename, xselect-convert-to-os)
8795 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
8796 returned strings are properly encoded (Bug#11315).
8797
8798 2012-04-27 Chong Yidong <cyd@gnu.org>
8799
8800 * simple.el (delete-active-region): Move to killing custom group.
8801
8802 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8803
8804 * progmodes/which-func.el (which-func-current): Quote %
8805 characters for mode-line processing.
8806
8807 2012-04-27 Chong Yidong <cyd@gnu.org>
8808
8809 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
8810 reaching eob (Bug#11286).
8811
8812 2012-04-27 Eli Zaretskii <eliz@gnu.org>
8813
8814 * progmodes/gdb-mi.el (gdb-control-level): New variable.
8815 (gdb): Make it buffer-local and init to zero.
8816 (gdb-control-commands-regexp): New variable.
8817 (gdb-send): Don't wrap in "-interpreter-exec console" if
8818 gdb-control-level is positive. Increment gdb-control-level
8819 whenever the command matches gdb-control-commands-regexp, and
8820 decrement it each time the command is "end". (Bug#11279)
8821
8822 2012-04-27 Martin Rudalics <rudalics@gmx.at>
8823
8824 * window.el (adjust-window-trailing-edge, enlarge-window)
8825 (shrink-window, window-resize):
8826 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
8827 windows (Bug#11276).
8828
8829 2012-04-27 Chong Yidong <cyd@gnu.org>
8830
8831 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
8832 fix "missing prefix" warning. All callers changed.
8833
8834 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8835
8836 * emacs-lisp/assoc.el: Move to obsolete/.
8837
8838 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8839
8840 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
8841
8842 * term/ns-win.el (ns-define-service):
8843 * progmodes/pascal.el (pascal-goto-defun):
8844 * progmodes/js.el (js--read-tab):
8845 * progmodes/etags.el (tags-lazy-completion-table):
8846 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
8847 * emacs-lisp/ewoc.el (ewoc--wrap):
8848 * emacs-lisp/assoc.el (aput, adelete, amake):
8849 * doc-view.el (doc-view-convert-current-doc):
8850 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
8851
8852 2012-04-26 Chong Yidong <cyd@gnu.org>
8853
8854 * image.el (image-type-from-buffer): Only return supported image
8855 type (Bug#9045).
8856
8857 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
8858 value, for symmetry with diff-end-of-hunk.
8859 (diff-split-hunk, diff-find-source-location)
8860 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
8861 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
8862 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
8863 compute the relevant hunk or file properly (Bug#6005).
8864 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
8865
8866 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8867
8868 * vc/vc-mtn.el:
8869 * vc/vc-hg.el:
8870 * vc/vc-git.el:
8871 * vc/vc-dir.el:
8872 * vc/vc-cvs.el:
8873 * vc/vc-bzr.el:
8874 * vc/vc-arch.el:
8875 * vc/vc.el: Replace lexical-let by lexical-binding.
8876 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
8877 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
8878 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
8879
8880 2012-04-26 Chong Yidong <cyd@gnu.org>
8881
8882 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
8883 (diff-mode-shared-map): Bind it to / and [remap undo].
8884
8885 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
8886 (ediff-window-setup-function): Use it as the default, to set up
8887 windows based on whether the current frame is graphical (Bug#2138).
8888 (ediff-choose-window-setup-function-automatically): Make obsolete.
8889
8890 * vc/ediff-init.el: Always define ediff-pixel-width/height.
8891
8892 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8893
8894 * ffap.el: Remove old code for obsolete package.
8895 (ffap-complete-as-file-p): Remove.
8896
8897 Use completion-table-with-quoting for comint and pcomplete.
8898 * comint.el (comint--unquote&requote-argument)
8899 (comint--unquote-argument, comint--requote-argument): New functions.
8900 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
8901 (comint-quote-filename): Use regexp-opt-charset.
8902 (comint--common-suffix, comint--common-quoted-suffix)
8903 (comint--table-subvert): Remove.
8904 (comint-unquote-function, comint-requote-function): New vars.
8905 (comint--complete-file-name-data): Use them with
8906 completion-table-with-quoting.
8907 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
8908 * pcomplete.el (pcomplete-arg-quote-list)
8909 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
8910 (pcomplete-unquote-argument-function): Default to non-nil.
8911 (pcomplete-unquote-argument): Simplify.
8912 (pcomplete--common-quoted-suffix): Remove.
8913 (pcomplete-requote-argument-function): New var.
8914 (pcomplete--common-suffix): New function.
8915 (pcomplete-completions-at-point): Use completion-table-with-quoting
8916 and completion-table-subvert.
8917
8918 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
8919 (minibuffer--double-dollars): Preserve properties.
8920 (completion--sifn-requote): New function.
8921 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
8922
8923 * minibuffer.el: Add support for completion of quoted/escaped data.
8924 (completion-table-with-quoting, completion-table-subvert): New funs.
8925 (completion--twq-try, completion--twq-all): New functions.
8926 (completion--nth-completion): New function.
8927 (completion-try-completion, completion-all-completions): Use it.
8928
8929 2012-04-25 Leo Liu <sdl.web@gmail.com>
8930
8931 * progmodes/python.el (python-pdbtrack-get-source-buffer):
8932 Use compilation-message if available to find real filename.
8933
8934 2012-04-25 Chong Yidong <cyd@gnu.org>
8935
8936 * vc/diff-mode.el (diff-setup-whitespace): New function.
8937 (diff-mode): Use it.
8938
8939 * vc/diff.el (diff-sentinel):
8940 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
8941 Whitespace mode variables based on diff style (Bug#8612).
8942
8943 2012-04-25 Leo Liu <sdl.web@gmail.com>
8944
8945 * progmodes/python.el (python-send-region): Add suffix .py to the
8946 temp file.
8947
8948 * files.el (auto-mode-alist): Use javascript-mode instead.
8949
8950 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
8951
8952 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
8953
8954 * net/soap-client.el (soap-resolve-references-for-sequence-type)
8955 (soap-resolve-references-for-array-type): Hack to prevent self
8956 references, see Bug#9.
8957 (soap-parse-envelope): Report the contents of the 'detail' node
8958 when receiving a fault reply.
8959 (soap-parse-envelope): Report the contents of the entire 'detail' node.
8960
8961 * net/soap-inspect.el (soap-sample-value-for-simple-type)
8962 (soap-inspect-simple-type): New function.
8963
8964 * net/soap-client.el (soap-simple-type): New struct.
8965 (soap-default-xsd-types, soap-default-soapenc-types)
8966 (soap-decode-basic-type, soap-encode-basic-type):
8967 support unsignedInt and double basic types.
8968 (soap-resolve-references-for-simple-type)
8969 (soap-parse-simple-type, soap-encode-simple-type): New function.
8970 (soap-parse-schema): Parse xsd:simpleType declarations.
8971
8972 * net/soap-client.el (soap-default-xsd-types)
8973 (soap-default-soapenc-types): Add integer, byte and anyURI types.
8974 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
8975 the local name of "soapenc:Array".
8976 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
8977 decoding integer, byte and anyURI xsd types.
8978
8979 2012-04-25 Chong Yidong <cyd@gnu.org>
8980
8981 * cus-edit.el (custom-buffer-create-internal): Update header text.
8982
8983 2012-04-25 Eli Zaretskii <eliz@gnu.org>
8984
8985 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
8986 settings on 'system-type', not on 'window-system'. On MS-Windows,
8987 set interactive-mode on in GDB.
8988
8989 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8990
8991 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
8992 (ruby-syntax-propertize-regexp): Remove.
8993 (ruby-syntax-propertize-function): Split regexp into chunks.
8994 Match following code directly.
8995
8996 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
8997
8998 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
8999 (ruby-syntax-propertize-regexp): New function.
9000 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
9001 by a special keyword.
9002
9003 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
9004 (ruby-syntax-general-delimiters-goto-beg)
9005 (ruby-syntax-propertize-general-delimiters): New functions.
9006 (ruby-syntax-propertize-function): Use them to handle GDL.
9007 (ruby-font-lock-keywords): Move old handling of GDL...
9008 (ruby-font-lock-syntactic-keywords): .. to here.
9009 (ruby-calculate-indent): Adjust indentation for GDL.
9010
9011 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
9012
9013 * notifications.el (top): Remove unneeded declarations.
9014 (notifications-specification-version): Change to "1.2".
9015 (notifications-interface, notifications-notify-method)
9016 (notifications-close-notification-method): Fix docstring.
9017 (notifications-get-capabilities-method): New defconst.
9018 (notifications-notify): Add :action-items, :resident and
9019 :transient hints. Change "image_data" to "image-data" and
9020 "image_path" to "image-path".
9021 (notifications-get-capabilities): New defun.
9022
9023 2012-04-24 Leo Liu <sdl.web@gmail.com>
9024
9025 * progmodes/python.el: Move hideshow setup to the end.
9026
9027 2012-04-24 Martin Rudalics <rudalics@gmx.at>
9028
9029 * window.el (handle-select-window): Clear echo area since this is
9030 no more done by read_char (Bug#11304).
9031
9032 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
9033
9034 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
9035 and `/ M' to filter-derived-mode.
9036 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
9037 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
9038 (ibuffer-mark-by-mode): Use default rather than initial-input.
9039 (ibuffer-filter-by-derived-mode): Autoload and require-match.
9040
9041 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
9042
9043 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
9044 (ibuffer-filter-by-derived-mode): New filter.
9045 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
9046
9047 2012-04-23 Andreas Politz <politza@fh-trier.de>
9048
9049 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
9050
9051 2012-04-23 Chong Yidong <cyd@gnu.org>
9052
9053 * cus-edit.el (customize-apropos, customize-apropos-options):
9054 Disable matching of non-option variables (Bug#11176).
9055 (customize-option, customize-option-other-window)
9056 (customize-changed-options): Doc fix.
9057 (customize-apropos-options, customize-apropos-faces)
9058 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
9059
9060 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
9061 Fix word list splitting (Bug#11132).
9062 (apropos-symbol, apropos-keybinding, apropos-label)
9063 (apropos-property, apropos-function-button)
9064 (apropos-variable-button, apropos-misc-button): New faces.
9065 (apropos-symbol-face, apropos-keybinding-face)
9066 (apropos-label-face, apropos-property-face, apropos-match-face):
9067 Variables removed (Bug#8396).
9068 (apropos-library-button, apropos-format-plist, apropos-print)
9069 (apropos-print-doc, apropos-describe-plist): Callers changed.
9070
9071 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
9072
9073 * net/xesam.el (xesam-mode-map): Use let-bound map in
9074 initialization. (Bug#11292)
9075
9076 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9077
9078 Preserve ispell session localwords when switching back to
9079 original buffer.
9080
9081 * textmodes/ispell.el (ispell-buffer-session-localwords):
9082 New buffer-local variable to hold buffer session localwords.
9083 (ispell-kill-ispell): Add option 'clear to delete session
9084 localwords.
9085 (ispell-command-loop, ispell-change-dictionary)
9086 (ispell-buffer-local-words): Preserve session localwords when
9087 needed.
9088
9089 * textmodes/flyspell.el (flyspell-process-localwords)
9090 (flyspell-do-correct): Preserve session localwords when needed.
9091
9092 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9093
9094 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
9095 using obsolete `translation-table-for-input'.
9096 (ispell-word, ispell-process-line, ispell-complete-word):
9097 Use plain `insert' instead of removed `ispell-insert-word'.
9098
9099 2012-04-22 Chong Yidong <cyd@gnu.org>
9100
9101 * cus-edit.el (custom-variable-menu)
9102 (custom-variable-reset-saved, custom-face-menu)
9103 (custom-face-reset-saved): If there is no saved value, make the
9104 "reset-saved" operation bring back the default (Bug#9509).
9105 (custom-face-state): Properly detect themed faces.
9106
9107 * faces.el (face-spec-set): Stop supporting deprecated form of
9108 third arg.
9109
9110 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
9111
9112 Move functions from C to Lisp. Make non-blocking method calls
9113 the default. Implement further D-Bus standard interfaces.
9114
9115 * net/dbus.el (dbus-message-internal): Declare function.
9116 Remove unneeded function declarations.
9117 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
9118 (dbus-message-type-method-return, dbus-message-type-error)
9119 (dbus-message-type-signal): Declare variables. Remove local
9120 definitions.
9121 (dbus-interface-dbus, dbus-interface-peer)
9122 (dbus-interface-introspectable, dbus-interface-properties)
9123 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
9124 Adapt docstring.
9125 (dbus-interface-objectmanager): New defconst.
9126 (dbus-call-method, dbus-call-method-asynchronously)
9127 (dbus-send-signal, dbus-method-return-internal)
9128 (dbus-method-error-internal, dbus-register-service)
9129 (dbus-register-signal, dbus-register-method): New defuns, moved
9130 from dbusbind.c
9131 (dbus-call-method-handler, dbus-setenv)
9132 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
9133 New defuns.
9134 (dbus-call-method-non-blocking): Make it an obsolete function.
9135 (dbus-unregister-object, dbus-unregister-service)
9136 (dbus-handle-event, dbus-register-property)
9137 (dbus-property-handler): Obey the new structure of
9138 `bus-registered-objects'.
9139 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
9140 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
9141 Use `dbus-call-method'.
9142
9143 2012-04-22 Chong Yidong <cyd@gnu.org>
9144
9145 * cus-edit.el (custom-commands, custom-reset-menu)
9146 (Custom-reset-standard): Tweak labels.
9147 (custom-reset-button-menu): Change default to t.
9148 (custom-buffer-create-internal): For the custom-reset-button-menu
9149 case, put the revert button first.
9150 (custom-group-subtitle): New face.
9151 (custom-group-value-create): Align docstring to a specific column.
9152
9153 * wid-edit.el (widget-documentation-link-add): Don't handle
9154 indentation in this function.
9155 (widget-documentation-string-indent-to): New function.
9156 (widget-documentation-string-value-create): Use it.
9157
9158 * autorevert.el (auto-revert):
9159 * epg-config.el (epg):
9160 * ibuffer.el (ibuffer):
9161 * mpc.el (mpc):
9162 * ses.el (ses):
9163 * eshell/eshell.el (eshell):
9164 * net/ange-ftp.el (ange-ftp):
9165 * progmodes/ebnf2ps.el (postscript):
9166 * progmodes/flymake.el (flymake):
9167 * progmodes/prolog.el (prolog):
9168 * progmodes/verilog-mode.el (verilog-mode):
9169 * progmodes/which-func.el (which-func):
9170 * term/xterm.el (xterm):
9171 * textmodes/picture.el (picture):
9172 * textmodes/tildify.el (tildify):
9173 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
9174 customization buffers.
9175
9176 2012-04-22 Alan Mackenzie <acm@muc.de>
9177
9178 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
9179 Adding a ) can hide the resulting (..) from searches. Fix it.
9180 Bound the backward search to the position of the existing (.
9181
9182 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
9183
9184 * progmodes/verilog-mode.el (verilog-mode): Check whether
9185 which-func-modes is t before adding verilog-mode.
9186 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
9187
9188 2012-04-21 Leo Liu <sdl.web@gmail.com>
9189
9190 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
9191
9192 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
9193
9194 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
9195 filling of the last column of a table (Bug#5635).
9196 (woman-find-next-control-line): New arg, specifying an additional
9197 regexp component for the control line.
9198 (woman2-roff-buffer): Use it.
9199 (woman-break-table): New function.
9200 (woman2-TS): Use it.
9201
9202 2012-04-21 Chong Yidong <cyd@gnu.org>
9203
9204 * woman.el (woman-set-buffer-display-table, woman-decode-region)
9205 (woman-horizontal-escapes, woman-negative-vertical-space)
9206 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
9207 (WoMan-warn-ignored): Use ?\s instead of ?\ .
9208
9209 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9210
9211 * minibuffer.el (completion-file-name-table): Complete user names.
9212
9213 2012-04-20 Leo Liu <sdl.web@gmail.com>
9214
9215 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
9216 and pcase-let*.
9217
9218 2012-04-20 Chong Yidong <cyd@gnu.org>
9219
9220 * server.el (server-execute): Respect initial-buffer-choice if it
9221 is a string and there are no files to open (Bug#2825).
9222 (server-create-window-system-frame, server-create-tty-frame):
9223 Don't switch buffers here.
9224 (server-process-filter): Only try to open a window system frame if
9225 compiled with graphical support (Bug#8314).
9226
9227 2012-04-20 Dan Nicolaescu <dann@gnu.org>
9228
9229 * battery.el (battery-echo-area-format): Display remaining time
9230 for sysfs backend too (Bug#11269).
9231 (battery-linux-sysfs): Fix conditional for the charge.
9232
9233 2012-04-20 Chong Yidong <cyd@gnu.org>
9234
9235 * progmodes/gdb-mi.el (gdb): Revert previous change.
9236 (gdb-inferior-io--init-proc): New function.
9237 (gdb-init-1): Use it.
9238 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
9239 responsible for allocating a new pty and hooking it to gdb when
9240 the old pty gets an EIO due to process exit.
9241 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
9242 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
9243 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
9244
9245 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9246
9247 * window.el (window-min-size, window-sizable, window-min-delta)
9248 (window-max-delta, window--resizable, window-resizable)
9249 (window-total-size, window-full-height-p, window-full-width-p)
9250 (window-in-direction, window--resize-mini-window, window-resize)
9251 (window--resize-child-windows-normal)
9252 (window--resize-child-windows, window--resize-siblings)
9253 (window--resize-this-window, adjust-window-trailing-edge)
9254 (enlarge-window, shrink-window): Doc fixes.
9255
9256 2012-04-20 Chong Yidong <cyd@gnu.org>
9257
9258 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
9259 New function to call delete-process on the gdb-inferior buffer's pty.
9260 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
9261 pty process (Bug#11273).
9262 (gdb-update): New arg to suppress talking to the gdb process.
9263 (gdb-done-or-error): Use it.
9264 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
9265 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
9266 sentinel not being called.
9267
9268 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
9269
9270 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
9271
9272 2012-04-20 Glenn Morris <rgm@gnu.org>
9273
9274 * net/network-stream.el (open-network-stream): Doc fix.
9275
9276 2012-04-20 Chong Yidong <cyd@gnu.org>
9277
9278 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
9279
9280 2012-04-20 Alan Mackenzie <acm@muc.de>
9281
9282 Ensure searching for keywords is case sensitive.
9283
9284 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
9285 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
9286 (c-defun-name, c-mark-function, c-cpp-define-name)
9287 (c-comment-indent, c-scan-conditionals, c-indent-defun)
9288 (c-context-line-break): Bind case-fold-search to nil.
9289
9290 * progmodes/cc-mode.el (c-font-lock-fontify-region):
9291 Bind case-fold-search to nil.
9292
9293 2012-04-20 Chong Yidong <cyd@gnu.org>
9294
9295 * mail/sendmail.el (mail-bury): Call return action with the right
9296 Rmail buffer (Bug#11242).
9297
9298 * server.el (server-process-filter): Handle corner case where both
9299 tty and nowait options are present (Bug#11102).
9300
9301 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9302
9303 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
9304 (top level): Put into the executable the ident-style '$Id:' tag on
9305 windows-nt as well.
9306
9307 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9308
9309 * electric.el (electric-indent-post-self-insert-function): Check that
9310 electric-indent-mode is enabled in current buffer.
9311
9312 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9313
9314 * imenu.el (imenu-progress-message): Restore; it is "used" in
9315 erc/erc-imenu.el and net/snmp-mode.el.
9316
9317 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9318
9319 * avoid.el (mouse-avoidance-mode): Mark unused arg.
9320 (mouse-avoidance-nudge-mouse): Remove unused binding.
9321
9322 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
9323
9324 * descr-text.el (describe-char):
9325 * progmodes/python.el (python-describe-symbol):
9326 Don't call `toggle-read-only', set `buffer-read-only'.
9327
9328 * imenu.el (imenu-default-goto-function): Mark unused args.
9329 (imenu-progress-message): Remove obsolete macro; all callers changed.
9330
9331 * subr.el (keymap-canonicalize): Remove unused binding.
9332 (read-passwd): Mark unused arg.
9333
9334 * tutorial.el (tutorial--display-changes): Remove unused binding.
9335 (tutorial--save-tutorial-to): Remove unused variable.
9336
9337 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
9338 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
9339 (package-generate-autoloads, package-menu--generate)
9340 (package-menu--find-upgrades): Remove unused bindings.
9341
9342 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
9343 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
9344 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
9345 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
9346 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
9347 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
9348 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
9349 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
9350 (cua-delete-char-rectangle): Mark unused args.
9351 (cua-align-rectangle): Remove unused binding.
9352
9353 * mail/rmail.el (compilation--message->loc)
9354 (epa--find-coding-system-for-mime-charset): Declare.
9355
9356 * net/dbus.el (dbus-register-service): Declare.
9357 (dbus-name-owner-changed-handler): Remove unused binding.
9358
9359 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
9360 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
9361 (nxml-scan-backward-within): Mark unused arg.
9362 (nxml-dynamic-markup-word): Remove unused binding.
9363
9364 * mouse.el (mouse-menu-major-mode-map):
9365 * emacs-lisp/authors.el (authors-scan-change-log)
9366 (authors-add-to-author-list):
9367 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
9368 * emacs-lisp/smie.el (smie-auto-fill):
9369 * mail/sendmail.el (mail-bury):
9370 * mail/unrmail.el (unrmail):
9371 * net/tls.el (open-tls-stream):
9372 * textmodes/picture.el (picture-mouse-set-point):
9373 Remove unused bindings.
9374
9375 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
9376
9377 * net/tramp.el (tramp-action-password): Let-bind
9378 `enable-recursive-minibuffers' to t.
9379
9380 2012-04-18 Sam Steingold <sds@gnu.org>
9381
9382 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
9383 instead of 'string to accommodate values like [f11].
9384 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
9385 * progmodes/gdb-mi.el: Likewise.
9386
9387 2012-04-18 Leo Liu <sdl.web@gmail.com>
9388
9389 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
9390 current buffer.
9391 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
9392 LOCAL is nil.
9393
9394 2012-04-18 Chong Yidong <cyd@gnu.org>
9395
9396 * simple.el (line-move): Use forward-line if in batch mode
9397 (Bug#11053).
9398
9399 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
9400
9401 * files.el (after-find-file): Do not try to add a final newline if
9402 the buffer is read-only (Bug#11156).
9403
9404 2012-04-17 Richard Stallman <rms@gnu.org>
9405
9406 * mail/rmail.el (rmail-start-mail):
9407 Pass (rmail-mail-return...) for the return-action.
9408 Pass (rmail-yank-current-message...) for the yank-action.
9409 (rmail-yank-current-message): New function.
9410 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
9411 (rmail-reply): Likewise.
9412 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
9413
9414 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
9415 buffer, not the last. Reject temp buffers. Use the rmail-mode
9416 buffer, not newbuf.
9417
9418 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
9419
9420 * server.el (server-ensure-safe-dir): Simplify.
9421
9422 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
9423
9424 * emacs-lisp/smie.el: Provide smarter auto-filling.
9425 (smie-auto-fill): New function.
9426 (smie-setup): Use it.
9427
9428 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
9429
9430 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
9431
9432 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
9433 (comment-indent): Use it.
9434
9435 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
9436
9437 * ses.el: The overall change is to add cell renaming, that is
9438 setting fancy names for cell symbols other than name matching
9439 "\\`[A-Z]+[0-9]+\\'" regexp .
9440 (ses-localvars): Add ses--renamed-cell-symb-list.
9441 (ses-create-cell-variable): New defun.
9442 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
9443 (ses-relocate-formula): Relocate formulas only for cells the
9444 symbols of which are not renamed, i.e. symbols whose names do not
9445 match regexp "\\`[A-Z]+[0-9]+\\'".
9446 (ses-relocate-all): Relocate values only for cells the symbols of
9447 which are not renamed.
9448 (ses-load): Create cells variables as the (ses-cell ...) are read,
9449 in order to check row col consistency with cell symbol name only
9450 for cells that are not renamed.
9451 (ses-replace-name-in-formula): New defun.
9452 (ses-rename-cell): New defun.
9453
9454 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
9455
9456 * progmodes/perl-mode.el (perl-indent-parens-as-block):
9457 New option (bug#11118).
9458 (perl-calculate-indent): Respect it.
9459
9460 2012-04-17 Glenn Morris <rgm@gnu.org>
9461
9462 * dired-aux.el (dired-mark-read-string): Doc fix.
9463
9464 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
9465
9466 * dired-aux.el (dired-mark-read-string): Offer optional completion.
9467 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
9468
9469 2012-04-17 Glenn Morris <rgm@gnu.org>
9470
9471 * mouse.el (mouse-drag-track):
9472 * speedbar.el (speedbar-frame-mode):
9473 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
9474
9475 2012-04-16 Leo Liu <sdl.web@gmail.com>
9476
9477 * progmodes/python.el: Trivial cleanup.
9478
9479 2012-04-16 Glenn Morris <rgm@gnu.org>
9480
9481 * vc/vc.el (vc-string-prefix-p):
9482 * vc/pcvs-util.el (cvs-string-prefix-p):
9483 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
9484 * mpc.el (mpc-string-prefix-p):
9485 Make all of these into obsolete aliases for string-prefix-p.
9486 Update callers.
9487 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
9488
9489 * textmodes/two-column.el: Move custom options to the start.
9490 (frame-width): Remove compat definition.
9491 (2C-associate-buffer, 2C-dissociate):
9492 Use with-current-buffer rather than save-excursion.
9493 (2C-dissociate): Force a mode-line update.
9494 (2C-autoscroll): Use ignore-errors.
9495
9496 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
9497 Autoload trivia.
9498
9499 * emacs-lisp/cl-extra.el (*random-state*):
9500 Remove unnecessary declaration.
9501
9502 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
9503
9504 * play/cookie1.el (cookie-snarf):
9505 Give an explicit error if input file cannot be read.
9506
9507 * play/yow.el (yow-file): Use expand-file-name rather than concat.
9508
9509 * progmodes/perl-mode.el (c-macro-expand):
9510 Remove unnecessary autoload (it is in loaddefs.el).
9511
9512 * textmodes/picture.el (picture-desired-column)
9513 (picture-update-desired-column): Convert comments to doc-strings.
9514 (picture-substitute): Remove function.
9515 (picture-mode-map): Initialize in the defvar.
9516
9517 * woman.el: Remove eval-after-load for tar-mode.
9518 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
9519 (woman-tar-extract-file): Autoload it.
9520
9521 * frame.el (automatic-hscrolling): Make this alias obsolete.
9522
9523 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9524
9525 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
9526 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
9527 (ispell-dictionary-base-alist): Revert to original XEmacs
9528 friendly version for default. [:alpha:] will be added in
9529 `ispell-set-spellchecker-params' if needed.
9530
9531 2012-04-16 Chong Yidong <cyd@gnu.org>
9532
9533 * image.el (imagemagick--file-regexp): New variable.
9534 (imagemagick-register-types): Use it.
9535 (imagemagick-types-inhibit): Add :set function. Allow new value
9536 of t to inhibit all types.
9537
9538 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
9539 so we can preload it.
9540
9541 * loadup.el (fboundp): Preload regexp-opt, needed by
9542 imagemagick-register-types.
9543
9544 2012-04-15 Chong Yidong <cyd@gnu.org>
9545
9546 * frame.el (scrolling): Remove nearly unused customization group.
9547
9548 * scroll-all.el (scroll-all-mode): Move to windows group.
9549
9550 2012-04-15 Chong Yidong <cyd@gnu.org>
9551
9552 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
9553
9554 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
9555
9556 Avoid the use of ((lambda ...) ...) in lexical-binding code.
9557 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
9558
9559 2012-04-15 Glenn Morris <rgm@gnu.org>
9560
9561 * simple.el (process-file-side-effects): Doc fix.
9562
9563 2012-04-15 Glenn Morris <rgm@gnu.org>
9564
9565 * international/mule-cmds.el (set-language-environment): Doc fix.
9566
9567 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9568
9569 * server.el (server-auth-key, server-generate-key): Doc fixes.
9570 (server-get-auth-key): Doc fix. Use `string-match-p'.
9571 (server-start): Reflow docstring.
9572
9573 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
9574
9575 * server.el (server-generate-key): `called-interactively-p'
9576 requires a parameter.
9577
9578 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
9579
9580 * server.el (server-auth-key): New variable.
9581 (server-generate-key, server-get-auth-key): New function.
9582 (server-start): Use the new variable and functions to allow
9583 setting a permanent server key (bug#9423).
9584
9585 2012-04-14 Leo Liu <sdl.web@gmail.com>
9586
9587 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
9588
9589 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
9590
9591 Spelling fixes.
9592 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
9593 Emacs uses American spelling.
9594
9595 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9596
9597 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
9598 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
9599 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
9600 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
9601
9602 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9603
9604 * progmodes/which-func.el (which-func-modes): Change default.
9605
9606 2012-04-14 Kim F. Storm <storm@cua.dk>
9607
9608 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
9609 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
9610
9611 2012-04-14 Chong Yidong <cyd@gnu.org>
9612
9613 * custom.el (custom-theme-set-variables): Doc fix.
9614
9615 2012-04-14 Glenn Morris <rgm@gnu.org>
9616
9617 * international/mule.el (set-auto-coding-for-load): Doc fix.
9618
9619 2012-04-14 Alan Mackenzie <acm@muc.de>
9620
9621 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
9622 imenu work again for Objective C Mode. Correct the *-index values,
9623 these having been disturbed by a previous change in 2011-08.
9624
9625 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
9626 Correct two search limits.
9627
9628 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9629
9630 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
9631
9632 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
9633
9634 * international/characters.el: Fix sorting.
9635
9636 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9637
9638 * international/characters.el: Add more missing Latin case pairs.
9639
9640 2012-04-14 Glenn Morris <rgm@gnu.org>
9641
9642 * files.el (dir-locals-set-class-variables): Doc fix.
9643
9644 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9645
9646 * international/characters.el: Add set-case-syntax-pair call for
9647 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
9648 counterpart. (Bug#11209)
9649
9650 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
9651
9652 2012-04-14 Glenn Morris <rgm@gnu.org>
9653
9654 * calendar/holidays.el (calendar-check-holidays): Doc fix.
9655
9656 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9657
9658 * textmodes/ispell.el (ispell-dictionary-base-alist):
9659 Add data for Hebrew.
9660
9661 2012-04-14 Chong Yidong <cyd@gnu.org>
9662
9663 * net/rcirc.el (rcirc-cmd-quit):
9664 Revert 2012-03-18 change (Bug#11192).
9665
9666 2012-04-14 Glenn Morris <rgm@gnu.org>
9667
9668 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
9669
9670 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9671
9672 * minibuffer.el (completion-in-region-mode-map):
9673 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
9674
9675 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
9676
9677 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
9678
9679 2012-04-13 Masatake YAMATO <yamato@redhat.com>
9680
9681 * minibuffer.el (minibuffer-local-filename-syntax): New variable
9682 to allow `C-M-f' and `C-M-b' to move to the nearest path
9683 separator (bug#9511).
9684
9685 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
9686
9687 * avoid.el: Require cl when compiling. And also move the
9688 `provide' to the end.
9689
9690 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9691
9692 * avoid.el (mouse-avoidance-banish-position): New variable.
9693 (mouse-avoidance-banish-destination): Use it (bug#10165).
9694
9695 2012-04-13 Leo Liu <sdl.web@gmail.com>
9696
9697 * progmodes/which-func.el (which-func-modes): Add objc-mode.
9698
9699 2012-04-13 Ken Brown <kbrown@cornell.edu>
9700
9701 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
9702 this is no longer needed now that cygstart understands file:// URLs.
9703 (browse-url-filename-alist): For the same reason, don't modify
9704 file:// URLs on Cygwin.
9705
9706 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9707
9708 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
9709 the region on shift if the binding is already shifted (bug#11221).
9710
9711 2012-04-12 Glenn Morris <rgm@gnu.org>
9712
9713 * mail/mailpost.el: Move to obsolete/.
9714
9715 2012-04-12 Drew Adams <drew.adams@oracle.com>
9716
9717 * imenu.el (imenu--generic-function): Ignore invisible definitions
9718 (bug#10123).
9719
9720 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
9721
9722 * hexl.el (hexl-bits): New variable.
9723 (hexl-options): Mention the variable in the doc string.
9724 (hexl-rulerise, hexl-line-displen): New functions.
9725 (hexl-mode): Mention the new variable.
9726 (hexl-mode, hexl-current-address, hexl-current-address):
9727 Use the displen.
9728 (hexl-ascii-start-column): New function.
9729 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
9730 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
9731
9732 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9733
9734 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
9735 '("-i" ENCODING), in 2 separate command-line arguments, to specify
9736 the encoding, as expected by hunspell.
9737
9738 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9739
9740 * battery.el (battery--linux-sysfs-regexp): New const.
9741 (battery-status-function): Use it. Remove yeeloong special case.
9742 (battery-yeeloong-sysfs): Remove.
9743 (battery-echo-area-format): Remove yeeloong special case.
9744
9745 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9746
9747 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
9748 Reported by Noah Friedman.
9749
9750 * subr.el (read-passwd): Use read-string.
9751
9752 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9753
9754 * vcursor.el (vcursor-move): Increase the priority of the overlay
9755 (bug#9663).
9756
9757 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9758
9759 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
9760 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
9761
9762 2012-04-11 William Stevenson <yhvh2000@gmail.com>
9763
9764 * textmodes/artist.el (artist-mode): Convert artist-mode to use
9765 define-minor-mode (bug#10760).
9766
9767 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
9768
9769 * progmodes/grep.el (rgrep): Tweak the find command line so
9770 that directories matching `grep-find-ignored-files' won't be
9771 pruned (bug#10351).
9772
9773 2012-04-11 Chong Yidong <cyd@gnu.org>
9774
9775 * startup.el (command-line): Remove support for long-obsolete
9776 variable font-lock-face-attributes.
9777
9778 2012-04-11 Glenn Morris <rgm@gnu.org>
9779
9780 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
9781
9782 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9783
9784 * window.el (window--state-get-1): Obey window-point-insertion-type.
9785
9786 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
9787
9788 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
9789 to previous function when point is on the first character of a
9790 function. Take care of that in `narrow-to-defun' (bug#6157).
9791
9792 2012-04-11 Glenn Morris <rgm@gnu.org>
9793
9794 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
9795 not just file-errors.
9796
9797 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
9798 (vc-bzr-sha1): Use internal sha1.
9799
9800 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9801
9802 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
9803
9804 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
9805
9806 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
9807 that start in the middle of the line (bug#10496).
9808
9809 2012-04-10 Dan Nicolaescu <dann@gnu.org>
9810
9811 * battery.el (battery-linux-proc-acpi): Only one battery is
9812 discharged at a time, but that seems to confuse battery.el when
9813 computing `rate-type' for the battery not being discharged
9814 (bug#10332).
9815
9816 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
9817
9818 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
9819
9820 * international/quail.el: Use dolist and simplify.
9821 (quail-define-package, quail-update-keyboard-layout)
9822 (quail-define-rules): Use dolist.
9823 (quail-insert-kbd-layout, quail-get-translation): CSE.
9824
9825 * tmm.el: Use dolist, remove left over hook.
9826 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
9827 Use dolist.
9828 (calendar-load-hook): Don't mess with it.
9829
9830 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
9831 Use derived-mode-p. Run the diff asynchronously.
9832
9833 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9834
9835 * obsolete/mouse-sel.el: Add an Obsolete-since header.
9836
9837 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
9838
9839 * misc.el: Display absolute path of loaded DLLs (bug#10424).
9840 (list-dynamic-libraries--loaded): New function.
9841 (list-dynamic-libraries--refresh): Use it.
9842
9843 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
9844
9845 * progmodes/python.el (python-fill-paragraph):
9846 Make python-fill-region in a multiline string work when font-lock is
9847 disabled (bug#7018).
9848
9849 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
9850
9851 * language/european.el (cp775): Add oem/legacy (en)coding on
9852 DOS/MS Windows for the Baltic languages. There are still plenty
9853 of texts written in this encoding/codepage (bug#6519).
9854
9855 2012-04-10 Glenn Morris <rgm@gnu.org>
9856
9857 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
9858 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
9859
9860 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
9861
9862 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
9863 next-line "n" and previous-line "p" in order to make recentf more
9864 consistent with ibuffer, dired or org-mode (bug#9387).
9865
9866 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9867
9868 * image.el (put-image): Return the overlay created instead of the
9869 optional input string (bug#7834). Note that this may break code
9870 that is (for some reason or other) depending on `put-image'
9871 returning the string.
9872
9873 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
9874
9875 * simple.el (zap-to-char): Allow zapping using input methods
9876 (bug#1580).
9877
9878 * textmodes/fill.el (fill-region): Leave point and mark where they
9879 were before filling (bug#5399).
9880
9881 2012-04-09 Glenn Morris <rgm@gnu.org>
9882
9883 * version.el (emacs-bzr-get-version):
9884 Handle lightweight checkouts of local branches.
9885
9886 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
9887
9888 * international/characters.el: Recover lost case pairs. (Bug#11209)
9889
9890 2012-04-09 Chong Yidong <cyd@gnu.org>
9891
9892 * custom.el (custom-variable-p): Return nil for non-symbol
9893 arguments instead of signaling an error.
9894 (user-variable-p): Obsolete alias for custom-variable-p.
9895
9896 * apropos.el (apropos-variable):
9897 * files-x.el (read-file-local-variable):
9898 * simple.el (set-variable):
9899 * woman.el (woman-mini-help):
9900 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
9901
9902 2012-04-09 Glenn Morris <rgm@gnu.org>
9903
9904 * startup.el (normal-top-level): Don't look for leim-list.el
9905 in places where it will not be found. (Bug#910)
9906
9907 * international/mule-cmds.el (set-default-coding-systems):
9908 * files.el (normal-mode):
9909 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
9910 This function was removed with ucs-tables.el in 2008.
9911
9912 2012-04-08 Eli Zaretskii <eliz@gnu.org>
9913
9914 * textmodes/ispell.el (ispell-check-version): For hunspell, set
9915 ispell-encoding8-command to "-i", without a trailing space.
9916 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
9917 separate command-line arguments, to specify the encoding, since
9918 that's how hunspell expects it.
9919
9920 2012-04-08 Glenn Morris <rgm@gnu.org>
9921
9922 * loadup.el: Load bindings before cus-start.
9923 This reduces somewhat the number of "rogue" settings in emacs -Q.
9924
9925 2012-04-07 Glenn Morris <rgm@gnu.org>
9926
9927 * version.el (emacs-bzr-get-version): New function.
9928 (emacs-bzr-version): New variable.
9929 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
9930 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
9931
9932 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9933
9934 * international/uni-bidi.el, international/uni-category.el:
9935 * international/uni-combining.el, international/uni-decimal.el:
9936 * international/uni-decomposition.el, international/uni-digit.el:
9937 * international/uni-lowercase.el, international/uni-mirrored.el:
9938 * international/uni-name.el, international/uni-numeric.el:
9939 * international/uni-titlecase.el, international/uni-uppercase.el:
9940 Update for Unicode 6.1.
9941
9942 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9943
9944 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
9945
9946 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
9947
9948 * window.el (shrink-window): Mention the `window-min-height'
9949 variable in the doc string.
9950
9951 2012-04-05 Bastien Guerry <bzg@altern.org>
9952
9953 * color.el (color-lighten-name): Fix typo.
9954
9955 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9956
9957 * server.el (server--on-display-p): New function.
9958 (server--on-display-p): Use it.
9959
9960 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
9961
9962 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
9963 (bug#11145).
9964
9965 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9966
9967 * comint.el (comint--common-quoted-suffix): Check string boundary
9968 before comparing (bug#11158).
9969 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
9970
9971 2012-04-04 Chong Yidong <cyd@gnu.org>
9972
9973 * minibuffer.el (completion-extra-properties): Doc fix.
9974
9975 * subr.el (delayed-warnings-hook): Doc fix.
9976
9977 2012-04-04 Daiki Ueno <ueno@unixuser.org>
9978
9979 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
9980 selection (Bug#11159).
9981 (epa-insert-keys): Inform that the default public key will be
9982 exported if no key is selected.
9983
9984 2012-04-04 Richard Stallman <rms@gnu.org>
9985
9986 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
9987
9988 2012-04-03 Chong Yidong <cyd@gnu.org>
9989
9990 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
9991 mail-insert-file, not its obsolete alias mail-attach-file.
9992
9993 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
9994
9995 * notifications.el (notifications-notify): Fix docstring.
9996
9997 2012-04-02 Glenn Morris <rgm@gnu.org>
9998
9999 * emacs-lisp/authors.el (authors-aliases): Another addition.
10000
10001 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
10002
10003 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
10004 `tramp-compat-call-process' instead of `tramp-local-call-process'.
10005 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
10006
10007 2012-04-01 Chong Yidong <cyd@gnu.org>
10008
10009 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
10010 Handle root directory properly.
10011 (copy-directory): Caller changed.
10012
10013 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
10014 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
10015
10016 2012-03-31 Glenn Morris <rgm@gnu.org>
10017
10018 * term/xterm.el (xterm-extra-capabilities): Doc fix.
10019
10020 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
10021
10022 * calendar/calendar.el (calendar-window-list)
10023 (calendar-hide-window): Restore. (Bug#11140)
10024 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
10025
10026 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
10027
10028 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10029
10030 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
10031 Check if file is a symlink (Bug#10489).
10032
10033 * files.el (copy-directory): Likewise.
10034
10035 2012-03-30 Chong Yidong <cyd@gnu.org>
10036
10037 * image.el (imagemagick-types-inhibit)
10038 (imagemagick-register-types): Doc fix.
10039
10040 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10041
10042 * textmodes/ispell.el (ispell-get-extended-character-mode):
10043 Disable extended-char-mode for hunspell. hunspell does not support it
10044 and treats ~word as ordinary words in pipe mode.
10045
10046 2012-03-30 Glenn Morris <rgm@gnu.org>
10047
10048 * tutorial.el (help-with-tutorial): Ensure local variables don't
10049 happen to make the buffer read-only. (Bug#11127)
10050
10051 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
10052
10053 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
10054 (perl-calculate-indent): Return `noindent' in strings.
10055
10056 2012-03-28 Sam Steingold <sds@gnu.org>
10057
10058 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
10059 instead of the broken adhockery which does not prevent calendar
10060 buffers from being displayed at random after exit.
10061 (calendar-window-list, calendar-hide-window): Remove the broken
10062 adhockery.
10063
10064 2012-03-28 Glenn Morris <rgm@gnu.org>
10065
10066 * replace.el (query-replace-map): Doc fix.
10067
10068 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
10069
10070 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
10071 contents. (Bug#11109)
10072
10073 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
10074
10075 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
10076 (bug#11077).
10077 (avl-tree--check, avl-tree--check-node): New funs.
10078
10079 2012-03-27 Martin Rudalics <rudalics@gmx.at>
10080
10081 * window.el (switch-to-visible-buffer): New option.
10082 (switch-to-prev-buffer, switch-to-next-buffer):
10083 Observe switch-to-visible-buffer. Make sure that checking for a window
10084 showing a buffer already is done on the same frame.
10085
10086 2012-03-27 Glenn Morris <rgm@gnu.org>
10087
10088 * startup.el (mail-host-address): Doc fix.
10089
10090 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
10091
10092 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
10093 than 197 variables.
10094
10095 2012-03-26 Ami Fischman <ami@fischman.org>
10096
10097 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
10098
10099 2012-03-26 Glenn Morris <rgm@gnu.org>
10100
10101 * files.el (save-buffers-kill-emacs): Doc fix.
10102
10103 * startup.el (normal-top-level, command-line, command-line-1):
10104 Give them doc strings.
10105
10106 2012-03-25 Eli Zaretskii <eliz@gnu.org>
10107
10108 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
10109 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
10110
10111 2012-03-25 Chong Yidong <cyd@gnu.org>
10112
10113 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
10114 theme if it was previously enabled before (Bug#11031).
10115
10116 * cus-theme.el (custom-theme-write-faces): Retrieve current face
10117 spec with custom-face-get-current-spec if its :shown-value is not
10118 determined yet (Bug#9337).
10119 (customize-create-theme, custom-theme-revert): Doc fixes.
10120
10121 * button.el (button-at): Minor addition to docstring.
10122
10123 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
10124
10125 * vc/vc.el (vc-merge): Fix a prompt.
10126
10127 2012-03-24 Chong Yidong <cyd@gnu.org>
10128
10129 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
10130 point (Bug#9623).
10131
10132 * button.el (button-at): Minor addition to docstring.
10133
10134 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
10135
10136 * newcomment.el (comment-choose-indent): No space after BOL.
10137
10138 2012-03-22 Sam Steingold <sds@gnu.org>
10139
10140 * window.el (switch-to-prev-buffer): Revert last patch because the
10141 bug turned out to be an advertised feature (Elisp manual 28.14).
10142
10143 2012-03-22 Glenn Morris <rgm@gnu.org>
10144
10145 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
10146 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
10147
10148 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
10149
10150 * net/network-stream.el (network-stream-open-starttls): Make error
10151 message under Windows be less misleading.
10152
10153 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
10154
10155 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
10156 understands (bug#9942).
10157
10158 2012-03-22 Chong Yidong <cyd@gnu.org>
10159
10160 * simple.el (end-of-visible-line): Handle return value of
10161 next-single-property-change properly (Bug#9371).
10162
10163 2012-03-22 Kenichi Handa <handa@m17n.org>
10164
10165 * international/quail.el (quail-insert-kbd-layout): Fix previous
10166 change. To avoid unwanted bidi reordering, use
10167 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
10168
10169 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
10170
10171 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
10172 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
10173 (ruby-beginning-of-indent): Be more careful with the difference
10174 between word-boundary and symbol boundary.
10175 (ruby-mode-syntax-table): Make : a symbol constituent.
10176
10177 2012-03-21 Andreas Politz <politza@fh-trier.de>
10178
10179 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
10180
10181 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
10182
10183 * progmodes/etags.el (tags-completion-at-point-function):
10184 Improve last fix.
10185
10186 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
10187
10188 2012-03-21 Sam Steingold <sds@gnu.org>
10189
10190 * progmodes/etags.el (tags-completion-at-point-function):
10191 Avoid the error when point is inside the pattern.
10192
10193 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
10194
10195 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
10196 line (Bug#10855).
10197
10198 2012-03-21 Drew Adams <drew.adams@oracle.com>
10199
10200 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
10201
10202 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
10203
10204 * ido.el (ido-set-current-directory, ido-read-internal)
10205 (ido-choose-completion-string, ido-completion-help): Handle nil
10206 value of ido-completion-buffer (Bug#11008).
10207
10208 2012-03-21 Sam Steingold <sds@gnu.org>
10209
10210 * window.el (switch-to-prev-buffer): Do not switch to a visible
10211 window previous buffer, just like with the frame previous buffers.
10212
10213 2012-03-21 Chong Yidong <cyd@gnu.org>
10214
10215 * faces.el (make-face, make-empty-face, copy-face):
10216 * face-remap.el (face-remap-add-relative, face-remap-set-base):
10217 Doc fixes.
10218
10219 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
10220
10221 * wid-edit.el (widget-complete-field): Remove (bug#11051).
10222 (widget-complete): Remove broken use of it.
10223
10224 2012-03-20 Chong Yidong <cyd@gnu.org>
10225
10226 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
10227 Use string-width and truncate-string-width to handle arbitrary
10228 characters.
10229
10230 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
10231
10232 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
10233 to draw rectangles, not squares. (Regression introduced by revno
10234 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
10235
10236 2012-03-18 Chong Yidong <cyd@gnu.org>
10237
10238 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
10239 it is not yet defined (for temacs).
10240
10241 2012-03-18 Leo Liu <sdl.web@gmail.com>
10242
10243 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
10244 prefix.
10245
10246 2012-03-17 Eli Zaretskii <eliz@gnu.org>
10247
10248 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
10249 (ispell-choices-win-default-height, ispell-silently-savep)
10250 (ispell-dictionary-alist, ispell-encoding8-command)
10251 (ispell-check-version, ispell-aspell-find-dictionary)
10252 (ispell-valid-dictionary-list, ispell-words-keyword)
10253 (ispell-get-word, ispell-internal-change-dictionary)
10254 (ispell-region, ispell-skip-region-list)
10255 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
10256 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
10257 (ispell-message-text-end, ispell-message)
10258 (ispell-buffer-local-parsing): Doc fix.
10259
10260 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
10261
10262 * htmlfontify.el: Add support for code block fontification for ODT
10263 export (Bug #9914).
10264 (hfy-optimisations): Define new option
10265 `body-text-only'
10266 (hfy-fontify-buffer): Honor above setting.
10267 (hfy-begin-span, hfy-end-span): New routines factored out form
10268 `hfy-fontify-buffer'.
10269 (hfy-begin-span-handler, hfy-end-span-handler): New variables
10270 that permit insertion of custom tags.
10271 (hfy-fontify-buffer): Use above handlers.
10272 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
10273 (hfy-face-to-css): Re-defined to be a variable.
10274 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
10275 over multiple runs. This is made possible by having the caller let
10276 bind a special variable `hfy-user-sheet-assoc'.
10277 (htmlfontify-string): New defun.
10278 (hfy-compile-face-map): Make sure that the last char in the
10279 buffer is correctly fontified.
10280 (hfy-face-resolve-face): Whitespace only change.
10281
10282 2012-03-17 Eli Zaretskii <eliz@gnu.org>
10283
10284 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
10285 message more clear.
10286
10287 2012-03-16 Leo Liu <sdl.web@gmail.com>
10288
10289 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
10290
10291 2012-03-16 Alan Mackenzie <acm@muc.de>
10292
10293 Further optimise the handling of large macros.
10294
10295 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
10296 limit to a call of `c-literal-limits'.
10297 (c-determine-+ve-limit): New function.
10298 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
10299 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
10300 In CASE 5B, restrict a search limit to 500.
10301 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
10302
10303 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
10304 Restrict macro bounds to +-500 from after-change's BEG END.
10305
10306 2012-03-16 Leo Liu <sdl.web@gmail.com>
10307
10308 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
10309
10310 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
10311
10312 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
10313 `special-mode' setting of `buffer-read-only'. (Bug#11010)
10314
10315 2012-03-16 Glenn Morris <rgm@gnu.org>
10316
10317 * view.el (view-buffer, view-buffer-other-window)
10318 (view-buffer-other-frame): Doc fixes re special mode-class.
10319
10320 * subr.el (eval-after-load): If named feature is provided not from
10321 a file, run after-load forms. (Bug#10946)
10322
10323 * calendar/calendar.el (calendar-insert-at-column):
10324 Handle non-unit-width characters a bit better. (Bug#10978)
10325
10326 2012-03-15 Chong Yidong <cyd@gnu.org>
10327
10328 * emacs-lisp/ring.el (ring-extend): New function.
10329 (ring-insert+extend): Extend the ring correctly (Bug#11019).
10330
10331 * comint.el (comint-read-input-ring)
10332 (comint-add-to-input-history): Grow comint-input-ring lazily.
10333
10334 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
10335
10336 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
10337 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
10338
10339 * imenu.el: Fix multiple inheritance breakage (bug#9199).
10340 (imenu-add-to-menubar): Don't add a redundant index.
10341 (imenu-update-menubar): Handle a dynamically composed keymap.
10342
10343 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
10344
10345 * mail/sendmail.el (mail-encode-header):
10346 Bind rfc2047-encode-encoded-words to nil.
10347
10348 2012-03-13 Glenn Morris <rgm@gnu.org>
10349
10350 * calendar/calendar.el (calendar-string-spread):
10351 Handle non-unit-width characters a bit better. (Bug#10978)
10352
10353 2012-03-13 Leo Liu <sdl.web@gmail.com>
10354
10355 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
10356 directory and file as argument (Bug#10822).
10357
10358 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10359
10360 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
10361 For dynamically generated code, follow $PC.
10362 (gdb-disassembly-handler-custom): Handle no function name case.
10363
10364 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
10365
10366 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
10367 * emulation/ws-mode.el (ws-query-replace):
10368 * sort.el (sort-regexp-fields):
10369 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
10370
10371 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10372
10373 * dabbrev.el: Fix cycle completion order (bug#10963).
10374 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
10375 (dabbrev-completion): Don't use an obarray; provide
10376 a cycle-sort-function.
10377
10378 2012-03-12 Leo Liu <sdl.web@gmail.com>
10379
10380 * simple.el (kill-new): Use equal-including-properties for comparison.
10381 (kill-do-not-save-duplicates): Doc fix.
10382
10383 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10384
10385 * dabbrev.el: Fix cycle completion (bug#10963).
10386 Use lexical binding and wrap to 80 columns.
10387 (dabbrev-completion): Delay computing the list of completions.
10388
10389 2012-03-12 Kenichi Handa <handa@m17n.org>
10390
10391 * international/quail.el (quail-insert-kbd-layout): Surround each
10392 row by LRO and PDF instead of inserting many LRMs. Pad the left
10393 and right of each non-spacing marks. Insert invisible space
10394 between lower and upper characters to prevent composition.
10395
10396 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10397
10398 * minibuffer.el (minibuffer-complete): Don't get confused when the
10399 function is run twice via different commands (bug#10958).
10400 (complete-with-action): Fix docstring.
10401
10402 2012-03-12 Chong Yidong <cyd@gnu.org>
10403
10404 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
10405 (nxml-completion-at-point-function): New function.
10406 (nxml-mode): Use it.
10407 (nxml-bind-meta-tab-to-complete-flag): Default to t.
10408
10409 * emacs-lisp/package.el (package-unpack, package-unpack-single):
10410 Load generated autoloads file before byte compiling (Bug#10970).
10411 (package--make-autoloads-and-compile): New helper fun.
10412
10413 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
10414
10415 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
10416
10417 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
10418
10419 * autorevert.el (auto-revert-handler): Ensure, that
10420 file-readable-p is applied only for local files or in
10421 auto-revert-tail-mode.
10422
10423 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
10424
10425 * server.el (server-eval-at): Handle non-tcp connections.
10426 Decode result string.
10427
10428 * server.el (server-msg-size): New constant.
10429 (server-reply-print): New function.
10430 (server-eval-and-print): Use it.
10431 (server-eval-at): Use server-quote-arg and server-unquote-arg.
10432 Handle -print-nonl.
10433
10434 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
10435
10436 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
10437 (Bug#10987).
10438
10439 2012-03-11 Chong Yidong <cyd@gnu.org>
10440
10441 * simple.el (goto-line): Doc fix (Bug#9938).
10442
10443 * subr.el (save-window-excursion): Doc fix (Bug#9979).
10444
10445 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
10446 when finished (Bug#10963).
10447
10448 2012-03-11 Martin Rudalics <rudalics@gmx.at>
10449
10450 * window.el (split-window-below): Fix bug in case where
10451 split-window-keep-point is nil (Bug#10971).
10452
10453 2012-03-11 Juri Linkov <juri@jurta.org>
10454
10455 * replace.el (replace-highlight): Set isearch-word to nil
10456 unconditionally. (Bug#10887)
10457
10458 2012-03-10 Eli Zaretskii <eliz@gnu.org>
10459
10460 * net/mairix.el (mairix-replace-invalid-chars): Rename from
10461 mairix-replace-illegal-chars; all callers changed. Don't remove
10462 ^, ~, and = characters: they are meaningful in mairix search specs.
10463 (mairix-widget-create-query): Add usage information about mairix
10464 search forms: negating words, searching for substrings, etc.
10465
10466 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
10467
10468 * international/fontset.el (font-encoding-alist): Add an entry for
10469 ksx1001 (Bug#5667).
10470
10471 2012-03-10 Richard Stallman <rms@gnu.org>
10472
10473 * mail/sendmail.el (mail-encode-header):
10474 Set rfc2047-encode-encoded-words.
10475
10476 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
10477
10478 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
10479 view buffer means not swapped.
10480 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
10481 (rmail-write-region-annotate): Error if real text has disappeared.
10482
10483 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
10484
10485 2012-03-10 Chong Yidong <cyd@gnu.org>
10486
10487 * emulation/cua-rect.el (cua--init-rectangles):
10488 * emulation/cua-base.el (cua--init-keymaps):
10489 Add delete-forward-char to remappings (Bug#9666).
10490
10491 2012-03-10 Martin Rudalics <rudalics@gmx.at>
10492
10493 * speedbar.el (speedbar-unhighlight-one-tag-line):
10494 Avoid unhighlighting due to frame switching (Bug#10275).
10495
10496 2012-03-10 Chong Yidong <cyd@gnu.org>
10497
10498 * minibuffer.el (completion-in-region, completion-help-at-point):
10499 Give the completion field overlay a high priority (Bug#6830).
10500
10501 * dired.el (dired-goto-file): Recognize absolute file name
10502 listings (Bug#7126).
10503 (dired-goto-file-1): New helper function.
10504 (dired-toggle-read-only): Inhibit warnings.
10505
10506 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
10507
10508 * net/dbus.el (dbus-property-handler): Return empty array if
10509 there are no properties.
10510
10511 2012-03-09 Leo Liu <sdl.web@gmail.com>
10512
10513 * savehist.el (savehist-printable): Stricter check for string
10514 value (Bug#10937).
10515
10516 2012-03-09 Eli Zaretskii <eliz@gnu.org>
10517
10518 * mail/smtpmail.el (smtpmail-send-it):
10519 Bind coding-system-for-write to *-unix, so that FCC files are kept in
10520 valid mbox format.
10521
10522 2012-03-09 Glenn Morris <rgm@gnu.org>
10523
10524 * files.el (dir-locals-find-file):
10525 Don't check result is regular, readable.
10526 (dir-locals-read-from-file): Demote errors.
10527
10528 2012-03-08 Eli Zaretskii <eliz@gnu.org>
10529
10530 * international/quail.el (quail-insert-kbd-layout):
10531 Insert invisible LRM characters before each character in a keyboard
10532 layout cell, to prevent their reordering by bidi display engine.
10533 For details, see the discussion in
10534 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
10535
10536 2012-03-08 Alan Mackenzie <acm@muc.de>
10537
10538 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
10539 the starting position; make it extend the marked region when
10540 invoked repeatedly - all under appropriate circumstances.
10541 Fixes bugs #5525, #10906.
10542
10543 2012-03-08 Glenn Morris <rgm@gnu.org>
10544
10545 * files.el (locate-dominating-file, dir-locals-find-file):
10546 Undo 2012-03-06 change.
10547
10548 2012-03-07 Eli Zaretskii <eliz@gnu.org>
10549
10550 * international/quail.el (quail-help):
10551 Force bidi-paragraph-direction be left-to-right. See discussion in
10552 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
10553 for the reason.
10554
10555 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
10556
10557 Avoid superfluous registering of signals. (Bug#10807)
10558
10559 * notifications.el (notifications-on-action-object)
10560 (notifications-on-close-object): New defvars.
10561 (notifications-on-action-signal, notifications-on-closed-signal):
10562 Unregister the signal if not needed any longer.
10563 (notifications-notify): Register `notifications-action-signal' or
10564 `notifications-closed-signal', if :on-action or :on-close has been
10565 passed as argument.
10566
10567 2012-03-07 Chong Yidong <cyd@gnu.org>
10568
10569 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
10570 non-X platforms.
10571
10572 2012-03-06 Glenn Morris <rgm@gnu.org>
10573
10574 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10575 (x-disown-selection-internal, x-get-selection-internal):
10576 Doc fix (add arglist signatures). (Bug#10783)
10577
10578 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10579
10580 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
10581 Handle breakpoints with no "type".
10582
10583 2012-03-06 Glenn Morris <rgm@gnu.org>
10584
10585 * files.el (locate-dominating-file): Add optional predicate argument.
10586 (dir-locals-find-file): Make use of above change.
10587
10588 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
10589
10590 * info.el (Info-insert-dir): Also try "dir.gz".
10591
10592 2012-03-06 Glenn Morris <rgm@gnu.org>
10593
10594 * files.el (dir-locals-find-file):
10595 Ignore non-readable or non-regular files. (Bug#10928)
10596
10597 * files.el (locate-dominating-file): Doc fix.
10598
10599 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
10600
10601 * calendar/calendar.el (calendar-set-mode-line):
10602 `getenv' returns a string. (Bug#10951)
10603
10604 2012-03-05 Leo Liu <sdl.web@gmail.com>
10605
10606 * simple.el (backward-delete-char-untabify): Constrain point to
10607 field (Bug#10939).
10608
10609 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
10610
10611 2012-03-05 Chong Yidong <cyd@gnu.org>
10612
10613 * simple.el (count-words): If called from Lisp, return the word
10614 count, for symmetry with `count-lines'. Arglist changed.
10615 (count-words--message): Args changed. Consolidate counting code
10616 from count-words and count-words-region.
10617 (count-words-region): Caller changed.
10618 (count-lines-region): Make it an obsolete alias.
10619
10620 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
10621
10622 * saveplace.el (save-place-to-alist)
10623 (save-place-ignore-files-regexp): Allow value nil to disable this
10624 feature.
10625
10626 2012-03-04 Chong Yidong <cyd@gnu.org>
10627
10628 * faces.el (face-spec-reset-face): For the default face, reset the
10629 attributes to default values (Bug#10748).
10630
10631 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10632
10633 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
10634 previous patch: Check `message-send-mail-function', and not the
10635 default function (bug#10897).
10636
10637 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
10638
10639 * notifications.el (notifications-on-action-signal)
10640 (notifications-on-closed-signal): Check for unique service name of
10641 incoming event. Fix error in removing entry.
10642 (top): Register for signals with wildcard service name.
10643 (notifications-notify): Use daemon unique service name for map entries.
10644
10645 2012-03-04 Chong Yidong <cyd@gnu.org>
10646
10647 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
10648
10649 2012-03-04 Glenn Morris <rgm@gnu.org>
10650
10651 * abbrev.el (copy-abbrev-table, abbrev-table-p)
10652 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
10653 (expand-abbrev, define-abbrev-table): Doc fixes.
10654
10655 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10656
10657 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
10658 `message-default-send-mail-function' and not `send-mail-function'
10659 when doing the prompting for `sendmail-query-once' before sending
10660 in Message buffers (bug#10897).
10661
10662 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
10663 This is inconsistent with all the other stream functions, which leave
10664 the setting up to the higher levels (if so wanted) (bug#10931).
10665
10666 2012-03-02 Alan Mackenzie <acm@muc.de>
10667
10668 Depessimize the handling of very large macros.
10669
10670 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
10671 (c-macro-cache-syntactic): New variables to implement a one
10672 element macro cache.
10673 (c-invalidate-macro-cache): New function.
10674 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
10675 Adapt to use the new cache.
10676 (c-state-safe-place): Use better the cache of safe positions.
10677 (c-state-semi-nonlit-pos-cache)
10678 (c-state-semi-nonlit-pos-cache-limit):
10679 New variables for...
10680 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
10681 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
10682 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
10683 Use c-state-semi-safe-place.
10684
10685 * progmodes/cc-langs.el (c-get-state-before-change-functions):
10686 Add c-invalidate-macro-cache to the C, C++, Obj entries.
10687
10688 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
10689
10690 * jka-compr.el (jka-compr-call-process):
10691 Apply `file-accessible-directory-p' only when the default directory is
10692 not remote.
10693
10694 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
10695
10696 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
10697 access of FILE2, if FILE1 does not exist.
10698
10699 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
10700 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
10701
10702 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
10703 Add "PAGER=" to `process-environment'.
10704
10705 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
10706
10707 * progmodes/sql.el: Bug fix
10708 (sql-get-login-ext): Save login values in globals.
10709 (sql-get-login): Use new version of `sql-get-login-ext'.
10710 (sql-interactive-mode): Set global `sql-connection' to nil.
10711 (sql-connect): Set global values for connection.
10712 (sql-product-interactive): Save global values as buffer local.
10713
10714 2012-02-29 Leo Liu <sdl.web@gmail.com>
10715
10716 * abbrev.el (define-abbrevs): Reset sys to nil.
10717
10718 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10719
10720 * files.el (file-equal-p): Rename from `files-equal-p'.
10721 Return nil when one or both files don't exist.
10722 (file-subdir-of-p): Now only top directory must exists,
10723 return nil if it doesn't.
10724 (copy-directory): No need to test with `file-subdir-of-p' after
10725 creating dir.
10726 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
10727 to `file-equal-p'.
10728
10729 2012-02-28 Glenn Morris <rgm@gnu.org>
10730
10731 * shell.el (shell-mode):
10732 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
10733 * play/landmark.el (landmark-font-lock-face-O):
10734 * play/handwrite.el (handwrite):
10735 * play/gomoku.el (gomoku-O):
10736 * net/browse-url.el (browse-url-browser-display):
10737 * international/mule.el (define-charset):
10738 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
10739 * filesets.el (filesets-find-file-delay):
10740 * eshell/em-xtra.el (eshell-xtra):
10741 * eshell/em-unix.el (eshell-grep):
10742 * emulation/viper.el (viper-mode):
10743 * emacs-lisp/regexp-opt.el (regexp-opt-group):
10744 * emacs-lisp/easymenu.el (easy-menu-define):
10745 * calendar/timeclock.el (timeclock-use-display-time):
10746 * bs.el (bs-mode):
10747 * bookmark.el (bookmark-save-flag):
10748 Doc fix (standardize possessive apostrophe usage).
10749
10750 2012-02-27 Chong Yidong <cyd@gnu.org>
10751
10752 * emulation/viper-cmd.el (viper-intercept-ESC-key):
10753 Fix key-binding lookup for ESC key (Bug#9146).
10754
10755 * font-lock.el (font-lock-specified-p): Rename from
10756 font-lock-spec-present. Callers changed.
10757
10758 2012-02-27 Daniel Hackney <dan@haxney.org>
10759
10760 * emacs-lisp/package.el (package-compute-transaction):
10761 Handle holding a package version to t in package-load-list.
10762
10763 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
10764
10765 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
10766 (tramp-get-inode, tramp-get-device): Use cached values.
10767
10768 2012-02-26 Alan Mackenzie <acm@muc.de>
10769
10770 Check there is a font-lock specification before doing initial
10771 fontification.
10772
10773 * font-core.el (font-lock-mode): Move the conditional from
10774 :after-hook to font-lock-initial-fontify.
10775 (font-lock-default-function): Move the check for a specification
10776 to font-lock-spec-present.
10777
10778 * font-lock.el (font-lock-initial-fontify): Call ...
10779 (font-lock-spec-present): New function.
10780
10781 2012-02-26 Jim Blandy <jimb@red-bean.com>
10782
10783 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
10784 (gdb-send): Apply it to the operand of the '-interpreter-exec
10785 console' command, so that we can pass arguments with (say) quotes
10786 in them. Store exact string sent in gdb-debug-log (Bug#10765).
10787
10788 2012-02-26 Chong Yidong <cyd@gnu.org>
10789
10790 * help-fns.el (describe-function-1): Clarify description of
10791 remapping (Bug#10844).
10792
10793 * files.el (files-equal-p): Doc fix.
10794 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
10795 and quit the loop once a mismatch is found.
10796
10797 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
10798
10799 * bs.el (bs--show-with-configuration): Don't throw an error
10800 if the window cannot be split; otherwise, subsequent calls to
10801 bs-show fail, restoring a stale window config. (Bug#10882)
10802
10803 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
10804
10805 * term/ns-win.el (global-map): Bind ns-drag-file to
10806 ns-find-file (Bug#5855, Bug#10050).
10807
10808 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
10809
10810 * calendar/parse-time.el (parse-time-string): Allow extractor to
10811 return nil.
10812
10813 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
10814
10815 * net/tramp.el (tramp-file-name-for-operation):
10816 Add `files-equal-p' and `file-subdir-of-p'.
10817
10818 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
10819 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
10820 Add COPY-CONTENTS argument.
10821
10822 2012-02-25 Chong Yidong <cyd@gnu.org>
10823
10824 Add custom groups for VC backends, for consistency with vc-bzr.
10825
10826 * vc/vc-arch.el (vc-arch):
10827 * vc/vc-cvs.el (vc-cvs):
10828 * vc/vc-git.el (vc-git):
10829 * vc/vc-hg.el (vc-hg):
10830 * vc/vc-mtn.el (vc-mtn):
10831 * vc/vc-rcs.el (vc-rcs):
10832 * vc/vc-sccs.el (vc-sccs):
10833 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
10834 All relevant defcustoms reassigned.
10835
10836 2012-02-25 Chong Yidong <cyd@gnu.org>
10837
10838 * newcomment.el (comment-styles): Add autoload (Bug#10868).
10839
10840 * term/x-win.el (x-initialize-window-system): Reduce default for
10841 x-selection-timeout to 5 seconds (Bug#8869).
10842
10843 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10844
10845 * files.el (files-equal-p, file-subdir-of-p): New functions.
10846 (copy-directory): Error when trying to copy a directory on itself.
10847 Add missing copy-contents arg to tramp handler.
10848 * dired-aux.el (dired-copy-file-recursive): Same.
10849 (dired-create-files): Modify destination when source is equal to
10850 dest when copying files.
10851 Return also when dest is a subdir of source. (Bug#10489)
10852
10853 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
10854
10855 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
10856 (Bug#10874)
10857
10858 2012-02-23 Alan Mackenzie <acm@muc.de>
10859
10860 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
10861 parameter "after-hook:" to allow the expansion to run code after
10862 the execution of the mode hooks.
10863
10864 * font-lock.el (font-lock-initial-fontify): New function extracted
10865 from font-lock-mode-internal.
10866
10867 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
10868 :after-hook.
10869
10870 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10871
10872 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
10873 (completion--cache-all-sorted-completions): New function.
10874 (completion-all-sorted-completions): Use it.
10875 (completion--do-completion, minibuffer-force-complete):
10876 Use it to re-instate the flush hook.
10877
10878 * icomplete.el (icomplete-completions): Replace last fix with a better
10879 one (bug#10850).
10880
10881 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
10882
10883 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
10884 when it might call us back infinitely (bug#10797).
10885
10886 2012-02-23 Glenn Morris <rgm@gnu.org>
10887
10888 * minibuffer.el (completion-category-overrides): Doc fix.
10889
10890 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10891
10892 * minibuffer.el (completion-table-with-context): Fix inf-loop.
10893 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
10894
10895 2012-02-23 Glenn Morris <rgm@gnu.org>
10896
10897 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
10898 (authors-obsolete-files-regexps, authors-ignored-files)
10899 (authors-ambiguous-files, authors-renamed-files-alist):
10900 Add more entries.
10901
10902 2012-02-23 Juri Linkov <juri@jurta.org>
10903
10904 * isearch.el (isearch-occur): Sync interactive spec with occur's
10905 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
10906
10907 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
10908
10909 2012-02-22 Juri Linkov <juri@jurta.org>
10910
10911 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
10912 (ucs-insert): Doc fix. Check for hex digits in the string.
10913 Don't display `nil' in the error message. (Bug#10857)
10914
10915 2012-02-22 Alan Mackenzie <acm@muc.de>
10916
10917 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
10918
10919 2012-02-22 Glenn Morris <rgm@gnu.org>
10920
10921 * ffap.el (ffap-c-path):
10922 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
10923
10924 2012-02-22 Chong Yidong <cyd@gnu.org>
10925
10926 * custom.el (load-theme): Doc fix.
10927
10928 2012-02-22 Glenn Morris <rgm@gnu.org>
10929
10930 * dired-x.el (dired-guess-shell-alist-default):
10931 Remove escape sequences from nroff output. (Bug#172)
10932
10933 2012-02-21 Glenn Morris <rgm@gnu.org>
10934
10935 * vc/emerge.el (emerge-defvar-local):
10936 Set `permanent-local' property rather than unused `preserved'.
10937
10938 * textmodes/picture.el (picture-delete-char): New alias.
10939 (picture-mode-map): Use it. (Bug#10860)
10940 (picture-mode): Doc fix.
10941
10942 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
10943
10944 * newcomment.el (uncomment-region-default): Remove unused binding.
10945
10946 2012-02-21 Glenn Morris <rgm@gnu.org>
10947
10948 * textmodes/picture.el (picture-motion, picture-motion-reverse)
10949 (picture-self-insert, picture-tab-chars): Doc fix.
10950 (picture-mode-map): Fix C-a, C-e.
10951
10952 2012-02-20 Glenn Morris <rgm@gnu.org>
10953
10954 * emacs-lisp/authors.el (authors-aliases): Add another entry.
10955
10956 2012-02-20 Leo Liu <sdl.web@gmail.com>
10957
10958 * icomplete.el (icomplete-completions): Check FROM arg before
10959 passing to substring (Bug#10850).
10960
10961 2012-02-19 Chong Yidong <cyd@gnu.org>
10962
10963 * comint.el: Require ansi-color.
10964 (comint-output-filter-functions): Add ansi-color-process-output.
10965
10966 * ansi-color.el: Don't set comint-output-filter-functions; it is
10967 now in the initial value defined in comint.el.
10968 (ansi-color-apply-face-function): New variable.
10969 (ansi-color-apply-on-region): Use it.
10970 (ansi-color-apply-overlay-face): New function.
10971
10972 * shell.el (shell): No need to require ansi-color.
10973 (shell-mode): Use ansi-color-apply-face-function to highlight
10974 color escapes using font-lock-face property (Bug#10835).
10975
10976 2012-02-19 Chong Yidong <cyd@gnu.org>
10977
10978 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
10979 mode-line formats (Bug#10839).
10980
10981 2012-02-18 Glenn Morris <rgm@gnu.org>
10982
10983 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
10984
10985 * mail/undigest.el (unforward-rmail-message): Doc fix.
10986
10987 * saveplace.el (save-place-ignore-files-regexp): Add :version.
10988
10989 2012-02-18 Eli Zaretskii <eliz@gnu.org>
10990
10991 * international/characters.el (script-list): Sync with the latest
10992 Unicode Character Database.
10993
10994 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
10995
10996 * international/titdic-cnv.el: Remove duplicate coding tag.
10997 * language/cham.el: Likewise.
10998 * language/tai-viet.el: Likewise.
10999
11000 2012-02-18 Glenn Morris <rgm@gnu.org>
11001
11002 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
11003 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
11004 (calendar-bahai-all-holidays-flag, calendar-other-dates):
11005 * calendar/diary-lib.el (diary-abbreviated-year-flag):
11006 * calendar/holidays.el (holiday-bahai-holidays)
11007 (calendar-holidays, list-holidays):
11008 Use utf-8 Bahá'í in doc-strings, menus, etc.
11009
11010 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
11011
11012 * saveplace.el (save-place-ignore-files-regexp): New variable
11013 allowing for excluding files from saving their location of point.
11014 The default value matches the temporary commit message editing
11015 files from Git, SVN, Bazaar, and Mercurial.
11016 (save-place-to-alist): Use it.
11017
11018 2012-02-17 Lawrence Mitchell <wence@gmx.li>
11019 Stefan Monnier <monnier@iro.umontreal.ca>
11020
11021 * newcomment.el (uncomment-region-default): Don't leave extra space
11022 when an arg is provided (bug#8150).
11023
11024 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
11025
11026 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
11027
11028 2012-02-17 Glenn Morris <rgm@gnu.org>
11029
11030 * net/socks.el: Require network-stream. (Bug#10599)
11031
11032 2012-02-17 Kenichi Handa <handa@m17n.org>
11033
11034 * international/charprop.el:
11035 * international/uni-name.el:
11036 * international/uni-old-name.el:
11037 * international/uni-comment.el: Regenerate.
11038
11039 2012-02-16 Glenn Morris <rgm@gnu.org>
11040
11041 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
11042 Interactively in calendar buffer, give an error if not on a date.
11043
11044 2012-02-15 Glenn Morris <rgm@gnu.org>
11045
11046 * shell.el (shell-delimiter-argument-list):
11047 Revert 2011-02-17 change. (Bug#8027)
11048
11049 2012-02-15 Chong Yidong <cyd@gnu.org>
11050
11051 * minibuffer.el (completion-at-point-functions): Doc fix.
11052
11053 * custom.el (defcustom): Doc fix; note use of defvar.
11054
11055 2012-02-15 Glenn Morris <rgm@gnu.org>
11056
11057 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
11058 Doc fixes.
11059
11060 2012-02-14 Glenn Morris <rgm@gnu.org>
11061
11062 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
11063
11064 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
11065
11066 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
11067 way the ports list is computed.
11068 (smtpmail-query-smtp-server): Prompt the user for a port number if
11069 we can't connect to any of the standard ports (bug#10810).
11070
11071 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
11072
11073 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
11074
11075 2012-02-13 Glenn Morris <rgm@gnu.org>
11076
11077 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
11078
11079 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
11080
11081 * net/gnutls.el (gnutls-trustfiles): New variable.
11082 (gnutls-negotiate): Use it.
11083
11084 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
11085
11086 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
11087 does its stuff if Gnus is running.
11088
11089 2012-02-13 Alan Mackenzie <acm@muc.de>
11090
11091 Fix a loop in c-set-fl-decl-start.
11092
11093 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
11094 c-backward-syntactic-ws actually moves backwards.
11095
11096 2012-02-13 Leo Liu <sdl.web@gmail.com>
11097
11098 * net/rcirc.el (rcirc-markup-attributes): Move point to the
11099 beginning so that all \C-o chars are removed.
11100
11101 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
11102
11103 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
11104
11105 2012-02-12 Alan Mackenzie <acm@muc.de>
11106
11107 Fix infinite loop with long macros.
11108 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
11109
11110 2012-02-12 Chong Yidong <cyd@gnu.org>
11111
11112 * window.el (display-buffer): Doc fix (Bug#10785).
11113
11114 2012-02-12 Glenn Morris <rgm@gnu.org>
11115
11116 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
11117 (x-disown-selection-internal, x-get-selection-internal):
11118 Sync docs with the xselect.c versions.
11119
11120 * allout-widgets.el: Add missing license notice.
11121
11122 2012-02-11 Glenn Morris <rgm@gnu.org>
11123
11124 * select.el (x-get-selection-internal, x-own-selection-internal)
11125 (x-disown-selection-internal):
11126 * x-dnd.el (x-get-selection-internal): Update declarations.
11127
11128 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
11129
11130 * window.el (window-sides-slots):
11131 * tool-bar.el (tool-bar-position):
11132 * term/xterm.el (xterm-extra-capabilities):
11133 * ses.el (ses-self-reference-early-detection):
11134 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
11135 (verilog-auto-wire-type)
11136 (verilog-auto-delete-trailing-whitespace)
11137 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
11138 (verilog-auto-tieoff-declaration):
11139 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
11140 (sql-oracle-statement-starters, sql-oracle-scan-on):
11141 * progmodes/prolog.el (prolog-align-comments-flag)
11142 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
11143 (prolog-left-indent-regexp, prolog-paren-indent-p)
11144 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
11145 (prolog-types, prolog-mode-specificators)
11146 (prolog-determinism-specificators, prolog-directives)
11147 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
11148 (prolog-electric-dot-flag)
11149 (prolog-electric-dot-full-predicate-template)
11150 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
11151 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
11152 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
11153 (prolog-program-switches, prolog-prompt-regexp)
11154 (prolog-debug-on-string, prolog-debug-off-string)
11155 (prolog-trace-on-string, prolog-trace-off-string)
11156 (prolog-zip-on-string, prolog-zip-off-string)
11157 (prolog-use-standard-consult-compile-method-flag)
11158 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
11159 (prolog-imenu-max-lines, prolog-info-predicate-index)
11160 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
11161 (prolog-char-quote-workaround):
11162 * progmodes/cc-vars.el (c-defun-tactic):
11163 * net/tramp.el (tramp-encoding-command-interactive)
11164 (tramp-local-end-of-line):
11165 * net/soap-client.el (soap-client):
11166 * net/netrc.el (netrc-file):
11167 * net/gnutls.el (gnutls):
11168 * minibuffer.el (completion-category-overrides)
11169 (completion-cycle-threshold)
11170 (completion-pcm-complete-word-inserts-delimiters):
11171 * man.el (Man-name-local-regexp):
11172 * mail/feedmail.el (feedmail-display-full-frame):
11173 * international/characters.el (glyphless-char-display-control):
11174 * eshell/em-ls.el (eshell-ls-date-format):
11175 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
11176 (lisp-lambda-list-keyword-parameter-indentation)
11177 (lisp-lambda-list-keyword-parameter-alignment):
11178 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
11179 * dired-x.el (dired-omit-verbose):
11180 * cus-theme.el (custom-theme-allow-multiple-selections):
11181 * calc/calc.el (calc-highlight-selections-with-faces)
11182 (calc-lu-field-reference, calc-lu-power-reference)
11183 (calc-note-threshold):
11184 * battery.el (battery-mode-line-limit):
11185 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
11186 (archive-7z-update):
11187 * allout.el (allout-prefixed-keybindings)
11188 (allout-unprefixed-keybindings)
11189 (allout-inhibit-auto-fill-on-headline)
11190 (allout-flattened-numbering-abbreviation):
11191 * allout-widgets.el (allout-widgets-auto-activation)
11192 (allout-widgets-icons-dark-subdir)
11193 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
11194 (allout-widgets-theme-dark-background)
11195 (allout-widgets-theme-light-background)
11196 (allout-widgets-item-image-properties-emacs)
11197 (allout-widgets-item-image-properties-xemacs)
11198 (allout-widgets-run-unit-tests-on-load)
11199 (allout-widgets-time-decoration-activity)
11200 (allout-widgets-hook-error-post-time)
11201 (allout-widgets-track-decoration):
11202 Add missing :version tags to new defcustoms and defgroups.
11203
11204 * progmodes/sql.el (sql-ansi-statement-starters)
11205 (sql-oracle-statement-starters): Add custom type.
11206
11207 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
11208 (prolog-system-version): Give it a type.
11209
11210 2012-02-11 Eli Zaretskii <eliz@gnu.org>
11211
11212 * term/pc-win.el (x-select-text, x-selection-owner-p)
11213 (x-own-selection-internal, x-disown-selection-internal)
11214 (x-get-selection-internal): Sync doc strings and argument lists
11215 with xselect.c, common-win.el and x-win.el. (Bug#10783)
11216
11217 2012-02-11 Leo Liu <sdl.web@gmail.com>
11218
11219 * progmodes/python.el (python-end-of-statement): Fix infinite
11220 loop. (Bug#10788)
11221
11222 2012-02-10 Glenn Morris <rgm@gnu.org>
11223
11224 * international/mule-cmds.el (unify-8859-on-encoding-mode)
11225 (unify-8859-on-decoding-mode): Properly mark as obsolete.
11226
11227 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
11228
11229 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
11230 about SMTP before checking the From header.
11231
11232 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
11233 into own function for reuse by emacsbug.el.
11234
11235 2012-02-10 Leo Liu <sdl.web@gmail.com>
11236
11237 * subr.el (condition-case-unless-debug): Rename from
11238 condition-case-no-debug. All callers changed.
11239 (with-demoted-errors): Fix caller.
11240
11241 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
11242 * nxml/rng-valid.el (rng-do-some-validation):
11243 * emacs-lisp/package.el (package-refresh-contents)
11244 (package-menu-execute):
11245 * desktop.el (desktop-create-buffer):
11246 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
11247
11248 2012-02-10 Glenn Morris <rgm@gnu.org>
11249
11250 * textmodes/bibtex.el:
11251 Add missing :version tags for new/changed defcustoms.
11252
11253 * files.el (remote-file-name-inhibit-cache): Doc fixes.
11254
11255 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
11256
11257 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
11258 (smtpmail-via-smtp): Use it, or fall back on the From address.
11259 (smtpmail-send-it): Ditto.
11260
11261 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
11262
11263 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
11264 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
11265 (byte-compile-tmp-var): New const.
11266 (byte-compile-defvar): Use it to minimize .elc size.
11267 Just use `defvar' rather than simulate it (bug#10761).
11268
11269 2012-02-09 Glenn Morris <rgm@gnu.org>
11270
11271 * files.el (rename-uniquely): Doc fix. (Bug#3806)
11272
11273 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
11274 Add :version tags.
11275
11276 * progmodes/compile.el (compilation-error-screen-columns)
11277 (compilation-first-column, compilation-filter-start): Doc fixes.
11278
11279 * vc/log-view.el (log-view-toggle-entry-display):
11280 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
11281
11282 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
11283 (report-emacs-bug-can-use-xdg-email):
11284 (report-emacs-bug-insert-to-mailer): Doc fixes.
11285 (report-emacs-bug): Message fix.
11286
11287 * net/browse-url.el (browse-url-can-use-xdg-open)
11288 (browse-url-xdg-open): Doc fixes.
11289
11290 * electric.el (electric-indent-mode, electric-pair-mode)
11291 (electric-layout-rules, electric-layout-mode): Doc fixes.
11292 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
11293
11294 2012-02-08 Martin Rudalics <rudalics@gmx.at>
11295
11296 * server.el (server-unselect-display): Don't inadvertently kill
11297 the current buffer. (Bug#10729)
11298
11299 2012-02-08 Glenn Morris <rgm@gnu.org>
11300
11301 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
11302 (sql-list-table): Doc fixes.
11303
11304 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
11305 Comment out (does nothing).
11306
11307 * completion.el (dynamic-completion-mode):
11308 * dirtrack.el (dirtrack-debug-mode):
11309 * electric.el (electric-layout-mode):
11310 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
11311 * face-remap.el (text-scale-mode, buffer-face-mode):
11312 * iimage.el (iimage-mode):
11313 * image-mode.el (image-transform-mode):
11314 * minibuffer.el (completion-in-region-mode):
11315 * scroll-lock.el (scroll-lock-mode):
11316 * simple.el (next-error-follow-minor-mode):
11317 * tar-mode.el (tar-subfile-mode):
11318 * tooltip.el (tooltip-mode):
11319 * vcursor.el (vcursor-use-vcursor-map):
11320 * wid-browse.el (widget-minor-mode):
11321 * emulation/tpu-edt.el (tpu-edt-mode):
11322 * emulation/tpu-extras.el (tpu-cursor-free-mode):
11323 * international/iso-ascii.el (iso-ascii-mode):
11324 * language/thai-util.el (thai-word-mode):
11325 * mail/supercite.el (sc-minor-mode):
11326 * net/goto-addr.el (goto-address-mode):
11327 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
11328 * progmodes/cwarn.el (cwarn-mode):
11329 * progmodes/flymake.el (flymake-mode):
11330 * progmodes/glasses.el (glasses-mode):
11331 * progmodes/hideshow.el (hs-minor-mode):
11332 * progmodes/pascal.el (pascal-outline-mode):
11333 * textmodes/enriched.el (enriched-mode):
11334 * vc/smerge-mode.el (smerge-mode):
11335 Doc fixes (minor mode argument).
11336
11337 2012-02-07 Eli Zaretskii <eliz@gnu.org>
11338
11339 * ls-lisp.el (ls-lisp-sanitize): New function.
11340 (ls-lisp-insert-directory): Use it to fix or remove any elements
11341 in file-alist with missing attributes. (Bug#4673)
11342
11343 2012-02-07 Alan Mackenzie <acm@muc.de>
11344
11345 Fix spurious recognition of c-in-knr-argdecl.
11346
11347 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
11348 putative K&R region.
11349
11350 2012-02-07 Alan Mackenzie <acm@muc.de>
11351
11352 * progmodes/cc-engine.el (c-forward-objc-directive):
11353 Prevent looping in "#pragma mark @implementation".
11354
11355 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
11356
11357 * notifications.el (notifications-on-closed-signal): Make `reason'
11358 optional. (Bug#10744)
11359
11360 2012-02-07 Glenn Morris <rgm@gnu.org>
11361
11362 * emacs-lisp/easy-mmode.el (define-minor-mode):
11363 Doc fixes for the macro and the mode it defines.
11364
11365 * image.el (imagemagick-types-inhibit): Doc fix.
11366
11367 * cus-start.el (imagemagick-render-type): Add it.
11368
11369 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
11370
11371 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
11372 Set the default at load time, too, so that `font-lock-fontify-buffer'
11373 can be called without setting up the entire mode first. This fixes
11374 a bug in `mm-inline-text' with C MIME parts.
11375
11376 2012-02-06 Chong Yidong <cyd@gnu.org>
11377
11378 * simple.el (list-processes--refresh): Delete exited processes
11379 (Bug#8094).
11380
11381 * comint.el (comint-next-prompt): next-single-char-property-change
11382 and prev-single-char-property-change never return nil (Bug#8657).
11383
11384 * custom.el (defcustom): Doc fix (Bug#9711).
11385
11386 2012-02-05 Chong Yidong <cyd@gnu.org>
11387
11388 * cus-edit.el (custom-variable-reset-backup): Quote the value
11389 before storing it in the customized-value property (Bug#6712).
11390 (custom-display): Add a customization type tag.
11391 (custom-buffer-create-internal): Improve tooltip message.
11392
11393 * wid-edit.el (widget-field-value-get): New optional arg to
11394 suppress trailing whitespace truncation.
11395 (character): Use it (Bug#2689).
11396
11397 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
11398
11399 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
11400 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
11401
11402 2012-02-05 Chong Yidong <cyd@gnu.org>
11403
11404 * cus-edit.el (custom-variable-value-create): For mismatched
11405 types, show the current value (Bug#7600).
11406
11407 * custom.el (defcustom): Doc fix.
11408
11409 2012-02-05 Glenn Morris <rgm@gnu.org>
11410
11411 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
11412
11413 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
11414
11415 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
11416 (pp-buffer): Use `ignore-errors', `looking-at-p'.
11417 (pp-last-sexp): Use `looking-at-p'.
11418
11419 2012-02-04 Glenn Morris <rgm@gnu.org>
11420
11421 * files.el (revert-buffer):
11422 Doc fix (mention revert-buffer-in-progress-p).
11423
11424 * emacs-lisp/ert-x.el (ert-simulate-command):
11425 Check deferred-action-list (which is obsolete) is bound.
11426
11427 * subr.el (with-wrapper-hook): Doc fixes.
11428
11429 * simple.el (filter-buffer-substring-functions)
11430 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
11431
11432 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
11433
11434 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
11435 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
11436
11437 2012-02-04 Leo Liu <sdl.web@gmail.com>
11438
11439 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
11440
11441 2012-02-04 Glenn Morris <rgm@gnu.org>
11442
11443 * image.el (image-extension-data): Add obsolete alias.
11444
11445 * isearch.el (isearch-update): Doc fix.
11446
11447 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
11448
11449 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
11450
11451 2012-02-03 Glenn Morris <rgm@gnu.org>
11452
11453 * image.el (image-animated-p): Doc fix. Use image-animated-types.
11454 (image-animate-timeout): Doc fix.
11455
11456 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
11457
11458 2012-02-02 Glenn Morris <rgm@gnu.org>
11459
11460 * server.el (server-auth-dir): Doc fix.
11461 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
11462
11463 * subr.el (run-mode-hooks): Doc fix.
11464
11465 2012-02-02 Juri Linkov <juri@jurta.org>
11466
11467 * image-mode.el (image-toggle-display-image): Remove tautological
11468 `major-mode' from the `derived-mode-p' test.
11469
11470 2012-02-02 Kenichi Handa <handa@m17n.org>
11471
11472 * composite.el (compose-region): Cancel previous change.
11473
11474 2012-02-02 Kenichi Handa <handa@m17n.org>
11475
11476 * composite.el (compose-region, compose-string): Signal error for
11477 a null string component (Bug#6988).
11478
11479 2012-02-01 Chong Yidong <cyd@gnu.org>
11480
11481 * view.el (view-buffer-other-window, view-buffer-other-frame):
11482 Handle special modes like view-buffer (Bug#10650).
11483 (view-buffer): Simplify.
11484
11485 * frame.el (set-frame-font): Tweak meaning of third argument.
11486
11487 * dynamic-setting.el (font-setting-change-default-font):
11488 Use set-frame-font (Bug#9982).
11489
11490 2012-02-01 Glenn Morris <rgm@gnu.org>
11491
11492 * progmodes/compile.el (compilation-internal-error-properties):
11493 Respect compilation-first-column in the "*compilation*" buffer.
11494
11495 * emacs-lisp/easy-mmode.el (define-minor-mode):
11496 Relax :variable's test for a named function.
11497
11498 2012-01-31 Alan Mackenzie <acm@muc.de>
11499
11500 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
11501 off by one error.
11502
11503 2012-01-31 Chong Yidong <cyd@gnu.org>
11504
11505 * frame.el (set-frame-font): New arg ALL-FRAMES.
11506
11507 * menu-bar.el (menu-set-font): Use set-frame-font.
11508
11509 * faces.el (face-spec-reset-face): Don't apply unspecified
11510 attribute values to the default face.
11511
11512 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
11513
11514 * progmodes/cwarn.el (cwarn): Remove dead link.
11515 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
11516 Remove * from defcustom docstrings.
11517 (turn-on-cwarn-mode): Make obsolete.
11518 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
11519 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
11520
11521 2012-01-31 Glenn Morris <rgm@gnu.org>
11522
11523 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
11524 Fix :variable handling of mode a symbol not equal to modefun.
11525 Allow named functions to be used as the cdr of :variable.
11526
11527 2012-01-30 Glenn Morris <rgm@gnu.org>
11528
11529 * emacs-lisp/authors.el (authors-fixed-entries):
11530 Remove reference to deleted file rnewspost.el.
11531
11532 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
11533
11534 * window.el (window-with-parameter): Remove unused variable `windows'.
11535 (window--side-check): Remove unused variable `code'.
11536 (window--resize-siblings): Remove unused variable `first'.
11537 (adjust-window-trailing-edge): Remove unused variable `failed'.
11538 (window-deletable-p, window--delete): Remove unused variable `buffer'.
11539 Use `let', not `let*'.
11540 (balance-windows-2): Remove unused variable `found'.
11541 (window--state-put-2): Remove unused variable `splits'.
11542 (window-state-put): Remove unused variable `selected'.
11543 (same-window-p): Use `string-match-p'.
11544 (display-buffer-assq-regexp): Remove unused variable `value'.
11545 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11546 Mark argument ALIST as ignored.
11547 (pop-to-buffer): Remove unused variable `old-window'.
11548
11549 2012-01-29 Eli Zaretskii <eliz@gnu.org>
11550
11551 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
11552 and .lzma compressed files.
11553
11554 2012-01-29 Chong Yidong <cyd@gnu.org>
11555
11556 * frame.el (window-system-default-frame-alist): Doc fix.
11557
11558 * dynamic-setting.el (font-setting-change-default-font): Don't
11559 change the default face if SET-FONT argument is non-nil (Bug#9982).
11560
11561 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
11562
11563 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
11564
11565 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
11566
11567 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
11568 breakpoints in files outside current directory (Bug#6098).
11569
11570 2012-01-29 Chong Yidong <cyd@gnu.org>
11571
11572 * progmodes/python.el: Require ansi-color at top-level.
11573
11574 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
11575 Define and use in Emacs Lisp mode (Bug#9360).
11576 (lisp-mode-abbrev-table): Add doc.
11577 (lisp-mode-variables): Don't set local-abbrev-table.
11578 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
11579
11580 2012-01-28 Roland Winkler <winkler@gnu.org>
11581
11582 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
11583
11584 2012-01-28 Roland Winkler <winkler@gnu.org>
11585
11586 * textmodes/bibtex.el (bibtex-entry-alist): New function.
11587 (bibtex-set-dialect): Use it. Either set global values of
11588 dialect-dependent variables or bind these variables buffer-locally
11589 (Bug#10254).
11590 (bibtex-mode): Call bibtex-set-dialect via
11591 hack-local-variables-hook.
11592 (bibtex-dialect): Update docstring.
11593 Add safe-local-variable predicate.
11594 (bibtex-entry-alist, bibtex-field-alist): Initialize via
11595 bibtex-set-dialect.
11596 (bibtex-mode-map): Define menu for each dialect.
11597 (bibtex-entry): Fix docstring.
11598
11599 2012-01-28 Chong Yidong <cyd@gnu.org>
11600
11601 * eshell/esh-arg.el (eshell-quote-argument): New function.
11602
11603 * eshell/esh-ext.el (eshell-invoke-batch-file):
11604 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
11605 first arg to eshell-parse-command (Bug#10523).
11606
11607 2012-01-28 Drew Adams <drew.adams@oracle.com>
11608
11609 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
11610 `default-directory' is non-nil.
11611
11612 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11613
11614 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
11615 line that displays system-configuration-options. (Bug#9924)
11616
11617 2012-01-28 Drew Adams <drew.adams@oracle.com>
11618
11619 * descr-text.el (describe-char): Show information about POS, in
11620 addition to information about the character at POS. Improve and
11621 update the doc string. Change "code point" to "code point in
11622 charset", to avoid confusion with the character's Unicode code
11623 point shown above that. (Bug#10129)
11624
11625 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11626
11627 * descr-text.el (describe-char): Show the raw character, not only
11628 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
11629 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
11630 for the reasons.
11631
11632 2012-01-28 Phil Hagelberg <phil@hagelb.org>
11633
11634 * emacs-lisp/package.el (package-install):
11635 Run package-refresh-contents if there is no archive yet (Bug#9798).
11636
11637 2012-01-28 Chong Yidong <cyd@gnu.org>
11638
11639 * emacs-lisp/package.el (package-maybe-load-descriptor):
11640 New function, split from package-maybe-load-descriptor.
11641 (package-maybe-load-descriptor): Use it.
11642 (package-download-transaction): Fully load required packages
11643 inside the loop, so that `require' calls work (Bug#10593).
11644 (package-install): No need to call package-initialize now.
11645
11646 2012-01-28 Chong Yidong <cyd@gnu.org>
11647
11648 * simple.el (deactivate-mark): Doc fix (Bug#8614).
11649
11650 * tooltip.el (tooltip-mode): Doc fix.
11651 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
11652
11653 * frame.el (set-cursor-color): Doc fix (Bug#352).
11654
11655 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
11656 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
11657
11658 * cus-edit.el (custom-buffer-create-internal): Fix search button
11659 action (Bug#10542).
11660 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
11661
11662 2012-01-27 Eduard Wiebe <usenet@pusto.de>
11663
11664 * dired.el (dired-mark-files-regexp):
11665 Include any subdirectory components. (Bug#10445)
11666
11667 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
11668
11669 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
11670 Handle [host]:port syntax. (Bug#10533)
11671
11672 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
11673
11674 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
11675
11676 2012-01-26 Glenn Morris <rgm@gnu.org>
11677
11678 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
11679 * term.el (term-raw-escape-map): Use Control-X-prefix.
11680 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
11681
11682 2012-01-25 Martin Rudalics <rudalics@gmx.at>
11683
11684 * window.el (window-state-get, window--state-get-1): Don't deal
11685 with fixed-sizeness of windows. Simplify code.
11686
11687 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
11688
11689 * window.el (window--state-get-1, window--state-put-2):
11690 Don't save and restore the mark.
11691
11692 2012-01-25 Chong Yidong <cyd@gnu.org>
11693
11694 * custom.el (custom-variable-p): Doc fix.
11695
11696 2012-01-25 Glenn Morris <rgm@gnu.org>
11697
11698 * dired.el (dired-goto-file): Handle some of the more common
11699 characters that `ls -b' escapes. (Bug#10596)
11700
11701 * progmodes/compile.el (compilation-next-error-function):
11702 Respect compilation-first-column in the "*compilation*" buffer.
11703 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
11704
11705 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
11706
11707 2012-01-24 Glenn Morris <rgm@gnu.org>
11708
11709 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
11710
11711 2012-01-24 Julien Danjou <julien@danjou.info>
11712
11713 * color.el (color-rgb-to-hsl): Fix value computing.
11714 (color-hue-to-rgb): New function.
11715 (color-hsl-to-rgb): New function.
11716 (color-clamp, color-saturate-hsl, color-saturate-name)
11717 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
11718 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
11719
11720 2012-01-24 Glenn Morris <rgm@gnu.org>
11721
11722 * vc/vc-rcs.el (vc-rcs-create-tag):
11723 * vc/vc-sccs.el (vc-sccs-create-tag):
11724 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
11725
11726 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
11727
11728 * eshell/esh-util.el (eshell-read-hosts-file):
11729 Skip comment lines. (Bug#10549)
11730
11731 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
11732
11733 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
11734
11735 * subr.el (display-delayed-warnings): Doc fix.
11736 (collapse-delayed-warnings): New function to collapse identical
11737 adjacent warnings.
11738 (delayed-warnings-hook): Add it.
11739
11740 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
11741
11742 * net/tramp.el (tramp-action-login): Set connection property "login-as".
11743
11744 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
11745 (tramp-default-user-alist): Don't add "pscp".
11746 (tramp-do-copy-or-rename-file-out-of-band): Use connection
11747 property "login-as", if set. (Bug#10530)
11748
11749 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
11750
11751 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
11752 "plink1" and "psftp". (Bug#10530)
11753
11754 2012-01-21 Kenichi Handa <handa@m17n.org>
11755
11756 * international/mule-cmds.el (prefer-coding-system): Show a
11757 warning message if the default value of file-name-coding-system
11758 was not changed.
11759
11760 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11761
11762 * windmove.el (windmove-reference-loc):
11763 Fix windmove-reference-loc miscalculation.
11764
11765 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
11766
11767 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
11768 default unit.
11769
11770 2012-01-21 Glenn Morris <rgm@gnu.org>
11771
11772 * international/mule.el (auto-coding-alist): Add .tbz.
11773
11774 * files.el (local-enable-local-variables): Doc fix.
11775 (inhibit-local-variables-regexps): Rename from
11776 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
11777 Doc fix. Add some extensions from auto-coding-alist.
11778 (inhibit-local-variables-suffixes):
11779 Rename from inhibit-first-line-modes-suffixes. Doc fix.
11780 (inhibit-local-variables-p):
11781 New function, extracted from set-auto-mode-1.
11782 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
11783 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
11784 (hack-local-variables): Doc fix. Make the mode-only case
11785 respect enable-local-variables and friends.
11786 Respect inhibit-local-variables-regexps for file-locals, but
11787 not for directory-locals.
11788 (set-visited-file-name):
11789 Take account of inhibit-local-variables-regexps.
11790 Whether it applies may change as the file name is changed.
11791 * jka-cmpr-hook.el (jka-compr-install):
11792 * jka-compr.el (jka-compr-uninstall):
11793 Update for inhibit-first-line-modes-suffixes name change.
11794
11795 2012-01-20 Martin Rudalics <rudalics@gmx.at>
11796
11797 * help-macro.el (make-help-screen): Temporarily restore original
11798 binding for minor-mode-map-alist (Bug#10454).
11799
11800 2012-01-19 Julien Danjou <julien@danjou.info>
11801
11802 * color.el (color-name-to-rgb): Use the white color to find the max
11803 color component value and return correctly computed values.
11804 (color-name-to-rgb): Add missing float conversion for max value.
11805
11806 2012-01-19 Martin Rudalics <rudalics@gmx.at>
11807
11808 * window.el (window--state-get-1, window-state-get): Do not use
11809 special state value for window-persistent-parameters.
11810 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
11811 (window--state-put-2): Reset all window parameters to nil before
11812 assigning values of persistent parameters.
11813
11814 2012-01-18 Alan Mackenzie <acm@muc.de>
11815
11816 Eliminate sluggishness and hangs in fontification of "semicolon
11817 deserts".
11818
11819 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
11820 Change value 10000 -> 3000.
11821 (c-state-safe-place): Reformulate so it doesn't stack up an
11822 infinite number of wrong entries in c-state-nonlit-pos-cache.
11823 (c-determine-limit-get-base, c-determine-limit): New functions to
11824 determine backward search limits disregarding literals.
11825 (c-find-decl-spots): Amend commenting.
11826 (c-cheap-inside-bracelist-p): New function which detects "={".
11827
11828 * progmodes/cc-fonts.el
11829 (c-make-font-lock-BO-decl-search-function): Give a limit to a
11830 backward search.
11831 (c-font-lock-declarations): Fix an occurrence of point being
11832 undefined. Check additionally for point being in a bracelist or
11833 near a macro invocation without a semicolon so as to avoid a
11834 fruitless time consuming search for a declarator. Give a more
11835 precise search limit for declarators using the new
11836 c-determine-limit.
11837
11838 2012-01-18 Glenn Morris <rgm@gnu.org>
11839
11840 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
11841 (set-auto-mode): Doc fixes.
11842
11843 2012-01-17 Glenn Morris <rgm@gnu.org>
11844
11845 * isearch.el (search-nonincremental-instead): Fix doc typo.
11846
11847 * dired.el (dired-insert-directory): Handle newlines in directory name.
11848 (dired-build-subdir-alist): Unescape newlines in directory name.
11849
11850 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
11851
11852 * net/tramp.el (tramp-local-end-of-line): New defcustom.
11853 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
11854 (tramp-action-terminal): Use it. (Bug#10530)
11855
11856 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11857
11858 * minibuffer.el (completion--replace): Strip properties (bug#10062).
11859
11860 2012-01-16 Martin Rudalics <rudalics@gmx.at>
11861
11862 * window.el (window-state-ignored-parameters): Remove variable.
11863 (window--state-get-1): Rename argument MARKERS to IGNORE.
11864 Handle persistent window parameters. Make copy of clone-of
11865 parameter only if requested. (Bug#10348)
11866 (window--state-put-2): Install a window parameter only if it has
11867 a non-nil value or an existing parameter shall be overwritten.
11868
11869 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
11870
11871 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
11872
11873 2012-01-14 Eli Zaretskii <eliz@gnu.org>
11874
11875 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
11876 don't pass the (nil) value of `upnode' to string-match.
11877
11878 2012-01-14 Chong Yidong <cyd@gnu.org>
11879
11880 * startup.el (command-line): Fix X resource class for cursorColor.
11881 Fix values recognized by the cursorBlink resource.
11882
11883 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
11884
11885 * epg.el (epg--make-temp-file): Avoid permission race condition
11886 when running on old Emacs versions (bug#10403).
11887
11888 2012-01-14 Glenn Morris <rgm@gnu.org>
11889
11890 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
11891
11892 2012-01-13 Alan Mackenzie <acm@muc.de>
11893
11894 Fix filling for when filladapt mode is enabled.
11895
11896 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
11897 c-mask-paragraph, pass in `fill-paragraph' rather than
11898 `fill-region-as-paragraph'. (This is a reversion of a previous
11899 change.)
11900 * progmodes/cc-mode.el (c-basic-common-init):
11901 Make fill-paragraph-handle-comment buffer local and set it to nil.
11902
11903 2012-01-13 Glenn Morris <rgm@gnu.org>
11904
11905 * dired.el (dired-switches-escape-p): New function.
11906 (dired-insert-directory): Use dired-switches-escape-p.
11907 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
11908
11909 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
11910
11911 2012-01-12 Glenn Morris <rgm@gnu.org>
11912
11913 * mail/sendmail.el (mail-mode): Update paragraph-separate for
11914 changes in adaptive-fill-regexp. (Bug#10276)
11915
11916 2012-01-11 Alan Mackenzie <acm@muc.de>
11917
11918 Fix Emacs bug #10463 - put `widen's around the critical spots.
11919
11920 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
11921 widen around each invocation of c-state-pp-to-literal. Remove an
11922 unused let variable.
11923
11924 2012-01-11 Glenn Morris <rgm@gnu.org>
11925
11926 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
11927 Doc fix.
11928
11929 2012-01-10 Chong Yidong <cyd@gnu.org>
11930
11931 * net/network-stream.el (network-stream-open-starttls):
11932 Avoid emitting a confusing error message when the server gives a bad
11933 response to the capability command.
11934
11935 2012-01-10 Glenn Morris <rgm@gnu.org>
11936
11937 * mail/unrmail.el (unrmail): Tweak previous change.
11938
11939 2012-01-09 Chong Yidong <cyd@gnu.org>
11940
11941 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
11942
11943 2012-01-08 Alan Mackenzie <acm@muc.de>
11944
11945 Optimise font locking in long enum definitions.
11946
11947 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
11948 arm to a cond form to handle enums.
11949 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
11950 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
11951
11952 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
11953
11954 * files.el (move-file-to-trash): Preserve default file modes on error.
11955 (Bug#10401)
11956
11957 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11958
11959 * faces.el (set-face-attribute): Clarify the meaning of the nil
11960 frame (bug#10294).
11961
11962 * subr.el (with-selected-frame): Mention that the selected frame
11963 is restored (bug#9980).
11964
11965 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
11966 (bug#9759).
11967
11968 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
11969 (password-read): Don't autoload unused function.
11970
11971 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
11972
11973 * progmodes/which-func.el (which-func-mode): Turn into a
11974 non-interactive function and mark as obsolete (bug#10428).
11975
11976 2012-01-06 Chong Yidong <cyd@gnu.org>
11977
11978 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
11979 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
11980 functions, along with 1 and -1.
11981
11982 2012-01-06 Eli Zaretskii <eliz@gnu.org>
11983
11984 * time.el (display-time-load-average)
11985 (display-time-default-load-average): Doc fixes. See the thread
11986 starting at
11987 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
11988 for the details.
11989
11990 2012-01-06 Glenn Morris <rgm@gnu.org>
11991
11992 * mail/unrmail.el (unrmail): Give an explicit error if the input file
11993 has no messages. (Bug#10377)
11994
11995 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
11996 than Info-edit. (Bug#10385)
11997
11998 * time.el (display-time-load-average, display-time-next-load-average):
11999 Doc fixes.
12000
12001 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
12002 local setting of buffer-read-only to the input buffer. (Bug#10419)
12003
12004 * calendar/calendar.el (calendar-mode):
12005 Locally set scroll-margin to 0. (Bug#10379)
12006
12007 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
12008
12009 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
12010
12011 2012-01-05 Glenn Morris <rgm@gnu.org>
12012
12013 * eshell/em-unix.el (diff-no-select): Autoload it.
12014 (eshell/diff): Use diff-no-select. (Bug#10420)
12015
12016 2012-01-05 Chong Yidong <cyd@gnu.org>
12017
12018 * shell.el (shell-dynamic-complete-functions): Revert last change.
12019 (shell-command-completion-function): New function.
12020 (shell-completion-vars): Use it to implement
12021 shell-completion-execonly (Bug#10417).
12022
12023 * custom.el (enable-theme): Don't set custom-safe-themes.
12024
12025 * cus-theme.el (custom-theme-merge-theme):
12026 Ignore custom-enabled-themes and custom-safe-themes.
12027
12028 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
12029
12030 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
12031 first prompt in `sql-interacive-mode'.
12032 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
12033 keywords.
12034 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
12035 (sql-product-interactive): Bug fix: Set `sql-buffer' in
12036 context of original buffer. Invoke `sql-login-hook'.
12037
12038 2012-01-04 Eli Zaretskii <eliz@gnu.org>
12039
12040 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
12041 letters in cite-prefix.
12042
12043 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12044
12045 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
12046
12047 2012-01-03 Chong Yidong <cyd@gnu.org>
12048
12049 * shell.el (shell-dynamic-complete-functions):
12050 Put pcomplete-completions-at-point, so as to try
12051 comint-filename-completion first (Bug#10417).
12052
12053 2012-01-02 Richard Stallman <rms@gnu.org>
12054
12055 * battery.el (battery-status-function):
12056 Detect when to use battery-yeeloong-sysfs.
12057 (battery-echo-area-format): Add string for Yeeloong.
12058 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
12059 (battery-yeeloong-sysfs): New function.
12060
12061 2012-01-02 Chong Yidong <cyd@gnu.org>
12062
12063 * dirtrack.el (dirtrack-list): Eliminate unused third element.
12064 (dirtrack): Merge code for handling relative filenames in prompt
12065 from shell-dir-cookie-watcher.
12066 (dirtrack-debug-message): New arg to avoid excess format calls.
12067
12068 * shell.el (shell-dir-cookie-re): Variable deleted.
12069 (shell-dir-cookie-watcher): Function deleted.
12070 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
12071 with dirtrack-mode.
12072
12073 2012-01-01 Eli Zaretskii <eliz@gnu.org>
12074
12075 * term/w32-win.el (dynamic-library-alist) <gnutls>:
12076 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
12077 libgnutls-26.dll.
12078
12079 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
12080
12081 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
12082
12083 2011-12-31 Eli Zaretskii <eliz@gnu.org>
12084
12085 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
12086 headers of non-MIME messages, when rmail-enable-mime is non-nil.
12087
12088 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
12089
12090 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
12091 also for alternative shells.
12092 (tramp-open-connection-setup-interactive-shell): Check, whether
12093 the shell is a busybox.
12094 (tramp-send-command): Don't suppress multiple prompts for
12095 busyboxes, it hurts.
12096
12097 2011-12-28 Chong Yidong <cyd@gnu.org>
12098
12099 * progmodes/gdb-mi.el (gdb-get-source-file-list)
12100 (gdb-get-source-file): Move mode line update to
12101 gdb-get-source-file (Bug#10087).
12102
12103 2011-12-25 Chong Yidong <cyd@gnu.org>
12104
12105 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
12106 gud-gdb-marker-filter without taking it as an argument.
12107 (gud-gdb-run-command-fetch-lines): Caller changed.
12108 (gud-gdb-completion-function): New variable.
12109 (gud-gdb-completion-at-point): Use it.
12110 (gud-gdb-completions-1): Split from gud-gdb-completions.
12111
12112 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
12113 function as separate arguments.
12114 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
12115 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
12116 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
12117 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
12118 (gdb-stopped, def-gdb-auto-update-trigger)
12119 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
12120 (gdb-get-changed-registers, gdb-get-main-selected-frame):
12121 Callers changed.
12122 (gud-gdbmi-completions): New function.
12123 (gdb): Use it for generating the completion table.
12124
12125 2011-12-24 Alan Mackenzie <acm@muc.de>
12126
12127 Introduce a mechanism to widen the region used in context font
12128 locking. Use this to protect declarations from losing their contexts.
12129
12130 * progmodes/cc-langs.el (c-before-font-lock-functions):
12131 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
12132 (c-before-context-fontification-functions): New defvar, a list of
12133 functions to be run just before context (etc.) font locking.
12134
12135 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
12136 New, functionality extracted from
12137 c-neutralize-syntax-in-and-mark-CPP.
12138 (c-in-after-change-fontification): New variable.
12139 (c-after-change): Set c-in-after-change-fontification.
12140 (c-set-fl-decl-start): Rejig its interface, so it can be called
12141 from both after-change and context fontifying.
12142 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
12143 New functions.
12144 (c-standard-font-lock-fontify-region-function): New variable.
12145 (c-font-lock-fontify-region): New function.
12146
12147 2011-12-24 Juri Linkov <juri@jurta.org>
12148
12149 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
12150 (Bug#10348)
12151
12152 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
12153
12154 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
12155 existence of source file. (Bug#10325)
12156
12157 2011-12-23 Alan Mackenzie <acm@muc.de>
12158
12159 Fix unstable fontification inside templates.
12160
12161 * progmodes/cc-langs.el (c-before-font-lock-functions):
12162 Newly created from the singular version. The (c c++ objc) entry now
12163 additionally has c-set-fl-decl-start. The other languages (apart
12164 from AWK) have that as a single entry.
12165
12166 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
12167 The functionality for "local" declarations has been extracted to
12168 c-set-fl-decl-start.
12169
12170 * progmodes/cc-mode.el (c-common-init, c-after-change):
12171 Changes due to pluralisation of c-before-font-lock-functions.
12172 (c-set-fl-decl-start): New function, extracted from
12173 c-font-lock-enclosing-decls and enhanced.
12174
12175 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
12176
12177 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
12178
12179 2011-12-22 Juri Linkov <juri@jurta.org>
12180
12181 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
12182
12183 2011-12-22 Chong Yidong <cyd@gnu.org>
12184
12185 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
12186
12187 2011-12-21 Drew Adams <drew.adams@oracle.com>
12188
12189 * files.el (file-remote-p): Fix docstring. (Bug#10319)
12190
12191 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
12192
12193 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
12194
12195 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
12196
12197 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
12198 highlighting and support. Fix up comments for capitalization.
12199 (cfengine-mode-debug): New var.
12200 (cfengine3-mode): Change the modeline indicator to "CFE3".
12201 (cfengine3-font-lock-keywords): Improve defun highlighting.
12202 (cfengine2-actions): Rename from `cfengine-actions'.
12203 (cfengine2-font-lock-keywords): Rename from
12204 `cfengine-font-lock-keywords'.
12205 (cfengine2-imenu-expression): Rename from
12206 `cfengine-imenu-expression'.
12207 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
12208 (cfengine2-beginning-of-defun): Rename from
12209 `cfengine-beginning-of-defun'.
12210 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
12211 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
12212 (cfengine2-mode): Rename from `cfengine-mode'. Change the
12213 modeline indicator to "CFE2".
12214 (cfengine-mode): Defalias to `cfengine-auto-mode'.
12215 (cfengine-mode-abbrevs): Mark obsolete.
12216
12217 2011-12-21 Chong Yidong <cyd@gnu.org>
12218
12219 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
12220 filename argument.
12221
12222 2011-12-20 Martin Rudalics <rudalics@gmx.at>
12223
12224 * window.el (window-normalize-buffer-to-display): Remove.
12225 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
12226
12227 2011-12-19 Chong Yidong <cyd@gnu.org>
12228
12229 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
12230 Don't signal an error in a predicate function; return non-nil.
12231 (vc-dir-mark-file): Move the error here.
12232 (vc-dir-mark-unmark): If acting on the region, keep going if one
12233 of the entries cannot be marked/unmarked.
12234 (vc-dir-mark-all-files): If current entry is a directory, mark
12235 only child files, as documented.
12236
12237 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
12238
12239 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
12240 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
12241 addition.
12242
12243 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
12244
12245 * term/ns-win.el (ns-get-selection-internal)
12246 (ns-store-selection-internal): Declare.
12247 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
12248 Declare as obsolete.
12249 (ns-get-pasteboard, ns-paste-secondary):
12250 Use ns-get-selection-internal.
12251 (ns-set-pasteboard, ns-copy-including-secondary):
12252 Use ns-store-selection-internal.
12253
12254 2011-12-17 Chong Yidong <cyd@gnu.org>
12255
12256 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
12257 (vc-deduce-fileset): Doc fix.
12258
12259 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
12260
12261 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
12262
12263 2011-12-13 Sam Steingold <sds@gnu.org>
12264
12265 * man.el (Man-getpage-in-background): When running under a
12266 window-system, ignore $MANWIDTH and $COLUMNS.
12267
12268 2011-12-15 Kenichi Handa <handa@m17n.org>
12269
12270 * language/ethio-util.el: Change coding tag to utf-8-emacs.
12271 (setup-ethiopic-environment-internal): Comment out key-binding for
12272 ethio-toggle-punctuation.
12273
12274 2011-12-13 Alan Mackenzie <acm@muc.de>
12275
12276 Add the switch statement to AWK Mode.
12277
12278 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
12279 "default" to the keywords regexp.
12280
12281 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
12282 expression as the rest.
12283 (c-nonlabel-token-key): Allow string literals for AWK.
12284 Refactor for the other modes.
12285
12286 Large brace-block initialisation makes CC Mode slow: Fix.
12287 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
12288 routines. Limit backward searching in c-font-lock-enclosing.decl.
12289
12290 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
12291 pp-state and literal type in addition to the limits.
12292 (c-state-safe-place): New defun, extracted from c-state-literal-at.
12293 (c-state-literal-at): Use the above new defun.
12294 (c-slow-in-literal, c-fast-in-literal): Remove.
12295 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
12296
12297 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
12298 being in a literal. Add a limit for backward searching.
12299
12300 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
12301 c-slow-in-literal.
12302
12303 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
12304
12305 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
12306
12307 2011-12-13 Martin Rudalics <rudalics@gmx.at>
12308
12309 * window.el (delete-other-windows): Use correct frame in call to
12310 window-with-parameter.
12311
12312 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
12313
12314 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
12315 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
12316 (makefile-gmake-statements, makefile-makepp-statements):
12317 Use it and add new makepp keywords.
12318 (makefile-makepp-font-lock-keywords): Add new patterns.
12319 (makefile-match-function-end): Match new [...] and [[...]].
12320
12321 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
12322
12323 * ses.el (ses-call-printer-return, ses-cell-property-get)
12324 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
12325 (ses-create-cell-variable, ses-reset-header-string)
12326 (ses-cell-set-formula, ses-repair-cell-reference-all)
12327 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
12328 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
12329 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
12330 (ses-aset-with-undo, ses-load, ses-truncate-cell)
12331 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
12332 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
12333 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
12334 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
12335 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
12336 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
12337 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
12338 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
12339
12340 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
12341
12342 * ses.el: The overall change is to add cell renaming, that is
12343 setting fancy names for cell symbols other than name matching
12344 "\\`[A-Z]+[0-9]+\\'" regexp .
12345 (ses-create-cell-variable): New defun.
12346 (ses-relocate-formula): Relocate formulas only for cells the
12347 symbols of which are not renamed, i.e. symbols whose names do not
12348 match regexp "\\`[A-Z]+[0-9]+\\'".
12349 (ses-relocate-all): Relocate values only for cells the symbols of
12350 which are not renamed.
12351 (ses-load): Create cells variables as the (ses-cell ...) are read,
12352 in order to check row col consistency with cell symbol name only
12353 for cells that are not renamed.
12354 (ses-replace-name-in-formula): New defun.
12355 (ses-rename-cell): New defun.
12356
12357 2011-12-11 Chong Yidong <cyd@gnu.org>
12358
12359 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
12360 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
12361
12362 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
12363
12364 * window.el (other-window): Fix docstring.
12365
12366 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12367
12368 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
12369 `from' or `to' address before taking its substring.
12370 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
12371 encoded name is chopped in the middle of the encoded string, and
12372 thus displayed encoded.
12373
12374 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
12375
12376 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
12377
12378 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12379
12380 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
12381 to use texinfo-update-node and commands that call it if the
12382 Texinfo file uses @node lines without next/prev/up pointers.
12383 Correct outdated description about texinfo-master-menu.
12384 (texinfo-all-menus-update, texinfo-master-menu)
12385 (texinfo-update-node, texinfo-every-node-update)
12386 (texinfo-multiple-files-update): Doc fix. Warn against updating
12387 all the @node lines.
12388 (texinfo-master-menu): Only call texinfo-update-node if the prefix
12389 argument is numeric. Explain better in the doc string what the
12390 function really does.
12391 (texinfo-insert-master-menu-list): Improve the error message
12392 displayed if there's no menu in the Top node.
12393 (Bug#2975) See also this thread:
12394 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
12395
12396 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
12397
12398 * speedbar.el (speedbar-supported-extension-expressions):
12399 Add .adb and .ads, commonly used for Ada source code (bug#10256).
12400
12401 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
12402
12403 * printing.el (pr-mode-alist):
12404 * simple.el (filter-buffer-substring-functions)
12405 (completion-list-insert-choice-function):
12406 * window.el (window-with-parameter, window-atom-root)
12407 (window-sides-slots, window-size-fixed, window-min-delta)
12408 (window-max-delta, window--resize-mini-window)
12409 (window--resize-child-windows-normal, window-tree)
12410 (delete-other-windows, quit-window, split-window)
12411 (display-buffer-record-window, special-display-buffer-names)
12412 (special-display-regexps, special-display-popup-frame)
12413 (same-window-p, split-window-sensibly)
12414 (display-buffer-overriding-action, display-buffer-alist)
12415 (display-buffer-base-action, display-buffer, switch-to-buffer)
12416 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
12417 (fit-window-to-buffer, recenter-positions)
12418 (mouse-autoselect-window-state, mouse-autoselect-window-select):
12419 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
12420 and remove unneeded backslashes in docstrings.
12421
12422 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
12423
12424 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
12425
12426 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
12427 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
12428 end in ".mk".
12429 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
12430 when reading the makefile (bug#10116).
12431
12432 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12433
12434 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
12435 (bug#10116).
12436
12437 2011-12-06 Glenn Morris <rgm@gnu.org>
12438
12439 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
12440
12441 2011-12-06 Chong Yidong <cyd@gnu.org>
12442
12443 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
12444
12445 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
12446
12447 * textmodes/table.el (table-shorten-cell): Fix typo.
12448
12449 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
12450
12451 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
12452
12453 2011-12-05 Eli Zaretskii <eliz@gnu.org>
12454
12455 * descr-text.el (describe-char): Fix display of strong
12456 right-to-left characters and directional embeddings and overrides.
12457
12458 * simple.el (what-cursor-position): Fix display of codepoints of
12459 strong right-to-left characters.
12460
12461 2011-12-05 Chong Yidong <cyd@gnu.org>
12462
12463 * faces.el (read-color): Doc fix.
12464
12465 2011-12-05 Glenn Morris <rgm@gnu.org>
12466
12467 * align.el (align--set-marker): Add doc-string.
12468 Don't try to move something that is not a marker. (Bug#10216)
12469
12470 2011-12-04 Glenn Morris <rgm@gnu.org>
12471
12472 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
12473 overly zealous deletion of trailing whitespace.
12474
12475 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
12476
12477 * server.el (server-delete-client): On Windows, do not try to delete
12478 the only terminal.
12479 (server-process-filter): On Windows, treat requests for a tty frame as
12480 if they were for a GUI frame if the running server is in GUI mode.
12481
12482 2011-12-03 Glenn Morris <rgm@gnu.org>
12483
12484 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
12485
12486 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
12487
12488 * electric.el: Streamline electric-indent's hook.
12489 (electric-indent-chars): Revert to simple list.
12490 (electric-indent-functions): New var.
12491 (electric-indent-post-self-insert-function): Use it.
12492
12493 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
12494 there's no inferior buffer (bug#10196).
12495 (prolog-consult-compile): Don't use toggle-read-only.
12496
12497 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
12498
12499 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
12500 interrupt. (Bug#10187)
12501
12502 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
12503
12504 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
12505 (bug#9160).
12506
12507 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
12508 (bug#10191).
12509
12510 2011-12-02 Juri Linkov <juri@jurta.org>
12511
12512 * info.el (Info-search): Display "end of manual" when Isearch
12513 reaches the end of single-file Info manual. (Bug#9918)
12514
12515 2011-12-02 Eli Zaretskii <eliz@gnu.org>
12516
12517 * isearch.el (isearch-message-prefix): Run the input method part
12518 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
12519
12520 2011-12-02 Juri Linkov <juri@jurta.org>
12521
12522 * isearch.el (isearch-occur): Use `word-search-regexp' for
12523 `isearch-word'.
12524 (isearch-search-and-update): Add condition for `isearch-word' and
12525 call `word-search-regexp'. (Bug#10145)
12526
12527 2011-12-01 Glenn Morris <rgm@gnu.org>
12528
12529 * eshell/em-hist.el (eshell-hist-initialize):
12530 Handle eshell-history-size nil and HISTSIZE set or unset.
12531 (eshell-history-file-name, eshell-history-size): Fix custom type.
12532
12533 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
12534
12535 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
12536
12537 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
12538
12539 * progmodes/verilog-mode.el (verilog-pretty-expr):
12540 Rework verilog-pretty-expr to handle new assignment operators in system
12541 verilog, such as += *= and the like.
12542 (verilog-assignment-operator-re): Regular expression to find the
12543 assigment operator in a verilog assignment.
12544 (verilog-assignment-operation-re): Regular expression to find an
12545 assignment statement for pretty-expr.
12546 (verilog-in-attribute-p): Query returns true if point is in an
12547 attribute context; used to skip these for expression line up from
12548 pretty-expr.
12549 (verilog-in-parameter-p): Query returns true if point is in an
12550 parameter definition context; used to skip these for expression
12551 line up from pretty-expr.
12552 (verilog-in-parenthesis-p): Query returns true if point is in a
12553 parenthetical expression, specifically ( ) but not [ ] or { };
12554 used by pretty-expr.
12555 (verilog-just-one-space): If there is no space, don't add one.
12556 (verilog-get-lineup-indent-2): Specifically skip just attribute
12557 contexts for expression lineup, rather than skipping all
12558 parenthetical expressions.
12559 (verilog-calculate-indent): Fix comment, and fix indent.
12560 (verilog-do-indent): Indent declarations in lists (suggested by
12561 Joachim Lechner).
12562 (verilog-mode-abbrev-table): Populate abbrev mode with the various
12563 skeleton items.
12564 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
12565 by Alain Mellan).
12566
12567 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
12568
12569 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
12570 parameters with embedded comments. Reported by Ray Stevens.
12571 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
12572 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
12573 Reported by Tim Holt.
12574 (verilog-auto): Fix AUTOing a upper module then AUTOing module
12575 instantiated by upper module causing wrong expansion until AUTOed a
12576 second time. Reported by K C Buckenmaier.
12577 (verilog-diff-auto): Fix showing .* as a difference when
12578 `verilog-auto-star-save' off. Reported by Dan Dever.
12579 (verilog-auto-reset, verilog-read-always-signals)
12580 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
12581 temporary signals in reset list if
12582 verilog-auto-reset-blocking-in-non is nil, and match assignment
12583 style to each signal's assignment type, bug381.
12584 Reported by Thomas Esposito.
12585 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
12586 (verilog-uvm-statement-re): Support UVM indentation and
12587 highlighting, with old OVM keywords only.
12588 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
12589 Support AUTOTIEOFF creating non-wire data types.
12590 Suggested by Jonathan Greenlaw.
12591 (verilog-auto-insert-lisp, verilog-delete-to-paren)
12592 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
12593 (verilog-inject-sense, verilog-read-inst-pins)
12594 (verilog-read-sub-decls, verilog-read-sub-decls-line):
12595 Fix mismatching parenthesis inside commented out code when deleting
12596 AUTOINST, bug383. Reported by Jonathan Greenlaw.
12597 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
12598 non-numeric vector width. Reported by Alex Reed.
12599 (verilog-auto-ascii-enum): Add "onehot" option to work around not
12600 detecting signals with parameter widths. Reported by Alex Reed.
12601 (verilog-auto-delete-trailing-whitespace):
12602 With `verilog-auto-delete-trailing-whitespace' remove trailing
12603 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
12604 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
12605 Fix verilog-scan-cache corruption when running user AUTO expansion
12606 hooks that call indentation routines.
12607 (verilog-simplify-range-expression): Fix typo ignoring lower case
12608 identifiers.
12609 (verilog-delete-auto): Fix delete-autos to also remove user created
12610 automatics, as long as they start with AUTO.
12611 (verilog-batch-diff-auto, verilog-diff-auto)
12612 (verilog-diff-function): Add `verilog-diff-auto' and bind to
12613 "C-c?" to report differences in AUTO expansion, ignoring spaces.
12614 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
12615 (verilog-in-paren-quick, verilog-re-search-backward-quick)
12616 (verilog-re-search-forward-quick, verilog-syntax-ppss):
12617 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
12618 is disabled and its cache will get corrupt, causing AUTOS not to
12619 expand. Instead use only -quick functions.
12620 (verilog-scan-region): Fix scanning over escaped quotes.
12621 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
12622 (verilog-re-search-backward-quick)
12623 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
12624 related functions now ignore strings, to fix misparsing of strings
12625 with magic comments embedded in them.
12626 (verilog-read-auto-template):
12627 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
12628 Reported by Brad Dobbie.
12629 (verilog-read-auto-template):
12630 Fix 'verilog-auto-inst-template-numbers' with comments.
12631 Reported by Brad Dobbie.
12632 (verilog-auto-inst, verilog-auto-inst-param)
12633 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
12634 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
12635 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
12636 debugging templates without merge conflicts, bug357.
12637 Reported by Brad Dobbie.
12638 (verilog-read-auto-template):
12639 Fix verilog-auto-inst-template-numbers with multiple templates.
12640 Reported by Brad Dobbie.
12641 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
12642 abbrevs so user won't be asked to save.
12643 (verilog-read-auto-lisp-present): Fix to start at beginning of
12644 buffer in case called outside of verilog-auto.
12645 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
12646 to "X-2". Reported by Matthew Myers.
12647 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
12648 all inputs from module templates. Reported by Leith Johnson.
12649 (verilog-module-inside-filename-p): Fix locating programs as with
12650 modules.
12651 (verilog-auto-inst-port): Fix vl-width expressions when using
12652 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
12653 (verilog-decls-get-regs, verilog-decls-get-signals,
12654 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
12655 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
12656 verilog-read-decls): Combine reg and wire structures into one var
12657 structure to represent SystemVerilog concepts.
12658 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
12659 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
12660 (verilog-auto-wire-type, verilog-insert-definition):
12661 Add verilog-auto-wire-type and AUTOLOGIC to support using
12662 SystemVerilog "logic" keyword instead of "wire"/"reg".
12663 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
12664 to declares outputs that also have assignments (presumably in an
12665 ifdef or generate if so there's not a driver conflict).
12666 Reported by Matthew Myers.
12667 (verilog-auto-declare-nettype, verilog-insert-definition):
12668 Add verilog-auto-declare-nettype to fix declarations using
12669 `default_nettype none. Reported by Julian Gorfajn.
12670 (verilog-read-always-signals-recurse, verilog-read-decls)
12671 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
12672 malformed end statement, bug325. Reported by Joshua Wise and
12673 Andrew Drake.
12674 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
12675 (verilog-inst-comment-re): Fix not deleting Interfaced comment
12676 when expanding .* in interfaces, bug320.
12677 Reported by Pierre-David Pfister.
12678 (verilog-read-module-name): Fix import statements between module
12679 name and open parenthesis, bug317.
12680 Reported by Pierre-David Pfister.
12681 (verilog-simplify-range-expression): Fix simplification of
12682 multiplications inside AUTOWIRE connections, bug303.
12683 (verilog-auto-inst-port): Support parameter expansion in
12684 multidimensional arrays.
12685 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
12686 after "assert property". Reported by Julian Gorfajn.
12687 (verilog-simplify-range-expression): Fix "couldn't merge" errors
12688 with multiplication, bug303.
12689 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
12690 Reported by Jan Frode Lonnum.
12691
12692 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
12693
12694 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
12695 (hfy-shell-file-name, hfy-shell):
12696 * international/fontset.el (x-decompose-font-name): Fix typos.
12697
12698 2011-11-29 Ken Brown <kbrown@cornell.edu>
12699
12700 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
12701 (gdb-version): Remove defvar.
12702 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
12703 (gdb-gud-context-command, gdb-non-stop-handler)
12704 (gdb-current-context-command, gdb-stopped): Use it.
12705 (gdb-init-1): Enable pretty printing here.
12706 (gdb-non-stop-handler): Don't enable pretty-printing here.
12707 Check to see if the target supports non-stop mode; if not, turn off
12708 non-stop mode. Use the following.
12709 (gdb-check-target-async): New defun.
12710 (gud-watch, gdb-stopped): Fix whitespace.
12711 (gdb-get-source-file): Don't try to display the source file if
12712 `gdb-main-file' is nil.
12713
12714 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12715
12716 * align.el: Try to generate fewer markers (bug#10047).
12717 (align--set-marker): New macro.
12718 (align-region): Use it.
12719
12720 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12721
12722 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
12723
12724 2011-11-29 Chong Yidong <cyd@gnu.org>
12725
12726 * indent.el (indent-for-tab-command, indent-according-to-mode):
12727 Doc fix.
12728 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
12729
12730 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
12731
12732 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
12733 aware of remote file names. (Bug#10124)
12734
12735 2011-11-29 Chong Yidong <cyd@gnu.org>
12736
12737 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
12738
12739 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12740
12741 * files.el (find-file): Don't use force-same-window (bug#10144).
12742 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
12743 use pop-to-buffer if the selected window can't be used.
12744 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
12745
12746 2011-11-28 Eli Zaretskii <eliz@gnu.org>
12747
12748 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
12749 special-mode-map.
12750
12751 2011-11-28 Chong Yidong <cyd@gnu.org>
12752
12753 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
12754
12755 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
12756
12757 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
12758 gdb-get-source-file-list on gdb-create-source-file-list.
12759
12760 2011-11-26 Eli Zaretskii <eliz@gnu.org>
12761
12762 * whitespace.el (whitespace-newline): Use a different foreground
12763 color for 16-color light-background displays.
12764
12765 2011-11-24 Chong Yidong <cyd@gnu.org>
12766
12767 * window.el (display-buffer--special-action): Doc fix.
12768
12769 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
12770
12771 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
12772 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
12773 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
12774 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
12775 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
12776 (avl-tree-stack-first):
12777 * emacs-lisp/cconv.el (cconv--analyse-use):
12778 * net/gnutls.el (gnutls-negotiate): Fix typos.
12779
12780 2011-11-24 Glenn Morris <rgm@gnu.org>
12781
12782 * lpr.el (lpr-windows-system, lpr-lp-system):
12783 * mail/binhex.el (binhex-begin-line):
12784 * progmodes/grep.el (grep-history, grep-find-history):
12785 * textmodes/flyspell.el:
12786 * vc/pcvs-defs.el (cvs-global-menu):
12787 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
12788 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
12789 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
12790
12791 * net/tls.el: Fix case of "GnuTLS".
12792
12793 * paths.el (rmail-file-name): Format doc-string for make-docfile.
12794
12795 * version.el (emacs-build-system): Give it a doc-string.
12796
12797 2011-11-24 Juri Linkov <juri@jurta.org>
12798
12799 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
12800
12801 2011-11-24 Glenn Morris <rgm@gnu.org>
12802
12803 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
12804 if called on a non-mime message just toggle the headers. (Bug#8006)
12805
12806 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
12807
12808 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
12809 (allout-lead-with-comment-string, allout-structure-deleted-hook)
12810 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
12811 (allout-rebullet-heading, allout-open-sibtopic)
12812 (allout-toggle-current-subtree-encryption)
12813 (allout-toggle-subtree-encryption, allout-encrypt-string)
12814 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
12815 (allout-distinctive-bullets-string, allout-auto-activation):
12816 * window.el (window-normalize-buffer-to-display):
12817 * progmodes/verilog-mode.el (verilog-batch-indent):
12818 * textmodes/bibtex.el (bibtex-field-braces-opt)
12819 (bibtex-field-strings-opt):
12820 * vc/cvs-status.el (cvs-tree-merge):
12821 Fix typos.
12822
12823 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
12824
12825 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
12826 `non-essential' to t, in order to avoid remote connections.
12827
12828 2011-11-23 Eli Zaretskii <eliz@gnu.org>
12829
12830 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12831 On MS-DOS and MS-Windows, compare with loaddefs.el
12832 case-insensitively.
12833
12834 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12835
12836 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
12837
12838 2011-11-23 Glenn Morris <rgm@gnu.org>
12839
12840 * paths.el (rmail-file-name): Reformat the doc-string so that it
12841 is picked up.
12842
12843 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
12844 (rmail-auto-file): Ignore case in the "special" field names,
12845 as mail-fetch-field does for all others.
12846
12847 * mail/rmail.el (rmail-forward):
12848 * mail/rmailkwd.el (rmail-set-label):
12849 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
12850 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
12851
12852 * mail/rmail.el (rmail-current-message): Doc fix.
12853
12854 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
12855
12856 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12857
12858 * server.el (server-eval-and-print): Allow C-g (bug#6585).
12859
12860 2011-11-22 Glenn Morris <rgm@gnu.org>
12861
12862 * mail/rmailmm.el (test-rmail-mime-handler)
12863 (test-rmail-mime-bulk-handler)
12864 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
12865
12866 2011-11-21 Juri Linkov <juri@jurta.org>
12867
12868 * calc/calc.el (calc-read-key-sequence):
12869 Let-bind `input-method-function' to nil. (Bug#10018)
12870
12871 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12872
12873 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
12874 Tell the caller that the next line needs recomputation, even
12875 though it doesn't start a sexp (bug#10094).
12876
12877 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12878
12879 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
12880
12881 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12882
12883 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12884 Use force-same-window.
12885
12886 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12887
12888 * descr-text.el (describe-char-unicode-data):
12889 * json.el (json-string-escape):
12890 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
12891 (Footnote-unicode, Footnote-style-p):
12892 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
12893
12894 2011-11-20 Chong Yidong <cyd@gnu.org>
12895
12896 * window.el (replace-buffer-in-windows): Restore interactive spec.
12897
12898 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12899
12900 * electric.el (electric-indent-mode): Fix last change (too optimistic).
12901
12902 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
12903 (byte-compile-global-not-obsolete-vars): New var.
12904 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
12905 Use it.
12906 (byte-compile-warn-obsolete): Align text with the one in *Help*.
12907
12908 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12909
12910 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
12911 * progmodes/pascal.el (electric-pascal-equal):
12912 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
12913 * xml.el (xml-substitute-special): Fix typos.
12914
12915 2011-11-20 Glenn Morris <rgm@gnu.org>
12916
12917 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
12918 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
12919 Doc fixes.
12920 (rmail-decode-mime-charset): Mark as obsolete.
12921
12922 * mail/rmailsum.el (rmail-message-regexp-p-1):
12923 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
12924 Before using mime functions, check they are set. (Bug#10077)
12925
12926 2011-11-19 Juri Linkov <juri@jurta.org>
12927
12928 * info.el (Info-finder-find-node): Use `package--builtins' instead
12929 of `package-alist'. Use node names formed by the pattern "Keyword "
12930 and the keyword name.
12931
12932 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12933
12934 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
12935
12936 2011-11-19 Juri Linkov <juri@jurta.org>
12937
12938 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
12939 that calls `revert-buffer' on all Info buffers. (Bug#9915)
12940 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
12941 `old-history', `old-history-forward'. Add let-binding
12942 `window-selected'. Remove calls to `kill-buffer',
12943 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
12944 before calling `Info-find-node', so `Info-find-node-2' will reread
12945 the Info file. Restore window positions only when `window-selected'
12946 is non-nil.
12947
12948 2011-11-19 Juri Linkov <juri@jurta.org>
12949
12950 * isearch.el (isearch-lazy-highlight-new-loop):
12951 Remove condition `(not isearch-error)'. (Bug#9918)
12952
12953 * misearch.el (multi-isearch-search-fun): Add condition
12954 `(not bound)' to ignore lazy-highlighting search.
12955 Add the search-failed message "end of multi" when the end of
12956 multi-sequence is reached. Uncapitalize the search-failed
12957 message "Repeat for next buffer".
12958
12959 * info.el (Info-search): Add the search-failed message
12960 "end of the manual" when the end of the manual is reached
12961 in Isearch mode.
12962
12963 2011-11-19 Juri Linkov <juri@jurta.org>
12964
12965 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
12966 Use non-destructive `remove' instead of `delete' because
12967 `Info-history-list' stored to `Info-isearch-initial-history-list' in
12968 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
12969
12970 2011-11-19 Juri Linkov <juri@jurta.org>
12971
12972 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
12973 to nil instead of binding `search-ring' and `regexp-search-ring'.
12974 (Bug#9185)
12975
12976 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12977
12978 * simple.el (line-move): Force movement by logical lines for any
12979 hscrolled window, not only when auto-hscroll-mode is on.
12980 (line-move-visual): Update doc string to that effect. (Bug#10076)
12981
12982 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12983
12984 * language/european.el (macintosh): Define as alias for mac-roman.
12985
12986 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12987
12988 * mail/rmailmm.el (rmail-mime-display-header)
12989 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
12990 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
12991 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
12992 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
12993 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
12994 of a raw aref.
12995 (rmail-mime-entity-segment): To get past the tagline, move forward
12996 2 more lines, to account for the 2 empty lines that precede and
12997 follow the line with the buttons.
12998 (rmail-mime-update-tagline): Move one more line, to get past the
12999 empty line that follows the buttons in the tagline. (Bug#9520)
13000
13001 2011-11-19 Martin Rudalics <rudalics@gmx.at>
13002
13003 * window.el (window-max-delta-1, window-min-delta-1)
13004 (window-min-size-1, window-state-get-1, window-state-put-1)
13005 (window-state-put-2): Use "window--" prefix.
13006
13007 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
13008
13009 * emacs-lisp/smie.el: Improve warnings and conflict detection.
13010 (smie-warning-count): New var.
13011 (smie-set-prec2tab): Use it.
13012 (smie-bnf->prec2): Improve warnings. Add docstring.
13013 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
13014 (smie-bnf--set-class): New function.
13015 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
13016 corner case.
13017
13018 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
13019 (compilation-error-properties, compilation-move-to-column):
13020 Handle compilation-first-column while in the target buffer.
13021
13022 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
13023 Don't hardcode point-min==1.
13024
13025 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
13026 (eshell-rewrite-for-command): Remove workaround.
13027 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
13028 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
13029 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
13030
13031 * files-x.el (modify-file-local-variable): Obey commenting conventions.
13032
13033 2011-11-17 Glenn Morris <rgm@gnu.org>
13034
13035 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
13036 Ignore buffer-local generated-autoload-file if it is the same
13037 as the global value. (Bug#10049)
13038
13039 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
13040
13041 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
13042 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
13043 (reftex-toc-previous-heading, reftex-toc-max-level)
13044 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
13045 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
13046 (reftex-toc-do-promote, reftex-toc-promote-prepare)
13047 (reftex-toc-promote-action, reftex-toc-extract-section-number)
13048 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
13049 (reftex-toc-rename-label, reftex-toc-visit-location)
13050 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
13051 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
13052 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
13053 leaving "*toc*" only for references to the buffer.
13054
13055 2011-11-17 Martin Rudalics <rudalics@gmx.at>
13056
13057 * window.el (window-resize, delete-window, split-window):
13058 Replace window-splits by window-combination-resize.
13059 * cus-start.el (window-splits): Replace by window-combination-resize.
13060
13061 2011-11-17 Glenn Morris <rgm@gnu.org>
13062
13063 * progmodes/sh-script.el (sh-font-lock-keywords-var):
13064 Make bash entry derive from sh entry, not shell entry.
13065
13066 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
13067
13068 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
13069 local file name.
13070
13071 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
13072
13073 * menu-bar.el (menu-bar-file-menu):
13074 * printing.el (pr-ps-utility):
13075 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
13076 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
13077 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
13078 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
13079 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
13080 (icalendar--convert-cyclic-to-ical)
13081 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
13082 (icalendar--convert-ical-to-diary)
13083 (icalendar--convert-recurring-to-diary)
13084 (icalendar--convert-non-recurring-all-day-to-diary)
13085 (icalendar-import-format-sample):
13086 * progmodes/idlw-shell.el (idlwave-shell-mode):
13087 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
13088 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
13089 (vhdl-ps-print-init): Fix typos.
13090
13091 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
13092
13093 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
13094 FSF and collapse date sequence, obscure author/maintainer email address
13095 better, remove extra version line, track relocation of author's webpage.
13096
13097 * progmodes/python.el (python-pdbtrack-input-prompt)
13098 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
13099 regular python pdb prompts. Adjustments shamelessly taken exactly as
13100 suggested in EmacsWiki page (tiny change):
13101 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
13102
13103 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
13104
13105 * expand.el (expand-pos, expand-index, expand-point):
13106 Remove redundant info from docstring.
13107 (expand-add-abbrevs): Doc fix.
13108 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
13109 (expand-sample-perl-mode-expand-list): Fix typos.
13110
13111 * net/dbus.el (dbus-event-member-name):
13112 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
13113 * term/pc-win.el (msdos-create-frame-with-faces):
13114 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
13115
13116 2011-11-16 Martin Rudalics <rudalics@gmx.at>
13117
13118 * window.el (split-window, window-state-get-1)
13119 (window-state-put-1, window-state-put-2): Rename occurrences of
13120 window-nest to window-combination-limit.
13121 * cus-start.el (window-nest): Rename to window-combination-limit.
13122
13123 2011-11-16 Chong Yidong <cyd@gnu.org>
13124
13125 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
13126 regexp (Bug#10033).
13127
13128 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
13129
13130 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
13131 `completing-read' will remove *Completions* and will preserve
13132 current-buffer for us.
13133 (tmm-add-prompt): Users of *Completions* will always (re)set its
13134 major mode.
13135 (tmm-old-comp-map): Remove.
13136
13137 2011-11-16 Glenn Morris <rgm@gnu.org>
13138
13139 * mail/rmailedit.el: Require rmailmm when compiling.
13140 (rmail-old-mime-state): New declaration.
13141 (rmail-edit-current-message): If editing a mime message,
13142 edit the "raw" message from the mbox buffer.
13143 (rmail-cease-edit): Handle mime messages. (Bug#9840)
13144
13145 2011-11-15 Glenn Morris <rgm@gnu.org>
13146
13147 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
13148 which wasn't being used. Add optional arg to force given state.
13149 (rmail-mime): Add optional arg to force given state.
13150
13151 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
13152
13153 * allout.el (allout-encryption-plaintext-sanitization-regexps):
13154 * frame.el (display-mm-dimensions-alist):
13155 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
13156 (outline-move-subtree-down):
13157 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
13158 (newsticker--treeview-do-get-node):
13159 * net/quickurl.el (quickurl-list-buffer-name):
13160 * progmodes/dcl-mode.el (dcl-mode):
13161 * progmodes/gdb-mi.el (gdb-mapcar*):
13162 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
13163
13164 2011-11-15 Glenn Morris <rgm@gnu.org>
13165
13166 * mail/rmail.el (rmail-file-coding-system): It's only ever used
13167 in a boolean sense, so just make it a boolean, and fix the doc.
13168 (rmail-show-mime-function, rmail-mime-feature)
13169 (rmail-require-mime-maybe): Doc fixes.
13170 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
13171
13172 * mail/rmailmm.el (rmail-show-mime): Doc fix.
13173
13174 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
13175
13176 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
13177 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
13178 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
13179 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
13180
13181 2011-11-15 Glenn Morris <rgm@gnu.org>
13182
13183 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
13184 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
13185 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
13186 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
13187 (rmail-mime, rmail-show-mime): Doc fixes.
13188
13189 * term/ns-win.el (mode-line-frame-identification):
13190 Leave it alone. (Bug#10051)
13191
13192 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
13193
13194 * mail/rmailout.el (rmail-output-to-rmail-buffer):
13195 Handle empty buffers. (Bug#9978)
13196
13197 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
13198
13199 * international/mule.el (define-charset):
13200 * mail/rmailmm.el (rmail-mime-find-header-encoding):
13201 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
13202 * progmodes/verilog-mode.el (verilog-backward-token):
13203 * textmodes/ispell.el (lookup-words):
13204 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
13205
13206 2011-11-14 Glenn Morris <rgm@gnu.org>
13207
13208 * progmodes/executable.el
13209 (executable-make-buffer-file-executable-if-script-p):
13210 Handle file-modes returning nil.
13211
13212 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
13213 message - not necessary, and causes problems. (Bug#9831)
13214
13215 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
13216
13217 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
13218
13219 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
13220 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
13221 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
13222
13223 2011-11-12 Martin Rudalics <rudalics@gmx.at>
13224
13225 * window.el (window-resize, delete-window): Use window-splits
13226 variable instead of function.
13227 (window-state-get-1, window-state-put-2, window-state-put):
13228 Don't deal with windows' splits status.
13229
13230 2011-11-12 Glenn Morris <rgm@gnu.org>
13231
13232 * apropos.el (apropos-do-all, apropos-library, apropos-value)
13233 (apropos-documentation): Doc fixes.
13234
13235 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
13236
13237 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
13238 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
13239
13240 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
13241
13242 * electric.el (electric-indent-post-self-insert-function): Make it
13243 possible for a char to only indent in some circumstances.
13244 (electric-indent-mode): Simplify.
13245
13246 2011-11-11 Martin Rudalics <rudalics@gmx.at>
13247
13248 * window.el (windows-with-parameter): Remove unused function.
13249 (windows-at-side): Rename to window-at-side-list.
13250 (window-check, window-atom-check, window-atom-check-1)
13251 (window-side-check, window-size-ignore, window-size-fixed-1)
13252 (window-in-direction-2): Prefix with "window--".
13253 (window-tree-1): Rename to window--subtree, fix doc-string.
13254
13255 2011-11-11 Glenn Morris <rgm@gnu.org>
13256
13257 * subr.el (eval-after-load): If FILE is already loaded,
13258 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
13259
13260 2011-11-10 Glenn Morris <rgm@gnu.org>
13261
13262 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
13263 Call svn via vc-svn-command rather than vc-do-command.
13264 (vc-svn-command): Add --non-interactive. (Bug#9993)
13265 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
13266
13267 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13268 Add toggle-read-only. (Bug#7292)
13269 * files.el (toggle-read-only): Mention that it should only
13270 be used interactively. (Bug#10006)
13271
13272 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13273
13274 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13275 Adjust regexp for OCaml warnings.
13276
13277 * electric.el (electric-pair-post-self-insert-function): Let user
13278 turn it off buffer-locally (bug#9932).
13279
13280 * progmodes/python.el (python-beginning-of-statement):
13281 Rewrite (bug#2703).
13282
13283 * progmodes/compile.el: Better handle TABs (bug#9749).
13284 (compilation-internal-error-properties)
13285 (compilation-next-error-function): Obey the target buffer's
13286 compilation-error-screen-columns.
13287
13288 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
13289
13290 * progmodes/meta-mode.el: Remove obsolete comments.
13291 (meta-right-comment-regexp, meta-ignore-comment-regexp):
13292 Fix typos in docstrings.
13293
13294 2011-11-09 Martin Rudalics <rudalics@gmx.at>
13295
13296 * window.el (window-size-fixed-p): Rewrite doc-string.
13297 (window-resizable-p): Rename to window--resizable-p. Update callers.
13298 (window--resizable): New function. Make all callers of
13299 window-resizable call window--resizable instead.
13300 (window-resizable): Rewrite in terms of window--resizable.
13301
13302 2011-11-08 Glenn Morris <rgm@gnu.org>
13303
13304 * progmodes/delphi.el (delphi-mode-syntax-table):
13305 Let define-derived-mode define a proper syntax table. (Bug#9994)
13306
13307 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13308
13309 * window.el: Stay away from defsubst.
13310 (window-list-no-nils): Remove.
13311 (window-state-get-1, window-state-get): Use backquote instead.
13312
13313 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13314
13315 * emacs-lisp/find-func.el (find-function-read):
13316 Fix incorrect use of default argument in `completing-read'.
13317
13318 2011-11-08 Martin Rudalics <rudalics@gmx.at>
13319
13320 * window.el (display-buffer-function, special-display-function):
13321 Mention display-buffer-record-window but do not mention
13322 help-setup parameter in doc-strings.
13323 (window-min-delta): Fix doc-string typo.
13324
13325 2011-11-08 Chong Yidong <cyd@gnu.org>
13326
13327 * window.el (window-total-height, window-total-width): Doc fix.
13328 (window-body-size): Move from C.
13329 (window-body-height, window-body-width): Move to C.
13330
13331 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13332
13333 * window.el: Make special-display like display-buffer-alist (bug#9532).
13334 (display-buffer--special-action): New function, morphed
13335 from display-buffer--special.
13336 (display-buffer): Use it to handle special-display-buffers at higher
13337 priority (just after display-buffer-alist).
13338 (display-buffer-fallback-action, display-buffer--other-frame-action)
13339 (pop-to-buffer-same-window): Remove display-buffer--special.
13340
13341 2011-11-07 Glenn Morris <rgm@gnu.org>
13342
13343 * calendar/cal-menu.el (cal-menu-set-date-title):
13344 Do nothing if not in a calendar. (Bug#9976)
13345
13346 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
13347
13348 * files.el (find-file): Always use selected-window.
13349
13350 2011-11-07 Martin Rudalics <rudalics@gmx.at>
13351
13352 * window.el (window-combinations): Make WINDOW argument
13353 mandatory. Rewrite doc-string.
13354 (walk-window-subtree, window-atom-check, window-min-delta)
13355 (window-max-delta, window--resize-this-window)
13356 (window--resize-root-window-vertically, window-tree)
13357 (balance-windows, window-state-put): Rewrite doc-strings as to
13358 not mention the term "subwindow".
13359 (window--resize-subwindows-skip-p): Rename to
13360 window--resize-child-windows-skip-p.
13361 (window--resize-subwindows-normal): Rename to
13362 window--resize-child-windows-normal.
13363 (window--resize-subwindows): Rename to
13364 window--resize-child-windows.
13365 (window-or-subwindow-p): Rename to window--in-subtree-p.
13366
13367 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13368
13369 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
13370 Ensure that mbox format messages end in two newlines (Bug#9974).
13371
13372 2011-11-06 Chong Yidong <cyd@gnu.org>
13373
13374 * window.el (window-combination-p): Function deleted; its
13375 side-effect is not used in any existing code.
13376 (window-combinations, window-combined-p): Call window-*-child
13377 directly.
13378
13379 2011-11-05 Chong Yidong <cyd@gnu.org>
13380
13381 * window.el (window-valid-p): Rename from window-any-p.
13382 (window-size-ignore, window-state-get): Callers changed.
13383 (window-normalize-window): Rename from window-normalize-any-window.
13384 New arg LIVE-ONLY, replacing window-normalize-live-window.
13385 (window-normalize-live-window): Delete.
13386 (window-combination-p, window-combined-p, window-combinations)
13387 (walk-window-subtree, window-atom-root, window-min-size)
13388 (window-sizable, window-sizable-p, window-size-fixed-p)
13389 (window-min-delta, window-max-delta, window-resizable)
13390 (window-resizable-p, window-full-height-p, window-full-width-p)
13391 (window-current-scroll-bars, window-point-1, set-window-point-1)
13392 (window-at-side-p, window-in-direction, window-resize)
13393 (adjust-window-trailing-edge, maximize-window, minimize-window)
13394 (window-deletable-p, delete-window, delete-other-windows)
13395 (record-window-buffer, unrecord-window-buffer)
13396 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
13397 (quit-window, split-window, window-state-put)
13398 (set-window-text-height, fit-window-to-buffer)
13399 (shrink-window-if-larger-than-buffer): Callers changed.
13400
13401 2011-11-04 Eli Zaretskii <eliz@gnu.org>
13402
13403 * mail/rmail.el (rmail-simplified-subject): Decode subject with
13404 rfc2047-decode-string.
13405 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
13406 warnings.
13407
13408 * window.el (window-body-height, window-body-width): Mention in
13409 the doc string that the return values are in frame's canonical
13410 units. (Bug#9949)
13411
13412 2011-11-03 Alan Mackenzie <acm@muc.de>
13413
13414 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
13415 change in cc-engine.el.
13416
13417 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
13418
13419 * window.el (switch-to-buffer): Use `force-same-window' interactively.
13420
13421 2011-11-02 Martin Rudalics <rudalics@gmx.at>
13422
13423 * window.el (quit-window): Call unrecord-window-buffer after
13424 showing another buffer in the window. (Bug#9937)
13425 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
13426
13427 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
13428
13429 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
13430 Accept status with more than 9 shelves. (Bug#9935)
13431 Reported by Colin D Bennett <colin@gibibit.com>.
13432
13433 2011-11-01 Martin Rudalics <rudalics@gmx.at>
13434
13435 * help.el (with-help-window): Don't reference
13436 temp-buffer-show-specifiers in doc-string.
13437
13438 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
13439
13440 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
13441 menu-item.
13442
13443 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13444
13445 * whitespace.el: New version 13.2.2.
13446 (whitespace-newline-mode): Disable properly. Reported by Sarah
13447 <EmacsWiki>.
13448
13449 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
13450
13451 * net/newst-treeview.el: Remove "Time-stamp".
13452 (newsticker--group-manage-orphan-feeds): Do not call
13453 newsticker--treeview-tree-update.
13454 (newsticker-treeview-update, newsticker-treeview):
13455 Call newsticker--treeview-tree-update if necessary.
13456
13457 2011-10-30 Martin Rudalics <rudalics@gmx.at>
13458
13459 * window.el (window-iso-combination-p, window-iso-combined-p)
13460 (window-iso-combinations): Remove "iso-" infix.
13461 Suggested by Chong Yidong.
13462 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
13463 (window-max-delta-1, window-resize, window--resize-siblings)
13464 (window--resize-this-window, adjust-window-trailing-edge)
13465 (split-window, balance-windows-1)
13466 (shrink-window-if-larger-than-buffer):
13467 * calendar/calendar.el (calendar-generate-window):
13468 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
13469
13470 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
13471
13472 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
13473 in place (bug#9907).
13474 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
13475 (eshell-rewrite-if-command, eshell-rewrite-for-command)
13476 (eshell-structure-basic-command, eshell-rewrite-while-command)
13477 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
13478 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
13479 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
13480 (eshell-do-pipelines-synchronously, eshell-eval-command):
13481 Use backquotes and prefer setq to set.
13482 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
13483 (eshell-macrop): Use functionp.
13484 (eshell-do-eval): Handle multiple expressions in `while' body.
13485
13486 2011-10-30 Chong Yidong <cyd@gnu.org>
13487
13488 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
13489 instead of set-mark (Bug#9810).
13490
13491 2011-10-30 Chong Yidong <cyd@gnu.org>
13492
13493 * window.el (split-window-below, split-window-right): Rename from
13494 split-window-above-each-other and split-window-side-by-side
13495 respectively. All callers changed.
13496 (split-window-sensibly, split-window-sensibly): Use them.
13497 (split-window-keep-point): Doc fix.
13498
13499 * isearch.el: Add isearch-scroll property to split-window-below
13500 and split-window-right.
13501
13502 * follow.el (follow-mode):
13503 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
13504 * progmodes/ada-xref.el (ada-gdb-application):
13505 * emulation/vip.el (vip-buffer-in-two-windows):
13506 * image-dired.el (image-dired-dired-with-window-configuration):
13507 * dired-x.el (dired-do-find-marked-files):
13508 * dired.el (dired-pop-to-buffer):
13509 * bs.el (bs--show-with-configuration):
13510 * vc/emerge.el (emerge-setup-windows):
13511 * textmodes/two-column.el (2C-two-columns):
13512 * textmodes/reftex-toc.el (reftex-toc):
13513 * progmodes/gdb-mi.el (gdb-setup-windows):
13514 * progmodes/fortran.el (fortran-window-create):
13515 * net/newst-treeview.el (newsticker--treeview-window-init):
13516 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
13517 * emulation/tpu-edt.el (tpu-gold-map):
13518 * emulation/crisp.el (crisp-mode-map):
13519 * calendar/calendar.el (calendar-basic-setup): Callers changed.
13520
13521 2011-10-29 Chong Yidong <cyd@gnu.org>
13522
13523 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
13524
13525 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
13526
13527 * textmodes/flyspell.el (flyspell-word): Fix char offset for
13528 forged Ispell output (Bug#7904).
13529
13530 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
13531
13532 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13533
13534 * doc-view.el: Avoid ugly errors about not finding nil.
13535 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
13536 (doc-view-dvipdf-program, doc-view-unoconv-program)
13537 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
13538 Avoid nil or absolute file name as default value.
13539 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
13540
13541 2011-10-28 Alan Mackenzie <acm@muc.de>
13542
13543 * progmodes/cc-defs.el (c-version): -> 5.32.2.
13544
13545 2011-10-28 Alan Mackenzie <acm@muc.de>
13546
13547 Amend the handling of c-beginning/end-of-defun in nested declaration
13548 scopes.
13549
13550 * progmodes/cc-vars.el (c-defun-tactic): Move here from
13551 cc-langs.el. Change it to a defcustom.
13552
13553 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
13554 cc-vars.el.
13555
13556 * progmodes/cc-engine.el (c-beginning-of-statement-1):
13557 Prevent "class foo : bar" being spuriously recognized as a label.
13558
13559 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
13560 Add parameter `inclusive' (to include enclosing braces in the region).
13561 (c-widen-to-enclosing-decl-scope): New function.
13562 (c-while-widening-to-decl-block): New macro.
13563 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
13564 outward for defun boundaries, and correspondingly change symbol
13565 `respect-enclosure' to `go-outward'.
13566 (c-declaration-limits): Change algorithm to report only the "innermost"
13567 defun's boundaries.
13568
13569 2011-10-28 Deniz Dogan <deniz@dogan.se>
13570
13571 * net/rcirc.el (rcirc-mode): Use hard newlines.
13572
13573 2011-10-28 Alan Mackenzie <acm@muc.de>
13574
13575 Amend to indent and fontify macros "which include their own semicolon"
13576 correctly, using the "virtual semicolon" mechanism.
13577
13578 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
13579
13580 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
13581 Recode to scan one line at a time rather than having \n and \r
13582 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
13583 (c-forward-label): Amend for virtual semicolons.
13584 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
13585
13586 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
13587 of the new C macros.
13588
13589 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
13590 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
13591 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
13592 (c-opt-cpp-macro-define): Make into a full language variable.
13593 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
13594 AWK Mode (including \n, \r) removed, no longer needed.
13595
13596 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
13597 Invoke c-make-macro-with-semi-re.
13598
13599 * progmodes/cc-vars.el (c-macro-with-semi-re):
13600 (c-macro-names-with-semicolon): New variables.
13601 (c-make-macro-with-semi-re): New function.
13602
13603 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13604
13605 * vc/log-edit.el: Fill empty field rather than adding new one.
13606 (log-edit-add-field): New function.
13607 (log-edit-insert-changelog): Use it.
13608
13609 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13610
13611 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
13612
13613 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13614
13615 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
13616 (gdb--check-interpreter): New function.
13617 (gdb): Use it.
13618
13619 2011-10-27 Glenn Morris <rgm@gnu.org>
13620
13621 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
13622 (least-positive-float, least-negative-float)
13623 (least-positive-normalized-float, least-negative-normalized-float)
13624 (float-epsilon, float-negative-epsilon):
13625 Remove unnecessary declarations.
13626
13627 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
13628 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
13629 (least-positive-float, least-negative-float)
13630 (least-positive-normalized-float, least-negative-normalized-float)
13631 (float-epsilon, float-negative-epsilon): Add doc-strings,
13632 based on those in cl.texi.
13633
13634 * files.el (set-visited-file-name): If the major-mode changed,
13635 reload the local variables. (Bug#9796)
13636
13637 2011-10-27 Chong Yidong <cyd@gnu.org>
13638
13639 * subr.el (change-major-mode-after-body-hook): New hook.
13640 (run-mode-hooks): Run it.
13641
13642 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13643 Use change-major-mode-before-body-hook.
13644
13645 * simple.el (fundamental-mode):
13646 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
13647 change introducing fundamental-mode-hook.
13648
13649 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
13650
13651 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
13652
13653 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
13654
13655 * ido.el (ido-file-name-all-completions-1): Do not require
13656 tramp.el explicitly. (Bug#7583)
13657
13658 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
13659
13660 * progmodes/octave-mod.el:
13661 * progmodes/octave-inf.el: Update maintainer.
13662
13663 2011-10-26 Chong Yidong <cyd@gnu.org>
13664
13665 * subr.el (with-wrapper-hook): Rewrite doc.
13666
13667 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
13668
13669 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
13670 filenames "/method:foo:". (Bug#9793)
13671
13672 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13673
13674 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
13675 (bug#9865).
13676
13677 2011-10-24 Glenn Morris <rgm@gnu.org>
13678
13679 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
13680
13681 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
13682
13683 * notifications.el: Add the requirement of a running D-Bus session
13684 bus to the Commentary.
13685
13686 2011-10-24 Juri Linkov <juri@jurta.org>
13687
13688 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
13689 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
13690 (Bug#9364)
13691
13692 2011-10-24 Juri Linkov <juri@jurta.org>
13693
13694 * info.el (Info-following-node-name-re): Add newline to the list
13695 of allowed characters for leading space. (Bug#9824)
13696
13697 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13698
13699 * progmodes/octave-inf.el (inferior-octave-mode-map):
13700 Fix C-c C-h binding.
13701 * progmodes/octave-mod.el (octave-help): Remove.
13702
13703 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
13704
13705 Sync with Tramp 2.2.3.
13706
13707 * net/tramp-cache.el (top): Pacify byte-compiler using
13708 `init-file-user' and `site-run-file'.
13709
13710 * net/trampver.el: Update release number.
13711
13712 2011-10-23 Chong Yidong <cyd@gnu.org>
13713
13714 * files.el (toggle-read-only): Remove obsolete comment about
13715 version control.
13716
13717 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
13718 for toggle-read-only. Note that this hasn't called vc-next-action
13719 since 2008-05-02, though it wasn't documented at the time.
13720
13721 * vc/ediff-init.el (ediff-toggle-read-only-function):
13722 Use toggle-read-only.
13723
13724 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
13725
13726 Fix bug #9560, sporadic wrong indentation; improve instrumentation
13727 of c-parse-state.
13728
13729 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13730 correct faulty logical expression.
13731 (c-parse-state-state, c-record-parse-state-state):
13732 (c-replay-parse-state-state): New defvar/defuns.
13733 (c-debug-parse-state): Use new functions.
13734
13735 2011-10-22 Martin Rudalics <rudalics@gmx.at>
13736
13737 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
13738 last fix. Use window-in-direction correctly.
13739
13740 2011-10-21 Chong Yidong <cyd@gnu.org>
13741
13742 * progmodes/idlwave.el (idlwave-mode):
13743 * progmodes/vera-mode.el (vera-mode): No need to set
13744 require-final-newline; that's done in prog-mode.
13745 Suggested by Stefan Monnier.
13746
13747 2011-10-21 Martin Rudalics <rudalics@gmx.at>
13748
13749 * mouse.el (mouse-drag-window-above)
13750 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
13751 (mouse-drag-mode-line-1, mouse-drag-header-line)
13752 (mouse-drag-vertical-line-rightward-window): Remove.
13753 (mouse-drag-line): New function.
13754 (mouse-drag-mode-line, mouse-drag-header-line)
13755 (mouse-drag-vertical-line): Call mouse-drag-line.
13756 * window.el (window-at-side-p, windows-at-side): New functions.
13757
13758 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
13759
13760 * tar-mode.el (tar-grind-file-mode):
13761 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
13762
13763 2011-10-21 Chong Yidong <cyd@gnu.org>
13764
13765 * progmodes/idlwave.el (idlwave-mode):
13766 * progmodes/vera-mode.el (vera-mode):
13767 Use mode-require-final-newline.
13768
13769 2011-10-20 Glenn Morris <rgm@gnu.org>
13770
13771 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
13772
13773 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
13774
13775 * emulation/cua-base.el (cua-set-mark): Fix case of string.
13776
13777 2011-10-20 Chong Yidong <cyd@gnu.org>
13778
13779 * emulation/cua-base.el (cua-mode):
13780 * mail/footnote.el (footnote-mode):
13781 * mail/mailabbrev.el (mail-abbrevs-mode):
13782 * net/xesam.el (xesam-minor-mode):
13783 * progmodes/bug-reference.el (bug-reference-mode):
13784 * progmodes/cap-words.el (capitalized-words-mode):
13785 * progmodes/compile.el (compilation-minor-mode)
13786 (compilation-shell-minor-mode):
13787 * progmodes/gud.el (gud-tooltip-mode):
13788 * progmodes/hideif.el (hide-ifdef-mode):
13789 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
13790 * progmodes/subword.el (subword-mode):
13791 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
13792 * progmodes/which-func.el (which-function-mode):
13793 * term/tvi970.el (tvi970-set-keypad-mode):
13794 * term/vt100.el (vt100-wide-mode):
13795 * textmodes/flyspell.el (flyspell-mode):
13796 * textmodes/ispell.el (ispell-minor-mode):
13797 * textmodes/nroff-mode.el (nroff-electric-mode):
13798 * textmodes/paragraphs.el (use-hard-newlines):
13799 * textmodes/refill.el (refill-mode):
13800 * textmodes/reftex.el (reftex-mode):
13801 * textmodes/rst.el (rst-minor-mode):
13802 * textmodes/sgml-mode.el (html-autoview-mode)
13803 (sgml-electric-tag-pair-mode):
13804 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
13805 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
13806 * emulation/crisp.el (crisp-mode):
13807 * emacs-lisp/eldoc.el (eldoc-mode):
13808 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
13809 minor mode behavior.
13810
13811 2011-10-19 Juri Linkov <juri@jurta.org>
13812
13813 * descr-text.el (describe-char): Add #x2010 and #x2011 to
13814 the list of hard-coded chars with escape-glyph face.
13815
13816 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13817
13818 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
13819
13820 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
13821
13822 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
13823 running process.
13824
13825 2011-10-19 Glenn Morris <rgm@gnu.org>
13826
13827 * vc/vc-bzr.el (vc-bzr-after-dir-status):
13828 Ignore ignored files. (Bug#9726)
13829
13830 2011-10-19 Chong Yidong <cyd@gnu.org>
13831
13832 Doc fix for minor modes, stating that an omitted argument enables
13833 the mode unconditionally when called from Lisp.
13834
13835 * abbrev.el (abbrev-mode):
13836 * allout.el (allout-mode):
13837 * autoinsert.el (auto-insert-mode):
13838 * autoarg.el (autoarg-mode, autoarg-kp-mode):
13839 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
13840 (global-auto-revert-mode):
13841 * battery.el (display-battery-mode):
13842 * composite.el (global-auto-composition-mode)
13843 (auto-composition-mode):
13844 * delsel.el (delete-selection-mode):
13845 * desktop.el (desktop-save-mode):
13846 * dired-x.el (dired-omit-mode):
13847 * dirtrack.el (dirtrack-mode):
13848 * doc-view.el (doc-view-minor-mode):
13849 * double.el (double-mode):
13850 * electric.el (electric-indent-mode, electric-pair-mode):
13851 * emacs-lock.el (emacs-lock-mode):
13852 * epa-hook.el (auto-encryption-mode):
13853 * follow.el (follow-mode):
13854 * font-core.el (font-lock-mode):
13855 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
13856 * help.el (temp-buffer-resize-mode):
13857 * hilit-chg.el (highlight-changes-mode)
13858 (highlight-changes-visible-mode):
13859 * hi-lock.el (hi-lock-mode):
13860 * hl-line.el (hl-line-mode, global-hl-line-mode):
13861 * icomplete.el (icomplete-mode):
13862 * ido.el (ido-everywhere):
13863 * image-file.el (auto-image-file-mode):
13864 * image-mode.el (image-minor-mode):
13865 * iswitchb.el (iswitchb-mode):
13866 * jka-cmpr-hook.el (auto-compression-mode):
13867 * linum.el (linum-mode):
13868 * longlines.el (longlines-mode):
13869 * master.el (master-mode):
13870 * mb-depth.el (minibuffer-depth-indicate-mode):
13871 * menu-bar.el (menu-bar-mode):
13872 * minibuf-eldef.el (minibuffer-electric-default-mode):
13873 * mouse-sel.el (mouse-sel-mode):
13874 * msb.el (msb-mode):
13875 * mwheel.el (mouse-wheel-mode):
13876 * outline.el (outline-minor-mode):
13877 * paren.el (show-paren-mode):
13878 * recentf.el (recentf-mode):
13879 * reveal.el (reveal-mode, global-reveal-mode):
13880 * rfn-eshadow.el (file-name-shadow-mode):
13881 * ruler-mode.el (ruler-mode):
13882 * savehist.el (savehist-mode):
13883 * scroll-all.el (scroll-all-mode):
13884 * scroll-bar.el (scroll-bar-mode):
13885 * server.el (server-mode):
13886 * shell.el (shell-dirtrack-mode):
13887 * simple.el (auto-fill-mode, transient-mark-mode)
13888 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
13889 (line-number-mode, column-number-mode, size-indication-mode)
13890 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
13891 * strokes.el (strokes-mode):
13892 * time.el (display-time-mode):
13893 * t-mouse.el (gpm-mouse-mode):
13894 * tool-bar.el (tool-bar-mode):
13895 * tooltip.el (tooltip-mode):
13896 * type-break.el (type-break-mode-line-message-mode)
13897 (type-break-query-mode):
13898 * view.el (view-mode):
13899 * whitespace.el (whitespace-mode, whitespace-newline-mode)
13900 (global-whitespace-mode, global-whitespace-newline-mode):
13901 * xt-mouse.el (xterm-mouse-mode): Doc fix.
13902
13903 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13904 Fix autogenerated docstring.
13905
13906 2011-10-19 Juri Linkov <juri@jurta.org>
13907
13908 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
13909 by checking environment variables "DESKTOP_SESSION" and
13910 "XDG_CURRENT_DESKTOP". (Bug#9779)
13911
13912 2011-10-19 Juri Linkov <juri@jurta.org>
13913
13914 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
13915 (browse-url-chromium-program, browse-url-chromium-arguments):
13916 New defcustoms.
13917 (browse-url-default-browser): Check for `browse-url-chromium' and
13918 call `browse-url-chromium-program'.
13919 (browse-url-chromium): New command. (Bug#9779)
13920
13921 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
13922
13923 * facemenu.el (list-colors-duplicates): On Windows, detect more
13924 duplicates by assuming that only colors matching "^System" are
13925 special "system colors". (Bug#9722)
13926
13927 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13928
13929 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
13930 to distinguish the author from the committer.
13931
13932 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
13933
13934 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
13935
13936 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
13937
13938 * international/mule.el (sgml-html-meta-auto-coding-function):
13939 Add support for detecting encoding in HTML5 specified only as
13940 <meta charset="UTF-8">. Implementation just makes http-equiv and
13941 content-type parts from HTML4 encoding string optional. (Bug#9716)
13942
13943 2011-10-18 Glenn Morris <rgm@gnu.org>
13944
13945 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
13946
13947 2011-10-18 Chong Yidong <cyd@gnu.org>
13948
13949 * faces.el (cursor): Doc fix.
13950
13951 2011-10-17 Chong Yidong <cyd@gnu.org>
13952
13953 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
13954
13955 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
13956
13957 * dirtrack.el (dirtrack): Support shell buffers with path
13958 prefixes, e.g. tramp-based remote shells. (Bug#9647)
13959
13960 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
13961
13962 * json.el: Bump version to 1.3 and note change in History.
13963 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
13964
13965 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13966
13967 * comint.el (comint-insert-input, comint-send-input)
13968 (comint-get-old-input-default, comint-backward-matching-input)
13969 (comint-next-prompt): Use nil instead of `input' for field property of
13970 past user input (bug#114).
13971
13972 * minibuffer.el (completion--replace): Inherit surrounding properties
13973 (bug#114).
13974 (minibuffer-complete-and-exit): Use it.
13975
13976 * comint.el (comint--table-subvert): Quote the all-completions output
13977 (bug#9160).
13978
13979 2011-10-17 Martin Rudalics <rudalics@gmx.at>
13980
13981 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
13982
13983 * menu-bar.el (menu-bar-file-menu): Add entry for making new
13984 window on right of selected. (Bug#9350) Reword other window
13985 entries and separate them from frame entries.
13986
13987 2011-10-15 Glenn Morris <rgm@gnu.org>
13988
13989 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
13990 Doc fixes.
13991
13992 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
13993
13994 * net/network-stream.el (network-stream-open-starttls):
13995 Improve detection of failure due to lack of TLS support.
13996
13997 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
13998 putting the input text in front and in bold.
13999
14000 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
14001
14002 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
14003
14004 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
14005 empty buffer.
14006
14007 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
14008 unread-command-events rather than pushing yet-another event.
14009
14010 2011-10-14 Eli Zaretskii <eliz@gnu.org>
14011
14012 * mail/sendmail.el (sendmail-query-once): Improve the wording of
14013 the explanation of the possible choices. Make the options passed
14014 to completing-read shorter.
14015
14016 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14017
14018 * textmodes/flyspell.el (flyspell-large-region): Make sure
14019 extended character mode is used if defined (Bug#1339).
14020
14021 2011-10-13 Eli Zaretskii <eliz@gnu.org>
14022
14023 * simple.el (what-cursor-position): Fix the display of the
14024 character info for LRE, LRO, RLE, and RLO characters by appending
14025 an invisible PDF.
14026
14027 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
14028
14029 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
14030 even in case of error; add debug spec; simplify data flow.
14031 (with-timeout-handler): Remove.
14032
14033 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
14034
14035 Fix Bug#6019, Bug#9315.
14036
14037 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
14038 complete `buffer-file-name', the local file name part could look
14039 remotely (for example on VMS).
14040
14041 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
14042 `tramp-run-real-handler'.
14043 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
14044 already quoted by '"'.
14045
14046 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
14047 Let `file-name-handler-alist' be nil, the local file name part
14048 could look remotely (for example on VMS).
14049
14050 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14051
14052 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
14053 from here...
14054 (flyspell-post-command-hook): ...to here.
14055
14056 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14057
14058 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
14059 if not needed.
14060 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
14061 using completion. Protect against "slow" callers.
14062 Remove the "message hack".
14063
14064 2011-10-11 Juri Linkov <juri@jurta.org>
14065
14066 * isearch.el (isearch-lazy-highlight-word): New variable.
14067 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
14068 Use it. (Bug#9727)
14069
14070 2011-10-11 Glenn Morris <rgm@gnu.org>
14071
14072 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
14073 like f90-previous-statement does.
14074
14075 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14076
14077 * eshell/eshell.el (eshell-command): History should be saved
14078 only in interactive use, to avoid error.
14079
14080 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14081
14082 * minibuffer.el (completion-file-name-table): Fix last change,
14083 i.e. ignore normal errors but not the other ones.
14084
14085 2011-10-10 Martin Rudalics <rudalics@gmx.at>
14086
14087 * window.el (special-display-buffer-names)
14088 (special-display-regexps): Remove some remnants of earlier
14089 changes from doc-strings.
14090 (quit-windows-on): New function.
14091
14092 * vc/vc.el (vc-revert, vc-rollback):
14093 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
14094 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
14095 (Bug#6183) (Bug#7074) (Bug#7447)
14096
14097 2011-10-09 Martin Rudalics <rudalics@gmx.at>
14098
14099 * window.el (frame-auto-hide-function): Add version tag.
14100 (Bug#9699)
14101
14102 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
14103
14104 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
14105 condition.
14106
14107 2011-10-09 Leo Liu <sdl.web@gmail.com>
14108
14109 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
14110 (Bug#9701)
14111
14112 2011-10-08 Glenn Morris <rgm@gnu.org>
14113
14114 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
14115 before the first code statement zero indent. (Bug#9690)
14116
14117 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
14118
14119 * simple.el (count-words-region): Always count in the region.
14120 Report the number of lines and characters too.
14121 (count-words): New command, which counts in the buffer if the
14122 region is inactive, as count-words-region used to.
14123 (count-words--message): New function. Handle plurals.
14124 (count-lines-region): Make it an alias for count-words-region.
14125
14126 * bindings.el (esc-map): Replace count-lines-region with
14127 count-words-region.
14128
14129 2011-10-08 Martin Rudalics <rudalics@gmx.at>
14130
14131 * window.el (window--delete): Delete dedicated frame
14132 unconditionally when argument KILL is non-nil. (Bug#9699)
14133 (switch-to-buffer): Fix doc-string typo.
14134
14135 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14136
14137 * eshell/eshell.el (eshell-command): Avoid using hooks.
14138
14139 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
14140
14141 * bindings.el ([M-left],[M-right]): Bind to left-word and
14142 right-word respectively.
14143
14144 2011-10-07 Glenn Morris <rgm@gnu.org>
14145
14146 * cus-start.el (debug-on-quit): Fix custom type.
14147
14148 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
14149
14150 * subr.el (define-key-after): Clarify that the function is not
14151 useful for non-menu keymaps.
14152
14153 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
14154
14155 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14156
14157 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
14158 in current minibuffer (Fix bug with recursive minibuffers).
14159
14160 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
14161
14162 * progmodes/gdb-mi.el (gdb): Doc fix.
14163
14164 2011-10-05 Martin Rudalics <rudalics@gmx.at>
14165
14166 * window.el (frame-auto-hide-function): New option replacing
14167 frame-auto-delete. Suggested by Stefan Monnier.
14168 (window--delete): Call frame-auto-hide-function instead of
14169 investigating frame-auto-delete.
14170 (window-point-1, set-window-point-1): New functions.
14171 (window-in-direction, record-window-buffer, window-state-get-1)
14172 (display-buffer-record-window): Use window-point-1 instead of
14173 window-point.
14174 (set-window-buffer-start-and-point): Use set-window-point-1.
14175
14176 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14177
14178 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
14179
14180 2011-10-05 Glenn Morris <rgm@gnu.org>
14181
14182 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
14183 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
14184
14185 2011-10-05 Leo Liu <sdl.web@gmail.com>
14186
14187 * subr.el (read-char-choice): Fix argument to buffer-live-p which
14188 works with buffer object.
14189
14190 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14191
14192 * mpc.el (mpc-tool-bar-map): Add labels.
14193
14194 2011-10-04 Glenn Morris <rgm@gnu.org>
14195
14196 * calendar/holidays.el (calendar-check-holidays): Doc fix.
14197
14198 2011-10-04 Martin Rudalics <rudalics@gmx.at>
14199
14200 * window.el (window--delete): New function.
14201 (frame-auto-delete): Resuscitate option.
14202 (bury-buffer, replace-buffer-in-windows)
14203 (quit-window): Rewrite using window--delete.
14204 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14205 Pass display-buffer-mark-dedicated to window--display-buffer-2
14206 (Bug#9639).
14207
14208 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14209
14210 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
14211 returns a list (bug#9554). Add remote file name completion.
14212 * comint.el (comint--table-subvert): Curry and get quote&unquote
14213 functions as arguments.
14214 (comint--complete-file-name-data): Adjust call accordingly.
14215 * pcomplete.el (pcomplete--table-subvert): Remove.
14216 (pcomplete-completions-at-point): Use comint--table-subvert instead.
14217
14218 * minibuffer.el (completion-table-case-fold): Use currying.
14219 (completion--styles-type, completion--cycling-threshold-type):
14220 New constants.
14221 (completion-styles, completion-category-overrides)
14222 (completion-cycle-threshold): Use them.
14223 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
14224 completion-table-case-fold.
14225
14226 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
14227
14228 * minibuffer.el (completion-category-overrides): Fix type of styles
14229 and add more user friendly tags (bug#9660).
14230
14231 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14232
14233 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
14234 (mule-input-method-string): New widget.
14235 (default-input-method, language-info-custom-alist): Use it.
14236
14237 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14238
14239 * pcomplete.el: Require comint.
14240 (pcomplete--common-suffix): Remove.
14241 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
14242 (pcomplete--table-subvert): Sync with comint--table-subvert.
14243 (pcomplete--entries): Use comint-completion-file-name-table.
14244 * comint.el (comint-unquote-filename): Simplify.
14245 (comint-completion-file-name-table): New function (bug#9616).
14246 (comint--complete-file-name-data): Use it.
14247
14248 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
14249 (pcmpl-gnu-tar-buffer): Remove.
14250 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
14251 around. Make sure pcomplete-suffix-list is only changed temporarily.
14252 Don't look inside the tar's file if it's too large.
14253
14254 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
14255
14256 * cus-edit.el (custom-mode-map):
14257 * epa.el (epa-key-list-mode-map):
14258 * man.el (Man-mode-map):
14259 * startup.el (splash-screen-keymap):
14260 * simple.el (special-mode-map): Use scroll-up-command and
14261 scroll-down-command.
14262
14263 * progmodes/idlw-help.el (idlwave-help-mode-map):
14264 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
14265 * net/newst-plainview.el (newsticker-mode-map):
14266 * emulation/ws-mode.el (wordstar-mode-map):
14267 * emulation/vi.el (vi-com-map):
14268 * calc/calc-graph.el (calc-graph-show-dumb):
14269 * term/sun.el (terminal-init-sun):
14270 * term/ns-win.el (global-map):
14271 * progmodes/grep.el (grep-mode-map):
14272 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
14273 * mail/rmail.el (rmail-mode-map):
14274 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
14275
14276 * custom.el (custom-safe-themes, load-theme): Treat value of t for
14277 custom-safe-themes as special.
14278
14279 2011-10-01 Julien Danjou <julien@danjou.info>
14280
14281 * notifications.el (notifications-notify): Fix docstring.
14282
14283 2011-10-01 Per Starbäck <per@starback.se>
14284
14285 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
14286
14287 2011-09-30 Martin Rudalics <rudalics@gmx.at>
14288
14289 * startup.el (command-line-1): Fix last fix by inserting
14290 initial-scratch-message into *scratch* before displaying it.
14291 (Bug#9605) and (Bug#9636)
14292
14293 2011-09-29 Eli Zaretskii <eliz@gnu.org>
14294
14295 * simple.el (line-move): If auto-hscroll-mode is disabled and the
14296 window is hscrolled, move by logical lines. (Bug#9607)
14297 (line-move-visual): Update the doc string to the above effect.
14298
14299 2011-09-29 Martin Rudalics <rudalics@gmx.at>
14300
14301 * window.el (display-buffer-record-window): When WINDOW is the
14302 selected window use `point' instead of `window-point'. (Bug#9626)
14303
14304 * startup.el (command-line-1): Use insert-before-markers when
14305 inserting initial-scratch-message. (Bug#9605)
14306
14307 * help.el (help-window): Remove variable.
14308
14309 2011-09-29 Glenn Morris <rgm@gnu.org>
14310
14311 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
14312
14313 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
14314
14315 * descr-text.el (describe-char-categories): Accept category
14316 descriptions more than one line long.
14317
14318 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
14319
14320 * simple.el (delete-trailing-whitespace): Fix last change.
14321
14322 * progmodes/perl-mode.el (perl-syntax-propertize-function):
14323 Don't confuse "y => 3" as the beginning of a `y' operation.
14324
14325 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
14326 object has more than 4 slots (bug#9613).
14327
14328 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
14329
14330 * subr.el (with-output-to-temp-buffer):
14331 * net/quickurl.el (quickurl, quickurl-browse-url):
14332 Fix typos in docstrings.
14333
14334 2011-09-27 Eli Zaretskii <eliz@gnu.org>
14335
14336 * minibuffer.el (completion-styles)
14337 (completion-category-overrides): Cross reference each other in doc
14338 strings.
14339
14340 2011-09-27 Glenn Morris <rgm@gnu.org>
14341
14342 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
14343 to split-string. (Bug#9606)
14344
14345 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
14346
14347 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
14348 (bug#9615).
14349
14350 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
14351
14352 * emacs-lisp/package.el (list-packages): Fix echo area message.
14353
14354 2011-09-27 Leo Liu <sdl.web@gmail.com>
14355
14356 * ido.el (ido-read-internal): Accept cons cell HIST arg.
14357
14358 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
14359
14360 * net/dbus.el (dbus-unregister-object): Don't release services for
14361 registered signals. (Bug#9581)
14362
14363 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
14364
14365 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
14366 function that picks between cfengine 2 and 3 support
14367 automatically. Update docs accordingly.
14368
14369 2011-09-22 Kenichi Handa <handa@m17n.org>
14370
14371 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
14372 ZERO.
14373 (indian-itrans-v5-table-for-tamil): New variable.
14374 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
14375
14376 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
14377
14378 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
14379 that's true if the current command involved collapsing of text.
14380 It's reset to false at the beginning of the next command.
14381 (allout-post-command-business): Move the cursor to the beginning
14382 of entry if the cursor is hidden and collapsing activity just
14383 happened.
14384
14385 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
14386
14387 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
14388 tracking (Bug#9541).
14389
14390 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
14391
14392 * net/newst-reader.el (newsticker-html-renderer)
14393 (newsticker-show-news): Automatically load html rendering package
14394 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
14395 because w3m-fill-column is let-bound" and the error "Symbol's value
14396 as variable is void: w3m-fill-column".
14397
14398 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
14399
14400 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
14401 Release services only if they are defined. (Bug#9581)
14402
14403 2011-09-23 Richard Stallman <rms@gnu.org>
14404
14405 * textmodes/paragraphs.el (forward-sentence): For backwards case,
14406 distinguish start of paragraph from start of its text.
14407
14408 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
14409
14410 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
14411 (rmail-generate-viewer-buffer): Put that hook on view buffer.
14412 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
14413
14414 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
14415
14416 * international/mule-diag.el (mule-diag): Insert a newline after
14417 each fontset description.
14418
14419 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14420
14421 * simple.el (delete-trailing-whitespace):
14422 Document last change; simplify.
14423
14424 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
14425
14426 * simple.el (delete-trailing-whitespace): Also delete
14427 extra newlines at the end of the buffer.
14428
14429 * textmodes/picture.el: Make motion commands obey shift-select-mode.
14430 (picture-newline): Use forward-line so as to ignore fields.
14431
14432 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14433
14434 * subr.el (with-wrapper-hook): Fix edebug spec.
14435
14436 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
14437
14438 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
14439 (bug#4538).
14440
14441 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
14442
14443 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
14444 Fix nasty bug using wrong cached values.
14445
14446 2011-09-23 Alan Mackenzie <acm@muc.de>
14447
14448 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
14449
14450 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
14451
14452 * window.el (pop-to-buffer): Ensure right window is selected if we
14453 chose another frame.
14454
14455 2011-09-22 Eli Zaretskii <eliz@gnu.org>
14456
14457 * simple.el (what-cursor-position): Use get-char-property-change
14458 and next-single-char-property-change, to be able to show display
14459 properties that come from overlays as well as text properties.
14460
14461 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
14462
14463 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
14464
14465 * cmuscheme.el (run-scheme, switch-to-scheme):
14466 * cus-edit.el (customize-group, custom-buffer-create)
14467 (customize-browse):
14468 * info.el (info):
14469 * shell.el (shell):
14470 * mail/sendmail.el (mail):
14471 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
14472
14473 2011-09-22 Richard Stallman <rms@gnu.org>
14474
14475 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
14476 move back only to line beg, don't move back over blank lines.
14477
14478 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
14479
14480 * files.el (copy-directory): Set directory attributes only in case
14481 they could be retrieved from the source directory. (Bug#9565)
14482
14483 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
14484
14485 * progmodes/hideshow.el (hs-looking-at-block-start-p)
14486 (hs-find-block-beginning, hs-hide-level-recursive):
14487 Ignore strings as well as comments. (Bug#9502)
14488
14489 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
14490
14491 * progmodes/sql.el (sql-comint-postgres):
14492 Convert port number to a string. (Bug#9566)
14493
14494 2011-09-22 Martin Rudalics <rudalics@gmx.at>
14495
14496 * window.el (quit-window): Undedicate window when switching to
14497 previous buffer. Reported by Thierry Volpiatto
14498 <thierry.volpiatto@gmail.com>.
14499 (special-display-popup-frame): When popping up a new frame reset
14500 its previous buffers to nil. Simplify code.
14501
14502 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
14503
14504 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
14505 and process filter, as done also in `shell-command'.
14506
14507 2011-09-21 Martin Rudalics <rudalics@gmx.at>
14508
14509 * window.el (set-window-buffer-start-and-point):
14510 Call set-window-start with NOFORCE argument t.
14511 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
14512 (quit-window): Reword doc-string. Handle new format of
14513 quit-restore parameter. Don't delete window if it has a
14514 previous buffer we can show instead of the present one.
14515 (display-buffer-record-window): Rewrite using a new format for
14516 the quit-restore window parameter
14517 (special-display-popup-frame, display-buffer-same-window)
14518 (display-buffer-reuse-window, display-buffer-pop-up-frame)
14519 (display-buffer-pop-up-window, display-buffer-use-some-window):
14520 Adapt symbol passed to display-buffer-record-window.
14521 * help.el (help-window-setup): Handle new format of quit-restore
14522 parameter.
14523
14524 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14525
14526 * faces.el (face-list): Fix docstring (bug#9564).
14527
14528 * window.el (display-buffer--action-function-custom-type):
14529 Don't include internal functions in the Custom interface.
14530
14531 2011-09-20 Juri Linkov <juri@jurta.org>
14532
14533 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
14534 (Info-forward-node, Info-backward-node, Info-next-preorder)
14535 (Info-last-preorder): Use it. (Bug#9528)
14536
14537 2011-09-20 Juri Linkov <juri@jurta.org>
14538
14539 * info.el (Info-last-preorder): Visit last menu item only when
14540 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
14541
14542 2011-09-20 Julien Danjou <julien@danjou.info>
14543
14544 * password-cache.el (password-cache-remove): Remove entries even if the
14545 value is nil, so that password with a nil value (negative caching) is
14546 possible to invalidate.
14547
14548 2011-09-20 Lawrence Mitchell <wence@gmx.li>
14549
14550 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
14551 all whitespace around breakpoint. (Bug#9553)
14552 (f90-find-breakpoint): Only break at whitespace inside a comment.
14553
14554 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
14555
14556 * minibuffer.el (completion-file-name-table): Keep track of errors.
14557 (completion-table-with-predicate): Handle the case where pred1 is nil.
14558 * pcomplete.el (pcomplete-completions-at-point): Simplify.
14559
14560 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14561
14562 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
14563 (debugger-return-value): Signal an error if the debugging context does
14564 not await any return value.
14565
14566 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
14567 * image-mode.el (image-toggle-display-text)
14568 (image-toggle-display-image): Stay away from evil `intangible'.
14569
14570 2011-09-19 Leo Liu <sdl.web@gmail.com>
14571
14572 * replace.el (occur-revert-arguments): Make it permanent-local.
14573 (occur-mode): Don't call font-lock-defontify.
14574
14575 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
14576
14577 * net/ldap.el (ldap-search-internal): Don't push empty search
14578 result (Bug#9508).
14579
14580 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14581
14582 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
14583
14584 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
14585
14586 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
14587 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
14588
14589 2011-09-18 Juri Linkov <juri@jurta.org>
14590
14591 * buff-menu.el (Buffer-menu-mode-map):
14592 * dired.el (dired-mode-map):
14593 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
14594 (lisp-interaction-mode-map):
14595 * emacs-lisp/package.el (package-menu-mode-map):
14596 * epa.el (epa-key-list-mode-map):
14597 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
14598 (menu-bar-options-menu):
14599 * outline.el (outline-mode-menu-bar-map):
14600 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
14601 * vc/vc-dir.el (vc-dir-menu-map):
14602 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
14603 Capitalize non-function content words in menu item strings.
14604
14605 * dired.el (dired-mode-map): Add menu item for
14606 `image-dired-dired-toggle-marked-thumbs'.
14607
14608 2011-09-18 Juri Linkov <juri@jurta.org>
14609
14610 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
14611 to `isearch-case-fold-search' and restore its original value
14612 after the `isearch-mode' call.
14613
14614 2011-09-18 Juri Linkov <juri@jurta.org>
14615
14616 * progmodes/grep.el (grep-process-setup): Don't check code for 1
14617 because `zgrep' returns 1 for successful matches (bug#9226).
14618
14619 2011-09-18 Juri Linkov <juri@jurta.org>
14620
14621 * info.el (Info-extract-menu-node-name): Check the second match
14622 for empty string (second test-case of bug#9528).
14623 (Info-last-preorder): Let-bind `Info-history' to nil to not add
14624 intermediate nodes to the history (first test-case of bug#9528).
14625
14626 2011-09-18 Juri Linkov <juri@jurta.org>
14627
14628 * info.el (Info-mode-syntax-table): New variable.
14629 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
14630
14631 2011-09-18 Juri Linkov <juri@jurta.org>
14632
14633 * info.el (Info-file-supports-index-cookies):
14634 Increment line-beginning-position's arg from 3 to 4 because makeinfo
14635 outputs one more line for long file names (bug#4142).
14636
14637 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14638
14639 * newcomment.el (comment-normalize-vars): If prompting for
14640 comment-start, set comment-start-skip too (Bug#8424).
14641
14642 2011-09-18 Johan Bockgård <bojohan@gnu.org>
14643
14644 * icomplete.el: Fix previous fix of Bug#5849.
14645 (icomplete-mode): Don't set completion-show-inline-help.
14646 (icomplete-minibuffer-setup): Set completion-show-inline-help
14647 locally during icompletion.
14648
14649 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14650
14651 * woman.el (woman2-process-escapes): Don't delete unrecognized
14652 escapes (Bug#7843).
14653
14654 * files.el (inhibit-first-line-modes-regexps): Add image files.
14655 (hack-local-variables-prop-line): Return nil for malformed
14656 prop-lines (Bug#9044).
14657
14658 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
14659
14660 * net/tramp.el (top): Don't require 'shell.
14661 (tramp-methods): Fix docstring.
14662 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
14663 Return complete remote file name. Handle "smb" case.
14664 Use `tramp-tmpdir', if defined for the respective method.
14665 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
14666
14667 * net/tramp-compat.el (top): Require 'shell.
14668
14669 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
14670 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
14671 `tramp-current-host'.
14672 (tramp-get-remote-tmpdir): Remove.
14673
14674 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
14675 `tramp-tmpdir' entries.
14676 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
14677 (tramp-smb-handle-file-attributes): Ignore errors.
14678 (tramp-smb-wait-for-output): Check also for process end.
14679
14680 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
14681
14682 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
14683 when sending QUIT (bug#9312).
14684
14685 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
14686
14687 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
14688 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
14689 occur-mode-display-occurrence.
14690 (occur-edit-mode): Add usage message.
14691 (occur-cease-edit): New command.
14692 (occur-after-change-function): Use text properties to find the
14693 position of the prefix text.
14694 (occur-engine): Set stickiness of prefix text properties.
14695
14696 2011-09-17 Glenn Morris <rgm@gnu.org>
14697
14698 * progmodes/etags.el (complete-tag):
14699 Fix call to completion-in-region. (Bug#9526)
14700
14701 2011-09-17 Juri Linkov <juri@jurta.org>
14702
14703 * textmodes/ispell.el (ispell-word): Add to the error message
14704 the word, ispell program name and current dictionary (bug#9121).
14705 (ispell-tex-arg-end): Capitalize "error" in the error message.
14706
14707 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
14708
14709 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
14710 check. (Bug#4251)
14711
14712 2011-09-17 Juri Linkov <juri@jurta.org>
14713
14714 * window.el (window-safe-min-height, window-safe-min-width):
14715 Fix typos (followup to bug#9522).
14716
14717 2011-09-17 Sven Joachim <svenjoac@gmx.de>
14718
14719 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
14720
14721 2011-09-16 Eli Zaretskii <eliz@gnu.org>
14722
14723 * simple.el (line-move): If goal-column is set, move by logical
14724 lines, not by display lines. (Bug#971)
14725 (next-line, previous-line, goal-column, line-move-visual): Doc fix
14726 to reflect the above change.
14727
14728 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14729
14730 * image.el (imagemagick-register-types): Use regexp-opt.
14731
14732 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14733
14734 * window.el (display-buffer-base-action): Rename from
14735 display-buffer-default-action. Make default value empty.
14736 (display-buffer-overriding-action): Convert to defvar.
14737 (display-buffer-fallback-action): New var.
14738
14739 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14740
14741 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
14742 declaration.
14743 (package--add-to-archive-contents): If there is a duplicate entry
14744 with an older version, remove it.
14745 (package-menu-mark-delete, package-menu-mark-install)
14746 (package-menu-mark-unmark): Make unused args optional.
14747 (package-menu-mark-obsolete-for-deletion):
14748 Use package-menu-get-status instead of a regexp search.
14749 (package-menu-get-status): Use tabulated-list-entry.
14750 (package-menu-mark-upgrades): New command.
14751 (package-menu-mode-map): Bind it to U. Add it to menu bar.
14752 (package-menu-execute): Do installation before deletion.
14753 (package-menu-refresh, package-menu-execute): Use derived-mode-p
14754 instead of checking major-mode.
14755 (package-menu--find-upgrades): New function.
14756
14757 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14758
14759 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
14760 passwords in the log buffer.
14761 (smtpmail-process-filter): Update the process marker so that the
14762 "broken by peer" status message is inserted in the right place.
14763
14764 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14765
14766 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
14767 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
14768 bibtex-completion-at-point-function.
14769 (bibtex-completion-at-point-function): Use them.
14770
14771 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
14772
14773 * mpc.el (mpc-constraints-tag-lookup): New function.
14774 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
14775 also to browser "album|playlist".
14776
14777 2011-09-14 Juri Linkov <juri@jurta.org>
14778
14779 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
14780 (isearch-edit-string): Use length of `isearch-string' when
14781 `isearch-fail-pos' returns nil.
14782 (isearch-message): Remove duplicate code and call
14783 `isearch-fail-pos' with arg `t'.
14784
14785 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
14786
14787 * replace.el (occur-mode-goto-occurrence): Don't force using other
14788 window (Bug#9499).
14789
14790 * dired-aux.el (dired-do-chmod): Don't provide initial input.
14791
14792 2011-09-14 Martin Rudalics <rudalics@gmx.at>
14793
14794 * window.el (display-buffer-window): Remove.
14795 (display-buffer-record-window): Use help-setup window parameter
14796 instead of variable display-buffer-window.
14797 (display-buffer-function, special-display-buffer-names)
14798 (special-display-function): Mention help-setup parameter instead
14799 of display-buffer-window in doc-string.
14800 * help.el (help-window-setup): New argument help-window.
14801 Use help-window-setup parameter instead of display-buffer-window.
14802 Reword some messages.
14803 (with-help-window): Pass window used for displaying the buffer
14804 to help-window-setup. Don't set display-buffer-window.
14805
14806 2011-09-13 Glenn Morris <rgm@gnu.org>
14807
14808 * emacs-lisp/debug.el (debugger-make-xrefs):
14809 Preserve point. (Bug#9462)
14810
14811 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14812
14813 * window.el (window-deletable-p): Use next-frame.
14814
14815 2011-09-13 Martin Rudalics <rudalics@gmx.at>
14816
14817 * window.el (window-auto-delete): Remove.
14818 (window-deletable-p): Remove argument FORCE. Don't deal with
14819 dedication and previous buffers.
14820 (switch-to-prev-buffer): Don't delete window.
14821 (delete-windows-on): Delete a window's frame if and only if the
14822 window is dedicated.
14823 (replace-buffer-in-windows): Delete buffer's window or frame if
14824 and only if window is dedicated.
14825 (quit-window): Handle quit-restore as before last change.
14826 (bury-buffer): Delete window only if window-deletable-p returns t.
14827
14828 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14829
14830 * window.el (window-deletable-p): Never delete the last frame on a
14831 given terminal.
14832
14833 2011-09-13 Glenn Morris <rgm@gnu.org>
14834
14835 * help.el (describe-key-briefly): Copy previous standard-output change.
14836
14837 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
14838
14839 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
14840
14841 2011-09-13 Glenn Morris <rgm@gnu.org>
14842
14843 * emacs-lisp/lisp-mode.el (lisp-indent-function):
14844 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
14845
14846 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
14847
14848 * dired-aux.el (dired-mark-read-string): Don't return default
14849 value on empty input (Bug#9361).
14850 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
14851 Omit initial minibuffer contents.
14852 (dired-do-chmod): Signal an error on empty input.
14853 (dired-mark-read-string): Don't return default on empty input.
14854
14855 * files.el (file-modes-symbolic-to-number): Doc fix.
14856
14857 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14858
14859 * international/mule-cmds.el (ucs-completions): Remove.
14860 (read-char-by-name): Use complete-with-action instead; add metadata.
14861
14862 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14863
14864 * window.el (display-buffer--action-function-custom-type)
14865 (display-buffer--action-custom-type): New vars.
14866 (display-buffer-alist, display-buffer-default-action)
14867 (display-buffer-overriding-action): Add defcustom types.
14868
14869 * frame.el (delete-other-frames): Doc fix (Bug#276).
14870
14871 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14872
14873 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
14874
14875 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14876
14877 Change modes that used same-window-* vars to use switch-to-buffer.
14878
14879 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
14880 Use switch-to-buffer.
14881
14882 * cus-edit.el (customize-group, custom-buffer-create)
14883 (customize-browse, custom-buffer-create-other-window):
14884 Use switch-to-buffer or switch-to-buffer-other-window.
14885
14886 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
14887 (Info-prev, Info-up, Info-speedbar-goto-node)
14888 (info-display-manual): Use switch-to-buffer.
14889 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
14890
14891 * mail/sendmail.el (mail): Use switch-to-buffer.
14892 (mail-recover): Use switch-to-buffer-other-window.
14893
14894 * cmuscheme.el (run-scheme, switch-to-scheme):
14895 * ielm.el (ielm):
14896 * shell.el (shell):
14897 * net/rlogin.el (rlogin):
14898 * net/telnet.el (telnet, rsh):
14899 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
14900
14901 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
14902
14903 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
14904
14905 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14906
14907 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
14908 so don't mention it (bug#9301).
14909 (dired-sort-toggle-or-edit): Clarify string further.
14910
14911 * faces.el (face-spec-set-match-display): Make `(type graphic)'
14912 match `x', `w32' and `ns', like the manual says (bug#9029).
14913
14914 * subr.el (eval-after-load): Doc string clarification (bug#9125).
14915 (process-kill-buffer-query-function): Mention the buffer name in
14916 the query.
14917
14918 * image-mode.el (image-next-line): The line parameter is mandatory
14919 (bug#9258).
14920
14921 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
14922 which can be useful (bug#9301).
14923
14924 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
14925
14926 * subr.el (match-string): Mention that the current buffer should
14927 be the same as the search was done in (bug#9282).
14928
14929 * facemenu.el: Disable the remove-* commands if the mark isn't
14930 active (bug#9162).
14931
14932 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14933
14934 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
14935 of display-buffer.
14936 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
14937
14938 * replace.el (occur-mode-goto-occurrence)
14939 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
14940 and display-buffer.
14941
14942 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
14943 display-buffer.
14944
14945 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
14946 special-display and same-window variables.
14947 (mail-other-window): Use switch-to-buffer-other-window.
14948 (mail-other-frame): USe switch-to-buffer-other-frame.
14949
14950 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
14951 Use display-buffer-other-frame.
14952 (gdb-display-gdb-buffer): Use pop-to-buffer.
14953
14954 * progmodes/gud.el (gud-goto-info): Use info-other-window.
14955
14956 * progmodes/python.el: Don't set same-window-buffer-names.
14957
14958 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
14959
14960 * window.el (display-buffer-alist): Add *Python*.
14961
14962 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14963
14964 * window.el (display-buffer-alist): Add entry for buffers
14965 previously handled same-window-*.
14966 (display-buffer-alist, display-buffer-default-action)
14967 (display-buffer-overriding-action): Mark as risky.
14968 (display-buffer-alist): Document action function changes.
14969 (display-buffer--same-window-action)
14970 (display-buffer--other-frame-action): New variables.
14971 (switch-to-buffer, display-buffer-other-frame): Use them.
14972 (display-buffer): Rename reuse-frame entry to reusable-frames.
14973 (display-buffer-reuse-selected-window): Function deleted.
14974 (display-buffer-reuse-window): Handle reusable-frames alist entry.
14975 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
14976 (display-buffer-special): New function.
14977 (display-buffer--maybe-pop-up-frame-or-window): Rename from
14978 display-buffer-reuse-or-pop-window. Split off special-display
14979 part into display-buffer-special.
14980 (display-buffer-use-some-window): Don't perform any special
14981 pop-up-frames handling.
14982 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
14983 (display-buffer--maybe-same-window): Rename from
14984 display-buffer-maybe-same-window.
14985
14986 * info.el: Don't set same-window-regexps.
14987 (info-setup): New function.
14988 (info-other-window, info): Call it.
14989
14990 * cus-edit.el: Don't set same-window-regexps.
14991 (customize-group): New argument.
14992 (customize-group-other-window): Use it.
14993 (customize-face, customize-face-other-window): Likewise.
14994 (custom-buffer-create-other-window): Use pop-to-buffer directly.
14995
14996 * net/rlogin.el:
14997 * net/telnet.el:
14998 * progmodes/gud.el: Don't set same-window-regexps.
14999
15000 * cmuscheme.el:
15001 * ielm.el:
15002 * shell.el:
15003 * mail/sendmail.el:
15004 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
15005
15006 2011-09-10 Juri Linkov <juri@jurta.org>
15007
15008 * isearch.el (isearch-edit-string): Remove obsolete mention of
15009 `C-w' (`isearch-yank-word-or-char') from docstring.
15010 (isearch-query-replace): Fix typo in docstring (bug#9466).
15011
15012 2011-09-10 Juri Linkov <juri@jurta.org>
15013
15014 * paren.el (show-paren-function): Don't show escaped parens.
15015 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
15016
15017 2011-09-10 Eli Zaretskii <eliz@gnu.org>
15018
15019 * mail/sendmail.el (mml-to-mime, mml-attach-file)
15020 (mm-default-file-encoding): Remove autoload forms, they are
15021 replaced with autoload cookies in mml.el and mm-encode.el.
15022 (mail-add-attachment): New command.
15023 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
15024 (mail-mode): Mention mail-insert-file and mail-add-attachment in
15025 the doc string.
15026 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
15027
15028 2011-09-10 Reuben Thomas <rrt@sc3d.org>
15029
15030 * simple.el (count-words-region): Use buffer if there's no region
15031 (bug#9429).
15032
15033 2011-09-09 Juri Linkov <juri@jurta.org>
15034
15035 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
15036 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
15037 (wdired-isearch-filter-read-only): New function. (Bug#6362)
15038
15039 2011-09-09 Alan Mackenzie <acm@muc.de>
15040
15041 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
15042 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
15043
15044 2011-09-09 Eli Zaretskii <eliz@gnu.org>
15045
15046 Fix for Savannah bug#9392.
15047 * simple.el (mail-encode-mml): New defvar.
15048
15049 * mail/rmail.el (mail-encode-mml): Add a defvar.
15050 (rmail-enable-mime-composing): Default to t.
15051 (rmail-forward): Use MIME method of forwarding only if both
15052 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
15053 Set mail-encode-mml non-nil if the MIME method was used.
15054
15055 * mail/sendmail.el (mml-to-mime): Add autoload form.
15056 (mail-encode-mml): Add a defvar.
15057 (mail-mode): Make mail-encode-mml buffer-local and initialize it
15058 to nil.
15059 (mail-send): If mail-encode-mml is non-nil, run the outgoing
15060 message through mml-to-mime, and reset mail-encode-mml to nil.
15061
15062 2011-09-09 Glenn Morris <rgm@gnu.org>
15063
15064 * woman.el (woman-if-body): When processing an .el block,
15065 do not delete the next .el block as well. (Bug#9447)
15066 (woman-special-characters): Add oq, cq, and hy characters.
15067
15068 2011-09-08 Martin Rudalics <rudalics@gmx.at>
15069
15070 * window.el (window-deletable-p): Make sure window is live before
15071 invoking window-prev-buffers.
15072
15073 2011-09-08 Leo Liu <sdl.web@gmail.com>
15074
15075 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
15076
15077 2011-09-08 Juri Linkov <juri@jurta.org>
15078
15079 * progmodes/compile.el (compilation-environment): Make it
15080 a defcustom (bug#8340).
15081
15082 2011-09-08 Martin Rudalics <rudalics@gmx.at>
15083
15084 * window.el (frame-auto-delete): Rename to window-auto-delete.
15085 Make it control auto-deletion of windows and/or frames.
15086 (window-deletable-p): New argument FORCE. Rewrite conditions
15087 for deleting window/frame. (Bug#9419)
15088 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
15089 Rewrite handling of case when window/frame can be deleted.
15090 (delete-windows-on): Call window-deletable-p with new FORCE
15091 argument t. (Bug#9456)
15092
15093 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
15094
15095 * help-mode.el (help-mode): Restore autoload.
15096
15097 2011-09-07 Juri Linkov <juri@jurta.org>
15098
15099 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
15100 `compilation-environment'. Set buffer-local
15101 `compilation-environment' to `thisenv' later after (funcall mode).
15102 (Bug#8340)
15103
15104 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
15105 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
15106 instead of replacing its value. (Bug#8340)
15107
15108 2011-09-07 Juri Linkov <juri@jurta.org>
15109
15110 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
15111 based on text properties put by `grep-filter' instead of matching
15112 escape sequences.
15113 (grep-mode): Set buffer-local `compilation-error-screen-columns'
15114 to the value of `grep-error-screen-columns' (bug#9438).
15115
15116 2011-09-07 Juri Linkov <juri@jurta.org>
15117
15118 * simple.el (next-error-highlight, next-error-highlight-no-select):
15119 Doc fix (bug#9432).
15120
15121 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
15122
15123 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15124 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
15125
15126 2011-09-07 Leo Liu <sdl.web@gmail.com>
15127
15128 * net/rcirc.el (rcirc-mode): Conditionally initialize
15129 rcirc-input-ring.
15130
15131 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
15132
15133 * emacs-lisp/find-func.el (find-function-C-source): Only set
15134 find-function-C-source-directory after checking that we found a source
15135 file there (bug#9440).
15136
15137 2011-09-06 Alan Mackenzie <acm@muc.de>
15138
15139 * isearch.el (isearch-other-meta-char): Wherever a key list is
15140 unread, "unread" the prefix arg, too. This fixes bug #8901.
15141
15142 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
15143
15144 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
15145
15146 2011-09-05 Juri Linkov <juri@jurta.org>
15147
15148 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
15149
15150 2011-09-05 Juri Linkov <juri@jurta.org>
15151
15152 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
15153 keeping point where processing of grep matches begins, and
15154 continue to delete remaining escape sequences from the same point.
15155 (grep-filter): Make leading zero optional in "0?1;31m" because
15156 git-grep emits "\033[1;31m" escape sequences unlike expected
15157 "\033[01;31m" as GNU Grep does (bug#9408).
15158 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
15159
15160 2011-09-05 Juri Linkov <juri@jurta.org>
15161
15162 * subr.el (y-or-n-p): Capitalize "yes".
15163
15164 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
15165
15166 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
15167 `tramp-cache-unload-hook' where appropriate.
15168 (tramp-methods): Rename `tramp-remote-sh' to
15169 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
15170 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
15171
15172 * net/tramp-sh.el (top): Don't require 'shell.
15173 (tramp-methods): Add `tramp-remote-shell' and
15174 `tramp-remote-shell-args' entries.
15175 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
15176 (tramp-sh-handle-shell-command): Remove.
15177 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
15178 Use `tramp-remote-shell'.
15179
15180 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
15181
15182 * mail/sendmail.el (sendmail-query-once-function): Delete.
15183 (sendmail-query-once): Save directly to send-mail-function.
15184 Update message-send-mail-function too.
15185
15186 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
15187
15188 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
15189
15190 * progmodes/python.el (python-mode-map): Use correct function to
15191 start python interpreter from menu-bar (as reported by Geert
15192 Kloosterman).
15193 (inferior-python-mode-map): Fix typo.
15194 (python-shell-map): Remove.
15195
15196 2011-09-03 Deniz Dogan <deniz@dogan.se>
15197
15198 * net/rcirc.el (rcirc-print): Simplify code for
15199 rcirc-scroll-show-maximum-output. There is no need to walk
15200 through all windows to find the right one.
15201
15202 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
15203
15204 * help.el (help-return-method): Doc fix.
15205
15206 2011-09-03 Martin Rudalics <rudalics@gmx.at>
15207
15208 * window.el (window-deletable-p): Don't return a non-nil value
15209 when there's a buffer that was shown in the window before.
15210 (Bug#9419)
15211 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15212 Set window's previous buffers to nil.
15213
15214 2011-09-03 Eli Zaretskii <eliz@gnu.org>
15215
15216 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
15217 newline before and after the tag line, so it doesn't interfere
15218 with determining the paragraph direction of bidirectional text.
15219
15220 2011-09-03 Leo Liu <sdl.web@gmail.com>
15221
15222 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
15223
15224 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
15225
15226 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
15227 (pop-to-buffer): Change interactive spec. Pass second argument
15228 directly to display-buffer.
15229 (display-buffer): Fix interactive spec. Use functionp to
15230 distinguish between a function and a list of functions.
15231
15232 * abbrev.el (edit-abbrevs):
15233 * arc-mode.el (archive-extract):
15234 * autoinsert.el (auto-insert):
15235 * bookmark.el (bookmark-bmenu-list):
15236 * files.el (find-file):
15237 * view.el (view-buffer):
15238 * progmodes/compile.el (compilation-goto-locus):
15239 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
15240
15241 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
15242
15243 * window.el (display-buffer-alist): Doc fix.
15244 (display-buffer): Add docstring. Don't treat
15245 display-buffer-default specially.
15246 (display-buffer-reuse-selected-window)
15247 (display-buffer-same-window, display-buffer-maybe-same-window)
15248 (display-buffer-reuse-window, display-buffer-pop-up-frame)
15249 (display-buffer-pop-up-window)
15250 (display-buffer-reuse-or-pop-window)
15251 (display-buffer-use-some-window): New functions.
15252 (display-buffer-default-action): Use them.
15253 (display-buffer-default): Delete.
15254 (pop-to-buffer-1): Fix choice of actions.
15255
15256 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
15257
15258 * minibuffer.el (completion--insert-strings): Don't get confused by
15259 completion entries that end with an LF char.
15260
15261 2011-09-01 Eli Zaretskii <eliz@gnu.org>
15262
15263 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
15264
15265 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
15266
15267 * window.el (display-buffer): Restore interactive spec.
15268 (display-buffer-same-window, display-buffer-other-window):
15269 New functions.
15270 (pop-to-buffer-1): New function. Use the above.
15271 (pop-to-buffer, pop-to-buffer-same-window): Use it.
15272 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
15273
15274 * view.el (view-buffer-other-window, view-buffer-other-frame):
15275 Just use pop-to-buffer.
15276
15277 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15278
15279 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
15280
15281 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
15282
15283 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
15284
15285 2011-08-31 Richard Stallman <rms@gnu.org>
15286
15287 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
15288 of the separation of rmail-view-buffer from rmail-buffer.
15289 If you say no to "replace original", the decrypt is in the
15290 view buffer. If you say yes, the decrypt goes into the
15291 rmail buffer also.
15292
15293 2011-08-31 Martin Rudalics <rudalics@gmx.at>
15294
15295 * window.el (display-buffer-window): Rewrite doc-string.
15296 (display-buffer-record-window): New function.
15297 (display-buffer-macro-specifiers)
15298 (display-buffer-even-window-sizes, display-buffer-set-height)
15299 (display-buffer-set-width, display-buffer-in-window)
15300 (display-buffer-reuse-window, display-buffer-split-specifiers)
15301 (display-buffer-side-specifiers, display-buffer-split-window-1)
15302 (display-buffer-split-window, display-buffer-split-atom-window)
15303 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15304 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
15305 (display-buffer-other-window-means-other-frame)
15306 (display-buffer-normalize-special)
15307 (display-buffer-normalize-default)
15308 (display-buffer-normalize-argument)
15309 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
15310 (display-buffer-normalize-specifiers, display-buffer-frame)
15311 (display-buffer-same-window, display-buffer-same-frame)
15312 (display-buffer-other-window)
15313 (display-buffer-same-frame-other-window)
15314 (display-buffer-other-frame, pop-to-buffer-same-window)
15315 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
15316 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
15317 (switch-to-buffer-same-frame)
15318 (switch-to-buffer-other-window-same-frame)
15319 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
15320 (display-buffer-alist-set-1, display-buffer-alist-set-2)
15321 (display-buffer-alist-set): Remove.
15322 (display-buffer-function, special-display-buffer-names)
15323 (special-display-regexps, special-display-function):
15324 In doc-string refer to display-buffer-window and quit-restore
15325 parameter.
15326 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
15327 (special-display-frame-alist, special-display-popup-frame)
15328 (same-window-buffer-names, same-window-regexps, same-window-p)
15329 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
15330 (split-window-preferred-function, split-height-threshold)
15331 (split-width-threshold, window-splittable-p)
15332 (split-window-sensibly, window--try-to-split-window)
15333 (window--frame-usable-p, even-window-heights)
15334 (window--even-window-heights, window--display-buffer-1)
15335 (window--display-buffer-2, display-buffer-other-frame):
15336 Restore old Emacs 23 code, order and doc-strings where applicable.
15337 (display-buffer-default, display-buffer-assq-regexp): New functions.
15338 (display-buffer-alist): Rewrite doc-string.
15339 (display-buffer-default-action)
15340 (display-buffer-overriding-action): New variables.
15341 (display-buffer, switch-to-buffer): Rewrite.
15342 (pop-to-buffer): Restore Emacs 23 behavior but use
15343 window-normalize-buffer-to-display.
15344 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
15345 Restore Emacs 23 behavior but use
15346 window-normalize-buffer-to-switch-to.
15347 (pop-to-buffer-same-window): Rewrite.
15348 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
15349 Rewrite using Emacs 23 options.
15350
15351 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
15352
15353 * net/tramp.el (tramp-root-regexp): Remove.
15354 (tramp-completion-file-name-regexp-unified)
15355 (tramp-completion-file-name-regexp-separate)
15356 (tramp-completion-file-name-regexp-url): Don't use leading volume
15357 letter on w32 systems. (Bug#5303, Bug#9311)
15358 (tramp-drop-volume-letter): Simplify definition.
15359 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
15360
15361 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15362
15363 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
15364 (bug#9356).
15365
15366 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
15367
15368 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
15369
15370 2011-08-29 Juri Linkov <juri@jurta.org>
15371
15372 * isearch.el (isearch-done): Don't display message "Mark saved"
15373 when arg `edit' is non-nil to prevent its flicker in the echo area.
15374
15375 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15376
15377 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
15378 obsolete packages for deletion.
15379
15380 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
15381
15382 * help-mode.el (help-mode-map): Add special-mode-map to parent.
15383 (help-mode): Derive help-mode from special-mode. Don't invoke
15384 view-mode from help-mode.
15385 (help-xref-override-view-map): Remove.
15386 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
15387 view-mode is not used anymore.
15388
15389 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15390
15391 * server.el (server-port): Doc fix.
15392
15393 * cus-theme.el (custom-theme-choose-mode): Inherit from
15394 special-mode (Bug#9124).
15395 (custom-theme-choose-mode-map): Add special-mode to parent.
15396
15397 2011-08-28 Alan Mackenzie <acm@muc.de>
15398
15399 * progmodes/cc-fonts.el
15400 (c-make-font-lock-BO-decl-search-function): New function.
15401 (c-basic-matchers-after - "Fontify the clauses after various
15402 keywords"): Extract the three keyword lists for the 3 erroneous
15403 constructs from the list of four, and use the new function above
15404 in place of an old one.
15405
15406 2011-08-28 Deniz Dogan <deniz@dogan.se>
15407
15408 * net/rcirc.el (rcirc-insert-prev-input)
15409 (rcirc-insert-next-input): Remove unused argument.
15410
15411 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15412
15413 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
15414
15415 2011-08-27 Alan Mackenzie <acm@muc.de>
15416
15417 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
15418 handle function pointer parameters properly.
15419
15420 2011-08-27 Martin Rudalics <rudalics@gmx.at>
15421
15422 * window.el (display-buffer-reuse-window): Fix case where
15423 selected window was reused with non-nil OTHER-WINDOW argument.
15424 (Bug#9381)
15425
15426 2011-08-27 Deniz Dogan <deniz@dogan.se>
15427
15428 * net/rcirc.el (rcirc-check-auth-status): Adding support for
15429 oftc's NickServ messages.
15430
15431 2011-08-27 Glenn Morris <rgm@gnu.org>
15432
15433 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
15434
15435 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
15436
15437 * emacs-lisp/package.el (package-install): Call package-initialize
15438 if called interactively.
15439
15440 2011-08-26 Leo Liu <sdl.web@gmail.com>
15441
15442 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
15443
15444 2011-08-25 Juri Linkov <juri@jurta.org>
15445
15446 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
15447 `search-whitespace-regexp' (bug#9364).
15448
15449 2011-08-25 Juri Linkov <juri@jurta.org>
15450
15451 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
15452 `regexp-search-ring' to their global values to protect from
15453 updating by `read-from-minibuffer' (bug#9185).
15454
15455 2011-08-25 Juri Linkov <juri@jurta.org>
15456
15457 * textmodes/ispell.el (ispell-command-loop): Add newline
15458 at the end of the "Use option `i'..." line.
15459
15460 2011-08-25 Juri Linkov <juri@jurta.org>
15461
15462 * battery.el (display-battery-mode): If `battery-status-function'
15463 or `battery-mode-line-format' is nil, display the message and set
15464 `display-battery-mode' to nil (bug#9363).
15465
15466 2011-08-25 Eli Zaretskii <eliz@gnu.org>
15467
15468 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
15469 bidi-string-mark-left-to-right; they are unnecessary now.
15470
15471 2011-08-25 Deniz Dogan <deniz@dogan.se>
15472
15473 * net/quickurl.el: Documentation typo fixes.
15474
15475 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
15476
15477 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
15478
15479 2011-08-25 Glenn Morris <rgm@gnu.org>
15480
15481 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
15482
15483 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
15484 (smtpmail-via-smtp): Handle nil response from smtp.
15485
15486 2011-08-24 Juri Linkov <juri@jurta.org>
15487
15488 * proced.el (proced-marked): Inherit from `error' instead of
15489 `font-lock-warning-face'.
15490
15491 * ibuffer.el (ibuffer-marked-face): Change default face from
15492 `font-lock-warning-face' to `warning'.
15493 (ibuffer-deletion-face): Change default face from
15494 `font-lock-type-face' to `error'.
15495
15496 * battery.el (battery-update): Use the face `error' instead of
15497 `font-lock-warning-face' (bug#6117).
15498
15499 2011-08-24 Juri Linkov <juri@jurta.org>
15500
15501 * faces.el (success): Change face color from "Green3" to
15502 "ForestGreen" on light background (bug#9353).
15503
15504 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
15505
15506 * window.el (quit-window): Rename from quit-restore-window.
15507 Use same arglist as old quit-window.
15508 (frame-auto-delete): Doc fix.
15509
15510 * view.el (view-mode-exit): Use quit-window.
15511
15512 2011-08-24 Juri Linkov <juri@jurta.org>
15513
15514 * isearch.el (isearch-ring-adjust1): Start visiting previous
15515 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
15516 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
15517 for empty search string (when the last search string is reused
15518 automatically) to adjust the isearch ring to the last element and
15519 prepare the correct index for further M-p commands (bug#9185).
15520
15521 2011-08-24 Kenichi Handa <handa@m17n.org>
15522
15523 * international/ucs-normalize.el: If decomposition property of
15524 CHAR is the default one (i.e. a list of CHAR itself), treat it as
15525 nil.
15526 (nfd, nfkd): Likewise.
15527
15528 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
15529
15530 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
15531 from process filters aren't reliably transmitted to the surrounding
15532 accept-process-output.
15533 (mpc-proc-check): New function.
15534 (mpc-proc-sync): Use it (bug#8293)
15535
15536 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15537
15538 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
15539 Add compatibility functions (bug#9313).
15540
15541 2011-08-23 Eli Zaretskii <eliz@gnu.org>
15542
15543 * cus-start.el (all): Add entry for bidi-paragraph-direction.
15544
15545 * international/uni-bidi.el: Regenerate.
15546
15547 2011-08-23 Kenichi Handa <handa@m17n.org>
15548
15549 * international/charprop.el:
15550 * international/uni-bidi.el:
15551 * international/uni-category.el:
15552 * international/uni-combining.el:
15553 * international/uni-comment.el:
15554 * international/uni-decimal.el:
15555 * international/uni-decomposition.el:
15556 * international/uni-digit.el:
15557 * international/uni-lowercase.el:
15558 * international/uni-mirrored.el:
15559 * international/uni-name.el:
15560 * international/uni-numeric.el:
15561 * international/uni-old-name.el:
15562 * international/uni-titlecase.el:
15563 * international/uni-uppercase.el: Regenerate.
15564
15565 2011-08-23 Martin Rudalics <rudalics@gmx.at>
15566
15567 * help.el (help-window-setup): Fix message displayed when other
15568 window is reused. (Bug#9341)
15569
15570 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15571
15572 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
15573 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
15574
15575 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
15576 Mark obsolete.
15577 * shell.el (shell-parse-pcomplete-arguments): New function.
15578 (shell-completion-vars): Use it instead (bug#9160).
15579
15580 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
15581
15582 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
15583 strings and comments (bug#9333).
15584
15585 * emacs-lisp/debug.el (debug-arglist): New function.
15586 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
15587 (debug-on-entry-1): Handle interpreted closures (bug#9120).
15588
15589 2011-08-22 Juri Linkov <juri@jurta.org>
15590
15591 * progmodes/compile.el (compilation-mode-font-lock-keywords):
15592 Revert regexp that highlights output switches to its old
15593 pre-2010-10-28 value and remove one `?' from it (bug#9319).
15594
15595 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
15596 to check for empty output (bug#9226).
15597
15598 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
15599
15600 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
15601 symbol-constituent as the default, as that stops font-lock from
15602 working properly (Bug#8843).
15603
15604 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15605
15606 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
15607 `coding-system-for-*' around the process open call to avoid
15608 auth-source side effects.
15609 (smtpmail-try-auth-methods): Expand the secret password.
15610 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
15611 probe hangs.
15612
15613 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15614
15615 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
15616
15617 * emacs-lisp/find-func.el (find-function-noselect): New arg
15618 lisp-only.
15619
15620 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
15621 signal an error for built-in functions (Bug#6664).
15622
15623 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15624
15625 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
15626 (smtpmail-try-auth-methods): Use it.
15627
15628 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15629
15630 * font-lock.el (font-lock-fontify-region)
15631 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
15632 (font-lock-default-unfontify-buffer)
15633 (font-lock-default-fontify-region)
15634 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
15635
15636 * progmodes/compile.el (compilation-error-properties):
15637 Fix confusion between file struct and message struct (Bug#9319).
15638 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
15639 `ant' regexp.
15640
15641 * net/browse-url.el (browse-url-firefox): Don't call
15642 browse-url-firefox-sentinel unless using -remote (Bug#9328).
15643
15644 2011-08-20 Glenn Morris <rgm@gnu.org>
15645
15646 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
15647
15648 * tutorial.el (tutorial--default-keys): Update some default bindings.
15649
15650 * files.el (hack-local-variables): Fully ignore case for "mode:".
15651
15652 2011-08-20 Alan Mackenzie <acm@muc.de>
15653
15654 Resolve invalid use of a regexp in regexp-opt.
15655
15656 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
15657 detection for a java annotation.
15658
15659 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
15660 detection for a java annotation.
15661
15662 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
15663 handling for java.
15664 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
15665
15666 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
15667
15668 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
15669 (Bug#9274).
15670
15671 2011-08-20 Alan Mackenzie <acm@muc.de>
15672
15673 Fontify CPP expressions correctly when starting in the middle of
15674 such a construct. Mainly for when jit-lock etc. starts a chunk
15675 here.
15676
15677 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
15678 variable.
15679 (c-make-font-lock-search-form): New function, extracted from
15680 c-make-font-lock-search-function.
15681 (c-make-font-lock-search-function): Use the above function.
15682 (c-make-font-lock-context-search-function): New function.
15683 (c-cpp-matchers): Enhance the preprocessor expression case with
15684 the above function
15685 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
15686 which takes an expression.
15687
15688 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
15689
15690 2011-08-20 Martin Rudalics <rudalics@gmx.at>
15691
15692 * window.el (display-buffer-reuse-window)
15693 (display-buffer-pop-up-window): Don't reuse or split a side
15694 window.
15695
15696 2011-08-19 Glenn Morris <rgm@gnu.org>
15697
15698 * files.el (hack-local-variables-prop-line, hack-local-variables):
15699 Downcase "Mode:". (Bug#9331)
15700
15701 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
15702
15703 * international/characters.el: Add L and R categories.
15704
15705 * subr.el (bidi-string-mark-left-to-right): Rename from
15706 string-mark-left-to-right. Use category search.
15707
15708 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
15709
15710 2011-08-18 Juri Linkov <juri@jurta.org>
15711
15712 * faces.el (error, warning, success): New faces with definitions
15713 copied from old default values of `font-lock-warning-face',
15714 `compilation-warning', `compilation-info' (bug#6117).
15715
15716 * font-lock.el (font-lock-warning-face): Inherit from `error'.
15717
15718 * progmodes/compile.el (compilation-error): Inherit from `error'.
15719 (compilation-warning): Inherit from `warning'.
15720 (compilation-info): Inherit from `success'.
15721
15722 * dired.el (dired-marked): Inherit from `warning'.
15723 (dired-flagged): Inherit from `error'.
15724
15725 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15726
15727 * mail/smtpmail.el (auth-source): Require to avoid problems with
15728 binding variables (bug#9298). Also clean up some unused
15729 autoloads.
15730
15731 * net/network-stream.el (network-stream-open-starttls):
15732 Support using starttls.el without using gnutls-cli.
15733
15734 2011-08-17 Juri Linkov <juri@jurta.org>
15735
15736 * progmodes/grep.el (rgrep): Handle the case when
15737 `grep-find-command' is a cons cell (bug#9278).
15738
15739 2011-08-17 Martin Rudalics <rudalics@gmx.at>
15740
15741 * window.el (display-buffer-pop-up-frame): Run frame creation
15742 function with BUFFER current (as special-display-popup-frame
15743 does). Reported by Drew Adams.
15744
15745 2011-08-17 Daiki Ueno <ueno@unixuser.org>
15746
15747 * epa-mail.el: Simplify GnuPG group expansion using
15748 epg-expand-group.
15749 (epa-mail-group-alist, epa-mail-group-modtime)
15750 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
15751 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
15752 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
15753 Remove.
15754
15755 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
15756
15757 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
15758
15759 2011-08-16 Alan Mackenzie <acm@muc.de>
15760
15761 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
15762 Correct, to avoid the inside of macros.
15763
15764 2011-08-16 Richard Stallman <rms@gnu.org>
15765
15766 * epa-mail.el: Handle GnuPG group definitions.
15767 (epa-mail-group-alist, epa-mail-group-modtime)
15768 (epa-mail-gnupg-conf-file): New variables.
15769 (epa-mail-parse-groups, epa-mail-sync-groups)
15770 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
15771 (epa-mail-expand-recipients): New functions.
15772 (epa-mail-encrypt): Call epa-mail-expand-recipients.
15773
15774 * mail/rmail.el (rmail-epa-decrypt): New command.
15775
15776 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
15777 Don't bind buffer-read-only, just inhibit-read-only.
15778 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
15779 (epa-decrypt-armor-in-region): Make error message clearer.
15780
15781 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
15782
15783 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
15784 and "a2b" to "ab" for `prefix'.
15785
15786 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
15787
15788 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
15789 filter groups.
15790 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
15791 Fourquet (Bug#8804).
15792
15793 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
15794
15795 * startup.el (argi): Declare as global variable (bug#9275).
15796
15797 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
15798
15799 * subr.el (string-mark-left-to-right): Search the entire string
15800 for RTL script, not just the terminating character. Doc fix.
15801
15802 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
15803
15804 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
15805 New function.
15806 (js--regexp-literal, js-syntax-propertize-function): Remove.
15807 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
15808 (js-mode-map): Don't rebind electric keys.
15809 (js-insert-and-indent): Remove.
15810 (js-mode): Setup electric-layout and electric-indent instead.
15811
15812 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
15813
15814 2011-08-12 Daiki Ueno <ueno@unixuser.org>
15815
15816 * epa.el (epa-progress-callback-function): Fix the logic of
15817 displaying progress.
15818 * epa-file.el (epa-file-insert-file-contents): Make progress
15819 display more user-friendly.
15820 (epa-file-write-region): Ditto.
15821
15822 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
15823
15824 * subr.el (string-mark-left-to-right): New function.
15825
15826 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
15827 Use string-mark-left-to-right.
15828 (list-buffers-noselect): Caller changed.
15829
15830 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15831 Use string-mark-left-to-right.
15832 (tabulated-list-print): Recenter after moving point.
15833
15834 2011-08-10 Juri Linkov <juri@jurta.org>
15835
15836 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
15837 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
15838 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
15839
15840 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
15841
15842 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
15843 (Bug#7554).
15844
15845 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
15846
15847 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
15848 character. (Bug#6594)
15849
15850 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
15851
15852 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
15853 (image-dired--with-db-file): New macro.
15854 (image-dired-write-tags, image-dired-remove-tag)
15855 (image-dired-create-gallery-lists, image-dired-write-comments)
15856 (image-dired-get-comment, image-dired-mark-tagged-files)
15857 (image-dired-list-tags, image-dired-gallery-generate): Use it.
15858 (image-dired-gallery-generate): Use insert-file-contents.
15859
15860 * time.el (display-time-world-list, display-time-world-display):
15861 * time-stamp.el (time-stamp-string):
15862 * vc/add-log.el (add-change-log-entry): Use setenv instead of
15863 set-time-zone-rule (Bug#7337).
15864
15865 2011-08-08 Daiki Ueno <ueno@unixuser.org>
15866
15867 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
15868 (epg-error-to-string, epg-errors-to-string): New function.
15869 (epg-wait-for-completion): Reverse errors list.
15870 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
15871 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
15872 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
15873 (epg-sign-keys, epg-generate-key-from-file)
15874 (epg-generate-key-from-string): Format errors by using
15875 epg-errors-to-string (bug#9255).
15876 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
15877
15878 2011-08-07 Juri Linkov <juri@jurta.org>
15879
15880 * faces.el (list-faces-display): Remove extra angle bracket
15881 from `help-mode-map'.
15882
15883 * info.el (Info-history-toc-nodes): Doc fix.
15884
15885 * longlines.el (longlines-mode): Doc fix.
15886
15887 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
15888
15889 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
15890 of statements and in a few more cases (bug#9183).
15891
15892 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
15893 New functions.
15894 (cl-transform-lambda): Use them (bug#9239).
15895
15896 2011-08-05 Martin Rudalics <rudalics@gmx.at>
15897
15898 * window.el (display-buffer-same-window)
15899 (display-buffer-same-frame, display-buffer-other-window)
15900 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
15901 (pop-to-buffer-other-window)
15902 (pop-to-buffer-same-frame-other-window)
15903 (pop-to-buffer-other-frame): Make them defuns.
15904 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
15905
15906 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15907
15908 * subr.el (make-composed-keymap): Move from C. Change calling
15909 convention, and improve docstring to bring attention to a subtle point.
15910 * minibuffer.el (completing-read-default): Adjust accordingly.
15911
15912 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
15913
15914 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
15915 (tramp-open-shell): Use `tramp-shell-quote-argument'.
15916
15917 * net/trampver.el: Update release number.
15918
15919 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15920
15921 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
15922 "in" (bug#9190).
15923
15924 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15925
15926 * mail/sendmail.el (sendmail-query-once): Restore the current
15927 buffer after querying (bug#9074).
15928
15929 * dired.el (dired-flagged): Use different faces for marked and
15930 flagged files (bug#6117).
15931
15932 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
15933 (bug#4433).
15934
15935 * ido.el (ido-mode): Switch off the message if called
15936 non-interactively.
15937
15938 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
15939 before 587, since it appears that that's more likely to work for
15940 more people.
15941
15942 * cus-edit.el (custom-file): When running under emacs -q, always
15943 refuse to save the customizations, even if the .emacs file doesn't
15944 exist.
15945
15946 * info.el: Remove the `Info-beginning-of-buffer' function
15947 (bug#8325).
15948
15949 * net/network-stream.el (network-stream-open-starttls):
15950 Use `starttls-available-p' to see whether starttls.el can be used.
15951
15952 2011-08-01 Martin Rudalics <rudalics@gmx.at>
15953
15954 * window.el (display-buffer-in-window): Don't set dedicated status
15955 of window here (Bug#9215).
15956 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15957 (display-buffer-pop-up-side-window)
15958 (display-buffer-in-side-window): Set dedicated status of window here.
15959
15960 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
15961
15962 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
15963 before binding generated-autoload-file.
15964
15965 2011-08-01 Deniz Dogan <deniz@dogan.se>
15966
15967 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
15968
15969 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
15970
15971 Sync with Tramp 2.2.2.
15972
15973 * net/trampver.el: Update release number.
15974
15975 2011-07-30 Juri Linkov <juri@jurta.org>
15976
15977 * dired-aux.el (dired-touch-initial): Remove function.
15978 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
15979 current time, and `default' to the last modification time of the
15980 current marked file (bug#6887).
15981
15982 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
15983
15984 * simple.el (goto-line): Use string-to-number to provide a
15985 numeric argument to read-number (bug#9163).
15986
15987 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
15988
15989 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
15990 connection process, it could be nil.
15991
15992 2011-07-27 Leo Liu <sdl.web@gmail.com>
15993
15994 Simplify url handling in rcirc-mode.
15995
15996 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
15997 (rcirc-browse-url-at-mouse): Remove.
15998 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
15999
16000 2011-07-26 Alan Mackenzie <acm@muc.de>
16001
16002 Fontify bitfield declarations properly.
16003
16004 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
16005 (c-symbol-chars): Now exported as a lang variable.
16006 (c-not-primitive-type-keywords): New lang variable.
16007
16008 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
16009 QT keyword "more" to prevent "more slots: ...." being spuriously
16010 parsed as a bitfield declaration.
16011
16012 * progmodes/cc-engine.el (c-beginning-of-statement-1):
16013 Refactor and enhance to handle bitfield declarations.
16014 (c-punctuation-in): New function.
16015 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
16016 declarations properly.
16017
16018 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
16019
16020 * calendar/icalendar.el (icalendar--all-events): Take care of
16021 multiple vcalendars in a single file.
16022 (icalendar--convert-float-to-ical): Checkdoc fixes.
16023
16024 2011-07-25 Deniz Dogan <deniz@dogan.se>
16025
16026 * image.el (insert-image): Clarifying docstring.
16027
16028 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
16029
16030 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
16031 `tramp-send-command-and-check' if there is no error.
16032 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
16033
16034 2011-07-22 Alan Mackenzie <acm@muc.de>
16035
16036 Prevent cc-langs.elc being loaded at run time.
16037
16038 * progmodes/cc-mode.el: Remove two autoload forms which loaded
16039 cc-langs.
16040
16041 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
16042 "(require 'cc-langs)". Quote a form so it will evaluate at
16043 (cc-mode's) compilation time.
16044
16045 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
16046
16047 * net/tramp.el (tramp-file-name-handler): Avoid recursive
16048 loading. (Bug#9114)
16049
16050 2011-07-21 Martin Rudalics <rudalics@gmx.at>
16051
16052 * window.el (display-buffer-pop-up-window)
16053 (display-buffer-pop-up-side-window)
16054 (display-buffer-in-side-window): Call display-buffer-set-height
16055 and display-buffer-set-width after setting the new window's
16056 buffer so `fit-window-to-buffer' and friends work on the right buffer.
16057
16058 2011-07-20 Sam Steingold <sds@gnu.org>
16059
16060 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
16061 (etags-tags-included-tables): Call `convert-standard-filename' on
16062 the file names contained in TAGS so that windows Emacs can handle
16063 TAGS files created by cygwin ctags.
16064
16065 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
16066
16067 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
16068 which apparently didn't work.
16069
16070 2011-07-19 Roland Winkler <winkler@gnu.org>
16071
16072 * proced.el (proced-send-signal): For *Marked Processes* buffer
16073 put point at beginning of buffer.
16074
16075 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
16076
16077 * proced.el (proced-format): Make header lines align with the text
16078 (bug#1779).
16079
16080 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
16081
16082 * view.el (view-buffer): Allow running in `special' modes if we're
16083 visiting a file (bug#8615).
16084
16085 2011-07-19 Martin Rudalics <rudalics@gmx.at>
16086
16087 * window.el (display-buffer-alist-of-strings-p)
16088 (display-buffer-alist-set-1, display-buffer-alist-set-2):
16089 New functions.
16090 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
16091 more accurately.
16092
16093 2011-07-18 Alan Mackenzie <acm@muc.de>
16094
16095 Fontify declarators properly when, e.g., a jit-lock chunk begins
16096 inside a declaration.
16097
16098 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
16099
16100 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
16101 New function.
16102 (c-complex-decl-matchers): Insert reference to
16103 c-font-lock-enclosing-decls.
16104
16105 * progmodes/cc-engine.el (c-backward-single-comment):
16106 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
16107 to nil around calls to (forward-comment -1).
16108
16109 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
16110
16111 * image.el (put-image): Doc typo fix.
16112
16113 * progmodes/etags.el (tags-search): Doc typo fix.
16114
16115 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
16116 password if we get errors 550 to 554.
16117
16118 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
16119
16120 * net/gnutls.el (gnutls-log-level): Remove.
16121
16122 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
16123 indentation character (bug#6380).
16124
16125 * files.el (buffer-offer-save): Made permanently local (bug#6241).
16126
16127 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
16128 to clarify what the problem is (bug#4291).
16129
16130 * simple.el (current-kill): Clarify what
16131 `interprogram-paste-function' does (bug#7500).
16132 (auto-fill-mode): Document `auto-fill-function' in relation to
16133 `auto-fill-mode' (bug#2470).
16134
16135 2011-07-16 Lawrence Mitchell <wence@gmx.li>
16136
16137 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
16138 method if slot is read-only (bug#9035).
16139
16140 2011-07-16 Martin Rudalics <rudalics@gmx.at>
16141
16142 * frame.el (select-frame-set-input-focus): New argument NORECORD.
16143 * window.el (pop-to-buffer): Select window used even if it was
16144 selected before, see discussion of (Bug#8615), (Bug#6954).
16145 Pass argument NORECORD on to select-frame-set-input-focus.
16146
16147 2011-07-15 Glenn Morris <rgm@gnu.org>
16148
16149 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
16150 Respect help-form.
16151
16152 2011-07-09 Lawrence Mitchell <wence@gmx.li>
16153
16154 * net/gnutls.el (gnutls-min-prime-bits): New variable.
16155 (gnutls-negotiate): Use it.
16156
16157 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
16158
16159 * net/gnutls.el (gnutls-negotiate):
16160 Upcase `gnutls-algorithm-priority'.
16161
16162 2011-07-15 Glenn Morris <rgm@gnu.org>
16163
16164 * jka-compr.el (jka-compr-verbose): Move from here...
16165 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
16166 Add missing :version tag.
16167 * info.el: No need to require jka-compr when compiling.
16168
16169 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
16170
16171 * net/gnutls.el (gnutls-algorithm-priority): New variable.
16172 (gnutls-negotiate): Use it.
16173
16174 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
16175
16176 * info.el (Info-beginning-of-buffer): New command.
16177 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
16178 announcing `b' as the key (bug#8325).
16179 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
16180
16181 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
16182
16183 * international/mule-cmds.el
16184 (describe-specified-language-support): Make the error message
16185 clearer (bug#8905).
16186
16187 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
16188
16189 * isearch.el (isearch-barrier): Add a doc string, since it's
16190 mentioned in a function doc string (bug#8678).
16191
16192 2011-07-15 Martin Rudalics <rudalics@gmx.at>
16193
16194 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
16195 buffer argument (Bug#9083) and self-identifying label argument.
16196
16197 2011-07-15 Glenn Morris <rgm@gnu.org>
16198
16199 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
16200
16201 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16202
16203 * man.el (Man-fontify-manpage): Fix message when formatting the
16204 man page (bug#7929).
16205
16206 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16207
16208 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
16209 argument LRM; if non-nil, append an invisible LRM character to the
16210 buffer name.
16211 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
16212 last argument non-nil, when formatting buffer names.
16213 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
16214 paragraph direction.
16215
16216 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16217
16218 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
16219 the man page name (bug#7929).
16220
16221 * image.el (put-image): Mention the `put-image' overlay property
16222 (bug#7834).
16223
16224 * scroll-bar.el (set-scroll-bar-mode): Mention that
16225 `scroll-bar-mode' lists the values (bug#7772).
16226
16227 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
16228 command (bug#7729).
16229
16230 * rect.el (apply-on-rectangle): Return the point after the last
16231 operation.
16232 (string-rectangle): Go to the point after the last operation
16233 (bug#7522).
16234
16235 * printing.el (pr-toggle-region): Clarify the documentation
16236 slightly (bug#7493).
16237
16238 * time.el (display-time-update):
16239 Allow `display-time-mail-function' to return nil (bug#7158).
16240 Fix suggested by Detlev Zundel.
16241
16242 * vc/diff.el (diff): Clarify the order the file names are read
16243 (bug#7111).
16244
16245 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
16246 the doc string (bug#7015).
16247
16248 * font-lock.el (font-lock-maximum-decoration): Mention what
16249 numeric levels mean (bug#6935).
16250
16251 * startup.el (initial-buffer-choice): Don't mention the `none'
16252 selection, which is against policy.
16253
16254 2011-07-14 Martin Rudalics <rudalics@gmx.at>
16255
16256 * window.el (display-buffer-normalize-special):
16257 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
16258
16259 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16260
16261 * subr.el (version<, version<=, version=): Mention "-CVS" and
16262 "-12345" alpha version numbers.
16263
16264 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16265
16266 * bindings.el: Add advertised binding for set-mark-command
16267 (Bug#5772).
16268
16269 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16270
16271 * bindings.el (mode-line-other-buffer):
16272 * bookmark.el (bookmark-bmenu-2-window):
16273 * bs.el (bs-cycle-next, bs-cycle-previous):
16274 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
16275 switch-to-buffer.
16276
16277 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16278 Delete.
16279
16280 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
16281
16282 * follow.el (follow-debug-message, follow-redisplay):
16283 * jka-cmpr-hook.el (with-auto-compression-mode):
16284 Fix typos in docstrings.
16285
16286 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16287
16288 * subr.el (with-silent-modifications): Clarify somewhat what the
16289 macro inhibits (bug#6525).
16290
16291 * simple.el (eval-expression): Note what it does if called
16292 interactively (bug#6495).
16293
16294 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16295
16296 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
16297 Use pop-to-buffer buffer-or-name if it is nil.
16298
16299 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16300 Remove switch-to-buffer.
16301
16302 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16303
16304 * files.el (make-directory): Clarify that an error will be raised
16305 if there's an error (bug#6397).
16306
16307 * startup.el (initial-buffer-choice): Add `none' as a choice
16308 (bug#6234).
16309
16310 * subr.el (add-hook): Clarify section about buffer-local hooks
16311 (bug#6218).
16312
16313 * dired.el (dired-flagged): Clarify doc string (bug#6117).
16314
16315 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16316
16317 * tabify.el (untabify): Preserve the current column so that point
16318 doesn't move (bug#6032).
16319
16320 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16321
16322 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
16323 Rewrite to avoid awkward possessive "s" (bug#5986).
16324
16325 2011-07-13 Glenn Morris <rgm@gnu.org>
16326
16327 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
16328 (dired-insert-directory): Give a message the first time
16329 if ls is found not to support --dired.
16330
16331 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16332
16333 * simple.el (toggle-truncate-lines): Clarify what is toggled
16334 (bug#5580). Text by Drew Adams.
16335
16336 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16337
16338 * simple.el (blink-matching-open): Make the error message from the
16339 last change less verbose.
16340
16341 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
16342
16343 * font-lock.el (font-lock-comment-face): Use the high contrast
16344 "yellow" color for font-lock-comment-face on low color terminals
16345 using a dark background color (bug#4221).
16346
16347 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16348
16349 * dired.el (dired-insert-set-properties): Make the doc string
16350 reflect what it does now (bug#5325).
16351
16352 * simple.el (blink-matching-open): Say that we were unable to find
16353 the match within the limit, if we're limited (bug#5122).
16354
16355 * international/mule-cmds.el (prefer-coding-system): Add an
16356 example (bug#4869).
16357
16358 * progmodes/etags.el (tags-search): Document `file-list-form'
16359 (bug#4731).
16360
16361 2011-07-13 Lawrence Mitchell <wence@gmx.li>
16362
16363 * net/browse-url.el (browse-url-default-browser)
16364 (browse-url-browser-function): Make the default browser choice a
16365 bit more logical (bug#4300). Also clean up the doc string.
16366
16367 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16368
16369 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
16370 binary endings (bug#4440).
16371
16372 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16373
16374 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
16375 which can be pretty annoying (bug#8971).
16376
16377 * jka-compr.el (jka-compr-verbose): New variable, and use
16378 throughout (bug#8971).
16379
16380 * info.el (Info-find-file): Fall back on the installation
16381 directory if we can't find the info node anywhere else.
16382
16383 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
16384
16385 * vc/vc.el (vc-revert-file):
16386 Don't set file time-stamp in the past. (Bug#5181)
16387
16388 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16389
16390 * files.el (after-find-file): Give a better error message when
16391 trying to find a symlink that points to a file that doesn't exist
16392 (bug#4398).
16393
16394 * progmodes/cc-vars.el: Remove (probably) misleading comment
16395 (bug#4396).
16396
16397 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16398
16399 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
16400
16401 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16402
16403 * mouse-sel.el: Hack restoring functionality, while keeping
16404 compatibility with 2010-07-03 changes to mouse selection.
16405 (mouse-sel-primary-overlay): New var.
16406 (mouse-sel-selection-alist): Use it.
16407 (mouse-sel-mode): Doc fix; remove points that are default features
16408 of mouse.el.
16409
16410 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16411
16412 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16413 Fix previous fix (bug#2490).
16414
16415 2011-07-12 Roland Winkler <winkler@gnu.org>
16416
16417 * textmodes/bibtex.el (bibtex-initialize):
16418 Use pop-to-buffer-same-window.
16419 (bibtex-search-entries): Fix interactive call.
16420
16421 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16422
16423 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16424 Fontise bytecomp Error lines more correctly (bug#2490).
16425 Fix suggested by Johan Bockgård.
16426
16427 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
16428
16429 * dired-x.el (dired-guess-default): Use `delete-dups'.
16430
16431 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16432
16433 * dired.el (dired-mark-prompt):
16434 * dired-aux.el (dired-read-shell-command): Doc fix.
16435
16436 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16437
16438 * mail/sendmail.el (sendmail-query-once):
16439 Use `customize-save-variable' unconditionally, now that it works under
16440 emacs -Q.
16441
16442 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16443
16444 * cus-edit.el (custom-file): Take an optional no-error variable.
16445 (customize-save-variable): Set the variable, and give a warning if
16446 running under "emacs -q".
16447
16448 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
16449
16450 * loadhist.el (unload-feature-special-hooks):
16451 Add `auto-coding-functions', `fill-nobreak-predicate' and
16452 `find-directory-functions' (bug#5327).
16453
16454 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16455
16456 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
16457
16458 * cus-edit.el (custom-guess-name-alist): -alist variables should
16459 use the `alist' type (bug#3120). Suggested by Drew Adams.
16460
16461 * printing.el: Add documentation to all the `pr-toggle-' commands.
16462
16463 2011-07-11 Leo Liu <sdl.web@gmail.com>
16464
16465 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
16466 backends where it makes sense (bug#2623).
16467
16468 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16469
16470 * dired-x.el (dired-guess-default): Remove duplicate shell command
16471 entries (bug#2028).
16472 (dired-guess-default): Fix grammar in doc string (bug#2028).
16473 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
16474
16475 * subr.el (remove-duplicates): New conveniency function.
16476
16477 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16478
16479 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
16480 (bug#1526).
16481
16482 2011-07-10 Martin Rudalics <rudalics@gmx.at>
16483
16484 * window.el (display-buffer-normalize-default): Don't invert
16485 meaning of even-window-heights. Reported by Eli Zaretskii
16486 <eliz@gnu.org>.
16487
16488 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
16489
16490 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
16491
16492 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
16493
16494 * window.el (display-buffer): Fix arguments to
16495 display-buffer-reuse-window in last change.
16496
16497 * faces.el (link): Use a less saturated blue on light backgrounds.
16498
16499 * startup.el (fancy-startup-text, fancy-about-text)
16500 (fancy-startup-tail): Use font-lock faces, for background safety.
16501
16502 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
16503
16504 * emulation/viper-cmd.el (viper-change-state-to-vi):
16505 Limit triggering of abbrev expansion (Bug#9038).
16506
16507 2011-07-09 Martin Rudalics <rudalics@gmx.at>
16508
16509 * window.el (display-buffer-default-specifiers): Remove.
16510 (display-buffer-macro-specifiers): Remove default specifiers.
16511 (display-buffer-alist): Default to nil.
16512 (display-buffer-reuse-window): New optional argument other-window.
16513 (display-buffer-pop-up-window): Allow splitting internal
16514 windows. Check whether a live window was created.
16515 (display-buffer-other-window-means-other-frame)
16516 (display-buffer-normalize-arguments): Rename to
16517 display-buffer-normalize-argument and rewrite. Set the
16518 other-window specifier.
16519 (display-buffer-normalize-special): New function.
16520 (display-buffer-normalize-options): Rename to
16521 display-buffer-normalize-default and rewrite.
16522 (display-buffer-normalize-options-inhibit): Remove.
16523 (display-buffer-normalize-specifiers): Rewrite.
16524 (display-buffer): Process other-window specifier and call
16525 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
16526 more faithfully.
16527 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
16528 (display-buffer-alist-set): Don't handle 'unset default values.
16529 (display-buffer-in-window, display-buffer-alist-set):
16530 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
16531 <tassilo@member.fsf.org>.
16532
16533 2011-07-09 Leo Liu <sdl.web@gmail.com>
16534
16535 * register.el (insert-register): Restore accidental change on
16536 2011-06-26. (Bug#9028)
16537
16538 2011-07-09 Glenn Morris <rgm@gnu.org>
16539
16540 * subr.el (remq): Handle the empty list. (Bug#9024)
16541
16542 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
16543
16544 * mail/sendmail.el (send-mail-function): No longer delay custom
16545 initialization.
16546 * custom.el (custom-initialize-delay): Doc fix.
16547
16548 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16549
16550 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
16551
16552 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
16553
16554 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
16555 human-friendly prompt.
16556
16557 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16558
16559 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
16560 provided by a particular plugin.
16561
16562 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
16563
16564 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
16565 save customizations (with "emacs -Q"), just set the variable
16566 instead of erroring out.
16567
16568 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16569
16570 2011-07-08 Juri Linkov <juri@jurta.org>
16571
16572 * arc-mode.el (archive-zip-expunge, archive-zip-update)
16573 (archive-zip-update-case): Use 7z if found by `executable-find'.
16574 The order of searching the available programs is the same as in
16575 `archive-zip-extract' (bug#8968).
16576
16577 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16578
16579 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
16580 (menu-bar-options-menu): Tweak descriptions.
16581
16582 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16583
16584 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
16585 menu items into verb phrases (bug#1421). Also refill to fit under
16586 80 columns.
16587
16588 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16589
16590 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
16591 (Info-read-node-name): Doc fix (Bug#1084).
16592
16593 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
16594 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
16595 (end-of-sexp, beginning-of-sexp)
16596 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
16597 (forward-symbol, forward-same-syntax, word-at-point)
16598 (sentence-at-point): Doc fix (Bug#1144).
16599
16600 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16601
16602 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
16603 should cover it (bug#1281).
16604
16605 * cus-edit.el (custom-show): Mark as obsolete.
16606
16607 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
16608 negotiation fails, then possibly try again with a non-encrypted
16609 connection (bug#9017).
16610
16611 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
16612 be used.
16613
16614 2011-07-07 Richard Stallman <rms@gnu.org>
16615
16616 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
16617 property, and handle its changed format.
16618 Look for the correct line number.
16619 Use file's line contents (but not past first =) to find
16620 correct line in message.
16621
16622 2011-07-07 Kenichi Handa <handa@m17n.org>
16623
16624 * international/characters.el (build-unicode-category-table):
16625 Delete it.
16626 (unicode-category-table): Set it by unicode-property-table-internal.
16627
16628 * international/mule-cmds.el (char-code-property-alist): Move to
16629 to src/chartab.c.
16630 (get-char-code-property): Call unicode-property-table-internal to
16631 load a file. Call get-unicode-property-internal where necessary.
16632 (put-char-code-property): Call unicode-property-table-internal to
16633 load a file. Call put-unicode-property-internal where necessary.
16634 put-unicode-property-internal where necessary.
16635 (char-code-property-description):
16636 Call unicode-property-table-internal to load a file.
16637
16638 * international/charprop.el:
16639 * international/uni-bidi.el:
16640 * international/uni-category.el:
16641 * international/uni-combining.el:
16642 * international/uni-comment.el:
16643 * international/uni-decimal.el:
16644 * international/uni-decomposition.el:
16645 * international/uni-digit.el:
16646 * international/uni-lowercase.el:
16647 * international/uni-mirrored.el:
16648 * international/uni-name.el:
16649 * international/uni-numeric.el:
16650 * international/uni-old-name.el:
16651 * international/uni-titlecase.el:
16652 * international/uni-uppercase.el: Regenerate.
16653
16654 * loadup.el: Load international/charprop.el before
16655 international/characters.
16656
16657 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16658
16659 * window.el (next-buffer, previous-buffer): Signal an error if
16660 called from a minibuffer window.
16661
16662 * bindings.el: Revert 2011-07-04 change.
16663
16664 2011-07-06 Richard Stallman <rms@gnu.org>
16665
16666 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
16667 (rmail-mime-insert-bulk, rmail-mime-insert-text):
16668 Treat markers like ints.
16669 (rmail-mime-entity): Doc fix.
16670
16671 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16672
16673 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
16674 defcustom again for backwards compatibility.
16675
16676 * simple.el (shell-command-on-region): Fill.
16677
16678 * dired-aux.el (dired-kill-line): Add a doc string.
16679
16680 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
16681 to "\\sw\\|\\s_" (bug#358).
16682
16683 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
16684 (dired-unmark-backward): Ditto.
16685 (dired-flag-backup-files): Ditto.
16686
16687 * dired-x.el (dired-mark-sexp): Ditto.
16688
16689 2011-07-06 Richard Stallman <rms@gnu.org>
16690
16691 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
16692 (rmail-mime-entity): New arg TRUNCATED.
16693 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
16694 New functions.
16695 (rmail-mime-save): Warn if entity is truncated.
16696 (rmail-mime-toggle-hidden): Likewise, for showing.
16697 (rmail-mime-process-multipart): Record when an entity is truncated.
16698
16699 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
16700 if ENTITY is a string.
16701
16702 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16703
16704 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
16705 of faces when `M-C-x'-ing their definitions (bug#8378).
16706 Also clean up the code slightly.
16707
16708 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
16709 because that makes the colors go away.
16710
16711 * mail/sendmail.el (send-mail-function): Change the default to
16712 `sendmail-query-once'.
16713 (sendmail-query-once): Add an autoload cookie.
16714
16715 * net/network-stream.el (network-stream-open-starttls): Try using
16716 a plain connection even if the server offered STARTTLS, and we
16717 kinda wanted to use it, if Emacs doesn't have any STARTTLS
16718 capability. This should make smtpmail.el work in slightly more
16719 configurations.
16720
16721 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
16722
16723 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16724 New defun.
16725 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
16726
16727 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
16728
16729 * progmodes/sql.el: Version 3.0
16730 (sql-product-alist): Add product :completion-object,
16731 :completion-column, and :statement attributes.
16732 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
16733 (sql-mode-syntax-table): Mark all punctuation.
16734 (sql-font-lock-keywords-builder): Temporarily remove fallback on
16735 ansi keywords.
16736 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
16737 (sql-mode-oracle-font-lock-keywords): Improve.
16738 (sql-oracle-show-reserved-words): New function for development.
16739 (sql-product-font-lock): Simplify for source code buffers.
16740 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
16741 New functions.
16742 (sql-highlight-product): Set product specific syntax table.
16743 (sql-mode-map): Add statement movement functions.
16744 (sql-ansi-statement-starters, sql-oracle-statement-starters):
16745 New variable.
16746 (sql-statement-regexp, sql-beginning-of-statement)
16747 (sql-end-of-statement, sql-signum): New functions.
16748 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
16749 (sql-show-sqli-buffer): Bug fix.
16750 (sql-interactive-mode): Store connection data as buffer local.
16751 (sql-connect): Add NEW-NAME parameter. Redesign interaction
16752 with sql-interactive-mode.
16753 (sql-save-connection): Save buffer local settings.
16754 (sql-connection-menu-filter): Change menu entry name.
16755 (sql-product-interactive): Bug fix.
16756 (sql-preoutput-hold): New variable.
16757 (sql-interactive-remove-continuation-prompt): Bug fixes.
16758 (sql-debug-redirect): New variable.
16759 (sql-str-literal): New function.
16760 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
16761 Redesign.
16762 (sql-oracle-save-settings, sql-oracle-restore-settings)
16763 (sql-oracle-list-all, sql-oracle-list-table): New functions.
16764 (sql-completion-object, sql-completion-column)
16765 (sql-completion-sqlbuf): New variables.
16766 (sql-build-completions-1, sql-build-completions)
16767 (sql-try-completion): New functions.
16768 (sql-read-table-name): Use them.
16769 (sql-contains-names): New buffer local variable.
16770 (sql-list-all, sql-list-table): Use it.
16771 (sql-oracle-completion-types): New variable.
16772 (sql-oracle-completion-object, sql-sqlite-completion-object)
16773 (sql-postgres-completion-object): New functions.
16774
16775 2011-07-06 Glenn Morris <rgm@gnu.org>
16776
16777 * window.el (pop-to-buffer): Doc fix.
16778
16779 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
16780
16781 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
16782
16783 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
16784
16785 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
16786
16787 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
16788
16789 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
16790
16791 * button.el (button): Inherit from link face. Suggested by Dan
16792 Nicolaescu.
16793
16794 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16795
16796 * progmodes/gdb-mi.el: Fit in 80 columns.
16797 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
16798 switch-to-buffer.
16799
16800 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
16801 if imenu is simply not configured (bug#8941).
16802
16803 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
16804
16805 * allout.el (allout-post-undo-hook): New allout outline-change
16806 event hook to signal undo activity.
16807 (allout-post-command-business): Run allout-post-undo-hook if an
16808 undo just occurred.
16809 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
16810 * allout-widgets.el (allout-widgets-after-undo-function):
16811 Ensure the integrity of the current item's decoration after it has been
16812 in the vicinity of an undo.
16813 (allout-widgets-mode): Include allout-widgets-after-undo-function
16814 on the new allout-post-undo-hook.
16815
16816 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16817
16818 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
16819 Let define-derived-mode define it.
16820 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
16821 cycles of abbrev-table inheritance (bug#8998).
16822
16823 2011-07-05 Roland Winkler <winkler@gnu.org>
16824
16825 * textmodes/bibtex.el: Add support for biblatex.
16826 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
16827 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
16828 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
16829 (bibtex-entry-alist, bibtex-field-alist): New variables.
16830 (bibtex-entry-field-alist): Obsolete alias for
16831 bibtex-BibTeX-entry-alist.
16832 (bibtex-entry-alist, bibtex-field-alist): New widgets.
16833 (bibtex-set-dialect): New command.
16834 (bibtex-entry-type, bibtex-entry-head)
16835 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
16836 Bind via bibtex-set-dialect.
16837 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
16838 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
16839 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
16840 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
16841 Define via bibtex-set-dialect.
16842 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
16843 Obey bibtex-no-opt-remove-re.
16844 (bibtex-vec-push, bibtex-vec-incr): New functions.
16845 (bibtex-format-entry, bibtex-field-list)
16846 (bibtex-print-help-message, bibtex-validate)
16847 (bibtex-search-entries): Use new format of bibtex-entry-alist.
16848
16849 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16850
16851 * progmodes/compile.el (compilation-goto-locus):
16852 * net/tramp-cmds.el (tramp-append-tramp-buffers):
16853 * bs.el (bs-cycle-next, bs-cycle-previous):
16854 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
16855 * bindings.el (mode-line-other-buffer):
16856 * autoinsert.el (auto-insert):
16857 * arc-mode.el (archive-extract):
16858 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
16859
16860 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16861
16862 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
16863 Fix check of `emacs-lock-unlockable-modes'.
16864 Coerce true values of `emacs-lock--try-unlocking' to t.
16865
16866 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16867
16868 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
16869 * emacs-lock.el: New file.
16870
16871 2011-07-05 Julien Danjou <julien@danjou.info>
16872
16873 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
16874 than `boundp' to check if face is set.
16875
16876 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16877
16878 * register.el (registerv-make):
16879 * window.el (window-min-height): Fix typos in docstrings.
16880
16881 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
16882
16883 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
16884 Update doc string.
16885
16886 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16887
16888 * server.el (server-execute): Catch quit and call
16889 `server-return-error' to pass the error back to emacsclient and
16890 close the connection (bug#8942).
16891
16892 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
16893
16894 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
16895 insecure exception for current topic. Also note that auto-saves
16896 are handled differently.
16897
16898 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
16899 State variables for tracking auto-save inhibition situation.
16900
16901 (allout-write-contents-hook-handler): Rename from
16902 'allout-write-file-hook-handler', and describe how it depends on
16903 write-contents-functions sensitivity to non-nil value to prevent
16904 file write.
16905
16906 (allout-auto-save-hook-handler): Remove. auto-save does not check
16907 this in individual buffers, only in the starting buffer, so this
16908 is not the right way for us to inhibit auto-save in a buffer
16909 according to its condition.
16910
16911 (allout-mode): Use new allout-write-contents-hook-handler, and
16912 only with write-contents-functions. Remove auto-save provisions -
16913 they're implemented elsewhere.
16914
16915 (allout-before-change-handler): If undo is in progress, note that
16916 for attention of allout-post-command-business.
16917
16918 (allout-post-command-business): If the command we're following was
16919 an undo, check for change in the status of encrypted items and
16920 adjust auto-save inhibitions accordingly.
16921
16922 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
16923 according to whether there are or aren't any plain-text topics
16924 pending encryption.
16925
16926 (allout-inhibit-auto-save-info-for-decryption):
16927 Adjust buffer-saved-size and some allout state to inhibit auto-saves
16928 if there are plain-text topics pending encryption.
16929
16930 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
16931 buffer-saved-size and some allout state to not inhibit auto-saves
16932 if there are no longer any plain-text topics pending encryption.
16933
16934 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
16935 No longer provide for exemption of the current topic.
16936
16937 2011-07-04 Juri Linkov <juri@jurta.org>
16938
16939 Add 7z operations to delete and save changed members (bug#8968).
16940 * arc-mode.el (archive-7z-expunge, archive-7z-update):
16941 New defcustoms.
16942 (archive-7z-write-file-member): New function.
16943 (archive-7z-summarize): Fix the number of dashes in the
16944 listing output.
16945
16946 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16947
16948 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
16949 (bug#8958).
16950
16951 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
16952
16953 * bindings.el: Ignore next-buffer and previous-buffer in
16954 minibuffer-local-map.
16955
16956 * font-lock.el (font-lock-builtin-face): Change light background
16957 color to dark slate blue (Bug#6693).
16958
16959 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
16960
16961 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
16962
16963 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16964
16965 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
16966 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16967 Add switch-to-buffer.
16968
16969 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16970
16971 * isearch.el (isearch-search-fun-function): Clarify further the
16972 meaning of the function returned.
16973
16974 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
16975
16976 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
16977
16978 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
16979 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
16980 Use it.
16981 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
16982 `tramp-default-remote-path' does not exist.
16983 (tramp-send-command-and-read): New optional argument NOERROR.
16984 (tramp-open-connection-setup-interactive-shell)
16985 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
16986 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
16987 (tramp-process-sentinel): Flush also process' connection property.
16988 (tramp-sh-handle-start-file-process): Do not set process
16989 sentinel. It is done now ...
16990 (tramp-maybe-open-connection): ... here. (Bug#8929)
16991
16992 2011-07-04 MON KEY <monkey@sandpframing.com>
16993
16994 * play/animate.el (animate-string): Doc fixes and allow changing
16995 the buffer name (bug#5417).
16996
16997 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16998
16999 * play/animate.el (animation-buffer-name): Rename from *animate*.
17000
17001 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
17002
17003 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
17004 This is simpler and helps future-proof the code.
17005 (timer-until): Use time-subtract and float-time.
17006 (timer--time-less-p): Use time-less-p.
17007
17008 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
17009
17010 * type-break.el (timep): Use the value of `float-time' to avoid a
17011 byte-compiler warning.
17012
17013 * server.el (server-eval-and-print): Return any result, even nil.
17014
17015 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
17016
17017 * type-break.el: Accept time formats that the builtins accept.
17018 (timep, type-break-time-difference): Accept any format that
17019 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
17020 This is simpler and helps future-proof the code.
17021 (type-break-time-difference): Round rather than ignoring
17022 subseconds components.
17023
17024 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17025
17026 * info.el (Info-apropos-matches): Make non-interactive, since it
17027 doesn't seem to do anything useful as a command (bug#8829).
17028
17029 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
17030
17031 * frame.el (frame-background-mode, frame-set-background-mode):
17032 Move from faces.el.
17033 (frame-default-terminal-background): New function.
17034
17035 * custom.el (custom-push-theme): Don't record faces in `changed'
17036 theme; this doesn't work correctly for per-frame face settings.
17037 (disable-theme): Use face-set-after-frame-default to reset faces.
17038 (custom--frame-color-default): New function.
17039
17040 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17041
17042 * dired.el (dired-flagging-regexp): Remove unused variable
17043 (bug#8769).
17044
17045 2011-03-29 Kevin Ryde <user42@zip.com.au>
17046
17047 * progmodes/compile.el (compilation-error-regexp-alist-alist):
17048 `perl-Test2' extend to match possible "fail #N" rep count
17049 (bug#8377).
17050
17051 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17052
17053 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
17054 `smtpmail-via-smtp' now returns the error instead of nil.
17055
17056 * isearch.el (isearch-search-fun-function): Clarify the doc string
17057 (bug#8101).
17058
17059 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
17060
17061 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
17062 unnecessary spaces (bug#8987).
17063
17064 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17065
17066 * net/network-stream.el (open-network-stream): Use the
17067 :end-of-capability command thoughout.
17068
17069 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
17070
17071 * net/network-stream.el (open-network-stream): Add the
17072 :end-of-capability command parameter, used by pop3.el.
17073
17074 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17075
17076 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
17077
17078 * fringe.el (fringe-query-style): Remove redundant text " (type ?
17079 for list)" (bug#6475).
17080
17081 * files.el (file-expand-wildcards): Ignore non-readable
17082 sub-directories while trying to find matches instead of signaling
17083 an error (bug#6297).
17084
17085 * man.el (Man-reference-regexp): Allow matching possible
17086 word-wrapped references (bug#6289).
17087
17088 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
17089 for consistency with the other vc buffers (bug#6197).
17090 (vc-checkin): Ditto.
17091
17092 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
17093
17094 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
17095
17096 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17097
17098 * custom.el (defcustom): Clarify that :set is only used in the
17099 Customize user interface (bug#6089).
17100
17101 * progmodes/flymake.el (flymake-mode): If the buffer isn't
17102 associated with a file, refuse to run instead of erroring out
17103 (bug#6084).
17104
17105 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
17106 the doc string, since it appears that using `fill-column' always
17107 controls the width (bug#7845).
17108
17109 * simple.el (shell-command-on-region): Say where the error output
17110 went if `shell-command-default-error-buffer' is set (bug#6857).
17111
17112 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
17113
17114 * allout.el (allout-yank-processing): Adjust cursor position for
17115 backwards-deleted space.
17116
17117 (allout-rebullet-heading): Register changes with
17118 allout-exposure-changed-hook, so the modified topic is properly
17119 decorated.
17120
17121 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17122
17123 * minibuffer.el (completion-in-region): Document PREDICATE
17124 (bug#7136).
17125
17126 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
17127 of keyword/argument pairs (bug#6904).
17128
17129 * replace.el (multi-occur):
17130 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
17131
17132 2011-07-02 Drew Adams <drew.adams@oracle.com>
17133
17134 * dired.el (dired-mark-if): Make the message about whether it's
17135 marking or unmarking clearer (bug#8523).
17136
17137 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17138
17139 * disp-table.el (display-table-print-array): New function.
17140 (describe-display-table): Use it to print the vectors more pretty
17141 (Bug#8859).
17142
17143 2011-07-02 Martin Rudalics <rudalics@gmx.at>
17144
17145 * window.el (window-state-get-1): Don't assign clone numbers.
17146 Add clone-of item to list of window parameters.
17147 (window-state-put-2): Don't process clone numbers.
17148 (display-buffer-alist): Fix doc-string.
17149
17150 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
17151
17152 * subr.el (remq): Don't allocate if it's not needed.
17153 (keymap--menu-item-binding, keymap--menu-item-with-binding)
17154 (keymap--merge-bindings): New functions.
17155 (keymap-canonicalize): Use them to refine the canonicalization.
17156 * minibuffer.el (minibuffer-local-completion-map)
17157 (minibuffer-local-must-match-map): Move initialization from C.
17158 (minibuffer-local-filename-completion-map): Move initialization from C;
17159 don't inherit from anything here.
17160 (minibuffer-local-filename-must-match-map): Make obsolete.
17161 (completing-read-default): Use make-composed-keymap to combine
17162 minibuffer-local-filename-completion-map with either
17163 minibuffer-local-must-match-map or
17164 minibuffer-local-filename-completion-map.
17165
17166 2011-07-01 Glenn Morris <rgm@gnu.org>
17167
17168 * type-break.el (type-break-time-sum): Use dolist.
17169
17170 * textmodes/flyspell.el (flyspell-word-search-backward):
17171 Replace CL function.
17172
17173 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17174
17175 * mouse.el (mouse--strip-first-event): New function.
17176 (function-key-map): Use it to map fringe clicks to normal clicks
17177 by default.
17178
17179 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
17180 (vc-bzr-revision-completion-table): Add support for annotate and date.
17181
17182 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
17183 inherit from parent.
17184
17185 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
17186
17187 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
17188 (dired-show-file-type): Doc fixup (bug#8818).
17189
17190 * dired.el (dired-mode): Fix up the doc string as suggested by
17191 Drew Adams (bug#8817).
17192
17193 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
17194 cookie, since the manual says that it should be possible to add
17195 this function to `find-file-hook' (bug#8709).
17196
17197 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
17198
17199 * progmodes/cfengine.el: Moved all cfengine3.el functionality
17200 here. Noted Ted Zlatanov as the maintainer.
17201 (cfengine-common-settings, cfengine-common-syntax): New functions
17202 to set up common things between `cfengine-mode' and
17203 `cfengine3-mode'.
17204 (cfengine3-mode): New mode.
17205 (cfengine3-defuns cfengine3-defuns-regex
17206 (cfengine3-class-selector-regex cfengine3-category-regex)
17207 (cfengine3-vartypes cfengine3-font-lock-keywords)
17208 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
17209 (cfengine3-indent-line): Add from cfengine3.el.
17210
17211 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
17212
17213 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
17214
17215 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
17216
17217 2011-07-01 Martin Rudalics <rudalics@gmx.at>
17218
17219 * window.el (same-window-buffer-names, same-window-regexps)
17220 (same-window-p, special-display-frame-alist)
17221 (special-display-popup-frame, special-display-function)
17222 (special-display-buffer-names, special-display-regexps)
17223 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
17224 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17225 (split-window-preferred-function, split-height-threshold)
17226 (split-width-threshold, even-window-heights)
17227 (display-buffer-mark-dedicated, window-splittable-p)
17228 (split-window-sensibly, window-safely-shrinkable-p):
17229 Un-obsolete.
17230 (display-buffer): Don't spread args with function specifier
17231 because special-display-popup-frame won't like it.
17232
17233 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
17234
17235 Time-stamp simplifications and fixes.
17236 These improve accuracy slightly, and future-proof the code
17237 against some potential changes to current-time format.
17238
17239 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
17240 by using time-since and float-time.
17241
17242 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
17243 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
17244 + NNN microseconds".
17245
17246 * type-break.el (type-break-time-sum): Rewrite using time-add.
17247
17248 * play/hanoi.el (hanoi-current-time-float): Remove.
17249 All uses replaced by float-time.
17250
17251 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
17252 This yields a more-accurate answer.
17253 (rng-time-to-float): Remove; no longer needed.
17254
17255 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
17256
17257 * calendar/timeclock.el (timeclock-seconds-to-time):
17258 Defalias to seconds-to-time, since they're the same thing.
17259
17260 * emacs-lisp/elp.el (elp-elapsed-time):
17261 * emacs-lisp/benchmark.el (benchmark-elapse):
17262 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
17263
17264 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17265
17266 * window.el (bury-buffer): Don't iconify the only frame.
17267 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
17268 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
17269
17270 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
17271
17272 * eshell/em-smart.el (eshell-smart-display-navigate-list):
17273 Add mouse-yank-primary.
17274
17275 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
17276
17277 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
17278
17279 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17280
17281 * emacs-lisp/find-func.el (find-library--load-name): New fun.
17282 (find-library-name): Use it to find relative load names when provided
17283 absolute file name (bug#8803).
17284
17285 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17286
17287 * textmodes/flyspell.el (flyspell-word): Consider words that
17288 differ only in case as potential doublons (bug#5687).
17289
17290 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
17291 Remove two rather uninteresting debugging-like messages to make
17292 debbugs.el more silent.
17293
17294 * comint.el (comint-password-prompt-regexp): Accept "Response" as
17295 a password-like phrase.
17296
17297 2011-06-30 Masatake YAMATO <yamato@redhat.com>
17298
17299 * progmodes/cc-guess.el: New file.
17300
17301 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
17302
17303 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
17304 derived from `c-basic-common-init'.
17305
17306 * progmodes/cc-mode.el (top-level): Require cc-guess.
17307 (c-basic-common-init): Use `cc-choose-style-for-mode'.
17308
17309 2011-06-30 Lawrence Mitchell <wence@gmx.li>
17310
17311 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
17312
17313 2011-06-30 Alan Mackenzie <acm@muc.de>
17314
17315 * progmodes/cc-engine.el (c-guess-continued-construct):
17316 Correct the handling of template-args-cont, particularly for when font
17317 lock is disabled. Name this case as "CASE G".
17318
17319 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
17320
17321 * allout.el (allout-yank-processing): Fix injection of extra space
17322 between bullet and non-whitespace character in first topic when
17323 pasting, ensuring that the actual spacing in the pasted topic
17324 following the bullet char is preserved. This extra space was
17325 causing pasted encrypted topics to get a decrypted status even
17326 when the content was actually still encrypted. Now the decryption
17327 status from before the paste is preserved.
17328
17329 (allout-flag-region): Set all allout overlays so they evaporate
17330 when reduced to zero length (evanescent), to prevent overlay
17331 leakage.
17332
17333 2011-06-30 Glenn Morris <rgm@gnu.org>
17334
17335 * w32-fns.el (w32-charset-info-alist): Declare.
17336
17337 * find-dired.el (find-grep-options): Simplify.
17338
17339 * term/ns-win.el (ns-set-resource): Declare.
17340
17341 * ses.el (row, col): Declare dynamic variables honestly.
17342
17343 * textmodes/reftex-parse.el (index-tags): Declare.
17344
17345 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
17346
17347 * cus-edit.el (customize-push-and-save): New function.
17348
17349 * files.el (hack-local-variables-confirm): Use it.
17350
17351 * custom.el (load-theme): New arg NO-CONFIRM.
17352 Use customize-push-and-save (Bug#8720).
17353 (custom-enabled-themes): Doc fix.
17354
17355 * cus-theme.el (customize-create-theme)
17356 (custom-theme-merge-theme): Callers to load-theme changed.
17357
17358 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17359
17360 * thingatpt.el (thing-at-point-short-url-regexp): Require that
17361 short URLs have at least one dot in them (bug #7614).
17362
17363 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
17364 nil, because using a pty is apparently too slow (bug #895).
17365
17366 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
17367
17368 * mail/sendmail.el (sendmail-query-once): New function.
17369 (sendmail-query-once-function): New variable.
17370
17371 2011-06-29 Glenn Morris <rgm@gnu.org>
17372
17373 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
17374
17375 * ses.el (top-level): Require cl when compiling.
17376 (ses-set-localvars): Fix error statement.
17377 Call it at compile time to silence a storm of warnings.
17378
17379 2011-06-29 Martin Rudalics <rudalics@gmx.at>
17380
17381 * window.el (normalize-live-buffer): Rename to
17382 window-normalize-buffer.
17383 (normalize-live-frame): Rename to window-normalize-frame.
17384 (normalize-any-window): Rename to window-normalize-any-window.
17385 (normalize-live-window): Rename to window-normalize-live-window.
17386 (make-window-atom): Rename to window-make-atom.
17387 (window-resize-reset): Rename to window--resize-reset.
17388 (window-resize-reset-1): Rename to window--resize-reset-1.
17389 (resize-mini-window): Rename to window--resize-mini-window.
17390 (resize-subwindows-skip-p): Rename to
17391 window--resize-subwindows-skip-p.
17392 (resize-subwindows-normal): Rename to
17393 window--resize-subwindows-normal.
17394 (resize-subwindows): Rename to window--resize-subwindows.
17395 (resize-other-windows): Rename to window--resize-siblings.
17396 (resize-this-window): Rename to window--resize-this-window.
17397 (resize-root-window): Rename to window--resize-root-window.
17398 (resize-root-window-vertically): Rename to
17399 window--resize-root-window-vertically.
17400 (normalize-buffer-to-display): Rename to
17401 window-normalize-buffer-to-display.
17402 (normalize-buffer-to-switch-to): Rename to
17403 window-normalize-buffer-to-switch-to.
17404 Correspondingly update all callers of the functions listed
17405 above.
17406 (display-buffer-alist, display-buffer-normalize-arguments)
17407 (display-buffer-normalize-options, display-buffer)
17408 (display-buffer-alist-set): Use "function" instead of
17409 "fun-with-args".
17410
17411 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
17412
17413 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
17414 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
17415 debbugs.gnu.org. Mention acknowledgment email.
17416
17417 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
17418
17419 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
17420 buffer multibyteness, since it shouldn't matter.
17421
17422 2011-06-28 Martin Rudalics <rudalics@gmx.at>
17423
17424 * window.el (display-buffer-in-side-window): Handle dedicated
17425 windows as in display-buffer-reuse-window.
17426 (display-buffer-normalize-alist): Use value of override
17427 specifier.
17428 (display-buffer-normalize-specifiers): Use value of
17429 other-window-means-other-frame specifier.
17430 (display-buffer-alist): Rewrite some texts in widgets.
17431 (display-buffer): Spread arguments when calling function
17432 specified by fun-with-args.
17433
17434 2011-06-28 Deniz Dogan <deniz@dogan.se>
17435
17436 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17437 Unnest `let'.
17438
17439 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
17440 selectors (Bug#5732).
17441 (css-proprietary-nmstart-re): Use `regexp-opt'.
17442
17443 2011-06-27 Jari Aalto <jari.aalto@cante.net>
17444
17445 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
17446 (eshell-ls-date-format): New defcustom.
17447 (eshell-ls-file): Use it.
17448
17449 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17450
17451 * help-fns.el (describe-variable): Fix message for terminal-local vars.
17452
17453 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
17454
17455 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
17456 (ange-ftp-make-tmp-name): New arg.
17457 (ange-ftp-file-local-copy): Use it.
17458
17459 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
17460
17461 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
17462 no-conversion (Bug#8870).
17463
17464 2011-06-27 Martin Rudalics <rudalics@gmx.at>
17465
17466 * window.el (window-right, window-left, window-child)
17467 (window-child-count, window-last-child)
17468 (window-iso-combination-p, walk-window-tree-1)
17469 (window-atom-check-1, window-tree-1, delete-window)
17470 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
17471 new naming conventions - window-vchild, window-hchild,
17472 window-next and window-prev are now called window-top-child,
17473 window-left-child, window-next-sibling and window-prev-sibling
17474 respectively.
17475 (resize-window-reset): Rename to window-resize-reset.
17476 (resize-window-reset-1): Rename to window-resize-reset-1.
17477 (resize-window): Rename to window-resize.
17478 (window-min-height, window-min-width)
17479 (resize-mini-window, resize-this-window, resize-root-window)
17480 (resize-root-window-vertically, adjust-window-trailing-edge)
17481 (enlarge-window, shrink-window, maximize-window)
17482 (minimize-window, delete-window, quit-restore-window)
17483 (split-window, balance-windows, balance-windows-area-adjust)
17484 (balance-windows-area, window-state-put-2)
17485 (display-buffer-even-window-sizes, display-buffer-set-height)
17486 (display-buffer-set-width, set-window-text-height)
17487 (fit-window-to-buffer): Rename all "resize-window" prefixed
17488 calls to use the "window-resize" prefix convention.
17489 (display-buffer-alist): Fix symbol for label specifier.
17490 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
17491 corresponding specifier.
17492 Reported by Juanma Barranquero <lekktu@gmail.com>.
17493
17494 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17495
17496 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
17497 convention.
17498 (ses-call-printer): Does not pass an empty string to formatter when the
17499 cell is empty to keep from barking printer Calc math-format-value.
17500
17501 2011-06-27 Richard Stallman <rms@gnu.org>
17502
17503 * battery.el (battery-mode-line-limit): New variable.
17504 (battery-update): Handle it.
17505
17506 * mail/rmailmm.el (rmail-mime-process-multipart):
17507 Handle truncated messages.
17508
17509 2011-06-27 Glenn Morris <rgm@gnu.org>
17510
17511 * progmodes/flymake.el (flymake-err-line-patterns):
17512 Allow for column numbers in the ant/javac pattern. (Bug#8866)
17513
17514 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17515
17516 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
17517 (ses--clean-!, ses--clean-_): New functions.
17518 (ses-range): Add configurability of readout order, and conversion
17519 to Calc vector.
17520
17521 * ses.el (ses-repair-cell-reference-all): New function.
17522 (ses-cell-symbol): Set macro as safe, so that it can be used in
17523 formulas.
17524
17525 * ses.el: Update cycle detection algorithm.
17526 (ses-localvars): Add ses--Dijkstra-attempt-nb and
17527 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
17528 (ses-set-localvars): New function.
17529 (ses-make-cell): Add property-list as a cell element.
17530 (ses-cell-property-get-fun, ses-cell-property-get)
17531 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
17532 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
17533 New functions.
17534 (ses-cell-property-set, ses-cell-property-pop)
17535 (ses-cell-property-get-handle): New macro.
17536 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
17537 New aliases, used for code readability.
17538 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
17539 cycle detection.
17540 (ses-self-reference-early-detection): New defcustom.
17541 (ses-formula-references): Robustify against self-referring cells.
17542 (ses-mode): Use ses-set-localvars.
17543 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
17544 before lauching the update processing.
17545 (ses-initialize-Dijkstra-attempt): New function.
17546 (ses-recalculate-cell): Update for cycle detection based on
17547 Dijkstra algorithm.
17548
17549 * ses.el: Fix commenting and indenting convention.
17550
17551 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17552
17553 * bs.el (bs-cycle-next): Complete last change.
17554
17555 2011-06-27 Drew Adams <drew.adams@oracle.com>
17556
17557 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
17558
17559 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17560
17561 * net/network-stream.el (network-stream-open-starttls):
17562 Don't re-get capabilities unless we've reestablished connection.
17563 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
17564
17565 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
17566 to binary to possibly avoid line encoding issues on Windows (among
17567 other things).
17568
17569 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17570
17571 * net/network-stream.el (open-network-stream): Return an :error
17572 saying what the problem was, if possible.
17573
17574 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
17575 server.
17576
17577 * net/network-stream.el (network-stream-open-starttls): If we
17578 wanted to use STARTTLS, and the server offered it, but we weren't
17579 able to because we had no STARTTLS support, then close the connection.
17580 (open-network-stream): Return an :error element, if present.
17581
17582 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17583
17584 * hl-line.el (hl-line-sticky-flag): Doc fix.
17585 (global-hl-line-sticky-flag): New option (Bug#8323).
17586 (global-hl-line-highlight): Obey it.
17587
17588 * vc/vc.el (vc-revert-show-diff): Default to t.
17589
17590 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
17591
17592 * allout-widgets.el (allout-widgets-post-command-business):
17593 Stop decorating intermediate isearch matches. They're not being
17594 undecorated when an isearch is continued past, and isearch
17595 automatically collapses them. This leads to "widget leaks", where
17596 decorated items accumulate in collapsed areas. Lines with lots of
17597 hidden widgets can slow down cursor travel, substantially.
17598 Too much complicated machinery would be needed to ensure undecoration,
17599 so we're doing without this nicety.
17600
17601 (allout-widgets-tally-string): Don't try to do a hash-table-count
17602 of allout-widgets-tally when it's nil. This eliminates spurious "Error
17603 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
17604 *Messages* when allout-widgets-maintain-tally is t.
17605
17606 2011-06-26 Martin Rudalics <rudalics@gmx.at>
17607
17608 * window.el (display-buffer-normalize-argument): Rename to
17609 display-buffer-normalize-arguments. Handle special meaning of
17610 LABEL argument. Respect special-display-function when popping up
17611 a new frame. Fix code searching for a window showing the buffer
17612 on another frame.
17613 (display-buffer-normalize-specifiers):
17614 Call display-buffer-normalize-arguments.
17615 (display-buffer-in-window): Don't undedicate the window if its
17616 buffer remains the same.
17617 Reported by Drew Adams <drew.adams@oracle.com>.
17618 (display-buffer-alist): Add choice for same-window macro
17619 specfier.
17620 (display-buffer): Mention special meaning of LABEL argument in
17621 doc-string. Fix quoting. Don't pop up a new frame even as
17622 fallback.
17623
17624 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
17625
17626 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
17627 avoid deleting the current window in some cases (bug#8911).
17628
17629 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
17630
17631 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
17632 (Bug#8934)
17633
17634 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17635
17636 * net/network-stream.el (network-stream-open-starttls):
17637 Use built-in TLS support if `gnutls-available-p' is true.
17638 (network-stream-open-tls): Ditto.
17639
17640 2011-06-26 Leo Liu <sdl.web@gmail.com>
17641
17642 * register.el (registerv): New struct.
17643 (registerv-make): New function.
17644 (jump-to-register, describe-register-1, insert-register):
17645 Support the jump-func, print-func and insert-func slot of a registerv
17646 struct. (Bug#8415)
17647
17648 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17649
17650 * vc/vc.el (vc-revert-show-diff): New defcustom.
17651 (vc-diff-internal): New arg specifying diff buffer.
17652 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
17653 reuse an existing *vc-diff* buffer (Bug#8927).
17654
17655 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
17656
17657 2011-06-26 Glenn Morris <rgm@gnu.org>
17658
17659 * progmodes/f90.el (f90-critical-indent): New option.
17660 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
17661 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
17662 (f90-mode): Doc fix.
17663 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
17664 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
17665 (f90-beginning-of-block, f90-next-block, f90-indent-region)
17666 (f90-match-end): Handle block, critical.
17667
17668 2011-06-25 Glenn Morris <rgm@gnu.org>
17669
17670 * calendar/diary-lib.el (diary-included-files): Doc fix.
17671 (diary-include-files): New function, extracted from
17672 diary-include-other-diary-files and diary-mark-included-diary-files.
17673 (diary-include-other-diary-files, diary-mark-included-diary-files):
17674 Just call diary-include-files.
17675 (diary-mark-entries): Reset diary-included-files on first call.
17676
17677 * calendar/diary-lib.el (diary-mark-entries)
17678 (diary-mark-included-diary-files):
17679 Visit included diary-files in temp buffers.
17680
17681 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
17682 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
17683 (f90-start-block-re, f90-imenu-generic-expression)
17684 (f90-looking-at-program-block-start, f90-no-block-limit):
17685 Add support for submodules.
17686
17687 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
17688 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
17689
17690 2011-06-25 Eli Zaretskii <eliz@gnu.org>
17691
17692 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
17693 buffer-file-type before setting its value, to avoid disastrous
17694 global effects on decoding files for DOS/Windows systems. (Bug#8780)
17695
17696 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17697
17698 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
17699
17700 * ses.el (ses-unload-function):
17701 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
17702
17703 * proced.el (proced-unload-function):
17704 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
17705
17706 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
17707
17708 * server.el (server-create-window-system-frame): Add parameters arg.
17709 (server-process-filter): Doc fix. Handle frame-parameters.
17710
17711 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17712
17713 Fix bug#8730, bug#8781.
17714
17715 * loadhist.el (unload--set-major-mode): New function.
17716 (unload-feature): Use it.
17717
17718 * progmodes/python.el (python-after-info-look): Add autoload cookie.
17719 (python-unload-function): New function.
17720
17721 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
17722
17723 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
17724
17725 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
17726
17727 * net/browse-url.el (browse-url-firefox-program): Add icecat to
17728 the candidates list.
17729
17730 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17731
17732 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
17733
17734 2011-06-23 Richard Stallman <rms@gnu.org>
17735
17736 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
17737 (rmail-variables): Set next-error-move-function.
17738 (rmail-what-message): Take argument POS.
17739 (rmail-next-error-move): New function.
17740
17741 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
17742
17743 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
17744 messages for adjacent non-terminals.
17745
17746 2011-06-23 Richard Stallman <rms@gnu.org>
17747
17748 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
17749 (rmail-show-message-1): Preserve buffer modified flag.
17750 (rmail-start-mail): Don't specify use of rmail-mail-return;
17751 that's done by mail-bury now.
17752 (rmail-mail-return): Handle arg NEWBUF.
17753
17754 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
17755
17756 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
17757 SIZE is a number.
17758
17759 2011-06-23 Martin Rudalics <rudalics@gmx.at>
17760
17761 * window.el (get-lru-window, get-mru-window)
17762 (get-largest-window): Never return a minibuffer window.
17763 (display-buffer-pop-up-window): Fix a bug that could lead to
17764 reusing the minibuffer window.
17765 (display-buffer): Pass original specifier argument to
17766 display-buffer-function instead of the normalized one.
17767 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17768
17769 2011-06-22 Leo Liu <sdl.web@gmail.com>
17770
17771 * minibuffer.el (completing-read-function)
17772 (completing-read-default): Move from minibuf.c.
17773
17774 2011-06-22 Richard Stallman <rms@gnu.org>
17775
17776 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
17777 to Rmail even if not started by a special Rmail command.
17778
17779 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
17780 Copy the buffer currently showing just one message.
17781
17782 2011-06-22 Roland Winkler <winkler@gnu.org>
17783
17784 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
17785 (bibtex-clean-entry): First delete the old key so that a
17786 customized algorithm for generating the new key does not get
17787 confused by the old key.
17788 (bibtex-url): Obey regexp of first step.
17789 (bibtex-search-entries): Do not use add-to-list with local
17790 list-var.
17791
17792 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17793
17794 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
17795 stored a user name, then query for the password first, instead of
17796 waiting for SMTP to give an error message and the trying again.
17797
17798 2011-06-22 Lawrence Mitchell <wence@gmx.li>
17799
17800 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
17801 BUFFER in call-process.
17802
17803 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17804
17805 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
17806 QUIT twice.
17807 (smtpmail-try-auth-methods): Require user name and password from
17808 auth-source.
17809
17810 2011-06-22 Martin Rudalics <rudalics@gmx.at>
17811
17812 * window.el (display-buffer-default-specifiers)
17813 (display-buffer-alist): Remove entries for pop-up-frame-alist.
17814 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
17815 (split-window): Normalize SIDE argument (Bug#8916).
17816
17817 * frame.el (pop-up-frame-alist, pop-up-frame-function)
17818 (special-display-frame-alist, special-display-popup-frame):
17819 Remove duplicate declarations. These are now in window.el.
17820
17821 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
17822
17823 * mail/smtpmail.el (smtpmail-via-smtp):
17824 Set :use-starttls-if-possible so that we always use STARTTLS if the
17825 server supports it. SMTP servers that support STARTTLS commonly
17826 require it.
17827
17828 * net/network-stream.el (network-stream-open-starttls): Support
17829 upgrading to STARTTLS always, even if we don't have built-in support.
17830 (open-network-stream): Add the :always-query-capabilities keyword.
17831
17832 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
17833 upgrades with `open-network-stream', and rely solely on
17834 auth-source for all credentials. Big changes throughout the file,
17835 but in particular:
17836 (smtpmail-auth-credentials): Remove.
17837 (smtpmail-starttls-credentials): Remove.
17838 (smtpmail-via-smtp): Check for servers saying they want AUTH after
17839 MAIL FROM, too.
17840
17841 * net/network-stream.el (network-stream-open-starttls):
17842 Provide support for client certificates both for external and built-in
17843 STARTTLS.
17844 (auth-source): Require.
17845 (open-network-stream): Document the :client-certificate keyword.
17846 (network-stream-certificate): Change cert-cert to cert and
17847 cert-key to key.
17848
17849 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
17850
17851 * net/tramp-cache.el (top): Don't load the persistency file when
17852 "emacs -Q" has been called.
17853
17854 2011-06-21 Tim Harper <timcharper@gmail.com>
17855
17856 * term/ns-win.el (ns-initialize-window-system):
17857 Set application-specific `ApplePressAndHoldEnabled' system
17858 resource to NO as it is not yet supported by the NS port.
17859
17860 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
17861
17862 * misc.el (list-dynamic-libraries--refresh): Compute header here...
17863 (list-dynamic-libraries): ...not here.
17864
17865 2011-06-21 Leo Liu <sdl.web@gmail.com>
17866
17867 * subr.el (sha1): Implement sha1 using secure-hash.
17868
17869 2011-06-21 Martin Rudalics <rudalics@gmx.at>
17870
17871 * window.el (display-buffer-alist): In default value do not
17872 enforce searching a window on any but the selected frame.
17873 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
17874 (display-buffer-select-window): Remove function.
17875 (display-buffer-in-window): When a window on another frame gets
17876 reused, do not select it any more but just raise its frame if
17877 necessary (Bug#8851) and (Bug#8856).
17878 (display-buffer-normalize-options): Handle pop-up-frames related
17879 options more faithfully.
17880 (pop-to-buffer): Don't rely on `display-buffer' selecting the
17881 window if it is on another frame.
17882 (display-buffer-alist, display-buffer-default-specifiers):
17883 Don't make new frame unsplittable by default.
17884 (display-buffer-normalize-argument): Fix doc-string typo and use
17885 'same-frame-other-window instead of 'other-window when associating
17886 with display-buffer-macro-specifiers.
17887
17888 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
17889
17890 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
17891 New functions.
17892 (5x5-mode-map, 5x5-mode-menu): Bind them.
17893 (5x5-draw-grid): Tweak the solver's rendering.
17894
17895 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17896
17897 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
17898 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
17899
17900 2011-06-21 Drew Adams <drew.adams@oracle.com>
17901
17902 * menu-bar.el: Use function variable instead of switch-to-buffer.
17903 (menu-bar-select-buffer-function): New variable.
17904 (menu-bar-update-buffers): Use it (bug#8876).
17905
17906 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17907
17908 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
17909 variable's status.
17910
17911 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
17912
17913 * x-dnd.el (x-dnd-version-from-flags)
17914 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
17915 and long as number (Bug#8899).
17916 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
17917
17918 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17919
17920 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
17921 (completion-try-completion, completion-all-completions): Compute the
17922 metadata argument if it's missing; make it optional (bug#8795).
17923
17924 * wid-edit.el: Use lex-bind and move towards completion-at-point.
17925 (widget-complete): Use new :completion-function property.
17926 (widget-completions-at-point): New function.
17927 (default): Use :completion-function instead of :complete.
17928 (widget-default-completions): Rename from widget-default-complete;
17929 Rewrite.
17930 (widget-string-complete, widget-file-complete, widget-color-complete):
17931 Remove functions.
17932 (file, symbol, function, variable, coding-system, color):
17933 * international/mule-cmds.el (default-input-method, charset)
17934 (language-info-custom-alist):
17935 * cus-edit.el (face): Use new property :completions.
17936
17937 * progmodes/pascal.el (pascal-completions-at-point): New function.
17938 (pascal-mode): Use it.
17939 (pascal-mode-map): Use completion-at-point.
17940 (pascal-toggle-completions): Make obsolete.
17941 (pascal-complete-word, pascal-show-completions):
17942 * progmodes/octave-mod.el (octave-complete-symbol):
17943 Redefine as obsolete alias.
17944 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
17945 Signal absence of completion info for old Octave,
17946 (inferior-octave-complete): Redefine as obsolete alias.
17947 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
17948 (meta-completions-at-point): Rename from meta-complete-symbol and
17949 adapt it for use on completion-at-point-functions.
17950 (meta-common-mode): Use it.
17951 (meta-looking-at-backward, meta-match-buffer): Remove.
17952 (meta-complete-symbol): Redefine as obsolete alias.
17953 (meta-common-mode-map): Use completion-at-point.
17954 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
17955 (makefile-mode-map): Use completion-at-point.
17956 (makefile-completions-at-point): Rename from makefile-complete and
17957 adapt it for use on completion-at-point-functions.
17958 (makefile-mode): Use it.
17959 (makefile-complete): Redefine as obsolete alias.
17960
17961 2011-06-20 Deniz Dogan <deniz@dogan.se>
17962
17963 * net/rcirc.el: Delete trailing whitespaces once and for all.
17964
17965 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
17966
17967 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
17968
17969 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
17970
17971 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
17972
17973 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
17974
17975 2011-06-19 Martin Rudalics <rudalics@gmx.at>
17976
17977 * window.el (display-buffer-other-window-means-other-frame):
17978 Call display-buffer-normalize-alist.
17979 (display-buffer-normalize-specifiers-1): Rename to
17980 display-buffer-normalize-argument. New argument other-frame.
17981 Rewrite.
17982 (display-buffer-normalize-specifiers-2): Rename to
17983 display-buffer-normalize-options.
17984 (display-buffer-normalize-alist-1): New function.
17985 (display-buffer-normalize-specifiers-3): Rename to
17986 display-buffer-normalize-alist.
17987 Call display-buffer-normalize-alist-1.
17988 (display-buffer-normalize-options-inhibit): New variable.
17989 (display-buffer-normalize-specifiers): Rewrite calling
17990 display-buffer-normalize-alist,
17991 display-buffer-normalize-argument, and
17992 display-buffer-normalize-options. Don't call the latter if
17993 display-buffer-normalize-options-inhibit is non-nil.
17994 (frame-auto-delete): New option.
17995 (window-deletable-p): Use frame-auto-delete.
17996 (window-list-no-nils, window-state-ignored-parameters)
17997 (window-state-get-1, window-state-get, window-state-put-list)
17998 (window-state-put-1, window-state-put-2, window-state-put):
17999 New functions.
18000 (display-buffer-normalize-options): Move special-display-p group
18001 after pop-up-frame group (Bug#8851) and (Bug#8856).
18002
18003 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
18004
18005 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
18006 groups (Bug#8776).
18007 (rx-submatch-n): New function.
18008 (rx): Document it.
18009
18010 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
18011 (Bug#8768).
18012
18013 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
18014
18015 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
18016
18017 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
18018 anytime existing face settings are present (Bug#8889).
18019
18020 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
18021 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
18022 Remove unused argument.
18023
18024 2011-06-18 Martin Rudalics <rudalics@gmx.at>
18025
18026 * window.el (display-buffer-default-specifiers):
18027 Remove pop-up-frame. Add pop-up-window-min-height,
18028 pop-up-window-min-width, and another reuse-window specifier
18029 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
18030 (display-buffer-normalize-specifiers-2):
18031 Handle split-height-threshold and split-width-threshold also when
18032 pop-up-windows is unset. Add a reuse-window specifier for the
18033 case popping up a new window fails.
18034 (special-display-popup-frame): Remove double quoting.
18035 (display-buffer-normalize-specifiers-1): Fix thinko.
18036
18037 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
18038
18039 * shell.el (shell-completion-vars): Set pcomplete-termination-string
18040 according to comint-completion-addsuffix.
18041
18042 * pcomplete.el: Convert to lexical binding and fix bug#8819.
18043 (pcomplete-suffix-list): Mark as obsolete.
18044 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
18045 pcomplete-seen in the closure.
18046 (pcomplete-comint-setup): Setup completion-at-point as well.
18047 (pcomplete--entries): New function.
18048 (pcomplete--env-regexp): New var.
18049 (pcomplete-entries): Rewrite to work with partial-completion and
18050 without relying on pcomplete-suffix-list.
18051 (pcomplete-pare-list): Remove, unused.
18052
18053 2011-06-17 Martin Rudalics <rudalics@gmx.at>
18054
18055 * window.el (display-buffer-alist): Set pop-up-window-min-height
18056 and pop-up-window-min-width in default value. Reported by
18057 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
18058 other-window-means-other-frame.
18059 (display-buffer-macro-specifiers): Comment out entry for
18060 other-window specifier.
18061 (display-buffer-other-window-means-other-frame): New function.
18062 (display-buffer-normalize-specifiers-1): New arguments
18063 buffer-name and label. Treat other-window case specially.
18064 (display-buffer-normalize-specifiers-2): Treat other-window case
18065 specially.
18066 (display-buffer-normalize-specifiers-3): New function.
18067 (display-buffer-normalize-specifiers):
18068 Call display-buffer-normalize-specifiers-3.
18069
18070 2011-06-17 Martin Rudalics <rudalics@gmx.at>
18071
18072 * window.el (same-window-p): Fix two typos introduced when
18073 adding with-no-warnings.
18074 (display-buffer-normalize-specifiers-1): Don't check
18075 pop-up-frames for 'unset initialization.
18076 (display-buffer-normalize-specifiers-2): Major rewrite using
18077 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
18078 (pop-up-frames, display-buffer-reuse-frames)
18079 (display-buffer-mark-dedicated): Don't initialize to 'unset.
18080 Suggested by David Engster <deng@randomsample.de>.
18081 (even-window-heights): Initialize to 'unset.
18082 (display-buffer-alist-set): Handle new 'unset initializations.
18083 (display-buffer-macro-specifiers): Don't pop up a new frame in the
18084 other window case.
18085
18086 2011-06-16 Martin Rudalics <rudalics@gmx.at>
18087
18088 * window.el (display-buffer-normalize-specifiers-1):
18089 Respect current value of pop-up-frames for most reasonable values of
18090 second argument of display-buffer (Bug#8865).
18091 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
18092 (switch-to-buffer-other-window-same-frame)
18093 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
18094 Adams (Bug#8875).
18095 (display-buffer): Don't check noninteractive when calling
18096 display-buffer-pop-up-frame.
18097 (display-buffer-pop-up-frame): Never pop up a frame in
18098 noninteractive mode (Bug#8857).
18099 (enlarge-window, shrink-window): Don't report an error when the
18100 window can't be resized as requested (Bug#8862).
18101
18102 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18103
18104 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
18105
18106 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
18107
18108 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
18109
18110 2011-06-15 Alan Mackenzie <acm@muc.de>
18111
18112 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
18113 for declarators, disable knr checking to speed up for normal files.
18114 2: Refactor, replacing a sequence of nested if forms by a cond form.
18115
18116 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18117
18118 * net/network-stream.el (open-network-stream): Add the keyword
18119 :always-query-capabilities for the case where you want to force a
18120 `plain' network connection, but the protocol still requires the
18121 capabilitiy command (i.e., SMTP and EHLO).
18122
18123 * subr.el (process-live-p): Rename from `process-alive-p' for
18124 consistency with other `-live-p' functions.
18125
18126 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18127
18128 * window.el (same-window-buffer-names, same-window-regexps)
18129 (special-display-frame-alist, special-display-popup-frame)
18130 (special-display-function, special-display-buffer-names)
18131 (special-display-regexps, pop-up-frame-alist)
18132 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
18133 (pop-up-windows, split-window-preferred-function)
18134 (split-height-threshold, split-width-threshold, even-window-heights)
18135 (display-buffer-mark-dedicated): Don't encourage the use of
18136 display-buffer-alist from Elisp code.
18137
18138 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
18139
18140 * progmodes/python.el (python-mode): Derive from prog-mode.
18141 * progmodes/ps-mode.el (ps-mode):
18142 * progmodes/mixal-mode.el (mixal-mode):
18143 * progmodes/cfengine.el (cfengine-mode):
18144 * progmodes/ld-script.el (ld-script-mode): Likewise.
18145
18146 2011-06-15 Martin Rudalics <rudalics@gmx.at>
18147
18148 * window.el (display-buffer-alist): Trim default value to avoid
18149 popping up a new frame (Bug#8857) or reusing an arbitrary window
18150 on another frame.
18151 (display-buffer): Do not fall back on popping up a new frame in
18152 batch mode (Bug#8857).
18153
18154 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
18155
18156 * cus-theme.el (describe-theme-1): Use custom-theme-p.
18157 (custom-theme-summary): New function.
18158 (customize-themes): Use it.
18159
18160 2011-06-13 Glenn Morris <rgm@gnu.org>
18161
18162 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
18163
18164 2011-06-13 Martin Rudalics <rudalics@gmx.at>
18165
18166 * help.el (help-window): Remove variable.
18167 (help-window-point-marker, temp-buffer-max-height)
18168 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
18169 (help-print-return-message): Don't set help-window.
18170 (resize-temp-buffer-window): Rewrite cod eand doc-string.
18171 (help-window-setup-finish): Remove.
18172 (help-window-display-message, help-window-setup)
18173 (with-help-window): Major rewrite based on new
18174 display-buffer-window variable.
18175
18176 * help-mode.el (help-mode-finish): Remove help-window related
18177 code.
18178
18179 * view.el (view-exits-all-viewing-windows): Remove reference to
18180 view-return-to-alist in doc-string.
18181 (view-return-to-alist): Make obsolete.
18182 (view-buffer): Call pop-to-buffer-same-window and remove
18183 undo-window code.
18184 (view-buffer-other-window): Call pop-to-buffer-other-window and
18185 simplify code. Ignore second argument.
18186 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
18187 simplify code. Ignore second argument.
18188 (view-return-to-alist-update): Make obsolete.
18189 (view-mode-enter): Rename second argument to QUIT-RESTORE.
18190 Rewrite using quit-restore window parameters.
18191 (view-mode-exit): Rename second argument to EXIT-ONLY.
18192 Rewrite using quit-restore-window.
18193 (View-exit, View-exit-and-edit, View-leave, View-quit)
18194 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
18195 appropriate arguments.
18196 (view-end-message): Use quit-restore window parameter.
18197
18198 * window.el (display-buffer-function): Rewrite doc-string.
18199 (display-buffer-window, display-buffer-alist): New variables.
18200 (display-buffer-split-specifiers)
18201 (display-buffer-side-specifiers)
18202 (display-buffer-macro-specifiers): New constants.
18203 (display-buffer-even-window-sizes, display-buffer-set-height)
18204 (display-buffer-set-width, display-buffer-select-window)
18205 (display-buffer-in-window, display-buffer-reuse-window)
18206 (display-buffer-split-window-1, display-buffer-split-window)
18207 (display-buffer-split-atom-window, display-buffer-pop-up-window)
18208 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
18209 (display-buffer-in-side-window, normalize-buffer-to-display)
18210 (display-buffer-normalize-specifiers-1)
18211 (display-buffer-normalize-specifiers-2)
18212 (display-buffer-normalize-specifiers, display-buffer-frame):
18213 New functions.
18214 (display-buffer): Major rewrite.
18215 (display-buffer-other-window, display-buffer-other-frame)
18216 (pop-to-buffer, switch-to-buffer-other-window)
18217 (switch-to-buffer-other-frame): Rewrite.
18218 (display-buffer-same-window, display-buffer-same-frame)
18219 (display-buffer-same-frame-other-window)
18220 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
18221 (pop-to-buffer-other-window)
18222 (pop-to-buffer-same-frame-other-window)
18223 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
18224 (switch-to-buffer-other-window-same-frame): New functions.
18225 (same-window-p, special-display-p): Rewrite disabling warnings.
18226 Make obsolete.
18227 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
18228 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
18229 Make obsolete
18230 (same-window-buffer-names, same-window-regexps)
18231 (special-display-frame-alist, special-display-popup-frame)
18232 (special-display-function, special-display-buffer-names)
18233 (special-display-regexps, pop-up-frame-alist)
18234 (pop-up-frame-function, split-window-preferred-function)
18235 (split-height-threshold, split-width-threshold)
18236 (even-window-heights): Make obsolete.
18237
18238 2011-06-12 Glenn Morris <rgm@gnu.org>
18239
18240 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
18241 Misc simplifications.
18242
18243 2011-06-12 Martin Rudalics <rudalics@gmx.at>
18244
18245 * window.el (window-safely-shrinkable-p): Restore function which
18246 was inadvertently removed in change from 2011-06-11. Declare as
18247 obsolete.
18248
18249 * calendar/calendar.el (calendar-generate-window):
18250 Use window-iso-combined-p instead of combination of one-window-p and
18251 window-safely-shrinkable-p.
18252
18253 2011-06-12 Glenn Morris <rgm@gnu.org>
18254
18255 * progmodes/fortran.el (fortran-mode-syntax-table):
18256 * progmodes/f90.el (f90-mode-syntax-table):
18257 Set % to punctuation. (Bug#8820)
18258 (f90-find-tag-default): Remove, no longer needed.
18259
18260 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
18261
18262 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
18263
18264 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18265
18266 * image.el (image-animated-p): Return animation delay in seconds.
18267 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
18268 (image-animate-timeout): Remove DELAY argument. Don't assume
18269 every subimage has the same delay; get it from image-animated-p.
18270 (image-animate): Caller changed.
18271
18272 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
18273
18274 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
18275 to ignored backtrace functions.
18276
18277 2011-06-11 Glenn Morris <rgm@gnu.org>
18278
18279 * calendar/appt.el (appt-disp-window-function): Doc fix.
18280 (appt-check): Handle overlapping appointments. (Bug#8337)
18281
18282 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18283
18284 * window.el (window-tree-1, window-tree): New functions, moving
18285 the latter to window.el.
18286 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
18287 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
18288 (bw-refresh-edges): Remove.
18289 (balance-windows-1, balance-windows-2): New functions.
18290 (balance-windows): Rewrite in terms of window tree functions,
18291 balance-windows-1 and balance-windows-2.
18292 (bw-adjust-window): Remove.
18293 (balance-windows-area-adjust): New function with functionality of
18294 bw-adjust-window but using resize-window.
18295 (set-window-text-height): Rewrite doc-string.
18296 Use normalize-live-window and resize-window.
18297 (enlarge-window-horizontally, shrink-window-horizontally):
18298 Rename argument to DELTA.
18299 (window-buffer-height): New function.
18300 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
18301 Rewrite using new window resize routines.
18302 (kill-buffer-and-window, mouse-autoselect-window-select):
18303 Use ignore-errors instead of condition-case.
18304 (quit-window): Call delete-frame instead of delete-windows-on
18305 for the only buffer on frame.
18306
18307 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18308
18309 * loadup.el (top-level): Load window before files for the sake
18310 of replace-buffer-in-windows.
18311
18312 * files.el (read-buffer-to-switch)
18313 (switch-to-buffer-other-window)
18314 (switch-to-buffer-other-frame, display-buffer-other-frame):
18315 Move to window.el.
18316
18317 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
18318 (previous-buffer): Move to window.el.
18319
18320 * bindings.el (unbury-buffer): Move to window.el.
18321
18322 * window.el (delete-other-windows-vertically): Move after
18323 definition of delete-other-windows.
18324 (other-window, delete-windows-on, replace-buffer-in-windows):
18325 Move here from window.c.
18326 (record-window-buffer, unrecord-window-buffer)
18327 (set-window-buffer-start-and-point, switch-to-prev-buffer)
18328 (switch-to-next-buffer): New functions.
18329 (get-next-valid-buffer, last-buffer, next-buffer): Move here
18330 from simple.el. Call switch-to-next-buffer.
18331 (previous-buffer): Move here from simple.el.
18332 Call switch-to-prev-buffer.
18333 (bury-buffer): Move here from buffer.c. Switch to previous
18334 buffer when window cannot be deleted.
18335 (unbury-buffer): Move here from bindings.el.
18336 (ctl-x-map): Move binding for other-window from window.c to
18337 here.
18338 (read-buffer-to-switch, switch-to-buffer-other-window)
18339 (switch-to-buffer-other-frame): Move here from files.el.
18340 (normalize-buffer-to-switch-to): New functions.
18341 (switch-to-buffer): Move here from buffer.c.
18342 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
18343
18344 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18345
18346 * window.el (window-min-height, window-min-width): Move here
18347 from window.c. Add defcustoms and rewrite doc-strings.
18348 (resize-mini-window, resize-window): New functions.
18349 (adjust-window-trailing-edge, enlarge-window, shrink-window):
18350 Move here from window.c.
18351 (maximize-window, minimize-window): New functions.
18352 (delete-window, delete-other-windows, split-window): Move here
18353 from window.c.
18354 (window-split-min-size): New function.
18355 (split-window-keep-point): Mention split-window-above-each-other
18356 instead of split-window-vertically.
18357 (split-window-above-each-other, split-window-vertically):
18358 Rename split-window-vertically to split-window-above-each-other
18359 and provide defalias for old definition.
18360 (split-window-side-by-side, split-window-horizontally):
18361 Rename split-window-horizontally to split-window-side-by-side
18362 and provide defalias for the old definition.
18363 (ctl-x-map): Move bindings for delete-window,
18364 delete-other-windows and enlarge-window here from window.c.
18365 Replace bindings for split-window-vertically and
18366 split-window-horizontally by bindings for
18367 split-window-above-each-other and split-window-side-by-side.
18368
18369 * cus-start.el (all): Remove entries for window-min-height and
18370 window-min-width. Add entries for window-splits and
18371 window-nest.
18372
18373 2011-06-09 Glenn Morris <rgm@gnu.org>
18374
18375 * calendar/appt.el (appt-mode-line): New function.
18376 (appt-check, appt-disp-window): Use it.
18377
18378 * files.el (hack-one-local-variable-eval-safep):
18379 Allow minor-modes with explicit +/-1 arguments.
18380
18381 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
18382
18383 * term/xterm.el (xterm): Add defgroup.
18384 (xterm-extra-capabilities): Add defcustom to supply known xterm
18385 capabilities, skip querying them, or query them (default).
18386 (terminal-init-xterm): Use it.
18387 (terminal-init-xterm-modify-other-keys): New function to set up
18388 modifyOtherKeys support to simplify `terminal-init-xterm'.
18389
18390 2011-06-09 Martin Rudalics <rudalics@gmx.at>
18391
18392 * window.el (resize-window-reset, resize-window-reset-1)
18393 (resize-subwindows-skip-p, resize-subwindows-normal)
18394 (resize-subwindows, resize-other-windows, resize-this-window)
18395 (resize-root-window, resize-root-window-vertically)
18396 (window-deletable-p, window-or-subwindow-p)
18397 (frame-root-window-p): New functions.
18398
18399 2011-06-09 Glenn Morris <rgm@gnu.org>
18400
18401 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
18402 (ange-ftp-get-files): Use it.
18403
18404 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
18405
18406 * mail/sendmail.el (mail-recover-1, mail-recover):
18407 * files.el (recover-file, recover-session):
18408 Handle dired-listing-switches not being just a single short option.
18409
18410 2011-06-09 Glenn Morris <rgm@gnu.org>
18411
18412 * calendar/appt.el (appt-display-message, appt-disp-window):
18413 Handle lists of appointments.
18414
18415 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18416
18417 * window.el (one-window-p): Move down in code.
18418 Rewrite doc-string.
18419 (window-current-scroll-bars): Rewrite doc-string.
18420 Normalize live window argument.
18421 (walk-windows, get-window-with-predicate, count-windows):
18422 Rewrite doc-string. Use window-list-1.
18423 (window-in-direction-2, window-in-direction, get-mru-window):
18424 New functions.
18425
18426 2011-06-08 Reuben Thomas <rrt@sc3d.org>
18427
18428 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
18429 Doc fix (Bug#8713).
18430
18431 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
18432
18433 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
18434
18435 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
18436
18437 * loadhist.el (unload-feature-special-hooks):
18438 Add `comint-output-filter-functions'.
18439
18440 2011-06-08 Ivan Kanis <gnu@kanis.fr>
18441
18442 * calendar/appt.el (appt-check): Move some initializations into the let.
18443
18444 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18445
18446 * window.el (window-height): Defalias to window-total-height.
18447 (window-width): Defalias to window-body-width.
18448
18449 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
18450
18451 * image-mode.el (image-toggle-animation): New command.
18452 (image-mode-map): Bind it to RET.
18453 (image-mode): Update message.
18454 (image-toggle-display-image): Avoid a spurious cache flush.
18455 (image-transform-rotation): Doc fix.
18456 (image-transform-properties): Return quickly in the normal case.
18457 (image-animate-loop): Rename from image-animate-max-time.
18458
18459 * image.el (image-animate-max-time): Move to image-mode.el.
18460 (create-animated-image): Remove unnecessary function.
18461 (image-animate): Rename from image-animate-start. New arg.
18462 (image-animate-stop): Remove; just use image-animate-timer.
18463 (image-animate-timer): Use car-safe.
18464 (image-animate-timeout): Rename argument.
18465
18466 2011-06-07 Martin Rudalics <rudalics@gmx.at>
18467
18468 * window.el (get-lru-window, get-largest-window): Move here from
18469 window.c. Rename first argument to ALL-FRAMES.
18470 Rephrase doc-strings.
18471 (get-buffer-window-list): Rewrite using window-list-1.
18472 Rephrase doc-string.
18473 (window-safe-min-height, window-safe-min-width): New constants.
18474 (window-size-ignore, window-min-size, window-min-size-1)
18475 (window-sizable, window-sizable-p, window-size-fixed-1)
18476 (window-size-fixed-p, window-min-delta-1, window-min-delta)
18477 (window-max-delta-1, window-max-delta, window-resizable)
18478 (window-resizable-p, window-total-height, window-total-width)
18479 (window-body-width): New functions.
18480 (window-full-height-p, window-full-width-p): Rewrite using
18481 window-total-size.
18482 (window-body-height): Rewrite using window-body-size.
18483
18484 2011-06-06 Martin Rudalics <rudalics@gmx.at>
18485
18486 * window.el (window-right, window-left, window-child)
18487 (window-child-count, window-last-child, window-any-p)
18488 (normalize-live-buffer, normalize-live-frame)
18489 (normalize-any-window, normalize-live-window)
18490 (window-iso-combination-p, window-iso-combined-p)
18491 (window-iso-combinations)
18492 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
18493 (windows-with-parameter, window-with-parameter)
18494 (window-atom-root, make-window-atom, window-atom-check-1)
18495 (window-atom-check, window-side-check, window-check):
18496 New functions.
18497 (ignore-window-parameters, window-sides, window-sides-vertical)
18498 (window-sides-slots): New variables.
18499 (window-size-fixed): Move down in code. Minor doc-string fix.
18500
18501 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
18502
18503 * comint.el (comint-dynamic-complete-as-filename)
18504 (comint-dynamic-complete-filename): Correctly call
18505 completion-in-region.
18506
18507 2011-06-05 Deniz Dogan <deniz@dogan.se>
18508
18509 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
18510 in last change.
18511
18512 2011-06-05 Deniz Dogan <deniz@dogan.se>
18513
18514 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
18515 (rcirc): Use it to prompt for encryption.
18516
18517 2011-06-05 Roland Winkler <winkler@gnu.org>
18518
18519 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
18520 (bibtex-search-entries): New command bound to C-c C-a.
18521 (bibtex-display-entries): New function.
18522
18523 2011-06-05 Roland Winkler <winkler@gnu.org>
18524
18525 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
18526 (bibtex-insert-kill): After yanking insert newline if necessary.
18527 (bibtex-initialize): Call bibtex-string-files-init only once.
18528 (bibtex-mode): Do not call easy-menu-add.
18529 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
18530 (bibtex-yank): Set arg properly if nil.
18531
18532 2011-06-05 Roland Winkler <winkler@gnu.org>
18533
18534 * textmodes/bibtex.el (bibtex-search-entry-globally):
18535 New variable.
18536 (bibtex-search-entry): Use it.
18537
18538 2011-06-05 Roland Winkler <winkler@gnu.org>
18539
18540 * textmodes/bibtex.el (bibtex-entry-format): New option
18541 sort-fields.
18542 (bibtex-format-entry, bibtex-reformat): Honor this option.
18543 (bibtex-parse-entry): Return fields in proper order.
18544
18545 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
18546
18547 * doc-view.el (doc-view-remove-if): Move computation of result out
18548 of `dolist' to silence misleading lexical-binding warning.
18549
18550 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
18551
18552 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
18553 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
18554
18555 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18556
18557 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
18558 "SunOS 5.10".
18559
18560 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18561
18562 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
18563 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
18564 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
18565 (tramp-parse-putty):
18566 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
18567 (tramp-completion-function-alist-ssh)
18568 (tramp-completion-function-alist-telnet)
18569 (tramp-completion-function-alist-su)
18570 (tramp-completion-function-alist-putty): Set `tramp-autoload'
18571 cookie.
18572
18573 * net/tramp-ftp.el:
18574 * net/tramp-sh.el:
18575 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
18576 load "tramp.el" `tramp-set-completion-function'.
18577
18578 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
18579
18580 * shell.el: Require and use pcomplete.
18581 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
18582 (shell-completion-vars): Set pcomplete-default-completion-function.
18583
18584 2011-06-04 Deniz Dogan <deniz@dogan.se>
18585
18586 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
18587 `memq' (Bug#8799).
18588
18589 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18590
18591 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
18592
18593 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
18594
18595 * bs.el (bs--mark-unmark, bs--nth-wrapper):
18596 * mpc.el (mpc-select-extend, mpc-songpointer-context):
18597 * vc/log-view.el (log-view-beginning-of-defun):
18598 * vc/smerge-mode.el (smerge-apply-resolution-patch)
18599 (smerge-refine-forward, smerge-refine-chopup-region):
18600 Silence warning for unused `dotimes' counter variables.
18601
18602 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18603
18604 * net/tramp.el (tramp-with-progress-reporter): Rename from
18605 with-progress-reporter. Use `declare'.
18606 * net/tramp-smb.el:
18607 * net/tramp-sh.el:
18608 * net/tramp-gvfs.el: Update all uses.
18609
18610 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
18611
18612 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
18613 buffer isn't killed before making it current.
18614
18615 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18616
18617 Silence various byte-compiler warnings.
18618 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
18619 `access-type' and new obsolescence format.
18620 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
18621 new format.
18622 (byte-compile-check-variable): New `access-type' argument.
18623 Only warn if the access-type is obsolete.
18624 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
18625 (byte-compile-variable-set): Adjust callers.
18626 * help-fns.el (describe-variable): Adjust to new obsolescence format.
18627 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
18628 setting it as obsolete.
18629 * simple.el (minibuffer-completing-symbol):
18630 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
18631 access as obsolete.
18632 * minibuffer.el (minibuffer-completing-file-name): Don't make it
18633 obsolete yet.
18634 * international/quail.el (quail-mouse-choose-completion): Remove unused
18635 code referring to obsolete var.
18636 (quail-choose-completion-string): Remove.
18637 * server.el (server-clients-with, server-kill-buffer-query-function)
18638 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
18639 * proced.el (proced-send-signal):
18640 * emacs-lisp/lisp.el (lisp-complete-symbol):
18641 Replace completion-annotate-function with completion-extra-properties.
18642
18643 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18644
18645 * simple.el (goto-line): Use read-number.
18646 (overriding-map-is-bound): Remove.
18647 (saved-overriding-map): Change default.
18648 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
18649 Take the map as argument.
18650 (universal-argument, negative-argument, digit-argument): Use it.
18651 (restore-overriding-map): Adjust.
18652 (do-auto-fill): Use fill-forward-paragraph.
18653 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
18654
18655 * minibuffer.el (minibuffer-inactive-mode-map): New var.
18656 (minibuffer-inactive-mode): New major mode.
18657 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
18658 the *Messages* buffer" hack.
18659 (mouse-popup-menubar): Don't burp if the event is a normal key.
18660
18661 Miscellaneous tweaks.
18662 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
18663 lexical scoping as in subr.el's dolist and dotimes.
18664 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
18665 Silence compiler warning.
18666 * thingatpt.el (forward-whitespace): Trivial coding style fix.
18667 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
18668 * international/ccl.el (ccl-compile): Trivial simplification.
18669 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
18670 * emacs-lisp/testcover.el (testcover-end): Remove spurious
18671 `printflag' argument.
18672 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
18673 Purecopy the whole obsolescence data.
18674
18675 2011-06-01 Leo Liu <sdl.web@gmail.com>
18676
18677 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
18678 improve doc-string as suggested by Marco Pessotto
18679 <melmothx@gmail.com>.
18680 (rcirc-print): Fix last change.
18681
18682 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18683
18684 * minibuffer.el (complete-with-action): Return nil for the metadata and
18685 boundaries of non-functional tables.
18686 (completion-table-dynamic): Return nil for the metadata.
18687 (completion-table-with-terminator): Add default case, using
18688 complete-with-action.
18689 (completion--metadata): New function.
18690 (completion-all-sorted-completions, minibuffer-completion-help): Use it
18691 to try and avoid pathological performance problems.
18692 (completion--embedded-envvar-table): Return `category' metadata.
18693
18694 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
18695
18696 * subr.el (process-alive-p): New tiny convenience function.
18697
18698 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18699
18700 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
18701 content but also its previous major mode.
18702
18703 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
18704
18705 * emacs-lisp/debug.el (debug): Restore the previous content of the
18706 *Backtrace* buffer when we exit with C-M-c.
18707
18708 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18709
18710 * minibuffer.el: Add metadata method to completion tables.
18711 (completion-category-overrides): New defcustom.
18712 (completion-metadata, completion--field-metadata)
18713 (completion-metadata-get, completion--styles)
18714 (completion--cycle-threshold): New functions.
18715 (completion-try-completion, completion-all-completions):
18716 Add `metadata' argument to choose completion-styles.
18717 (completion--do-completion): Use metadata to choose cycling.
18718 (completion-all-sorted-completions): Use metadata for sorting.
18719 Remove :completion-cycle-penalty which is not needed any more.
18720 (completion--try-word-completion): Add `metadata' argument.
18721 (minibuffer-completion-help): Check metadata for annotation function
18722 and sorting.
18723 (completion-file-name-table): Return `category' metadata.
18724 (minibuffer-completing-file-name): Make obsolete.
18725 * simple.el (minibuffer-completing-symbol): Make obsolete.
18726 * icomplete.el (icomplete-completions): Pass new `metadata' param to
18727 completion-try-completion.
18728
18729 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18730
18731 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
18732
18733 2011-05-30 Leo Liu <sdl.web@gmail.com>
18734
18735 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
18736 (rcirc-print): Decode all incoming messages (bug#8744).
18737 (rcirc-decode-coding-system): Allow value nil for automatic coding
18738 system detection.
18739
18740 2011-06-01 Glenn Morris <rgm@gnu.org>
18741
18742 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
18743
18744 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18745
18746 * image.el (image-animate-max-time): Allow nil and t values.
18747 Default to nil.
18748 (create-animated-image): Doc fix.
18749 (image-animate-start): Remove second arg; just use
18750 image-animate-max-time.
18751 (image-animate-timeout): Doc fix. Args changed.
18752
18753 * image-mode.el (image-toggle-display-image): Ensure that the
18754 image spec passed to the animate timer is the same object as in
18755 the buffer's display property (Bug#6981).
18756 (image-transform-properties): Doc fix.
18757
18758 * image.el (image-animate-max-time): Default to nil.
18759
18760 2011-05-29 Martin Rudalics <rudalics@gmx.at>
18761
18762 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
18763 entire buffer list (Bug#8184).
18764
18765 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18766
18767 * image.el (imagemagick-types-inhibit)
18768 (imagemagick-register-types): Doc fix.
18769
18770 2011-05-29 Deniz Dogan <deniz@dogan.se>
18771
18772 * net/rcirc.el (rcirc): Use the user's stored encryption method by
18773 default.
18774
18775 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18776
18777 * select.el: Don't perform clipboard-manager saving in hooks;
18778 leave the hooks empty.
18779
18780 2011-05-28 Leo Liu <sdl.web@gmail.com>
18781
18782 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
18783 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
18784 (occur-edit-mode): New major mode (Bug#8463).
18785 (occur-after-change-function): New function.
18786 (occur-engine): Give Occur tags a read-only property.
18787
18788 2011-05-28 Kevin Ryde <user42@zip.com.au>
18789
18790 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
18791
18792 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18793
18794 * bindings.el (help-echo): Make the initial non-indicator dash
18795 empty on graphical terminals (Bug#7295).
18796
18797 * files.el (auto-mode-alist): Move config rule after the
18798 in-stripping one (Bug#8547).
18799
18800 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
18801
18802 * startup.el (normal-splash-screen): Remove gratuitous mode-line
18803 setting (Bug#8740).
18804
18805 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
18806
18807 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
18808 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
18809 (Bug#8539).
18810
18811 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18812
18813 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
18814
18815 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
18816
18817 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
18818 (hs-hide-block-at-point, hs-find-block-beginning)
18819 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
18820 (Bug#8279).
18821
18822 2011-05-28 Glenn Morris <rgm@gnu.org>
18823
18824 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
18825
18826 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18827
18828 * help-fns.el (describe-function-1): If the function is a derived
18829 major mode, print the parent mode.
18830
18831 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
18832 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
18833
18834 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
18835
18836 * minibuffer.el (completion--capf-wrapper): Check applicability before
18837 returning non-nil for non-exclusive completion data.
18838 * progmodes/etags.el (tags-completion-at-point-function):
18839 * info-look.el (info-lookup-completions-at-point): Mark as
18840 non-exclusive.
18841 (info-complete): Adjust accordingly.
18842
18843 * info-look.el: Convert to lexical-binding and completion-at-point.
18844 (info-lookup-completions-at-point): New function.
18845 (info-complete): Use it and completion-in-region.
18846
18847 2011-05-28 Drew Adams <drew.adams@oracle.com>
18848
18849 * isearch.el: Let M-e start with point at the first mismatched char.
18850 (isearch-fail-pos): New function.
18851 (isearch-edit-string): Use it.
18852
18853 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18854
18855 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18856
18857 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
18858
18859 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
18860 traversal functions for avl-trees.
18861 (avl-tree--stack): New struct.
18862 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
18863 (avl-tree-enter): Add optional `updatefun' arg.
18864 (avl-tree--do-enter): Add optional `updatefun' arg.
18865 Change return value.
18866 (avl-tree-delete): Add optional `test' and `nilflag' args.
18867 (avl-tree--do-delete): Add `test' and `nilflag' args.
18868 Change return value.
18869 (avl-tree-member): Add optional `nilflag'
18870 (avl-tree-member-p): New function.
18871 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
18872 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
18873 (avl-tree-stack-empty-p): New functions.
18874
18875 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
18876 avl-tree--del-balance1 and make it work both ways.
18877 (avl-tree--del-balance2): Remove.
18878 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
18879 make it work both ways.
18880 (avl-tree--enter-balance2): Remove.
18881 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
18882 New macros.
18883 (avl-tree--mapc, avl-tree-map): Add direction argument.
18884
18885 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
18886
18887 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
18888
18889 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
18890
18891 * select.el: Support clipboard managers with built-in function
18892 x-clipboard-manager-save, via delete-frame-functions and
18893 kill-emacs-hook.
18894 (xselect-convert-to-targets): Add MULTIPLE target to list.
18895 (xselect-convert-to-save-targets): New function.
18896
18897 2011-05-27 Kenichi Handa <handa@m17n.org>
18898
18899 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
18900 let-binding rfc2047-encode-encoded-words to nil.
18901
18902 2011-05-27 Glenn Morris <rgm@gnu.org>
18903
18904 * mail/emacsbug.el: Don't require url-util.
18905
18906 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
18907
18908 * files.el (set-auto-mode):
18909 Also respect mode: entries at the end of the file. (Bug#8586)
18910
18911 2011-05-26 Glenn Morris <rgm@gnu.org>
18912
18913 * files.el (hack-local-variables-prop-line, hack-local-variables):
18914 Downcase mode names, as seems to be traditional.
18915 (hack-local-variables, hack-local-variables-apply): Doc fixes.
18916
18917 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
18918 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
18919
18920 2011-05-25 Julien Danjou <julien@danjou.info>
18921
18922 * textmodes/rst.el (rst-define-level-faces): Do not define face
18923 symbol if it is already defined.
18924
18925 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
18926
18927 * play/5x5.el (5x5-new-game, 5x5-randomize):
18928 Reset 5x5-solver-output to nil when a new grid is cast.
18929 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
18930 these debugging traces, as defmacro breaks the compiled code.
18931
18932 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18933
18934 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18935
18936 2011-05-24 Leo Liu <sdl.web@gmail.com>
18937
18938 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
18939 (vc-bzr-sha1): Adapt.
18940
18941 * sha1.el: Remove. Function `sha1' is now builtin.
18942
18943 * bindings.el: Provide sha1 feature.
18944
18945 2011-05-24 Kenichi Handa <handa@m17n.org>
18946
18947 * mail/sendmail.el: Require `rfc2047'.
18948 (mail-insert-from-field): Do not perform RFC2047 encoding.
18949 (mail-encode-header): New function.
18950 (sendmail-send-it): Set buffer-file-coding-system of the work
18951 buffer to the return value of select-message-coding-system.
18952 Call mail-encode-header.
18953
18954 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
18955
18956 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
18957
18958 * mail/supercite.el (sc-default-cite-frame):
18959 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
18960
18961 2011-05-24 Glenn Morris <rgm@gnu.org>
18962
18963 * progmodes/python.el (brm-menu): Declare.
18964
18965 * emulation/viper.el (viper-set-hooks): Declare.
18966
18967 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
18968 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
18969 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
18970 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
18971 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
18972 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
18973
18974 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
18975
18976 Add an :exit-function for completion-at-point.
18977
18978 * minibuffer.el (completion--done): New fun.
18979 (completion--do-completion): Use it. New arg `expect-exact'.
18980 (minibuffer-complete, minibuffer-complete-word): Don't output message,
18981 since completion--do-completion does it for us now.
18982 (minibuffer-force-complete): Use completion--done and
18983 completion--replace. Handle sole-completion case with more care.
18984 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
18985 (completion-extra-properties): New var.
18986 (completion-annotate-function): Make obsolete.
18987 (minibuffer-completion-help): Adjust accordingly.
18988 Use completion-list-insert-choice-function.
18989 (completion-at-point, completion-help-at-point):
18990 Bind completion-extra-properties.
18991 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
18992 * simple.el (completion-list-insert-choice-function): New var.
18993 (completion-setup-function): Preserve it.
18994 (choose-completion): Pay attention to it, shuffle the code a bit.
18995 (choose-completion-string): New arg `insert-function'.
18996
18997 * textmodes/bibtex.el: Convert to lexical binding.
18998 (bibtex-mode-map): Use completion-at-point.
18999 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
19000 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
19001 (bibtex-complete): Define as obsolete alias.
19002 (bibtex-complete-internal): Remove.
19003 (bibtex-format-entry): Remove unused sub-group in regexp.
19004 * shell.el (shell--command-completion-data)
19005 (shell-environment-variable-completion):
19006 * pcomplete.el (pcomplete-completions-at-point):
19007 * comint.el (comint--complete-file-name-data): Use :exit-function
19008 instead of completion-table-with-terminator so it also works for
19009 choose-completion.
19010
19011 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
19012
19013 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
19014
19015 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
19016 (bug#8710).
19017
19018 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
19019
19020 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
19021
19022 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
19023 customization variable and implement: If non-nil, auto-fill will
19024 be inhibited while on topic's header line.
19025
19026 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
19027
19028 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
19029 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
19030 always have a solution in grid size = 5 cases.
19031 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
19032 (5x5-solver-output, 5x5-log-buffer): New vars.
19033 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
19034 Make these variables buffer local to achieve 5x5 multi-session-ness.
19035 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
19036 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
19037 (5x5-solve-suggest): New funs.
19038 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
19039 randomize a grid so that we ensure that there is always a solution.
19040 (5x5-make-random-grid): Allow other movement than flipping.
19041
19042 2011-05-23 Kevin Ryde <user42@zip.com.au>
19043
19044 * emacs-lisp/advice.el (ad-read-advised-function):
19045 Use `function-called-at-point' as the default, if it has
19046 advice and passes PREDICATE.
19047
19048 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
19049
19050 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
19051 byte-compile-lambda if it's actually a lambda.
19052
19053 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
19054 Fix function quoting. Use backquote better.
19055
19056 2011-05-22 Yuanle Song <sylecn@gmail.com>
19057
19058 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
19059 matching (Bug#8516).
19060
19061 2011-01-22 Jari Aalto <jari.aalto@cante.net>
19062
19063 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
19064 different face (Bug#8178).
19065
19066 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
19067
19068 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
19069 defface (Bug#8144).
19070
19071 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
19072
19073 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
19074 funcall as well (bug#8712). Warn when performing those conversions.
19075 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
19076
19077 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
19078
19079 2011-05-22 Glenn Morris <rgm@gnu.org>
19080
19081 * files.el (hack-local-variables-prop-line): Small simplifications.
19082 (hack-local-variables, hack-local-variables-prop-line):
19083 If MODE-ONLY, return the mode, rather than just `t'.
19084
19085 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
19086
19087 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
19088
19089 2011-05-21 Glenn Morris <rgm@gnu.org>
19090
19091 * files.el (hack-local-variables-prop-line, hack-local-variables):
19092 If only interested in the mode, don't bother doing the other stuff.
19093
19094 * image-mode.el (image-after-revert-hook):
19095 Redraw all frames on which the image is visible. (Bug#8567)
19096
19097 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
19098
19099 * wid-edit.el (widget-checklist-match-inline):
19100 Fix 2011-04-19 change. (Bug#8649)
19101
19102 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
19103
19104 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
19105 Also allow singlespace after single-letter capitals followed by a dot.
19106
19107 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
19108 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
19109
19110 2011-05-20 Nix <nix@esperi.org.uk>
19111
19112 * files.el (basic-save-buffer-2):
19113 Fix handling of break-hardlink-on-save with non-existent files.
19114
19115 2011-05-19 Deniz Dogan <deniz@dogan.se>
19116
19117 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
19118 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
19119
19120 2011-05-19 Glenn Morris <rgm@gnu.org>
19121
19122 * progmodes/f90.el (f90-type-def-re):
19123 Handle "type, bind(c)". (Bug#8691)
19124
19125 * emacs-lisp/autoload.el (batch-update-autoloads):
19126 Set autoload-excludes by parsing loadup.el rather than Makefiles.
19127
19128 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
19129
19130 * net/tramp.el (tramp-process-actions): Set "first-password-request"
19131 property for the correct connection in case of multihops.
19132
19133 2011-05-18 Glenn Morris <rgm@gnu.org>
19134
19135 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
19136 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
19137
19138 Rationalize calendar handling of day and month abbrev-arrays.
19139 * calendar/calendar.el (calendar-customized-p): New function.
19140 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
19141 (calendar-day-name-array, calendar-month-name-array): Doc fix.
19142 Add :set function.
19143 (calendar-abbrev-length, calendar-day-abbrev-array)
19144 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
19145 (calendar-day-abbrev-array, calendar-month-abbrev-array):
19146 Elements may no longer be nil.
19147 (calendar-day-name, calendar-month-name):
19148 Update for changed nature of abbrev arrays.
19149 * calendar/diary-lib.el (diary-name-pattern):
19150 Update for changed nature of abbrev arrays.
19151 (diary-mark-entries-1): Update calendar-make-alist calls.
19152 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
19153 * calendar/cal-html.el (cal-html-day-abbrev-array):
19154 Simply inherit from calendar-day-abbrev-array.
19155
19156 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
19157
19158 * progmodes/grep.el (grep-mode): Disable default
19159 compilation-directory-matcher setting (bug#8684).
19160
19161 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
19162
19163 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
19164 instead of "head" and "tail". There were problems with SunOS 5.9,
19165 and it performs better.
19166
19167 2011-05-17 Glenn Morris <rgm@gnu.org>
19168
19169 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
19170
19171 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
19172 Replace obsolete function.
19173
19174 * shell.el (pcomplete-parse-arguments-function): Declare.
19175
19176 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
19177 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
19178 (appt-check): Doc fixes.
19179 (appt-disp-window-function, appt-delete-window-function):
19180 Remove needless special case in custom :type.
19181 (appt-display-count): Default to 0, not nil.
19182 (appt-check): Reset appt-display-count to 0, not nil.
19183
19184 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
19185
19186 * progmodes/python.el (python-font-lock-keywords):
19187 Add the Python 3.X keyword "nonlocal" (bug#8639).
19188
19189 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
19190
19191 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
19192
19193 2011-05-16 Kevin Ryde <user42@zip.com.au>
19194
19195 * info-look.el (makefile-automake-mode): New setups, looking in
19196 automake manual, then makefile-mode.
19197 (makefile-mode): Remove automake manual, have it just in
19198 makefile-automake-mode since there's various things different or
19199 not relevant to plain make.
19200 (makefile-mode): Remove "other-modes" non-existent automake-mode,
19201 believe a hypothetical automake-mode would go to makefile-mode,
19202 not the other way around.
19203
19204 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
19205
19206 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
19207 hunk-end tags (Bug#8672).
19208
19209 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
19210 vc-annotate-show-diff-revision-at-line (Bug#8671).
19211
19212 2011-05-14 Glenn Morris <rgm@gnu.org>
19213
19214 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
19215 in the middle of an existing one with multiple authors. (Bug#8645)
19216 (change-log-font-lock-keywords): Also handle multiple author lines
19217 with leading tabs. (Bug#8644)
19218
19219 * calendar/appt.el (appt-check): Rename some local variables.
19220 Some simplification/reordering.
19221
19222 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
19223 (feedmail-sendmail-f-doesnt-sell-me-out)
19224 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19225 (feedmail-debug-sit-for, feedmail-queue-express-hook)
19226 (feedmail-queue-runner-message-sender): Set :version.
19227 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
19228 (bbdb-dwim-net-address, vm-mail): Declare.
19229 (feedmail-binmail-gnulinuxish-template):
19230 Rename from feedmail-binmail-linuxish-template.
19231 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
19232 Use insert-buffer-substring.
19233
19234 2011-05-14 Bill Carpenter <bill@carpenter.org>
19235
19236 * mail/feedmail.el (feedmail-patch-level): Increase.
19237 (feedmail-debug): New custom group.
19238 (feedmail-confirm-outgoing-timeout)
19239 (feedmail-sendmail-f-doesnt-sell-me-out)
19240 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19241 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
19242 (feedmail-sender-line, feedmail-from-line)
19243 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
19244 (feedmail-spray-this-address)
19245 (feedmail-spray-address-fiddle-plex-list)
19246 (feedmail-queue-use-send-time-for-date)
19247 (feedmail-queue-use-send-time-for-message-id)
19248 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
19249 (feedmail-buffer-eating-function):
19250 Doc fixes.
19251 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
19252 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
19253 (feedmail-message-action-scroll-down): New functions.
19254 (feedmail-queue-directory, feedmail-queue-draft-directory):
19255 Use expand-file-name.
19256 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
19257 Remove C-v help entry.
19258 (feedmail-queue-buffer-file-name): New variable.
19259 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
19260 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
19261 (feedmail-message-action-send-strong, feedmail-message-action-edit)
19262 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
19263 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
19264 (feedmail-message-action-toggle-spray)
19265 (feedmail-run-the-queue-no-prompts)
19266 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
19267 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
19268 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
19269 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
19270 (feedmail-envelope-deducer, feedmail-fiddle-from)
19271 (feedmail-fiddle-sender, feedmail-default-date-generator)
19272 (feedmail-fiddle-date, feedmail-fiddle-message-id)
19273 (feedmail-fiddle-spray-address)
19274 (feedmail-fiddle-list-of-spray-fiddle-plexes)
19275 (feedmail-fiddle-list-of-fiddle-plexes)
19276 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
19277 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
19278 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
19279 Change default. Doc fix.
19280 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
19281 (feedmail-binmail-linuxish-template): New constant.
19282 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
19283 Respect feedmail-sendmail-f-doesnt-sell-me-out.
19284 (feedmail-send-it): Add debug call.
19285 Use feedmail-queue-buffer-file-name, and
19286 feedmail-send-it-immediately-wrapper.
19287 (feedmail-message-action-send): Add debug call.
19288 Use feedmail-send-it-immediately-wrapper.
19289 (feedmail-queue-express-to-queue): Add debug call.
19290 Run feedmail-queue-express-hook.
19291 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
19292 (feedmail-message-action-help-blat):
19293 Rename from feedmail-queue-send-edit-prompt-help-first.
19294 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
19295 Check line-endings. Handle errors better.
19296 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
19297 Doc fix. Add debug call.
19298 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
19299 Use feedmail-queue-send-edit-prompt-inner.
19300 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
19301 (feedmail-queue-send-edit-prompt-inner): New function, extracted
19302 from feedmail-queue-send-edit-prompt.
19303 (feedmail-queue-send-edit-prompt-help)
19304 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
19305 (feedmail-tidy-up-slug): Add debug call.
19306 Respect feedmail-queue-slug-suspect-regexp.
19307 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
19308 (feedmail-dump-message-to-queue): Add debug call.
19309 Expand queue-directory.
19310 (feedmail-dump-message-to-queue): Change message slightly.
19311 Use feedmail-say-chatter.
19312 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
19313 (feedmail-send-it-immediately-wrapper): New function.
19314 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
19315 Insert empty string rather than newline. Handle full-frame case.
19316 Use catch/throw. Use feedmail-say-chatter.
19317 (feedmail-fiddle-from): Try mail-host-address.
19318 (feedmail-default-message-id-generator): Doc fix.
19319 Bind system-time-locale. Handle missing end.
19320 (feedmail-fiddle-x-mailer): Add debug call.
19321 Handle feedmail-x-mailer-line being nil.
19322 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
19323 Add debug call. Use buffer-substring-no-properties.
19324 (feedmail-say-debug, feedmail-say-chatter): New functions.
19325 (feedmail-find-eoh): Give an explicit error.
19326
19327 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
19328
19329 * net/newst-treeview.el (newsticker-treeview-face): Change default
19330 family from helvetica to sans.
19331 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
19332 etc/images/newsticker.
19333
19334 * net/newst-reader.el (newsticker-feed-face): Change default
19335 family from helvetica to sans.
19336
19337 * net/newst-plainview.el (newsticker-new-item-face)
19338 (newsticker-old-item-face, newsticker-immortal-item-face)
19339 (newsticker-obsolete-item-face, newsticker-date-face)
19340 (newsticker-statistics-face): Change default family from
19341 helvetica to sans.
19342 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
19343 etc/images/newsticker.
19344
19345 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
19346 (newsticker--process-auto-mark-filter-match): Tell user about
19347 auto-marking.
19348
19349 2011-05-13 Didier Verna <didier@xemacs.org>
19350
19351 Common Lisp indentation improvements on defmethod and lambda-lists.
19352 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
19353 TODO entries.
19354 (lisp-lambda-list-keyword-parameter-indentation)
19355 (lisp-lambda-list-keyword-parameter-alignment)
19356 (lisp-lambda-list-keyword-alignment): New customizable user options.
19357 (lisp-indent-defun-method): Improve docstring.
19358 (extended-loop-p): Fix comment.
19359 (lisp-indent-lambda-list-keywords-regexp): New variable.
19360 (lisp-indent-lambda-list): New function.
19361 (lisp-indent-259): Use it.
19362 (lisp-indent-defmethod): Support for more than one
19363 method qualifier and properly indent methods lambda-lists.
19364 (defgeneric): Provide a missing common-lisp-indent-function property.
19365
19366 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
19367
19368 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
19369 bounds for the empty string (bug#8667).
19370
19371 2011-05-13 Glenn Morris <rgm@gnu.org>
19372
19373 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
19374
19375 * mail/sendmail.el (sendmail-program): Try executable-find first.
19376 (sendmail-send-it): `sendmail-program' cannot be unbound.
19377
19378 * calendar/appt.el (appt-make-list): Simplify.
19379 (appt-time-msg-list): Doc fix.
19380 (appt-check): Change mode-line message at the time of the appointment.
19381
19382 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
19383
19384 * progmodes/ld-script.el (ld-script-keywords)
19385 (ld-script-builtins): Update keywords list.
19386
19387 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19388
19389 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
19390
19391 * shell.el (shell-completion-vars): New function.
19392 (shell-mode):
19393 * simple.el (read-shell-command): Use it.
19394 (blink-matching-open): No need for " [...]" in minibuffer-message.
19395
19396 2011-05-12 Glenn Morris <rgm@gnu.org>
19397
19398 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
19399 (appt-check): Simplify.
19400
19401 2011-05-12 Eli Zaretskii <eliz@gnu.org>
19402
19403 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
19404 literal "/dev/null".
19405
19406 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19407
19408 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
19409 Fix typo.
19410
19411 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
19412
19413 * progmodes/which-func.el (which-function):
19414 Use add-log-current-defun instead of add-log-current-defun-function,
19415 which might not be defined (Bug#8260).
19416
19417 2011-05-12 Glenn Morris <rgm@gnu.org>
19418
19419 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
19420 Let byte-compile-initial-macro-environment always take precedence.
19421
19422 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19423
19424 * net/rcirc.el: Add support for SSL/TLS connections.
19425 (rcirc-server-alist): New field `encryption'.
19426 (rcirc): Check `encryption' settings.
19427 (rcirc-connect): New arg `encryption'. Use open-network-stream.
19428 Merge make-local-variable into `set'.
19429 (rcirc--connection-open-p): New function.
19430 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
19431 the process is not a network process (e.g. running gnutls-cli).
19432 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
19433 Make rcirc-(en|de)code-coding-system local here.
19434 (rcirc-mode): Merge make-local-variable into `set'.
19435 (rcirc-parent-buffer): Make permanent buffer-local.
19436 (rcirc-multiline-minor-mode): Don't do it here.
19437 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
19438 there's no server buffer.
19439
19440 2011-05-11 Glenn Morris <rgm@gnu.org>
19441
19442 * newcomment.el (comment-kill): Prefix "unused" local.
19443
19444 * term/w32console.el (get-screen-color): Declare.
19445
19446 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
19447 Handle symbol elements of byte-compile-initial-macro-environment.
19448
19449 2011-05-10 Leo Liu <sdl.web@gmail.com>
19450
19451 * bookmark.el (bookmark-bmenu-mode-map):
19452 Bind bookmark-bmenu-search to `/'.
19453
19454 * mail/footnote.el: Convert to utf-8 encoding.
19455 (footnote-unicode-string, footnote-unicode-regexp): New variable.
19456 (Footnote-unicode): New function.
19457 (footnote-style-alist): Add unicode style to the list.
19458 (footnote-style): Doc fix.
19459
19460 2011-05-10 Jim Meyering <meyering@redhat.com>
19461
19462 Fix doubled-word typos.
19463 * international/quail.el (quail-insert-kbd-layout): and and -> and
19464 * kermit.el: and and -> and
19465 * net/ldap.el (ldap-search-internal): to to -> to
19466 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
19467 * progmodes/js.el (js-mode): and and -> and
19468 * textmodes/artist.el (artist-move-to-xy): at at -> at
19469 (artist-draw-region-trim-line-endings): if if -> if
19470 And Safetyc -> Safety.
19471 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
19472
19473 2011-05-10 Glenn Morris <rgm@gnu.org>
19474 Stefan Monnier <monnier@iro.umontreal.ca>
19475
19476 * files.el (hack-one-local-variable-eval-safep):
19477 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
19478
19479 2011-05-10 Glenn Morris <rgm@gnu.org>
19480
19481 * calendar/diary-lib.el (diary-list-entries-hook)
19482 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
19483 (diary-nongregorian-marking-hook, diary-list-entries)
19484 (diary-include-other-diary-files, diary-mark-entries)
19485 (diary-mark-included-diary-files): Doc fixes.
19486
19487 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19488
19489 * misc.el: Require tabulated-list.el during compilation.
19490
19491 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19492
19493 * progmodes/compile.el (compilation-start):
19494 Run compilation-filter-hook for the async case too.
19495 (compilation-filter-hook): Doc fix.
19496
19497 2011-05-09 Deniz Dogan <deniz@dogan.se>
19498
19499 * wdired.el: Remove outdated installation comment. Fix usage
19500 comment.
19501
19502 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19503
19504 * misc.el: Implement new command `list-dynamic-libraries'.
19505 (list-dynamic-libraries--loaded-only-p): New variable.
19506 (list-dynamic-libraries--refresh): New function.
19507 (list-dynamic-libraries): New command.
19508
19509 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19510
19511 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19512 Fix the ant regexp to handle end-line and end-column info from jikes.
19513 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
19514 higher priority to avoid clobbering by gnu.
19515
19516 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19517
19518 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
19519 if the face has existing theme settings (Bug#8454).
19520
19521 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
19522
19523 * progmodes/perl-mode.el (perl-imenu-generic-expression):
19524 Only match variables declared via `my' or `our' (Bug#8261).
19525
19526 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
19527 special file names `.' and `..' (Bug#8259).
19528
19529 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19530
19531 * progmodes/grep.el (grep-mode-font-lock-keywords):
19532 Remove buffer-changing entries.
19533 (grep-filter): New function.
19534 (grep-mode): Add it to compilation-filter-hook.
19535
19536 * progmodes/compile.el (compilation-filter-hook)
19537 (compilation-filter-start): New defvars.
19538 (compilation-filter): Call compilation-filter-hook prior to
19539 updating the process mark.
19540
19541 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
19542
19543 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
19544
19545 2011-05-07 Eli Zaretskii <eliz@gnu.org>
19546
19547 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
19548 mailclient-send-it even if window-system is nil. (Bug#8595)
19549
19550 * term/w32console.el (terminal-init-w32console):
19551 Call get-screen-color and use its output to set the frame
19552 background-mode. (Bug#8597)
19553
19554 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
19555
19556 Make bytecomp.el understand that defmethod defines funs (bug#8631).
19557 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
19558 New functions.
19559 (defgeneric, eieio--defmethod): Use them.
19560 (eieio-defgeneric): Remove.
19561 (defmethod): Call defgeneric in a way visible to the byte-compiler.
19562
19563 2011-05-07 Glenn Morris <rgm@gnu.org>
19564
19565 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
19566 Use let rather than let*.
19567 (timeclock-find-discrep): Remove unused local.
19568
19569 * calendar/diary-lib.el (diary-comment-start): Doc fix.
19570
19571 * calendar/appt.el (appt-time-msg-list): Doc fix.
19572
19573 2011-05-06 Noah Friedman <friedman@splode.com>
19574
19575 * apropos.el (apropos-print-doc): Only use
19576 emacs-lisp-docstring-fill-column when it is bound to an integer,
19577 per that variable's documentation.
19578
19579 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
19580
19581 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
19582 and warnings are not silently discarded (e.g. use -d instead of -P).
19583
19584 2011-05-06 Glenn Morris <rgm@gnu.org>
19585
19586 * calendar/appt.el (appt-message-warning-time): Doc fix.
19587 (appt-warning-time-regexp): New option.
19588 (appt-make-list): Respect appt-message-warning-time.
19589
19590 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
19591 New options.
19592 (diary-add-to-list): Strip comments from the displayed string.
19593 (diary-mode): Set comment-start and comment-end.
19594
19595 * vc/diff-mode.el (smerge-refine-subst): Declare.
19596 (diff-refine-hunk): Don't require smerge-mode when compiling.
19597
19598 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19599
19600 * simple.el (list-processes): Return nil as the docstring says.
19601
19602 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19603
19604 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
19605 to "".
19606 (ange-ftp-write-region, ange-ftp-insert-file-contents)
19607 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
19608 determining of binary transfer. (Bug#7383)
19609
19610 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19611
19612 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19613 Fix port computation bug. (Bug#8618)
19614
19615 2011-05-05 Glenn Morris <rgm@gnu.org>
19616
19617 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
19618
19619 * simple.el (shell-dynamic-complete-functions)
19620 (comint-dynamic-complete-functions): Declare.
19621
19622 * net/network-stream.el (gnutls-negotiate):
19623 * simple.el (tabulated-list-print): Fix declarations.
19624
19625 * progmodes/gud.el (syntax-symbol, syntax-point):
19626 Remove unnecessary and incorrect declarations.
19627
19628 * emacs-lisp/check-declare.el (check-declare-scan):
19629 Handle byte-compile-initial-macro-environment in bytecomp.el.
19630
19631 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
19632
19633 Fix earlier half-done eieio-defmethod change (bug#8338).
19634 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
19635 Streamline and change calling convention.
19636 (defmethod): Adjust accordingly and simplify.
19637 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
19638 new eieio--defmethod.
19639 (slot-boundp): Minor CSE simplification.
19640
19641 2011-05-05 Milan Zamazal <pdm@zamazal.org>
19642
19643 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
19644 (glasses-make-readable): Use glasses-separate-capital-groups.
19645
19646 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
19647
19648 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
19649 (warning-series): Doc fix.
19650 (display-warning): Don't try to create the buffer if we just found it.
19651
19652 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
19653
19654 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
19655 (autoload-find-generated-file): New function.
19656 (generate-file-autoloads): Bind generated-autoload-file to
19657 buffer-file-name.
19658 (update-file-autoloads, update-directory-autoloads):
19659 Use autoload-find-generated-file. If called interactively, prompt for
19660 output file (Bug#7989).
19661 (batch-update-autoloads): Doc fix.
19662
19663 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19664
19665 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
19666
19667 2011-05-04 Glenn Morris <rgm@gnu.org>
19668
19669 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
19670 function, so it follows changes in calendar-date-style.
19671 (diary-fancy-date-matcher): New function.
19672 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
19673 (diary-fancy-font-lock-fontify-region-function):
19674 Use diary-fancy-date-pattern as a function.
19675
19676 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
19677 non-numbers for `year' etc pseudo-variables. (Bug#8583)
19678
19679 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
19680
19681 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
19682 instead of positional arguments. Allow :keylist and :crlfiles
19683 arguments.
19684 (open-gnutls-stream): Call it.
19685
19686 * net/network-stream.el (network-stream-open-starttls): Adjust to
19687 call `gnutls-negotiate' with :process and :hostname arguments.
19688
19689 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
19690
19691 * minibuffer.el (completion--message): New function.
19692 (completion--do-completion, minibuffer-complete)
19693 (minibuffer-force-complete, minibuffer-complete-word): Use it.
19694 (completion--do-completion): Don't ignore completion-auto-help when in
19695 icomplete-mode.
19696
19697 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
19698 internal encoding (e.g. tibetan zero is not whitespace).
19699 (global-whitespace-mode): Prefer save-current-buffer.
19700 (whitespace-trailing-regexp): Remove useless save-match-data.
19701 (whitespace-empty-at-bob-regexp): Minor simplification.
19702
19703 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
19704
19705 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
19706
19707 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
19708
19709 * textmodes/ispell.el (ispell-add-per-file-word-list):
19710 Use `concat' to create string for insertion.
19711
19712 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19713
19714 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
19715 Avoid open-line which runs post-self-insert-hook.
19716 (bibtex-fill-entry): Remove unused `end' var.
19717
19718 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
19719
19720 * textmodes/ispell.el (ispell-add-per-file-word-list):
19721 Protect against `nil' value of `comment-start' (Bug#8579).
19722
19723 2011-05-03 Leo Liu <sdl.web@gmail.com>
19724
19725 * isearch.el (isearch-yank-pop): New command.
19726 (isearch-mode-map): Bind it to `M-y'.
19727 (isearch-forward): Mention it.
19728
19729 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19730
19731 * simple.el (minibuffer-complete-shell-command): Remove.
19732 (minibuffer-local-shell-command-map): Use completion-at-point.
19733 (read-shell-command): Setup completion vars here instead.
19734 (read-expression-map): Bind TAB to symbol completion.
19735
19736 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
19737 error directly rather via storing it into `results'.
19738
19739 2011-05-02 Leo Liu <sdl.web@gmail.com>
19740
19741 * vc/diff.el: Fix description.
19742
19743 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19744
19745 * server.el (server-eval-at): New function.
19746
19747 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19748
19749 * net/network-stream.el (open-network-stream): Take a :nowait
19750 parameter and pass it on to `make-network-process'.
19751 (network-stream-open-plain): Ditto.
19752
19753 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
19754
19755 * faces.el (face-spec-set-match-display): Don't match toolkit
19756 options on terminal frames.
19757
19758 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
19759
19760 * progmodes/pascal.el: Use lexical binding.
19761 (pascal-mode-map): Remove author preferences.
19762
19763 * pcomplete.el (pcomplete-std-complete): Don't abuse
19764 completion-at-point.
19765
19766 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19767
19768 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
19769 removing code that has been dead since 1991 or so.
19770
19771 * startup.el (command-line): When warning about "_emacs", use a
19772 delayed warning to allow the user to filter it out.
19773
19774 2011-04-28 Deniz Dogan <deniz@dogan.se>
19775
19776 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
19777 user has not joined.
19778
19779 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19780
19781 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
19782 aren't any completions at point.
19783
19784 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19785
19786 * subr.el (display-delayed-warnings): New function.
19787 (delayed-warnings-hook): New variable.
19788
19789 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19790
19791 * minibuffer.el (completion-at-point, completion-help-at-point):
19792 Don't presume that a given completion-at-point-function will always
19793 use the same calling convention.
19794
19795 * pcomplete.el (pcomplete-completions-at-point):
19796 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
19797 pcomplete-seen is non-nil.
19798 (pcomplete-comint-setup): Also recognize the new comint/shell
19799 completion functions.
19800 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
19801 pcomplete-seen is non-nil.
19802
19803 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
19804
19805 * calendar/icalendar.el (diary-lib): Add require statement.
19806 (icalendar--create-uid): Read out a uid from a text-property on
19807 the first character in the entry. This allows for code to add its
19808 own uid to the entry.
19809 (icalendar--convert-float-to-ical): Add export of
19810 `diary-float'-entries save for those with the optional DAY
19811 argument.
19812
19813 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
19814
19815 * subr.el (shell-quote-argument): Use alternate escaping strategy
19816 when we spot a variable reference in a string.
19817
19818 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19819
19820 * cus-start.el (all): Define customization for debug-on-event.
19821
19822 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19823
19824 * subr.el (shell-quote-argument): Escape correctly under Windows.
19825
19826 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19827
19828 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
19829
19830 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
19831
19832 * net/tramp.el (tramp-process-actions): Add POS argument.
19833 Delete region between POS and (pos).
19834
19835 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19836 Use `nil' position in `tramp-process-actions' call.
19837 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
19838
19839 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
19840 position in `tramp-process-actions' call.
19841
19842 * net/trampver.el: Update release number.
19843
19844 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19845
19846 * custom.el (defcustom): Obey lexical-binding.
19847
19848 Fix octave-inf completion problems reported by Alexander Klimov.
19849 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
19850 Inherit from octave-mode-syntax-table.
19851 (inferior-octave-mode): Set info-lookup-mode.
19852 (inferior-octave-completion-at-point): New function.
19853 (inferior-octave-complete): Use it and completion-in-region.
19854 (inferior-octave-dynamic-complete-functions): Use it as well, and use
19855 comint-filename-completion.
19856 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
19857 symbol elements which shouldn't be word elements.
19858 (octave-font-lock-keywords, octave-beginning-of-defun)
19859 (octave-function-header-regexp): Adjust regexps accordingly.
19860 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
19861
19862 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
19863
19864 * net/gnutls.el (gnutls-errorp): Declare before first use.
19865
19866 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
19867
19868 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
19869 verify-error, and verify-hostname-error parameters. Check whether
19870 default trustfile exists before going to use it. Add missing
19871 argument to gnutls-message-maybe call. Return value.
19872 Reported by Claudio Bley <claudio.bley@gmail.com>.
19873 (open-gnutls-stream): Add usage example.
19874
19875 * net/network-stream.el (network-stream-open-starttls): Give host
19876 parameter to `gnutls-negotiate'.
19877 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
19878 * subr.el (shell-quote-argument): Escape correctly under Windows.
19879
19880 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
19881
19882 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
19883 Use correct match group (bug#8438).
19884
19885 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19886
19887 * emacs-lisp/package.el (package-built-in-p): Fix typo.
19888 (package-menu--generate): New arg specifying packages to show.
19889 (package-menu-refresh, package-menu-execute, list-packages):
19890 Callers changed.
19891 (package-show-package-list): New function, replacing deleted
19892 package--list-packages (renamed because it is non-internal).
19893
19894 * finder.el (finder-list-matches): Use package-show-package-list
19895 instead of deleted package--list-packages.
19896
19897 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
19898 Based on a previous implementation by Juanma Barranquero (Bug#8366).
19899 (vc-annotate-mode-map): Bind it to RET.
19900
19901 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
19902
19903 * progmodes/etags.el (next-file): Don't use set-buffer to change
19904 buffers (Bug#8478).
19905
19906 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19907
19908 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
19909
19910 * apropos.el (apropos-label-face): Avoid variable-pitch face.
19911 (apropos-accumulator): Doc fix.
19912 (apropos-function, apropos-macro, apropos-command)
19913 (apropos-variable, apropos-face, apropos-group, apropos-widget)
19914 (apropos-plist): Add face property.
19915 (apropos-symbols-internal): Fix indentation.
19916 (apropos-print): Simplify help, and recognize apropos-multi-type.
19917 (apropos-print-doc): Use button-type-get to extract the button's
19918 face property. Fill docstring (Bug#8352).
19919
19920 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
19921
19922 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
19923
19924 * play/mpuz.el (mpuz-silent): Doc fix.
19925 (mpuz-mode-map): Use mapc.
19926 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
19927 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
19928 Fix typos in docstrings.
19929
19930 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
19931 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
19932
19933 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
19934
19935 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
19936
19937 * minibuffer.el (completion--do-completion): Avoid the "Next char
19938 not unique" prompt if icomplete-mode is enabled (Bug#5849).
19939
19940 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
19941 mouse-2 into unread-command-events, it is interpreted correctly.
19942
19943 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
19944 (image-toggle-display): Doc fix.
19945
19946 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
19947
19948 * textmodes/page.el (what-page): Use line-number-at-pos to
19949 calculate line number (Bug#6825).
19950
19951 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19952
19953 * eshell/esh-mode.el (find-tag-interactive): Declare function.
19954 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
19955 Pass argument NO-DEFAULT to `find-tag-interactive'.
19956
19957 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19958
19959 Lexical-binding cleanup.
19960
19961 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
19962 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
19963 * progmodes/ada-prj.el (ada-prj-initialize-values)
19964 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
19965 (ada-prj-show-value):
19966 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
19967 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
19968 (antlr-invalidate-context-cache, antlr-options-menu-filter)
19969 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
19970 * progmodes/bug-reference.el (bug-reference-push-button):
19971 * progmodes/fortran.el (fortran-line-length):
19972 * progmodes/glasses.el (glasses-change):
19973 * progmodes/octave-mod.el (octave-fill-paragraph):
19974 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
19975 (python-pdbtrack-grub-for-buffer, python-sentinel):
19976 * progmodes/sql.el (sql-save-connection):
19977 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
19978 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
19979 Mark unused parameters.
19980
19981 * progmodes/compile.el (compilation--flush-directory-cache)
19982 (compilation--flush-parse, compile-internal): Mark unused parameters.
19983 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
19984 (compilation-next-error-function): Remove unused variable `timestamp'.
19985
19986 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
19987 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
19988
19989 * progmodes/dcl-mode.el (dcl-end-of-command):
19990 Remove unused variable `start'.
19991 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
19992 (dcl-option-value-basic, dcl-option-value-offset)
19993 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
19994 Mark unused parameters.
19995 (dcl-save-local-variable): Remove unused variable `val'.
19996 (mode): Declare.
19997
19998 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
19999 Mark unused parameters.
20000 (delphi-ignore-changes): Move before first use.
20001 (delphi-charset-token-at): Remove unused variable `start'.
20002 (delphi-else-start): Remove unused variable `if-count'.
20003 (delphi-comment-block-start, delphi-comment-block-end):
20004 Remove unused variable `kind'.
20005 (delphi-indent-line): Remove unused variable `new-point'.
20006
20007 * progmodes/ebrowse.el (ebrowse-files-list)
20008 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
20009 Mark unused parameters. Don't quote `lambda'.
20010 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
20011 Don't quote `lambda'.
20012 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
20013 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
20014 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
20015 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
20016 Use `ignore-errors'.
20017 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
20018 (ebrowse-view/find-file-and-search-pattern)
20019 (ebrowse-view/find-member-declaration/definition):
20020 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
20021 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
20022 Rename parameter PREFIX-ARG to PREFIX.
20023 (ebrowse-tags-read-name): Remove unused variables `start' and
20024 `member-info'.
20025 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
20026 to `tags-file'.
20027
20028 * progmodes/etags.el (local-find-tag-hook): Declare.
20029 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
20030 Mark unused parameters.
20031
20032 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
20033 (executable-interpret): Mark unused parameter.
20034
20035 * progmodes/flymake.el (flymake-process-sentinel)
20036 (flymake-after-change-function)
20037 (flymake-create-temp-with-folder-structure)
20038 (flymake-get-include-dirs-dot): Mark unused parameters.
20039 (flymake-safe-delete-directory): Remove unused variable `err'.
20040
20041 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
20042 (speedbar-timer-fn, speedbar-line-text)
20043 (speedbar-change-expand-button-char, speedbar-delete-subblock)
20044 (speedbar-center-buffer-smartly): Declare functions.
20045 (gdb-find-watch-expression): Remove unused variable `array'.
20046 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
20047 (gdb-starting): Mark unused parameters.
20048 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
20049 (gdb-table-string): Remove unused variable `res'.
20050 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
20051 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
20052 (gdb-display-buffer): Remove unused variable `cur-size'.
20053
20054 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
20055 allow lexical-binding compilation.
20056 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
20057 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
20058 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
20059 Mark unused parameters.
20060 (gud-gdb-marker-filter): Remove unused variable `match'.
20061 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
20062 lambda expressions and funcall them, instead of using `fset'.
20063
20064 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
20065 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
20066
20067 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
20068 variable `header-beg'; use `let'.
20069
20070 * progmodes/icon.el (indent-icon-exp): Remove unused variables
20071 `restart', `last-sexp' and `at-do'.
20072
20073 * progmodes/js.el (js--debug): Mark unused parameter.
20074 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
20075 (js--splice-into-items): Remove unused variable `item'.
20076 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
20077
20078 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
20079 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
20080 (makefile-complete): Remove unused variable `try'.
20081 (makefile-fill-paragraph, makefile-match-function-end):
20082 Mark unused parameters.
20083
20084 * progmodes/octave-inf.el (inferior-octave-complete):
20085 Remove unused variable `proc'.
20086 (inferior-octave-output-digest): Mark unused parameter.
20087
20088 * progmodes/perl-mode.el (perl-calculate-indent):
20089 Remove unused variable `err'.
20090
20091 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
20092 (prolog-indent-line): Mark unused parameters.
20093 (prolog-indent-line): Remove unused variable `beg'.
20094
20095 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
20096 (reporter-dont-compact-list): Declare.
20097
20098 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
20099 Remove unused variable `char'.
20100 (sh-debug): Mark unused parameter.
20101 (sh-get-indent-info): Remove unused variable `start'.
20102 (sh-calculate-indent): Remove unused variable `var'.
20103
20104 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
20105 (simula-electric-keyword): Remove unused variable `null'.
20106 (simula-search-backward, simula-search-forward): Remove unused
20107 variables `begin' and `end'.
20108
20109 * progmodes/vera-mode.el (vera-guess-basic-syntax):
20110 Remove unused variable `pos'.
20111 (vera-electric-tab, vera-comment-uncomment-region):
20112 Mark unused parameters.
20113 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
20114
20115 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
20116
20117 * emacs-lisp/package.el (package--builtins, package-alist)
20118 (package-load-descriptor, package-built-in-p, package-activate)
20119 (define-package, package-installed-p)
20120 (package-compute-transaction, package-buffer-info)
20121 (package--push): Doc fix. Distinguish more clearly between
20122 version strings and version lists.
20123
20124 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
20125
20126 Lexical-binding cleanup.
20127
20128 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
20129 (5x5-make-mutate-best):
20130 * play/fortune.el (fortune-in-buffer):
20131 * play/gomoku.el (gomoku-init-display):
20132 * play/solitaire.el (solitaire, solitaire-do-check):
20133 * play/tetris.el (tetris-default-update-speed-function):
20134 Mark unused parameters.
20135
20136 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
20137 (bubbles--shift): Remove unused variable `char-org'.
20138 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
20139 (bubbles--show-images): Remove unused variable `char'.
20140
20141 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
20142 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
20143 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
20144 (decipher-analyze-buffer): Use ?\s.
20145 (decipher-make-checkpoint): Remove unused variable `mapping'.
20146
20147 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
20148
20149 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
20150 Remove unused variable `result'; use `let'.
20151
20152 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
20153 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
20154 (gametree-children-shown-p, gametree-compute-reduced-score):
20155 Use `ignore-errors'.
20156
20157 * play/handwrite.el (ps-lpr-switches): Declare.
20158 (handwrite): Remove unused variables `pmin' and `lastp'.
20159
20160 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
20161
20162 * play/landmark.el (landmark-init-display)
20163 (landmark-update-naught-weights): Mark unused parameters.
20164 (landmark-y): Remove unused variable `noise'. Simplify.
20165 (landmark-human-plays): Remove unused variable `score'.
20166
20167 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
20168 (mpuz-try-proposal): Remove unused variable `game'.
20169
20170 * play/zone.el (life-patterns): Declare.
20171
20172 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
20173
20174 * vc/vc.el (ediff-vc-internal): Declare function.
20175
20176 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
20177
20178 * shell.el: Use lexical-binding and std completion UI.
20179 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
20180 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
20181 comint-preoutput-filter-functions rather than on
20182 comint-output-filter-functions.
20183 (shell-command-completion, shell--command-completion-data)
20184 (shell-filename-completion, shell-environment-variable-completion)
20185 (shell-c-a-p-replace-by-expanded-directory): New functions.
20186 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
20187 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
20188 (shell-dynamic-complete-environment-variable): Use them.
20189 (shell-dynamic-complete-as-environment-variable)
20190 (shell-dynamic-complete-as-command): Remove.
20191 (shell-match-partial-variable): Match past point.
20192 * comint.el: Clean up use of completion-at-point-functions.
20193 (comint-completion-at-point): New function.
20194 (comint-mode): Use it completion-at-point-functions.
20195 (comint-dynamic-complete): Make it obsolete.
20196 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
20197 (comint-c-a-p-replace-by-expanded-history): New function.
20198 (comint-dynamic-complete-functions)
20199 (comint-replace-by-expanded-history): Use it.
20200 * minibuffer.el (completion-table-with-terminator): Allow dynamic
20201 termination strings. Try harder to avoid second try-completion.
20202 (completion-in-region-mode-map): Disable bindings that don't work yet.
20203
20204 * comint.el: Use lexical-binding. Require CL.
20205 (comint-dynamic-complete-functions): Use comint-filename-completion.
20206 (comint-completion-addsuffix): Tweak custom type.
20207 (comint-filename-completion, comint--common-suffix)
20208 (comint--common-quoted-suffix, comint--table-subvert)
20209 (comint--complete-file-name-data): New functions.
20210 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
20211 (comint-dynamic-list-filename-completions): Use them.
20212 (comint-dynamic-simple-complete): Make obsolete.
20213
20214 * minibuffer.el (completion-in-region-mode):
20215 Keep completion-in-region-mode--predicate global.
20216 (completion-in-region--postch):
20217 Assume completion-in-region-mode--predicate is not null.
20218
20219 * progmodes/flymake.el (flymake-start-syntax-check-process):
20220 Obey `dir'. Simplify.
20221
20222 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
20223 we're in VC after all.
20224
20225 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
20226
20227 * vc/vc.el (vc-diff-build-argument-list-internal)
20228 (vc-version-ediff, vc-ediff): New commands.
20229 (vc-version-diff): Use vc-diff-build-argument-list-internal.
20230
20231 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
20232
20233 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
20234 add sanity check.
20235
20236 * obsolete/erc-hecomplete.el: Make obsolete.
20237 * obsolete/: Standardize obsolescence info in the header.
20238
20239 2011-04-20 Glenn Morris <rgm@gnu.org>
20240
20241 * calendar/solar.el (solar-horizontal-coordinates):
20242 Use the longitude argument rather than `calendar-longitude'.
20243 (solar-date-next-longitude): Remove unused locals.
20244
20245 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20246
20247 * whitespace.el: New version 13.2.1.
20248
20249 2011-04-20 felix <EmacsWiki> (tiny change)
20250
20251 * whitespace.el (global-whitespace-mode): Keep highlight when
20252 switching between major modes on a file.
20253
20254 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
20255
20256 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
20257 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
20258 multi-line comments as well.
20259
20260 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
20261
20262 Lexical-binding cleanup.
20263
20264 * arc-mode.el (archive-mode-revert):
20265 * cmuscheme.el (scheme-interactively-start-process):
20266 * custom.el (custom-initialize-delay):
20267 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
20268 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
20269 * emacs-lock.el (emacs-lock-clear-sentinel):
20270 * ezimage.el (defezimage):
20271 * follow.el (follow-avoid-tail-recenter):
20272 * fringe.el (set-fringe-mode-1):
20273 * generic-x.el (bat-generic-mode-compile):
20274 * help-mode.el (help-info-variable, help-do-xref)
20275 (help-mode-revert-buffer):
20276 * help.el (view-emacs-todo):
20277 * iswitchb.el (iswitchb-completion-help):
20278 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
20279 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
20280 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
20281 * locate.el (locate-update):
20282 * longlines.el (longlines-encode-region)
20283 (longlines-after-change-function):
20284 * outline.el (outline-isearch-open-invisible):
20285 * ps-def.el (declare-function, charset-dimension, char-width)
20286 (encode-char):
20287 * ps-mule.el (ps-mule-plot-string):
20288 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
20289 (recentf-edit-list-select, recentf-edit-list-validate)
20290 (recentf-open-files-action):
20291 * rect.el (delete-whitespace-rectangle-line)
20292 (rectangle-number-line-callback):
20293 * register.el (window-configuration-to-register)
20294 (frame-configuration-to-register):
20295 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
20296 * select.el (xselect-convert-to-string, xselect-convert-to-length)
20297 (xselect-convert-to-targets, xselect-convert-to-delete)
20298 (xselect-convert-to-filename, xselect-convert-to-charpos)
20299 (xselect-convert-to-lineno, xselect-convert-to-colno)
20300 (xselect-convert-to-os, xselect-convert-to-host)
20301 (xselect-convert-to-user, xselect-convert-to-class)
20302 (xselect-convert-to-name, xselect-convert-to-integer)
20303 (xselect-convert-to-atom, xselect-convert-to-identity):
20304 * subr.el (declare, ignore, process-kill-without-query)
20305 (text-clone-maintain):
20306 * terminal.el (te-get-char, te-tic-sentinel):
20307 * tool-bar.el (tool-bar-make-keymap):
20308 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
20309 * type-break.el (type-break-mode, type-break-noninteractive-query):
20310 * view.el (View-back-to-mark):
20311 * wid-browse.el (widget-browse-action, widget-browse-widget)
20312 (widget-browse-widgets, widget-browse-sexp):
20313 * widget.el (define-widget-keywords):
20314 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
20315 Mark unused parameters.
20316
20317 * align.el (align-adjust-col-for-rule): Mark unused parameter.
20318 (align-areas): Remove unused variable `look'.
20319 (align-region): Remove unused variables `real-end' and `pos-list'.
20320
20321 * apropos.el (apropos-score-doc): Remove unused variable `i'.
20322
20323 * bindings.el (mode-line-modified, mode-line-remote):
20324 Mark unused parameters.
20325 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
20326
20327 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
20328 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
20329
20330 * comint.el (comint-history-isearch-pop-state)
20331 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
20332 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
20333 (comint-substitute-in-file-name): Doc fix.
20334
20335 * completion.el (cmpl-statistics-block): Mark unused parameter.
20336 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
20337 (save-completions-to-file, load-completions-from-file):
20338 Remove unused local variable `e'.
20339
20340 * composite.el (compose-chars): Remove unused variable `len'.
20341 (lgstring-insert-glyph): Remove unused variable `g'.
20342 (compose-glyph-string): Remove unused variables `ascent',
20343 `descent', `lbearing' and `rbearing'.
20344 (compose-glyph-string-relative): Remove unused variables
20345 `lbearing', `rbearing' and `wadjust'.
20346 (compose-gstring-for-graphic): Remove unused variables `header',
20347 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
20348 (compose-gstring-for-terminal): Remove unused variables `header'
20349 and `nchars'. Use `let', not `let*'.
20350
20351 * cus-edit.el (Custom-set, Custom-save, custom-reset)
20352 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
20353 (Custom-buffer-done, custom-buffer-create-internal)
20354 (custom-browse-visibility-action, custom-browse-group-tag-action)
20355 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
20356 (widget-magic-mouse-down-action, custom-toggle-parent)
20357 (custom-add-parent-links, custom-toggle-hide-variable)
20358 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
20359 (custom-toggle-hide-face, face, hook, custom-group-link-action)
20360 (custom-face-menu-create, custom-variable-menu-create, get)
20361 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
20362 (custom-reset-standard-save-and-update): Remove unused variable `value'.
20363 (customize-apropos): Remove unused variable `tests'.
20364 (custom-group-value-create): Remove unused variable `hidden-p'.
20365 (sort-fold-case): Declare.
20366
20367 * cus-theme.el (custom-reset-standard-faces-list)
20368 (custom-reset-standard-variables-list): Declare.
20369 (customize-create-theme, custom-theme-revert, custom-theme-write)
20370 (custom-theme-choose-mode, customize-themes, custom-theme-save):
20371 Mark unused parameters.
20372
20373 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
20374
20375 * delim-col.el (delimit-columns-max): Move defvar before first use.
20376
20377 * descr-text.el (describe-char-categories): Don't quote `lambda'.
20378 (describe-char): Don't quote `lambda'. Mark unused parameter.
20379
20380 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
20381 (auto-insert): Declare.
20382 (desktop-restore-file-buffer): Rename desktop-* parameters;
20383 mark unused ones.
20384 (desktop-create-buffer): Rename desktop-* parameters and bind them.
20385 (desktop-buffer): Rename desktop-* parameters.
20386
20387 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
20388 (dframe-reposition-frame-xemacs, dframe-help-echo)
20389 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
20390 Mark unused parameters.
20391
20392 * dired-aux.el (backup-extract-version-start, overwrite-query)
20393 (overwrite-backup-query, rename-regexp-query)
20394 (rename-non-directory-query): Declare.
20395 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
20396 (dired-add-entry): Remove unused variable `orig-file-name'.
20397 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
20398 Use parameter PRESERVE-TIME instead of accessing dynamic variable
20399 `dired-copy-preserve-time' directly.
20400 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
20401 (dired-insert-subdir-newpos): Rename unused variable `pos'.
20402
20403 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
20404 (dired-virtual-revert, dired-make-relative-symlink):
20405 Mark unused parameters.
20406 (manual-program): Declare.
20407 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
20408 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
20409 wrapped in `with-no-warnings' to avoid replacing one warning by another.
20410
20411 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
20412
20413 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
20414
20415 * echistory.el (electric-history-in-progress, Helper-return-blurb):
20416 Declare.
20417
20418 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
20419
20420 * electric.el (Electric-command-loop): Rename parameter
20421 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
20422
20423 * expand.el (expand-in-literal): Remove unused variable `here'.
20424
20425 * facemenu.el (facemenu-add-new-color):
20426 Remove unused variable `docstring'.
20427
20428 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
20429 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
20430 (face-attr-construct): Mark unused parameter. Doc fix.
20431 (read-color): Remove unused variable `hex-string'.
20432
20433 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
20434 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
20435 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
20436 (display-buffer-other-frame): Remove unused variable `old-window'.
20437 (kill-buffer-hook): Declare.
20438 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
20439 Mark unused parameters.
20440 (after-find-file): Pass 1 to `auto-save-mode', not t.
20441
20442 * files-x.el (auto-insert): Declare.
20443 (modify-file-local-variable-prop-line): Remove unused variable `val'.
20444
20445 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
20446 variable `buf'. Mark unused parameter.
20447 (find-lisp-insert-directory): Mark unused parameter.
20448
20449 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
20450 (format-encode-region): Remove unused variables `cur-buf' and `result'.
20451 (format-common-tail): Remove, unused.
20452 (format-deannotate-region): Remove unused variable `loc'.
20453 (format-annotate-region): Remove unused variable `p'.
20454 (format-annotate-single-property-change): Remove unused variables
20455 `default' and `tail'.
20456
20457 * forms.el (read-file-filter): Declare.
20458 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
20459
20460 * frame.el (frame-creation-function-alist): Mark unused parameter.
20461 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
20462
20463 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
20464 Remove unused parameters.
20465 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
20466 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
20467
20468 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
20469 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
20470 (hfy-prepare-tag-map): Mark unused parameters.
20471 (htmlfontify-buffer): Use `called-interactively-p'.
20472
20473 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
20474 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
20475 (ibuffer-do-occur): Mark unused parameters.
20476 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
20477 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
20478
20479 * ibuffer.el: Don't quote `lambda'.
20480 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
20481 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
20482 Mark unused parameters.
20483
20484 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
20485 (ido-completing-read): Mark unused parameters.
20486 (ido-copy-current-word): Mark unused parameters;
20487 remove unused variable `name'.
20488 (ido-sort-merged-list): Remove unused parameter `dirs'.
20489
20490 * ielm.el (ielm-input-sender): Mark unused parameter.
20491 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
20492 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
20493 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
20494 `ielm-string' as a dynamic variable accessible from the IELM prompt.
20495 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
20496
20497 * image-dired.el (image-dired-display-thumbs): Remove unused
20498 variables `curr-file' and `count'.
20499 (image-dired-remove-tag): Remove unused variable `start'.
20500 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
20501 variable `curr-file'
20502 (image-dired-rotate-original): Remove unused variable `temp-file'.
20503 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
20504 Remove unused variable `file'.
20505 (image-dired-gallery-generate): Remove unused variable `curr'.
20506 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
20507
20508 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
20509
20510 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
20511
20512 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
20513
20514 * isearch.el (minibuffer-history-symbol): Declare.
20515 (isearch-edit-string): Remove unused variable `err'.
20516 (isearch-message-prefix, isearch-message-suffix):
20517 Mark unused parameters.
20518
20519 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
20520
20521 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
20522
20523 * makesum.el (double-column): Remove unused variable `cnt'.
20524
20525 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
20526 (ido-ignore-item-temp-list): Declare.
20527
20528 * mouse-drag.el (mouse-drag-throw): Remove unused variables
20529 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
20530 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
20531 (mouse-drag-drag): Remove unused variables `mouse-delta' and
20532 `mouse-col-delta'.
20533
20534 * mouse-sel.el (mouse-extend-internal):
20535 Remove unused variable `orig-window-frame'.
20536
20537 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
20538 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
20539 Move declarations before first use.
20540 (pcomplete-opt): Mark unused parameters; doc fix.
20541
20542 * proced.el (proced-revert): Mark unused parameter.
20543 (proced-send-signal): Remove unused variable `err'.
20544
20545 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
20546 Rename parameter PREFIX-ARG to ARG.
20547 (ps-basic-plot-string, ps-basic-plot-whitespace):
20548 Mark unused parameters.
20549
20550 * replace.el (replace-count): Define.
20551 (occur-revert-function): Mark unused parameters.
20552 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
20553 (isearch-case-fold-search, isearch-string): Declare.
20554 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
20555 bind `case-fold-search'. Remove unused variables `beg' and `end',
20556 and simplify.
20557 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
20558 COUNT and bind `replace-count'.
20559 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
20560 to COUNT.
20561
20562 * savehist.el (print-readably, print-string-length): Declare.
20563
20564 * shadowfile.el (shadow-expand-cluster-in-file-name):
20565 Remove unused variable `cluster'.
20566 (shadow-copy-file): Remove unused variable `i'.
20567 (shadow-noquery, shadow-clusters, shadow-site-cluster)
20568 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
20569 (shadow-define-literal-group, shadow-define-regexp-group)
20570 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
20571
20572 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
20573 (shell): Use `called-interactively-p'.
20574 (shell-directory-tracker): Remove unused variable `chdir-failure'.
20575
20576 * simple.el (compilation-context-lines, comint-file-name-quote-list)
20577 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
20578 (delete-backward-char): Remove unused variable `ocol'.
20579 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
20580 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
20581 (event-apply-hyper-modifier, event-apply-shift-modifier)
20582 (event-apply-control-modifier, event-apply-meta-modifier):
20583 Mark unused parameters.
20584 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
20585 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
20586
20587 * speedbar.el (speedbar-ignored-directory-expressions)
20588 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
20589 (speedbar-find-file, speedbar-dir-follow)
20590 (speedbar-directory-buttons-follow, speedbar-tag-find)
20591 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
20592 (speedbar-buffers-line-directory, speedbar-buffer-click):
20593 Mark unused parameters.
20594 (speedbar-tag-file): Remove unused variable `mode'.
20595 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
20596
20597 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
20598
20599 * talk.el (talk): Remove unused variable `display'.
20600
20601 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
20602 (tar-write-region-annotate): Mark unused parameter.
20603
20604 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
20605 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
20606 Declare them, wrapped in `with-no-warnings' to avoid replacing one
20607 warning by another.
20608
20609 * time-stamp.el (time-stamp-string-preprocess):
20610 Remove unused variable `require-padding'.
20611
20612 * tree-widget.el (widget-glyph-enable): Declare.
20613 (tree-widget-action): Mark unused parameter.
20614
20615 * w32-fns.el (x-get-selection): Mark unused parameter.
20616 (autoload-make-program, generated-autoload-file): Declare.
20617
20618 * wdired.el (wdired-revert): Mark unused parameters.
20619 (wdired-xcase-word): Remove unused variable `err'.
20620
20621 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
20622 (whitespace-help-scroll): Remove unused variable `data-help'.
20623
20624 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
20625 (widget-image-insert, widget-after-change, default)
20626 (widget-default-format-handler, widget-default-notify)
20627 (widget-default-prompt-value, widget-info-link-action)
20628 (widget-url-link-action, widget-function-link-action)
20629 (widget-variable-link-action, widget-file-link-action)
20630 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
20631 (widget-field-prompt-internal, widget-field-action, widget-field-match)
20632 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
20633 (widget-insert-button-action, widget-delete-button-action, visibility)
20634 (widget-documentation-link-action, widget-documentation-string-action)
20635 (widget-const-prompt-value, widget-regexp-match, symbol)
20636 (widget-coding-system-prompt-value)
20637 (widget-key-sequence-value-to-external, sexp)
20638 (widget-sexp-value-to-internal, character, vector, cons)
20639 (widget-choice-prompt-value, widget-boolean-prompt-value)
20640 (widget-color--choose-action): Mark unused parameters.
20641 (widget-item-match-inline, widget-choice-match-inline)
20642 (widget-checklist-match, widget-checklist-match-inline)
20643 (widget-group-match): Rename parameter VALUES to VALS.
20644 (widget-field-value-set): Remove unused variable `size'.
20645 (widget-color-action): Remove unused variables `value' and `start'.
20646
20647 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
20648 variable `dir'. Doc fix.
20649 (windmove-find-other-window): Don't pass it.
20650
20651 * window.el (count-windows): Mark unused parameter.
20652 (bw-adjust-window): Remove unused variable `err'.
20653
20654 * woman.el (woman-file-name): Remove unused variable `default'.
20655 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
20656 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
20657 (global-font-lock-mode): Declare.
20658 (woman-decode-region): Mark unused parameter.
20659 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
20660
20661 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
20662 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
20663 (x-dnd-handle-moz-url): Remove unused variable `title'.
20664 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
20665
20666 * xml.el (xml-parse-tag, xml-parse-attlist):
20667 Remove unused variable `pos'.
20668
20669 2011-04-19 Glenn Morris <rgm@gnu.org>
20670
20671 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
20672 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
20673 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
20674 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
20675 * calendar/cal-html.el (cal-html-insert-minical):
20676 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
20677 (calendar-mark-date-pattern):
20678 Prefix "unused" locals.
20679
20680 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
20681 optional argument `style'.
20682
20683 * calendar/appt.el (appt-make-list):
20684 * calendar/cal-china.el (calendar-chinese-date-string):
20685 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
20686 (diary-hebrew-yahrzeit):
20687 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
20688 * calendar/calendar.el (calendar-generate-window):
20689 * calendar/time-date.el (time-to-days):
20690 Remove unused local variables.
20691
20692 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
20693
20694 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
20695 glyphless-char-display table.
20696 (tabulated-list-glyphless-char-display): New var.
20697
20698 2011-04-18 Sam Steingold <sds@gnu.org>
20699
20700 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
20701 to acknowledgments.
20702
20703 2011-04-17 Glenn Morris <rgm@gnu.org>
20704
20705 * calendar/diary-lib.el (diary-sexp-entry):
20706 * calendar/holidays.el (holiday-sexp):
20707 Set debug-on-error rather than the removed stack-trace-on-error.
20708
20709 2011-04-16 Glenn Morris <rgm@gnu.org>
20710
20711 * progmodes/f90.el: Use lexical-binding.
20712 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
20713
20714 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20715
20716 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
20717 (mail-mode): Setup mailalias completion here instead.
20718 * mail/mailalias.el: Use lexical-binding.
20719 (pattern, mailalias-done): Declare dynamic.
20720 (mail-completion-at-point-function): New function, from mail-complete.
20721 (mail-complete): Use it.
20722 (mail-completion-expand): New function.
20723 (mail-get-names): Use it.
20724 (mail-directory, mail-directory-process, mail-directory-stream):
20725 Don't use `pattern' for lexically bound arg.
20726
20727 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
20728
20729 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
20730 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
20731 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
20732
20733 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
20734 (byte-save-window-excursion, byte-temp-output-buffer-setup)
20735 (byte-interactive-p): Define them again, for use when inlining
20736 old code.
20737
20738 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20739
20740 * loadup.el: Use `string-to-number', not `string-to-int'.
20741
20742 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20743
20744 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
20745 gud-gdb-complete-command.
20746 (gud-gdb-completions): New function, from gud-gdb-complete-command.
20747 (gud-gdb-completion-at-point): New function.
20748 (gud-gdb-completions): Remove.
20749
20750 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
20751
20752 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
20753 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
20754 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
20755 whether `executable-find' is bound.
20756
20757 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
20758
20759 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
20760
20761 * minibuffer.el (completion-in-region-mode-predicate)
20762 (completion-in-region-mode--predicate): New vars.
20763 (completion-in-region, completion-in-region--postch)
20764 (completion-in-region-mode): Use them.
20765 (completion--capf-wrapper): Also return the hook function.
20766 (completion-at-point, completion-help-at-point):
20767 Adjust and provide a predicate.
20768
20769 Preserve arg names for advice of subr and lexical functions (bug#8457).
20770 * help-fns.el (help-function-arglist): Consolidate the subr and
20771 new-byte-code cases. Add argument `preserve-names' to extract names
20772 from the docstring when needed.
20773 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
20774 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
20775 (ad-arglist): Use help-function-arglist's new arg.
20776 (ad-definition-type): Use cond.
20777
20778 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
20779
20780 * autorevert.el (auto-revert-handler):
20781 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
20782 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
20783 Don't quote lambda.
20784
20785 * image-mode.el (image-transform-set-scale):
20786 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
20787
20788 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20789
20790 * net/network-stream.el (network-stream-open-starttls): Only do
20791 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
20792 Upgrades via gnutls-cli are too slow to be done opportunistically.
20793
20794 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
20795
20796 * dframe.el (dframe-current-frame): Remove spurious quote.
20797
20798 2011-04-12 Glenn Morris <rgm@gnu.org>
20799
20800 * calendar/cal-tex.el (cal-tex-end-document):
20801 Try to automatically use latin1 input if needed.
20802
20803 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
20804 Don't try to cons a mark onto an empty element.
20805
20806 2011-04-11 Leo Liu <sdl.web@gmail.com>
20807
20808 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
20809 buffers.
20810 (ido-kill-buffer-at-head): Support killing virtual buffers.
20811
20812 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
20813
20814 * minibuffer.el (completion-show-inline-help): New var.
20815 (completion--do-completion, minibuffer-complete)
20816 (minibuffer-force-complete, minibuffer-complete-word):
20817 Inhibit minibuffer messages if completion-show-inline-help is nil.
20818
20819 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
20820 to avoid interference from inline help (Bug#5849).
20821
20822 2011-04-10 Leo Liu <sdl.web@gmail.com>
20823
20824 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
20825 Fix typo.
20826
20827 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
20828
20829 * image-mode.el (image-toggle-display-image): Signal an error if
20830 not in Image mode.
20831 (image-transform-mode, image-transform-resize)
20832 (image-transform-set-rotation): Doc fix.
20833 (image-transform-set-resize): Delete.
20834 (image-transform-set-scale, image-transform-fit-to-height)
20835 (image-transform-fit-to-width): Handle image-toggle-display-image
20836 and image-transform-resize directly.
20837
20838 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
20839
20840 * doc-view.el (doc-view-fit-width-to-window)
20841 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
20842 New functions for fitting the shown image to the Emacs window size.
20843 (doc-view-mode-map): Add bindings for the new functions.
20844
20845 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
20846
20847 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
20848 Fix typo in docstring.
20849
20850 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20851
20852 * files.el (file-size-human-readable): Produce one digit after
20853 decimal, like "ls -lh" does.
20854
20855 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
20856 the file size representation.
20857
20858 * simple.el (list-processes): If async subprocesses are not
20859 available, error out with a clear error message.
20860
20861 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
20862
20863 * help.el (help-form-show): New function, to be called from C.
20864 Put help-form output in a buffer named differently than *Help*.
20865
20866 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20867
20868 * files.el (file-size-human-readable): New function.
20869
20870 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
20871 computing the representation inline. Don't require `cl'.
20872
20873 2011-04-08 Glenn Morris <rgm@gnu.org>
20874
20875 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
20876
20877 * net/browse-url.el (browse-url-firefox):
20878 Test system-type, not system-configuration.
20879
20880 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
20881 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
20882 Use log-edit-empty-buffer-p. (Bug#7598)
20883
20884 * net/rlogin.el (rlogin-process-connection-type): Simplify.
20885 (rlogin-mode-map): Initialize in the defvar.
20886 (rlogin): Use ignore-errors.
20887
20888 * replace.el (occur-mode-map): Some fixes for menu items.
20889
20890 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
20891
20892 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
20893
20894 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20895
20896 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
20897 issuing unused warnings.
20898
20899 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
20900 macro directly.
20901
20902 * simple.el: Lisp reimplement of list-processes. Based on an
20903 earlier reimplementation by Leo Liu, but using tabulated-list.el.
20904 (process-menu-mode): New major mode.
20905 (list-processes--refresh, list-processes):
20906 (process-menu-visit-buffer): New functions.
20907
20908 * files.el (save-buffers-kill-emacs): Don't assume any return
20909 value of list-processes, which is undocumented anyway.
20910
20911 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20912
20913 * emacs-lisp/tabulated-list.el: New file.
20914
20915 * emacs-lisp/package.el: Use Tabulated List mode.
20916 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
20917 (package-menu-mode): Derive from tabulated-list-mode. Set up the
20918 table format using Tabulated List mode variables.
20919 (package--push): New macro, replacing package-list-maybe-add.
20920 (package-menu--generate): Use package--push. Renamed from
20921 package--generate-package-list.
20922 (package-menu-refresh, list-packages): Use it.
20923 (package-menu--print-info): Rename from package-print-package.
20924 Return insertion data instead of inserting it directly.
20925 (package-menu-describe-package, package-menu-execute):
20926 Use tabulated-list-get-id.
20927 (package-menu-mark-delete, package-menu-mark-install)
20928 (package-menu-mark-unmark, package-menu-backup-unmark)
20929 (package-menu-mark-obsolete-for-deletion):
20930 Use tabulated-list-put-tag.
20931 (package--list-packages, package-menu-revert)
20932 (package-menu-get-package, package-menu-get-version)
20933 (package-menu-sort-by-column): Functions deleted.
20934 (package-menu-package-list, package-menu-sort-key): Vars deleted.
20935 (package-menu--status-predicate, package-menu--version-predicate)
20936 (package-menu--name-predicate)
20937 (package-menu--description-predicate): Handle arguments in the
20938 Tabulated List format.
20939 (package-list-packages-no-fetch): Call list-packages.
20940
20941 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
20942
20943 * files.el (after-find-file-from-revert-buffer): Remove variable.
20944 (after-find-file): Don't bind it.
20945 (revert-buffer-in-progress-p): New variable.
20946 (revert-buffer): Bind it.
20947 Pass nil for `after-find-file-from-revert-buffer'.
20948
20949 * saveplace.el (save-place-find-file-hook): Use new variable
20950 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
20951
20952 2011-04-06 Glenn Morris <rgm@gnu.org>
20953
20954 * Makefile.in (AUTOGEN_VCS): New variable.
20955 (autoloads): Use $AUTOGEN_VCS.
20956
20957 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
20958 * calendar/calendar.el (calendar-mode-map):
20959 Check for toolkit scroll bars. (Bug#8305)
20960
20961 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20962
20963 * minibuffer.el (completion-in-region--postch)
20964 (completion-in-region-mode): Remove unnecessary messages.
20965
20966 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
20967
20968 * font-lock.el (font-lock-refresh-defaults):
20969 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
20970 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
20971
20972 * info.el (Info-directory-list, Info-read-node-name-2)
20973 (Info-split-parameter-string): Doc fixes.
20974 (Info-virtual-nodes): Reflow docstring.
20975 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
20976 (Info-apropos-toc-nodes, info-finder, Info-get-token)
20977 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
20978 Fix typos in docstrings.
20979 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
20980 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
20981 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
20982 (Info-restore-desktop-buffer): Mark unused parameters.
20983 (Info-directory-find-file, Info-directory-find-node)
20984 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
20985 (Info-virtual-index-find-node, Info-apropos-find-file)
20986 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
20987 Mark unused parameters; fix typos in docstrings.
20988 (Info-virtual-index): Remove unused local variable `nodename'.
20989
20990 2011-04-05 Deniz Dogan <deniz@dogan.se>
20991
20992 * net/rcirc.el: Update my e-mail address.
20993 (rcirc-mode-map): Remove M-o binding.
20994
20995 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20996
20997 * startup.el (command-line): Save the cursor's theme-face
20998 directly, instead of using face-override-spec.
20999
21000 * custom.el (load-theme): Minor optimization in assigning faces.
21001
21002 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
21003
21004 * help-fns.el (describe-variable): Complete all variables having
21005 documentation, including keywords.
21006 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
21007
21008 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
21009
21010 Convert to lexical-binding.
21011
21012 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
21013 (bs--get-marked-string, bs--get-modified-string)
21014 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
21015 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
21016 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
21017
21018 * ehelp.el (electric-help-execute-extended)
21019 (electric-help-ctrl-x-prefix):
21020 * hexl.el (hexl-revert-buffer-function):
21021 * linum.el (linum-after-change, linum-after-scroll):
21022 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
21023
21024 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
21025
21026 2011-04-04 Daiki Ueno <ueno@unixuser.org>
21027
21028 * epa-dired.el:
21029 * epa-mail.el:
21030 * epa-hook.el:
21031 * epa-file.el:
21032 * epa.el:
21033 * epg.el: Use lexical binding.
21034
21035 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
21036
21037 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
21038
21039 * textmodes/flyspell.el (flyspell-word): Recognize default
21040 dictionary case for flyspell-mark-duplications-exceptions.
21041 Use regexp matching for languages.
21042 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
21043 default dictionary (Bug#7926).
21044
21045 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
21046
21047 * emacs-lisp/package.el (package--with-work-buffer):
21048 Recognize https URLs.
21049
21050 * net/network-stream.el: Move from gnus/proto-stream.el.
21051 Change prefix to network-stream throughout.
21052 (open-protocol-stream): Merge into open-network-stream, leaving
21053 open-protocol-stream as an alias. Handle nil BUFFER args.
21054
21055 * subr.el (open-network-stream): Move to net/network-stream.el.
21056
21057 2011-04-02 Glenn Morris <rgm@gnu.org>
21058
21059 * find-dired.el (find-exec-terminator): New option.
21060 (find-ls-option): Test for -ls support.
21061 (find-ls-subdir-switches): Test for -b in find-ls-option.
21062 (find-dired, find-grep-dired): Doc fixes.
21063 (find-dired): Use find-exec-terminator.
21064
21065 * find-dired.el (find-ls-option, find-ls-subdir-switches)
21066 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
21067 (find-name-arg): Remove purecopy.
21068
21069 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
21070 (grep-compute-defaults): Check for `-exec COMMAND +' support.
21071 Set grep-find-use-xargs, grep-find-command, and grep-find-template
21072 accordingly. Don't add the null-device if not needed.
21073
21074 * files.el (save-some-buffers): Doc fix.
21075
21076 2011-04-02 Eli Zaretskii <eliz@gnu.org>
21077
21078 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
21079
21080 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
21081
21082 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
21083 Use `dolist' rather than `mapcar'.
21084
21085 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
21086
21087 Add lexical binding.
21088
21089 * subr.el (apply-partially): Use new closures rather than CL.
21090 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
21091 (dolist, dotimes): Use slightly different expansion for lexical code.
21092 (functionp): Move to C.
21093 (letrec): New macro.
21094 (with-wrapper-hook): Use it and apply-partially instead of CL.
21095 (eval-after-load): Preserve lexical-binding.
21096 (save-window-excursion, with-output-to-temp-buffer): Turn them
21097 into macros.
21098
21099 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
21100
21101 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
21102 than the arglist.
21103 (help-add-fundoc-usage): Don't add `Not documented'.
21104 (help-function-arglist): Handle closures, subroutines, and new
21105 byte-code-functions.
21106 (help-make-usage): Remove leading underscores.
21107 (describe-function-1): Handle closures.
21108 (describe-variable): Use special-variable-p for completion.
21109
21110 * files.el (lexical-binding): Declare safe.
21111
21112 * emacs-lisp/pcase.el: Don't use destructuring-bind.
21113 (pcase--memoize): Rename from pcase-memoize. Change weakness.
21114 (pcase): Add `let' pattern.
21115 Change memoization so it actually works.
21116 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
21117 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
21118 <let>: New case.
21119
21120 * emacs-lisp/macroexp.el: Use lexical binding.
21121 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
21122 Don't convert ' to #' without checking that it's indeed quoting
21123 a lambda.
21124
21125 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
21126 Use eval-sexp-add-defvars.
21127 (eval-sexp-add-defvars): New fun.
21128
21129 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
21130
21131 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
21132 Don't autoload.
21133 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
21134 than the internal `byte-compile-lambda'.
21135 (defmethod): Don't hide code under quotes.
21136 (eieio-defmethod): New `code' argument.
21137
21138 * emacs-lisp/eieio-comp.el: Remove.
21139
21140 * emacs-lisp/edebug.el (edebug-eval-defun)
21141 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
21142 (edebug-toggle): Avoid `eval'.
21143
21144 * emacs-lisp/disass.el (disassemble-internal): Handle new
21145 `closure' objects.
21146 (disassemble-1): Handle new byte codes.
21147
21148 * emacs-lisp/cl.el (pushnew): Silence warning.
21149
21150 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
21151 (cl-byte-compile-throw): Remove.
21152 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
21153
21154 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
21155 closures.
21156
21157 * emacs-lisp/cconv.el: New file.
21158
21159 * emacs-lisp/bytecomp.el: Use lexical binding instead of
21160 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
21161 (byte-compile-initial-macro-environment):
21162 Handle declare-function here.
21163 (byte-compile--lexical-environment): New var.
21164 (byte-stack-ref, byte-stack-set, byte-discardN)
21165 (byte-discardN-preserve-tos): New lap codes.
21166 (byte-interactive-p): Don't use any more.
21167 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
21168 New macros.
21169 (byte-compile-lapcode): Use them and handle new lap codes.
21170 (byte-compile-obsolete): Remove.
21171 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
21172 (byte-compile-arglist-warn): Check late def of inlinable funs.
21173 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
21174 since they should have been expanded by now.
21175 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
21176 (byte-compile-from-buffer): Remove unused second arg.
21177 (byte-compile-preprocess): New function.
21178 (byte-compile-toplevel-file-form): New function to distinguish
21179 file-form calls from outside from file-form calls from hunk-handlers.
21180 (byte-compile-file-form): Simplify.
21181 (byte-compile-file-form-defsubst): Remove.
21182 (byte-compile-file-form-defmumble): Simplify now that
21183 byte-compile-lambda always returns a byte-code-function.
21184 (byte-compile): Preprocess.
21185 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
21186 Remove, not used any more.
21187 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
21188 (byte-compile-make-args-desc): New funs.
21189 (byte-compile-lambda): Handle lexical functions. Always return
21190 a byte-code-function.
21191 (byte-compile-reserved-constants): New var, to make up room for
21192 closed-over variables.
21193 (byte-compile-constants-vector): Obey it.
21194 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
21195 (byte-compile-macroexpand-declare-function): New function.
21196 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
21197 byte-code-functions.
21198 (byte-compile-form): Check obsolescence here.
21199 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
21200 (byte-compile-variable-ref): Remove.
21201 (byte-compile-dynamic-variable-op): New fun.
21202 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
21203 (byte-compile-variable-set): New funs.
21204 (byte-compile-discard): Add 2 args.
21205 (byte-compile-stack-ref, byte-compile-stack-set)
21206 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
21207 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
21208 macroexpand-all instead.
21209 (byte-compile-quote-form): Remove.
21210 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
21211 (byte-compile-bind, byte-compile-unbind): New funs.
21212 (byte-compile-let): Handle let* and lexical binding.
21213 (byte-compile-let*): Remove.
21214 (byte-compile-catch, byte-compile-unwind-protect)
21215 (byte-compile-track-mouse, byte-compile-condition-case):
21216 Handle a new :fun-body form, used for lexical scoping.
21217 (byte-compile-save-window-excursion)
21218 (byte-compile-with-output-to-temp-buffer): Remove.
21219 (byte-compile-defun): Simplify.
21220 (byte-compile-stack-adjustment): New fun.
21221 (byte-compile-out): Use it.
21222 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
21223
21224 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
21225 handler any more.
21226
21227 * emacs-lisp/byte-opt.el: Use lexical binding.
21228 (byte-inline-lapcode): Remove (to bytecomp).
21229 (byte-compile-inline-expand): Pay attention to inlining to/from
21230 lexically bound code.
21231 (byte-compile-unfold-lambda): Don't handle byte-code-functions
21232 any more.
21233 (byte-optimize-form-code-walker): Don't handle save-window-excursion
21234 any more and don't call compiler-macros.
21235 (byte-compile-splice-in-already-compiled-code): Remove.
21236 (byte-code): Don't inline any more.
21237 (disassemble-offset): Receive `bytes' as argument rather than via
21238 dynamic scoping.
21239 (byte-compile-tag-number): Declare before first use.
21240 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
21241 `return' even if make-spliceable.
21242 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
21243 obsolete interactive-p.
21244 (byte-optimize-lapcode): Optimize new lap-codes.
21245 Don't trip up on new form of `byte-constant' lap code.
21246
21247 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
21248
21249 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
21250
21251 * custom.el (custom-initialize-default, custom-declare-variable):
21252 Use `defvar'.
21253
21254 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
21255 New variables.
21256 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
21257 (COMPILE_FIRST): Add macroexp and cconv.
21258 * makefile.w32-in: Mirror changes in Makefile.in.
21259
21260 * vc/cvs-status.el:
21261 * vc/diff-mode.el:
21262 * vc/log-edit.el:
21263 * vc/log-view.el:
21264 * vc/smerge-mode.el:
21265 * textmodes/bibtex-style.el:
21266 * textmodes/css-mode.el:
21267 * startup.el:
21268 * uniquify.el:
21269 * minibuffer.el:
21270 * newcomment.el:
21271 * reveal.el:
21272 * server.el:
21273 * mpc.el:
21274 * emacs-lisp/smie.el:
21275 * doc-view.el:
21276 * dired.el:
21277 * abbrev.el: Use lexical binding.
21278
21279 2011-04-01 Eli Zaretskii <eliz@gnu.org>
21280
21281 * info.el (info-display-manual): New function.
21282
21283 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
21284
21285 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
21286
21287 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
21288
21289 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
21290 an entry for that server in rcirc-authinfo. (Bug#8385)
21291
21292 2011-03-31 Glenn Morris <rgm@gnu.org>
21293
21294 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
21295
21296 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
21297
21298 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
21299
21300 * progmodes/python.el (python-default-interpreter)
21301 (python-python-command-args, python-jython-command-args)
21302 (python-which-shell, python-which-args, python-which-bufname)
21303 (python-file-queue, python-comint-output-filter-function)
21304 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
21305 variables and functions.
21306
21307 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21308
21309 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
21310 (completion-in-region-mode): New minor mode.
21311 (completion-in-region): Use it.
21312 (completion-in-region--data, completion-in-region-mode-map): New vars.
21313 (completion-in-region--postch): New function.
21314 (completion--capf-misbehave-funs, completion--capf-safe-funs):
21315 New vars.
21316 (completion--capf-wrapper): New function.
21317 (completion-at-point): Use it to track well-behavedness of
21318 hook functions.
21319 (completion-help-at-point): New command.
21320
21321 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
21322
21323 * vc/add-log.el (add-change-log-entry): Don't use whitespace
21324 syntax class to search for whitespace on a single line
21325 (Message-ID: <4D938140.4030905@redhat.com>).
21326
21327 2011-03-30 Leo Liu <sdl.web@gmail.com>
21328
21329 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
21330 New commands.
21331 (edit-abbrevs-map): Bind them here.
21332 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
21333
21334 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
21335
21336 * allout.el (allout-hide-by-annotation, allout-flag-region):
21337 Reduce possibility of overlay leakage by making them volatile.
21338
21339 * allout-widgets.el (allout-widgets-tally): Define as nil so the
21340 hash is not shared between buffers. Mode initialization is
21341 responsible for giving it a useful starting value.
21342 (allout-item-span): Reduce possibility of overlay leakage by
21343 making them volatile.
21344 (allout-widgets-count-buttons-in-region): Add diagnostic function
21345 for tracking down button overlay leaks.
21346
21347 2011-03-29 Leo Liu <sdl.web@gmail.com>
21348
21349 * ido.el (ido-read-internal): Use the default history var
21350 minibuffer-history if no HISTORY is specified.
21351
21352 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
21353
21354 * net/imap.el (imap-shell-open, imap-process-connection-type):
21355 Use imap-process-connection-type for 'shell' streams as well as
21356 Kerberos, SSL, other subprocesses.
21357
21358 2011-03-28 Leo Liu <sdl.web@gmail.com>
21359
21360 * abbrev.el (abbrev-table-empty-p): New function.
21361 (prepare-abbrev-list-buffer): Place empty abbrev tables after
21362 nonempty ones. (Bug#5937)
21363
21364 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21365
21366 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
21367
21368 2011-03-27 Leo Liu <sdl.web@gmail.com>
21369
21370 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
21371 for foreground and background colors.
21372 (ansi-color-make-color-map): Adapt.
21373
21374 2011-03-25 Leo Liu <sdl.web@gmail.com>
21375
21376 * midnight.el (midnight-time-float): Remove. Note it calculates
21377 the microsecond component incorrectly and seconds-to-time does the
21378 same job.
21379 Remove redundant (require 'timer).
21380
21381 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
21382 (ido-completions): Remove unused arguments. (Bug#8329)
21383
21384 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
21385
21386 * minibuffer.el (completion--flush-all-sorted-completions):
21387 Remove itself from hook.
21388 (completion-at-point): Let the functions perform the completion
21389 immediately and return nil or t.
21390 * comint.el (comint-dynamic-complete-functions): Now identical to
21391 completion-at-point-functions.
21392 (comint-dynamic-list-input-ring): Remove unused var `index'.
21393 (comint--match-partial-filename, comint--unquote&expand-filename):
21394 New funs, split from comint-match-partial-filename.
21395 (comint-dynamic-complete): Use completion-at-point.
21396 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
21397
21398 2011-03-24 Drew Adams <drew.adams@oracle.com>
21399
21400 * thingatpt.el: Support `defun'.
21401
21402 2011-03-23 Leo Liu <sdl.web@gmail.com>
21403
21404 * abbrevlist.el: Move to obsolete/abbrevlist.el.
21405
21406 * help-mode.el (help-mode-finish): Tweak regexp.
21407
21408 2011-03-23 Glenn Morris <rgm@gnu.org>
21409
21410 * eshell/esh-opt.el (eshell-eval-using-options):
21411 Do not bind unused local variable `eshell-option-stub'.
21412
21413 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
21414
21415 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21416
21417 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
21418 keymap variable in `with-no-warnings' to avoid a warning when the
21419 keymap has been already `defconst'ed.
21420
21421 2011-03-22 Leo Liu <sdl.web@gmail.com>
21422
21423 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
21424 encode all chars in abbrevs; otherwise use emacs-mule or
21425 utf-8-emacs. (Bug#8308)
21426
21427 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21428
21429 * simple.el (backward-delete-char-untabify):
21430 Avoid warning about using `delete-backward-char'.
21431
21432 * image.el (image-type-file-name-regexps): Make it variable.
21433 `imagemagick-register-types' modifies it, and the user may want
21434 to add new extensions for known image types.
21435 (imagemagick-register-types): Throw error if not using ImageMagick.
21436
21437 2011-03-22 Leo Liu <sdl.web@gmail.com>
21438
21439 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
21440 located before rcirc-prompt-end-marker.
21441 (rcirc-complete): Error if point is not after rcirc prompt.
21442 Handle the case when table is nil.
21443 (rcirc-user-authenticated): Define to fix compiler warning.
21444
21445 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
21446
21447 * custom.el (custom--inhibit-theme-enable): Make it affect only
21448 custom-theme-set-variables and custom-theme-set-faces.
21449 (provide-theme): Ignore custom--inhibit-theme-enable.
21450 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
21451 (custom-enabling-themes): Delete variable.
21452 (enable-theme): Accept only loaded themes as arguments.
21453 Ignore the special custom-enabled-themes variable.
21454 (custom-enabled-themes): Forbid themes from setting this.
21455 Eliminate use of custom-enabling-themes.
21456 (custom-push-theme): Quote "changed" custom var entry.
21457
21458 2011-03-21 Leo Liu <sdl.web@gmail.com>
21459
21460 * ido.el (ido-read-internal): Add ido-selected to history instead
21461 of user input.
21462
21463 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
21464
21465 * subr.el (deferred-action-list, deferred-action-function):
21466 Mark obsolete.
21467
21468 2011-03-21 Leo Liu <sdl.web@gmail.com>
21469
21470 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
21471 change on 2011-02-13 (bug#8309).
21472
21473 * minibuffer.el (read-file-name-function): Change default value.
21474 (read-file-name--defaults): Rename from read-file-name-defaults.
21475 (read-file-name-default): Rename from read-file-name.
21476 (read-file-name): Call read-file-name-function.
21477
21478 2011-03-21 Glenn Morris <rgm@gnu.org>
21479
21480 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
21481 Doc fixes.
21482
21483 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
21484
21485 * cus-theme.el: Add missing provide statement.
21486 (customize-create-theme): Extract theme value correctly.
21487 (custom-theme-visit-theme): Autoload.
21488 (customize-create-theme): Prompt before inserting default faces.
21489
21490 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
21491
21492 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
21493 units and musical notes.
21494
21495 2011-03-20 Leo Liu <sdl.web@gmail.com>
21496
21497 * ido.el (ido-read-internal): Use completing-read-default.
21498 (ido-completing-read): Fix compatibility with completing-read.
21499
21500 2011-03-20 Christian Ohler <ohler@gnu.org>
21501
21502 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
21503 (ert-delete-all-tests): Use `called-interactively-p' rather than
21504 `interactive-p'.
21505 (ert--make-xrefs-region): Respect END.
21506
21507 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21508
21509 * dired-aux.el (dired-create-directory): Signal an error if the
21510 directory already exists (Bug#8246).
21511
21512 * facemenu.el (list-colors-display): Call list-faces-display
21513 inside with-help-window.
21514 (list-colors-print): Use display property to align the final
21515 column, instead of checking window-width.
21516
21517 2011-03-19 Eli Zaretskii <eliz@gnu.org>
21518
21519 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
21520 windows-nt systems.
21521 (emerge-protect-metachars): Quote correctly for ms-dos and
21522 windows-nt systems.
21523
21524 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
21525
21526 * info.el (info-initialize): Replace all uses of `:' with
21527 path-separator for compatibility with non-Unix systems.
21528 Cache quoting of path-separator. (Bug#8258)
21529
21530 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21531
21532 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
21533 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
21534 (mouse-avoidance-mode): Fix typos in docstrings.
21535
21536 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21537
21538 * startup.el (package-subdirectory-regexp): Move from package.el.
21539 Omit \\` and \\', and let callers add them.
21540
21541 * emacs-lisp/package.el (package-strip-version)
21542 (package-load-all-descriptors): Add \\` and \\' to
21543 package-subdirectory-regexp before using it.
21544 (package-untar-buffer): New arg DIR; ensure that file untars only
21545 into this expected directory. Remove superfluous delete-region.
21546 (package-unpack): Caller changed.
21547 (package-tar-file-info): Use package-subdirectory-regexp.
21548
21549 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
21550
21551 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
21552 diff-mode-shared-map (bug#8284).
21553 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
21554
21555 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
21556
21557 * calendar/time-date.el (format-seconds): Use assoc instead of
21558 assoc-string, since assoc-string doesn't exist in XEmacs.
21559
21560 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
21561
21562 * custom.el (custom-known-themes): Reflow docstring.
21563 (custom-theme-load-path): Fix typo in docstring.
21564 (load-theme): Fix typo in error message.
21565 (custom-available-themes, custom-variable-theme-value):
21566 Use `let', not `let*'.
21567
21568 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
21569
21570 * calc/README: Mention inclusion of musical notes.
21571
21572 * calc/calc-units.el (calc-lu-quant): Rename from
21573 `calc-logunits-quantity'.
21574 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
21575 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
21576 (calc-db): Rename from `calc-dblevel'.
21577 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
21578 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
21579 (calc-np): Rename from `calc-nplevel'.
21580 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
21581 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
21582 (calc-lu-plus): Rename from `calc-logunits-add'.
21583 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
21584 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
21585 (calc-lu-minus): Rename from `calc-logunits-sub'.
21586 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
21587 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
21588 (calc-lu-times): Rename from `calc-logunits-mul'.
21589 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
21590 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
21591 (calc-lu-divide): Rename from `calc-logunits-div'.
21592 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
21593 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
21594
21595 * calc/calc-ext.el (calc-init-extensions): Update the names of the
21596 functions being autoloaded.
21597
21598 * calc/calc.el (calc-lu-power-reference): Rename from
21599 `calc-logunits-power-reference'.
21600 (calc-lu-field-reference): Rename from
21601 `calc-logunits-field-reference'.
21602
21603 * calc/calc-help.el (calc-l-prefix-help):
21604 Mention musical note functions.
21605
21606 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
21607
21608 * minibuffer.el (completion-all-sorted-completions):
21609 Use :completion-cycle-penalty text property if present.
21610
21611 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
21612
21613 * allout.el (allout-yank-processing): Adjust for new rebulleting
21614 regime so bullet being yanked is used without prompting the user
21615 for a choice.
21616
21617 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21618
21619 * startup.el (command-line): Warn the user that _emacs is deprecated.
21620
21621 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21622
21623 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
21624 (delphi-verbose, delphi-comment-face, delphi-string-face)
21625 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
21626 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
21627 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
21628 (delphi-new-comment-line, delphi-font-lock-defaults)
21629 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
21630 Fix typos in docstrings.
21631
21632 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
21633
21634 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
21635 Invert the roles of character and string values for INSTEAD, so a
21636 string is used for the more common case of a defaulting prompt.
21637
21638 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21639
21640 * progmodes/ruby-mode.el (ruby-backward-sexp):
21641 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
21642 * play/gamegrid.el (gamegrid-make-face):
21643 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
21644 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
21645 * notifications.el (notifications-notify):
21646 * net/xesam.el (xesam-search-engines):
21647 * net/quickurl.el (quickurl-list-insert):
21648 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
21649
21650 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
21651
21652 * startup.el (command-line): Update package subdirectory regexp.
21653
21654 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21655
21656 * allout.el (allout-abbreviate-flattened-numbering)
21657 (allout-mode-deactivate-hook): Fix up obsolescence "date".
21658
21659 * subr.el (read-char-choice): Only show the cursor after the prompt,
21660 not after the answer.
21661
21662 2011-03-15 Kevin Ryde <user42@zip.com.au>
21663
21664 * help-fns.el (variable-at-point): Skip leading quotes, if any
21665 (bug#8253).
21666
21667 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21668
21669 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
21670 warning message.
21671
21672 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
21673
21674 * shell.el (shell): When called interactively, offer to change the
21675 shell file name on remote hosts.
21676
21677 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
21678
21679 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
21680 integration for LDAP parameters. The host, base, user or binddn,
21681 and secret tokens can be specified in a netrc file, for instance.
21682 This is optional because an `auth-source' parameter must be
21683 specified in the search attributes.
21684
21685 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
21686
21687 * help.el (describe-mode): Link to the mode's definition (bug#8185).
21688
21689 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21690
21691 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
21692 into declaration. Remove redundant and harmful binding.
21693
21694 2011-03-12 Eli Zaretskii <eliz@gnu.org>
21695
21696 * files.el (file-ownership-preserved-p): Pass `integer' as an
21697 explicit 2nd argument to `file-attributes'. If the file's owner
21698 is the Administrators group on Windows, and the current user is
21699 Administrator, consider that a match.
21700
21701 * server.el (server-ensure-safe-dir): Consider server directory
21702 safe on MS-Windows if its owner is the Administrators group while
21703 the current Emacs user is Administrator. Use `=' to compare
21704 numerical UIDs, since they could be integers or floats.
21705
21706 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
21707
21708 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
21709
21710 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
21711
21712 Sync with Tramp 2.2.1.
21713
21714 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
21715
21716 * net/trampver.el: Update release number.
21717
21718 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21719
21720 * progmodes/compile.el (compilation--previous-directory): Fix up
21721 various nil/dead-marker mismatches (bug#8014).
21722 (compilation-directory-properties, compilation-error-properties):
21723 Don't call it at a position past the one we're about to change.
21724
21725 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
21726 Disable obsolescence warnings in the file that declares it.
21727
21728 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
21729
21730 * allout-widgets.el (allout-widgets-tally):
21731 Initialize allout-widgets-tally as a hash table rather than nil to
21732 prevent mode-line redisplay warnings. Also, clarify the module
21733 description and fix a comment typo.
21734
21735 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
21736
21737 * help-fns.el (describe-variable): Don't complete keywords.
21738 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
21739
21740 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
21741
21742 * emacs-lisp/package.el (package-version-join): Impose a standard
21743 string representation for pre/alpha/beta version lists.
21744 (package-unpack-single): Standardize the directory name by passing
21745 it through package-version-join.
21746 (package-strip-rcs-id): Accept any version string that does not
21747 signal an error in version-to-list.
21748
21749 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
21750
21751 * simple.el (delete-trailing-whitespace): Return nil for the
21752 benefit of `write-file-functions'.
21753
21754 2011-03-10 Glenn Morris <rgm@gnu.org>
21755
21756 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
21757
21758 * vc/vc-git.el (vc-git-program): New option.
21759 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
21760 (vc-git--call): Use it.
21761
21762 * eshell/esh-util.el (eshell-condition-case): Doc fix.
21763
21764 * cus-edit.el (Custom-newline): If no button at point, look
21765 for a subgroup button at start-of-line. (Bug#2298)
21766
21767 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
21768
21769 2011-03-10 Julien Danjou <julien@danjou.info>
21770
21771 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
21772 `cursor-type' is nil.
21773
21774 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
21775
21776 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
21777
21778 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
21779
21780 * allout.el: Change so yank of distinctive-bullet items
21781 preserves the existing header prefix, rebulleting it if necessary,
21782 rather than replacing it. This is necessary for proper operation
21783 of cooperative addons like allout-widgets.
21784 (allout-make-topic-prefix, allout-rebullet-heading):
21785 Change SOLICIT arg to INSTEAD, and interpret additionally a string
21786 value as alternate bullet to be used, instead of prompting the user
21787 for a bullet character.
21788
21789 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
21790
21791 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
21792 Do not use `tramp-file-name-port', because this returns also
21793 `tramp-default-port'.
21794
21795 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
21796
21797 * net/rcirc.el (rcirc-handler-001): Remove useless
21798 with-rcirc-process-buffer.
21799 (rcirc-check-auth-status): Swap arguments to string-match.
21800
21801 2011-03-09 Glenn Morris <rgm@gnu.org>
21802
21803 * shell.el (shell-mode):
21804 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
21805
21806 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
21807 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
21808
21809 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21810
21811 * emacs-lisp/package.el (package-refresh-contents)
21812 (package-menu-execute): Use condition-case-no-debug.
21813
21814 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
21815
21816 * simple.el (shell-command-to-string): Use `process-file'.
21817
21818 * emacs-lisp/package.el (package-tar-file-info): Handle also
21819 remote files.
21820
21821 * emacs-lisp/package-x.el (package-upload-buffer-internal):
21822 Use `equal' for upload base check.
21823
21824 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
21825
21826 * textmodes/texinfo.el (texinfo-environments):
21827 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
21828
21829 2011-03-08 Glenn Morris <rgm@gnu.org>
21830
21831 * cus-start.el (cursor-in-non-selected-windows):
21832 Fix :set quoting oddness. (Bug#8192)
21833
21834 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
21835 in some setf expressions. (Bug#2159)
21836
21837 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21838
21839 * custom.el (custom-available-themes): Return themes in
21840 alphabetical order.
21841
21842 See ChangeLog.15 for earlier changes.
21843
21844 ;; Local Variables:
21845 ;; coding: utf-8
21846 ;; End:
21847
21848 Copyright (C) 2011-2012 Free Software Foundation, Inc.
21849
21850 This file is part of GNU Emacs.
21851
21852 GNU Emacs is free software: you can redistribute it and/or modify
21853 it under the terms of the GNU General Public License as published by
21854 the Free Software Foundation, either version 3 of the License, or
21855 (at your option) any later version.
21856
21857 GNU Emacs is distributed in the hope that it will be useful,
21858 but WITHOUT ANY WARRANTY; without even the implied warranty of
21859 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21860 GNU General Public License for more details.
21861
21862 You should have received a copy of the GNU General Public License
21863 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.