* doc/misc/calc.texi (Date Formatting Codes): Mention the new
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
930a6273
CY
12012-11-23 Chong Yidong <cyd@gnu.org>
2
3 * find-cmd.el (find-constituents): Add executable, ipath,
4 readable, samefile, writable, daystart, regextype (Bug#12856).
5
15c9d04e
SM
62012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
7
8 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
9
2ecb2679
PE
102012-11-22 Paul Eggert <eggert@cs.ucla.edu>
11
12 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
13 definition. This fixes a bootstrap failure.
a14a5a40
PE
14 (calc-gregorian-switch): In menu, put dates before regions.
15 This is easier to follow, lines up better in the menu, and lets us
16 coalesce regions that switch at the same time. Give country
15c9d04e
SM
17 names, not "Vatican", as that's better for non-expert users.
18 Use names that are stable between the date of switch and now, e.g.,
a14a5a40
PE
19 Bohemia and Moravia (which existed then and now) and not
20 Czechoslovakia (which didn't exist then and doesn't exist now).
21 What is now the U.S. mostly did not switch at the same time as
22 Britain, so omit the U.S. Correct spelling of "Britain".
23 Catholic Switzerland was too much of a mess, so omit it.
2ecb2679 24
723da6aa
JB
252012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
26
27 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
28 after the variable is changed.
29
21fa2482
DC
302012-11-21 Daniel Colascione <dancol@dancol.org>
31
32 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
b6096e85
DC
33 in SQL declarations for font-lock.
34 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
21fa2482 35
3ca2f1bf
GM
362012-11-21 Glenn Morris <rgm@gnu.org>
37
1bf335cf
GM
38 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
39 (face-italic-p): Add optional argument "inherit".
40
3ca2f1bf
GM
41 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
42 Remove -p suffix from names, for consistency with other set-face-*.
43 (set-face-inverse-video): Fix interactive spec.
44 * play/gamegrid.el (gamegrid-make-mono-tty-face):
45 * textmodes/table.el (table--update-cell-face):
46 Use set-face-inverse-video rather than now obsolete alias.
47
6ef2e5ef 482012-11-21 Eli Zaretskii <eliz@gnu.org>
7cf95797
EZ
49
50 * simple.el (line-move): Don't call line-move-partial if
51 scroll-conservatively is in effect. (Bug#12927)
52
6ef2e5ef 532012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
63f25172 54
93b05041
SM
55 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
56 Fallback on completion-at-point rather than
57 pcomplete-expand-and-complete, and only if pcomplete actually failed.
58 (eshell-cmpl-initialize): Setup completion-at-point.
59
60 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
61
bc715d67
SM
62 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
63
6ef2e5ef 642012-11-21 Michael Albinus <michael.albinus@gmx.de>
d7f2a65c
MA
65
66 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
67 are remote, check out-of-band property for both.
68
6ef2e5ef 692012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
d1c0cddf
SM
70
71 * window.el (switch-to-buffer): Re-add the warning that was lost in the
72 code rewrite.
73
6ef2e5ef 742012-11-21 Paul Eggert <eggert@cs.ucla.edu>
0c93aa38 75
535efd4a
PE
76 More minor time fixes.
77 * calendar/time-date.el: Commentary fix.
78 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
79 too much other code depends on (0 0) time stamps.
80 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
81 Add a couple of FIXME comments.
82
0c93aa38
PE
83 Minor cleanup for times as lists of four integers.
84 * files.el (dir-locals-directory-cache):
85 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
86 Doc fixes.
87 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
88 * ps-bdf.el (bdf-file-newer-than-time):
89 Process four-integers time stamps, not two. Doc fixes.
90
23ba2705
SM
912012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
92
2e31777b
SM
93 * uniquify.el (uniquify-managed): Use defvar-local.
94 (rename-buffer, create-file-buffer): Advise with advice-add.
95 (uniquify-unload-function): Unadvise accordingly.
96
8b62d742
SM
97 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
98 (trace-buffer): Don't purecopy.
99 (trace-entry-message, trace-exit-message): Add `context' arg.
100 (trace--timer): New var.
101 (trace-make-advice): Adjust for use in nadvice.
102 Add `context' argument. Delay `display-buffer' via a timer.
103 (trace-function-internal): Use advice-add.
104 (trace--read-args): New function.
105 (trace-function-foreground, trace-function-background): Use it.
106 (trace-function): Rename to trace-function-foreground and redefine as
107 an alias to that new name.
108 (untrace-function, untrace-all): Adjust to the use of nadvice.
109
5d0ccd95
SM
110 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
111
3837d988
SM
112 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
113
23ba2705
SM
114 * subr.el (called-interactively-p-functions): New var.
115 (internal--called-interactively-p--get-frame): New macro.
116 (called-interactively-p, interactive-p): Rewrite in Lisp.
117 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
118 (called-interactively-p-functions): Use it.
119 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
120 (called-interactively-p-functions): Use it.
121 * allout.el (allout-called-interactively-p): Don't assume
122 called-interactively-p is a subr.
123
b0636be7
GM
1242012-11-20 Glenn Morris <rgm@gnu.org>
125
126 * profiler.el (profiler-report-mode-map): Add a menu.
127 No need to bind `q' because we derive from special-mode.
128 (profiler-report-find-entry): Handle calls from the menu-bar.
129
855b17af
SM
1302012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
131
14146222
SM
132 * emacs-lisp/byte-run.el (defun-declarations-alist):
133 Allow a compiler-macro to be a lambda expression.
134
135 * progmodes/python.el: Use cl-lib. Move var declarations outside of
136 eval-when-compile.
137 (python-syntax-context): Add compiler-macro.
138 (python-font-lock-keywords): Simplify with De Morgan.
139
1000d895
SM
140 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
141
ac5392dc
SM
142 * files.el (load-file): Require match in minibuffer selection, as was
143 the case in Emacs-20 before we changed the spec to allow .elc files
144 (bug#12935).
145
19dc7206
SM
146 * json.el: Don't require cl since we don't use it.
147 * color.el: Don't require cl.
148 (color-complement): `caddr' -> `nth 2'.
149
855b17af
SM
150 * calendar/time-date.el (time-to-seconds): De-obsolete.
151
e8909bdc
JB
1522012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
153
154 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
155 year numbers.
156 (math-date-to-julian-dt): Adjust the initial approximation for the
157 year to deal with the new definition of the DATE.
158
6e9f7997
DC
1592012-11-19 Daniel Colascione <dancol@dancol.org>
160
855b17af
SM
161 * term/w32-win.el (cygwin-convert-path-from-windows):
162 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
6e9f7997 163
6a3dd257
CY
1642012-11-18 Chong Yidong <cyd@gnu.org>
165
166 * filecache.el (file-cache--read-list): New function.
167 (file-cache-add-directory-list, file-cache-add-file-list)
168 (file-cache-delete-file-list, file-cache-delete-directory-list):
169 Use it to read a list of files or directories (Bug#12846).
170 (file-cache-add-file, file-cache-add-directory)
171 (file-cache-delete-file-list, file-cache-delete-file-regexp)
172 (file-cache-delete-directory): Print an message.
173
eef97f35
JB
1742012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
175
176 * calc/calc-forms.el (math-date-to-dt): Use integer date when
177 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
178
913c8291
GM
1792012-11-18 Glenn Morris <rgm@gnu.org>
180
181 * image.el (insert-image, insert-sliced-image): Doc fix.
182
2ac9538d 1832012-11-18 Chong Yidong <cyd@gnu.org>
ec6f8ce6
CY
184
185 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
186 (Bug#12810).
187
2ac9538d 1882012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
c2d07557
CY
189
190 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
191 response when the target file is in a subdirectory (Bug#12757).
192
2ac9538d 1932012-11-18 Chong Yidong <cyd@gnu.org>
33f8917c
CY
194
195 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
196
2ac9538d 1972012-11-18 Glenn Morris <rgm@gnu.org>
65463c40 198
9a5e2ee3
GM
199 * emacs-lisp/cl-lib.el (face-underline-p):
200 Use set-face-underline rather than the alias set-face-underline-p.
201
65463c40 202 * window.el (with-temp-buffer-window): Doc fix.
95f0501e
GM
203 * subr.el (with-output-to-temp-buffer):
204 Add doc xref to with-temp-buffer-window.
65463c40 205
c9ed8e3d
JB
2062012-11-18 Juanma Barranquero <lekktu@gmail.com>
207
208 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
209 * calc/calc.el (math-format-date-cache): Declare.
210
310e60d9
PE
2112012-11-17 Paul Eggert <eggert@cs.ucla.edu>
212
6f6b82d6
PE
213 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
214 It also uses January 1, 1 AD as its day number 1.
310e60d9 215 * calc/calc-forms.el (math-julian-date-beginning)
6f6b82d6 216 (math-julian-date-beginning-int): Implement this.
310e60d9 217
d7fe6352
JB
2182012-11-17 Juanma Barranquero <lekktu@gmail.com>
219
220 * descr-text.el (quail-find-key):
221 * dired.el (desktop-file-name):
222 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
223 * generic-x.el (comint-mode, comint-exec):
224 * image-dired.el (widget-forward):
225 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
226 (speedbar-change-expand-button-char)
227 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
228 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
229 * printing.el (easy-menu-add-item, easy-menu-remove-item)
230 (widget-field-action, widget-value-set):
231 * speedbar.el (imenu--make-index-alist):
232 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
233 (ring-length, ring-insert):
234 * vcursor.el (compare-windows-skip-whitespace):
235 * woman.el (dired-get-filename):
236 Declare functions.
237
238 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
239
c9f618db
JB
2402012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
241
242 * calc/calc.el (calc-gregorian-switch): New variable.
243
244 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
245 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
246 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
247 (math-leap-year-p): Add option to distinguish between Julian
248 and Gregorian calendars.
249 (math-day-number): Use `math-day-in-year' to do the computations.
250 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
251 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
252 to do the computations.
253 (math-date-to-dt): Use `math-date-to-julian-dt' and
254 `math-date-to-gregorian-dt' to do the computations.
255 (calcFunc-weekday, math-format-date-part): Use the new version of
256 the DATE to determine the weekday.
257 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
258 when necessary.
259
3804f7bc
EZ
2602012-11-17 Eli Zaretskii <eliz@gnu.org>
261
262 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
263 Cygwin; otherwise use 'file:'. (Bug#12914)
264 (cygwin-convert-path-from-windows): Declare, to avoid
265 byte-compiler warnings.
266
de959d4d
AP
2672012-11-17 Andreas Politz <politza@fh-trier.de>
268
269 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
270 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
271 prefix and negative numeric prefix args (Bug#12795).
272
e45deaef
SB
2732012-11-17 Stephen Berman <stephen.berman@gmx.net>
274
275 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
276 Don't signal an error with a score that is too low to add to the
277 list of top scores. (Bug#12779)
278
ec15e0ff
CY
2792012-11-17 Chong Yidong <cyd@gnu.org>
280
8e7696a1
CY
281 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
282
ec15e0ff
CY
283 * filecache.el (file-cache-add-file): Handle relative file name in
284 the argument (Bug#12694).
285
60c4ee66
JH
2862012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
287
288 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
289
cdc5d88c
SM
2902012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
291
dd0c5bbb
SM
292 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
293
cdc5d88c
SM
294 * emacs-lisp/cl-lib.el: Set more meaningful version number.
295
0ff7851c
MR
2962012-11-16 Martin Rudalics <rudalics@gmx.at>
297
298 * window.el (enlarge-window, shrink-window): Don't mention return
299 value in doc-string (Bug#12896).
300 (window--display-buffer): Don't resize frames - it won't work
301 with all window managers and defeat pop-up-frame-alist.
302 (display-buffer-alist): In doc-string explain that CONDITION can
303 be a function and which arguments are passed to it (Bug#12854).
304 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
305 expressions (Bug#12854).
306 (display-buffer): Pass ACTION argument to
307 display-buffer-assq-regexp.
308
dedd1884
GM
3092012-11-16 Glenn Morris <rgm@gnu.org>
310
7c82753d
GM
311 * window.el (fit-frame-to-buffer-bottom-margin)
312 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
313
dedd1884
GM
314 * faces.el (face-underline-p): Use face-attribute-specified-or.
315
96e05507 3162012-11-16 Juanma Barranquero <lekktu@gmail.com>
662b0ee6
JB
317
318 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
319
96e05507 3202012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
eb31fa40
SM
321
322 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
323
96e05507 3242012-11-16 Glenn Morris <rgm@gnu.org>
e2e13f18 325
17c083ac
GM
326 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
327 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
328
bde3c6c0
GM
329 * faces.el (face-underline-p): Doc fix. Handle :underline being
330 things other than `t' (a string, a list).
331 (face-inverse-video-p): Doc fix.
332 (set-face-underline): Rename it back from set-face-underline-p.
333 Doc fix. Allow interactive input of values other than t.
334 (read-face-attribute): Apply formatting to :underline,
335 since like :box and :stipple it can take list values.
336
e2e13f18
GM
337 * term.el (ansi-term): Don't let C-x escape-char binding
338 clobber the more standard C-c binding. (Bug#12842)
339
e0ea8060
GM
340 * subr.el (set-temporary-overlay-map): Doc fix.
341
96e05507 3422012-11-16 Martin Rudalics <rudalics@gmx.at>
92346275
MR
343
344 * window.el (record-window-buffer)
345 (display-buffer-record-window): When copying the markers to
346 window-point preserve window-point-insertion-type. (Bug#12588)
347
96e05507 3482012-11-16 Glenn Morris <rgm@gnu.org>
7b1bf173
GM
349
350 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
351 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
352 Use new names for hooks rather than obsolete aliases.
353
faeafc01
DC
3542012-11-15 Daniel Colascione <dancol@dancol.org>
355
356 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
9533048d
DC
357 prefix instead of "file:" so that when FILE-NAME begins with "//",
358 as it does when the target file is on a network share, url-handler
359 isn't confused.
360
1232d6c2
SM
3612012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
362
363 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
364 a preactivated advice from an old advice.el; they're not compatible!
365
47f01a8a
KY
3662012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
367
368 * emacs-lisp/nadvice.el (advice--make-interactive-form):
369 Fix string-spec case.
370
371 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
372
a61428c4
SM
3732012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
374
375 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
376 (advice--buffer-local-function-sample): New var.
377 (advice--set-buffer-local, advice--buffer-local): New functions.
378 (add-function, remove-function): Use them.
379
875ce3a7
DA
3802012-11-15 Drew Adams <drew.adams@oracle.com>
381
382 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
383
589fc479
SM
3842012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
385
386 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
387 potential binding of print-gensym to t, and prettify (back)quotes in
388 case they appear in args's default values (bug#12884).
389
1668ea90
SM
3902012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
391
392 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
393 (advice-eval-interactive-spec): New function.
394 (advice--make-interactive-form): Support around advice (bug#12844).
395
8619323f
DG
3962012-11-14 Dmitry Gutov <dgutov@yandex.ru>
397
398 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
399 more strict. Add docstring.
c62792e7
DG
400 (ruby-expression-expansion-re): Extract from
401 `ruby-match-expression-expansion'.
402 (ruby-syntax-propertize-function): After everything else, search
403 for expansions in string literals, mark their insides as
404 whitespace syntax and save match data for font-lock.
405 (ruby-font-lock-keywords): Use the 2nd group from expression
406 expansion matches.
407 (ruby-match-expression-expansion): Use the match data saved to the
408 text property in ruby-syntax-propertize-function.
8619323f 409
9c3912d3
SM
4102012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
411
412 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
413 (bug#12879).
414
5e9419e8
DG
4152012-11-13 Dmitry Gutov <dgutov@yandex.ru>
416
417 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
418 start/end keyword a bit harder. Works with different values of N.
419 Add more comments.
420 (ruby-end-of-block): Update accordingly.
421
3c442f8b
SM
4222012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
423
fa470af0
SM
424 * woman.el (woman-file-name): Don't mess with unread-command-events
425 (bug#12861).
426
3c442f8b
SM
427 * emacs-lisp/advice.el: Layer on top of nadvice.el.
428 Remove out of date self-require hack.
429 (ad-do-advised-functions): Use simple `dolist'.
430 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
431 (ad-advice-definition): Redefine as functions.
432 (ad-advice-classes): Move before first use.
433 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
fa470af0 434 (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
3c442f8b 435 (ad--defalias-fset): Remove functions.
fa470af0 436 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
3c442f8b
SM
437 (ad-get-orig-definition): Rewrite.
438 (ad-make-advised-definition-docstring): Change base docstring.
439 (ad-real-orig-definition): Rewrite.
440 (ad-map-arglists): Change name of called function.
441 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
442 (ad-make-advised-definition): Simplify.
443 (ad-assemble-advised-definition): Tweak for new calling context.
fa470af0 444 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
3c442f8b
SM
445 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
446 function and call ad-activate if needed.
447 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
448 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
449 (ad-compile-function): Compile ad-Advice-*.
450 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
451 (ad-start-advice, ad-stop-advice): Remove.
452
5745cae6
DG
4532012-11-13 Dmitry Gutov <dgutov@yandex.ru>
454
455 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
456 period before class method names, not after. Remove handling of
457 one impossible case. Add comments.
458
413d4689
SM
4592012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
460
7db1bda8
SM
461 * emacs-lisp/advice.el: Remove support for freezing.
462 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
463 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
464 Remove support for `freeze'.
465
413d4689
SM
466 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
467 override the default.
468 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
469 cl--dotimes/dolist.
470 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
471 `cl' is loaded.
472
473 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
474 from add-advice.
475 (advice--strip-macro): New function.
476 (advice--defalias-fset): Use them to handle macros.
477 (advice-add): Use them.
478 (advice-member-p): Correctly handle macros.
479
f178c32d
DG
4802012-11-13 Dmitry Gutov <dgutov@yandex.ru>
481
7db1bda8
SM
482 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
483 Never font-lock the beginning of singleton class as heredoc.
f178c32d 484
f78ee6af 4852012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
f8705f6e
SM
486
487 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
488
f78ee6af 4892012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
9db94175
WJ
490
491 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
f78ee6af
GM
492 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
493 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
9db94175 494
f78ee6af 4952012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
2e6625b5
FEG
496
497 Fix end-of-defun misbehavior.
498 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
499 python-beginning-of-defun-function. Handle nested defuns
500 correctly.
501 (python-nav-end-of-defun): Rename from
502 python-end-of-defun-function. Ensure forward movement.
f8705f6e 503 (python-info-current-defun): Reimplement to work as intended
2e6625b5
FEG
504 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
505 parent defuns as soon as possible.
506
f78ee6af 5072012-11-13 Glenn Morris <rgm@gnu.org>
24c38527
GM
508
509 * progmodes/flymake.el (flymake-error-bitmap)
510 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
511 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
512
f78ee6af 5132012-11-13 Dmitry Gutov <dgutov@yandex.ru>
d1e1e53d
DG
514
515 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
516 backward, always stop at indentation. Reverts the change from
517 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
518
f78ee6af 5192012-11-13 Glenn Morris <rgm@gnu.org>
68146aa5 520
a1d3e07e
GM
521 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
522 Add ibuffer-filter-by-derived-mode.
523
84acf328
GM
524 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
525 the same name shadowing each other.
526
38785e75
GM
527 * window.el (with-temp-buffer-window): Doc tweak.
528
57fc0fee
GM
529 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
530
6ba6a3e5
GM
531 * help.el (temp-buffer-max-height):
532 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
68146aa5
GM
533 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
534
231d8498
SM
5352012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
536
537 * emacs-lisp/nadvice.el: New package.
538 * subr.el (special-form-p): New function.
539 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
540 (elp-all-instrumented-list): Remove var.
541 (elp-not-profilable): Remove elp-wrapper.
542 (elp-profilable-p): Use autoloadp and special-form-p.
543 (elp--advice-name): New const.
544 (elp-instrument-function): Use advice-add.
545 (elp--instrumented-p): New predicate.
546 (elp-restore-function): Use advice-remove.
547 (elp-restore-all, elp-reset-all): Use mapatoms.
548 (elp-set-master): Use elp--instrumented-p.
549 (elp--make-wrapper): Rename from elp-wrapper, return a function
550 suitable for advice-add. Use cl-inf.
551 (elp-results): Use mapatoms+elp--instrumented-p.
552 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
553 (debug-function-list): Remove var.
554 (debug): Rename arg, and then let-bind it explicitly inside.
555 (debugger-setup-buffer): Rename arg.
556 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
557 (debugger-frame-number): Adjust to new debug-on-entry setup.
558 (debug--implement-debug-on-entry): Rename from
559 implement-debug-on-entry, add argument.
560 (debugger-special-form-p): Remove, use special-form-p instead.
561 (debug-on-entry): Use advice-add.
562 (debug--function-list): New function.
563 (cancel-debug-on-entry): Use it, along with advice-remove.
564 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
565 (debugger-list-functions): Use debug--function-list instead of
566 debug-function-list.
567 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
568 (ad-special-form-p): Remove, use special-form-p instead.
569 (ad-set-advice-info): Use add-function and remove-function.
570 (ad--defalias-fset): Adjust accordingly.
571
19e09879
GM
5722012-11-10 Glenn Morris <rgm@gnu.org>
573
714cebd1
GM
574 * mail/emacsbug.el (report-emacs-bug-tracker-url)
575 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
576 (report-emacs-bug-create-existing-bugs-buffer)
577 (report-emacs-bug-parse-query-results)
578 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
579
bf67dafa
GM
580 * term.el (term-default-fg-color, term-default-bg-color):
581 Make obsolete, rather than just saying "deprecated" in the doc.
582
19e09879
GM
583 * term.el (term): Rename from `term-face'.
584 (term-current-face, ansi-term-color-vector)
585 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
586 Update all users.
587
6baf66d5 5882012-11-10 Jan Djärv <jan.h.d@swipnet.se>
531bdce6
JD
589
590 * server.el (server-create-window-system-frame): Handle Nextstep
591 specially (Bug#12780).
592
6baf66d5 5932012-11-10 Glenn Morris <rgm@gnu.org>
fedb154e
GM
594
595 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
596 Unautoload, and make obsolete. (Bug#7449)
597
6baf66d5 5982012-11-10 Chong Yidong <cyd@gnu.org>
9d9e48d9
CY
599
600 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
601 rename from diff-remove-trailing-whitespace (Bug#12831).
602
6baf66d5 6032012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
32170f7f
SM
604
605 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
606 miscompilation of trace.el.
607
6baf66d5 6082012-11-10 Glenn Morris <rgm@gnu.org>
26f59676
GM
609
610 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
611
6baf66d5 6122012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
41626722
SM
613
614 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
615 (bug#12812).
616
6baf66d5 6172012-11-10 Chong Yidong <cyd@gnu.org>
7d806bfe
CY
618
619 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
620 a defcustom with an appropriate :set function.
621 (minibuffer-default--in-prompt-regexps): New function.
622
6baf66d5 6232012-11-10 Glenn Morris <rgm@gnu.org>
2ee1d59f 624
031b2ea7
GM
625 * emacs-lisp/cl.el (define-setf-expander, defsetf)
626 (define-modify-macro): Doc fixes.
627
2ee1d59f
GM
628 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
629 (gv-define-simple-setter): Update doc of `fix-return'.
630
6baf66d5 6312012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
d57c286e 632
b715ed44
SM
633 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
634 twice when `fix-return' is set (bug#12813).
635
d57c286e
SM
636 * emacs-lisp/cl.el (defsetf): Pass the third arg to
637 gv-define-simple-setter (bug#12812).
638
c9cac599
SM
639 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
640 (bug#12756).
641
6baf66d5 6422012-11-10 Glenn Morris <rgm@gnu.org>
6b3770fb
GM
643
644 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
645
5593ed90
GM
646 * emacs-lisp/cl-extra.el (cl-prettyexpand):
647 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
648 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
649 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
650
651 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
652
05a859c1
LL
6532012-11-10 Leo Liu <sdl.web@gmail.com>
654
655 * ido.el (ido-set-matches-1): Improve flex matching performance by
656 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
657
32e5c58c
SM
6582012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
659
660 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
661 (ad--defalias-fset): New function.
662 (ad-safe-fset): Remove.
663 (ad-make-freeze-definition): Use cl-letf*.
664
f5925cd9
SM
6652012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
666
da03ef8a
SM
667 * subr.el (dolist): Don't bind VAR in RESULT.
668
6858633a
SM
669 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
670 (fset, documentation): Don't save real def since we don't advise.
671 (ad-do-advised-functions): Remove problematic `result-form'.
672 (ad-safe-fset): `ad-real-fset' => `fset'.
673 (ad-read-advised-function): Don't assume that ad-do-advised-functions
674 uses CL's dolist internally.
675 (ad-arglist): Remove unused arg `name'.
676 (ad-docstring, ad-make-advised-docstring):
677 `ad-real-documentation' => `documentation'.
678 (warning-suppress-types): Declare.
679 (ad-set-arguments): Simple CSE.
680 (ad-recover-normality): Sanity check.
681
f5925cd9
SM
682 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
683 (funcall '(lambda ..) ..) into ((lambda ..) ..).
684
93a66b3a
VB
6852012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
686
687 * ses.el: symbol to coordinate mapping is made by symbol property
f5925cd9
SM
688 `ses-cell'. This means that the same mapping is done for all SES
689 sheets. That is good enough for cells with standard A1 names, but
690 not for named cell. So a hash map is added for the latter.
691 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
93a66b3a
VB
692 (ses-sym-rowcol): Use hashmap for named cell.
693 (ses-is-cell-sym-p): New defun.
694 (ses-decode-cell-symbol): New defun.
f5925cd9
SM
695 (ses-create-cell-variable): Add cell to hashmap when name is not
696 A1-like.
93a66b3a
VB
697 (ses-rename-cell): Check that cell new name is not already in
698 spreadsheet with the use of ses-is-cell-sym-p
699 (ses-rename-cell): Use hash map for named cells, but accept also
700 renaming back to A1-like.
701
67dd8ad1
SM
7022012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
703
57618ecf
SM
704 * emacs-lisp/advice.el: Use new dynamic docstrings.
705 (ad-make-advised-definition-docstring, ad-advised-definition-p):
706 Use dynamic-docstring-function instead of ad-advice-info.
707 (ad--make-advised-docstring): New function extracted from
708 ad-make-advised-docstring.
709 (ad-make-advised-docstring): Use it.
710 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
711 from sql-help.
712 (sql-help): Use it with dynamic-docstring-function.
713
67dd8ad1
SM
714 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
715
be883b34
SM
7162012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
717
d41706aa
SM
718 * files.el (hack-one-local-variable--obsolete): New function.
719 (hack-one-local-variable): Use it for obsolete settings.
720
85e55412
SM
721 * subr.el (locate-user-emacs-file): If both old and new name exist, use
722 the new name.
723
be883b34
SM
724 * progmodes/js.el (js--filling-paragraph): New var.
725 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
726 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
727 less sneaky.
728
cabc040a
JD
7292012-11-08 Julien Danjou <julien@danjou.info>
730
731 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
732 `auto-mode-alist' (Bug#12835).
733
d14bb752
SM
7342012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
735
79b3e376
SM
736 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
737 (perl--prettify-symbols-alist): New const.
738 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
739 New functions.
740 (perl-font-lock-keywords-2): Use them.
741 (perl-electric-noindent-p): New function.
742 (perl-mode): Use it to set up electric-indent-mode.
743 (perl-electric-terminator, perl-indent-command): Mark obsolete.
744 (perl-mode-map): Remove bindings for them.
745 (perl-imenu-generic-expression, perl-outline-level):
746 Match functions&packages in column>0.
747
3b11e6ac
SM
748 * env.el (env--substitute-vars-regexp): New const.
749 (substitute-env-vars): Use it. Add `only-defined' arg.
750 * net/tramp.el (tramp-replace-environment-variables): Use it.
751
784c1a7b
SM
752 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
753 Byte-compile *before* eval in eval-and-compile.
754 (byte-compile-log-warning): Remove redundant inhibit-read-only.
755 (byte-compile-file-form-autoload): Don't hide actual definition.
756 (byte-compile-maybe-guarded): Accept `functionp' as well.
757
d14bb752
SM
758 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
759
499a0f7a
MA
7602012-11-07 Michael Albinus <michael.albinus@gmx.de>
761
762 * notifications.el (notifications-get-server-information-method):
763 New defconst.
764 (notifications-get-capabilities): Fix docstring.
765 (notifications-get-server-information): New defun.
766
f0704a9a
AM
7672012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
768
769 * textmodes/ispell.el (ispell-region): Standard re-indent for better
770 readability.
771
b159a1fd
AM
772 * textmodes/ispell.el: Experimental support for support debugging.
773 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
774 buffer for ispell.
775 (ispell-print-if-debug): New function to print stuff to
776 `ispell-debug-buffer' if debugging is enabled.
777 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
778 show some debugging info.
779 (ispell-buffer-with-debug): New function that creates a debugging
780 buffer and calls `ispell-buffer' with debugging enabled.
781
056cb3a1
AM
782 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
783 comment in autoconf mode. (Bug#12768)
784
8e6a67b7
DA
7852012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
786
787 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
788 frame-first-window, frame-root-window, frame-selected-window,
789 minibuffer-selected-window, minibuffer-window,
790 window-absolute-pixel-edges, window-at, window-body-height,
791 window-body-width, window-display-table, window-combination-limit,
792 window-frame, window-fringes, window-inside-absolute-pixel-edges,
793 window-inside-edges, window-inside-pixel-edges, window-left-child,
794 window-left-column, window-margins, window-next-buffers,
795 window-next-sibling, window-new-normal, window-new-total,
796 window-normal-size, window-parameter, window-parameters, window-parent,
797 window-pixel-edges, window-point, window-prev-buffers,
798 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
799 window-start, window-text-height, window-top-child, window-top-line,
800 window-total-height, window-total-width and window-use-time to the list
801 of functions without side-effects.
802 (toplevel): Add window-valid-p to the list of error-free functions
803 without side-effects.
804
53fc914f
AM
8052012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
806
f5925cd9
SM
807 * textmodes/ispell.el (ispell-program-name):
808 Update spellchecker parameters when customized.
53fc914f 809
9749e2b0
GM
8102012-11-04 Glenn Morris <rgm@gnu.org>
811
812 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
813
2cbafa56
CY
8142012-11-04 Chong Yidong <cyd@gnu.org>
815
816 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
817 same-window-* variables.
818
85178ca1
JL
8192012-11-04 Juri Linkov <juri@jurta.org>
820
821 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
822 (isearch-describe-key, isearch-describe-mode): Use a display
823 action instead of binding same-window-* variables (Bug#10040).
824
5c677d44
GM
8252012-11-03 Glenn Morris <rgm@gnu.org>
826
49138400
GM
827 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
828 Rename handler properties back from cl-- to cl-. (Bug#12788)
829
5c677d44
GM
830 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
831
1d4341f9
EZ
8322012-11-03 Eli Zaretskii <eliz@gnu.org>
833
834 * term/pc-win.el: Don't load term/internal from here.
835
836 * loadup.el: Load term/internal from here.
837
12fd5ee1
FEG
8382012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
839
840 * progmodes/python.el (inferior-python-mode): Fix hang in
841 jit-lock (Bug#12645).
842
43bcfda6
MR
8432012-11-03 Martin Rudalics <rudalics@gmx.at>
844
845 * window.el (switch-to-visible-buffer)
846 (switch-to-buffer-preserve-window-point): Fix doc-strings.
847
376a8e83
GM
8482012-11-03 Glenn Morris <rgm@gnu.org>
849
850 * emacs-lisp/cl-lib.el (cl--random-time):
851 Rename from cl-random-time. (Bug#12773)
852 (cl--gensym-counter, cl--random-state): Update callers.
853 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
854
0f7b074f
CY
8552012-11-03 Chong Yidong <cyd@gnu.org>
856
857 * cus-start.el: Make cursor-type customizable (Bug#11633).
858
3a6851d9
GM
8592012-11-02 Glenn Morris <rgm@gnu.org>
860
00a3b041
GM
861 * filecache.el: No need to load find-lisp when compiling.
862 (find-lisp-find-files): Autoload it.
863 (file-cache-add-directory-recursively): Don't require find-lisp.
864
11fef14a
GM
865 * image.el (image-type-from-file-name): Trivial simplification.
866
3a6851d9
GM
867 * emacs-lisp/bytecomp.el (byte-compile-eval):
868 Decouple "noruntime" and "cl-functions" warnings.
869
b4b096e4
SB
8702012-11-01 Stephen Berman <stephen.berman@gmx.net>
871
872 * play/gomoku.el (gomoku-display-statistics): Update mode line
873 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
874
218e997a
MR
8752012-10-31 Martin Rudalics <rudalics@gmx.at>
876
877 * window.el (quit-restore-window): If the window has been
878 created on an existing frame and ended up as the sole window on
879 that frame, do not delete it (Bug#12764).
880
b08b6da7
SM
8812012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
882
3618df45
SM
883 * progmodes/sh-script.el (sh--inside-noncommand-expression):
884 Rename from sh--inside-arithmetic-expression, handle more cases
885 (bug#11263).
886
b08b6da7
SM
887 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
888 (sh-font-lock-open-heredoc): Use it (bug#12770).
889
4ddedf94
GM
8902012-10-30 Glenn Morris <rgm@gnu.org>
891
f43a5263
GM
892 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
893
4ddedf94
GM
894 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
895
748b0d84
CY
8962012-10-29 Chong Yidong <cyd@gnu.org>
897
b5dd9a77
CY
898 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
899 function key is stored in a keyboard macro (Bug#4894).
900
748b0d84
CY
901 * thingatpt.el (number-at-point): Apply a thing-at-point property.
902
e07fcbdc
SM
9032012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
904
d7f9cc85
SM
905 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
906 header comments".
907 (diff-unified->context, diff-context->unified)
908 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
909
c606253c
SM
910 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
911
e07fcbdc
SM
912 * files.el (find-alternate-file): Only ask one question (bug#12487).
913
894b9dd9
CY
9142012-10-29 Chong Yidong <cyd@gnu.org>
915
1dc2755a
CY
916 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
917 Suggested by Dan Nicolaescu (Bug#6326).
918
329c48d8
CY
919 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
920
2230fa5b 921 * startup.el (fancy-about-screen): Don't message (Bug#12680).
5c2f2631 922
e84cad57
CY
923 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
924
1913c5f5
CY
925 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
926
894b9dd9
CY
927 * face-remap.el (face-remap-add-relative): Handle the case where a
928 face-remapping-alist entry is a cons cell (Bug#12762).
929
329c48d8
CY
9302012-10-29 Kevin Ryde <user42@zip.com.au>
931
932 * woman.el (woman-parse-numeric-value): Handle picas correctly
933 (Bug#12639).
934
a0ccbcbd
GM
9352012-10-29 Glenn Morris <rgm@gnu.org>
936
937 * emacs-lisp/cl.el (defsetf): Doc fix.
938
b3871e59
SM
9392012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
940
941 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
942 syntax to the matching opener, if any (bug#12547).
943 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
944 matching open as a "case-(".
945 (sh-smie-rc-grammar): Add a corresponding rule for it.
946
cd44022c
DH
9472012-10-28 Daniel Hackney <dan@haxney.org>
948
949 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
950 "PKGNAME-autoloads.el" in case we created it.
951
70edffb1
SM
9522012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
953
86957a0c
SM
954 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
955 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
b9383404 956 (completion--twq-all): Disable too-strict assertions.
86957a0c 957
70edffb1
SM
958 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
959
d069271c
EZ
9602012-10-27 Eli Zaretskii <eliz@gnu.org>
961
962 * profiler.el (profiler-report-make-entry-part): Fix help-echo
963 text to match the real keybindings.
964
e2f022a3
JL
9652012-10-27 Juri Linkov <juri@jurta.org>
966
967 * wdired.el (wdired-keep-marker-rename): New defcustom.
968 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
969 (Bug#11795)
970
971 * dired.el (dired-keep-marker-rename): Add reference to
972 `wdired-keep-marker-rename' in the docstring.
973 Add default character value ?R to display initially in
974 Customization UI instead of ?@.
975
df171c23
MR
9762012-10-27 Martin Rudalics <rudalics@gmx.at>
977
978 * window.el (display-buffer): In doc-string describe
979 window-height and window-width alist entries.
980
981 * time.el (display-time-world): Restore fit-window-to-buffer
982 behavior.
983
05b621a6
CY
9842012-10-27 Chong Yidong <cyd@gnu.org>
985
986 * subr.el (insert-buffer-substring-as-yank): Doc fix.
987
55f197b2
J
9882012-10-26 Jambunathan K <kjambunathan@gmail.com>
989
990 * minibuffer.el (completion-category-overrides): New completion
991 category `bookmark' (bug#11131).
992
372212df
SM
9932012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
994
150f809c
SM
995 * emacs-lisp/advice.el (ad-assemble-advised-definition):
996 Silence bogus compiler warnings for ad-do-it.
997
372212df
SM
998 * bookmark.el (bookmark-completing-read): Set the completion category
999 to `bookmark' (bug#11131).
1000
c5772569
B
10012012-10-26 Bastien <bzg@altern.org>
1002 Stefan Monnier <monnier@iro.umontreal.ca>
1003
1004 * face-remap.el: Use lexical-binding.
1005 (text-scale-adjust): Improve docstring. Use itself for the temporary
1006 overlay-map bindings, so as to repeat the "Use..." message each time.
1007
a2be0357
SM
10082012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1009
63314e57
SM
1010 * emacs-lisp/macroexp.el (macroexp--expand-all):
1011 Obey byte-compile-warning-enabled-p (bug#12486).
1012
a2be0357
SM
1013 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
1014 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
1015
8c7727c3
MR
10162012-10-26 Martin Rudalics <rudalics@gmx.at>
1017
1018 * mouse.el (mouse-drag-line): Move last form into preceding when
1019 clause (Bug#12731).
1020
1021 * help.el (resize-temp-buffer-window): Fix doc-string.
1022
3f2a848d
DE
10232012-10-25 David Engster <deng@randomsample.de>
1024
1025 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
a2be0357 1026 Remove. This feature is already integrated in imenu.
3f2a848d
DE
1027
1028 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
1029 always loaded. Require `speedbar' unconditionally.
1030
a7723be6
SM
10312012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1032
aaabfc8b
SM
1033 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
1034
414a8595
SM
1035 * minibuffer.el (minibuffer-force-complete): Fix thinko.
1036
fb5b9475
SM
1037 * net/ldap.el (ldap-search-internal): The official ldif format starts
1038 with a "version: 1" header (bug#12724).
1039
a7723be6
SM
1040 * emacs-lisp/package.el (package-installed-p): Warn if not ready
1041 (bug#12721).
1042
a05cb6e3
GM
10432012-10-25 Glenn Morris <rgm@gnu.org>
1044
1045 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
1046
3c92de70
SM
10472012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1048
1049 * minibuffer.el (minibuffer-force-complete): Use one more marker
1050 for the temporary-overlay-map command (bug#12619).
1051
a4b6d7c6
CY
10522012-10-24 Chong Yidong <cyd@gnu.org>
1053
1054 * time.el (display-time-world-mode): Derive from special-mode.
1055 (display-time-world): Use display-buffer (Bug#12708).
1056 (display-time-world-mode-map): Variable deleted.
9321d8d7
CY
1057 (display-time-world-display): Wrap the final delete-char inside
1058 inhibit-read-only.
a4b6d7c6 1059
75e8f9d2
CY
10602012-10-24 Chong Yidong <cyd@gnu.org>
1061
cd996018
CY
1062 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
1063 Doc fix.
1064
75e8f9d2
CY
1065 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
1066
d92df117
SM
10672012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1068
1069 * minibuffer.el (completion--all-sorted-completions-location): New var.
1070 (completion--cache-all-sorted-completions)
1071 (completion--flush-all-sorted-completions): Use it.
1072 (completion-in-region, completion-in-region--postch)
1073 (completion-at-point, completion-help-at-point): Use markers in
1074 completion-in-region--data (bug#12619).
1075
9c3e39f3
SM
10762012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1077
c79825bd
SM
1078 * progmodes/compile.el (compilation-start): Try to handle common
1079 quoting of `cd' argument (bug#12640).
1080
9c3e39f3
SM
1081 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
1082 (bug#12671).
1083
a6709bc7
GM
10842012-10-23 Glenn Morris <rgm@gnu.org>
1085
1086 * progmodes/gud.el (gud-menu-map):
1087 Check gdb-active-process is bound. (Bug#12358)
1088
d1069532
SM
10892012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1090
d20d69c0
SM
1091 * repeat.el (repeat): Set real-this-command (bug#12232).
1092
d1069532
SM
1093 * htmlfontify.el (hfy-post-html-hook):
1094 * filesets.el (filesets-cache-fill-content-hook):
1095 * arc-mode.el (archive-extract-hook):
1096 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
1097 * net/rcirc.el (rcirc-sentinel-functions)
1098 (rcirc-receive-message-functions, rcirc-activity-functions)
1099 (rcirc-print-functions):
1100 * net/dbus.el (dbus-event-error-functions):
1101 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
1102 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
1103 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
1104 * term/sun.el (sun-raw-prefix-hooks):
1105 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
1106
f7eac6d8
MA
11072012-10-23 Michael Albinus <michael.albinus@gmx.de>
1108
d1069532
SM
1109 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1110 Set `tramp-chunksize' to 1. This improves the performance.
f7eac6d8
MA
1111 (tramp-smb-wait-for-output): Add timeout to
1112 `tramp-accept-process-output' calls.
1113
608d9d7c
CY
11142012-10-23 Chong Yidong <cyd@gnu.org>
1115
49238e7f
CY
1116 * faces.el (font-list-limit): Define as an obsolete variable.
1117
1118 * startup.el (command-line):
1119 * cus-start.el: Don't refer to font-list-limit.
1120
608d9d7c
CY
1121 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
1122
4ff5b1b2
SM
11232012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1124
1125 * subr.el (internal-temp-output-buffer-show): Rename from
1126 temp-output-buffer-show, since previously compiled files expect this name.
1127
ea1d4aac
GM
11282012-10-23 Glenn Morris <rgm@gnu.org>
1129
1130 * image.el (image-type-from-file-name): If multiple types match,
1131 return the first one that is supported. (Bug#9045)
1132
eda82a31
GM
11332012-10-22 Glenn Morris <rgm@gnu.org>
1134
1135 * image.el (imagemagick-enabled-types): Doc fix.
1136
4f020bec
TA
11372012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
1138
1139 * progmodes/which-func.el (which-func-current): The hash-table may have
1140 an explicit nil (bug#12338).
1141
c77d37e2
SM
11422012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
1143
1144 * electric.el (electric-pair-delete-selection-self-insert-function):
1145 Rename to electric-pair-will-use-region, return a boolean.
1146 (electric-pair-mode): Adjust accordingly. Don't require delsel.
1147
1148 * delsel.el (delete-selection-helper): Use a function instead of a hook.
1149 (delete-selection-pre-hook): Use use-region-p.
1150 (delete-selection-self-insert-function): Remove.
1151 (self-insert-command): Obey self-insert-uses-region-functions.
1152 (self-insert-iso): Revert to previous setting, since we don't actually
1153 know what that command does.
1154 (delete-selection-self-insert-hooks): Remove.
1155
b1d39ccc
SL
11562012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
1157
1158 * delsel.el (delete-selection-helper): New function, extracted from
1159 delete-selection-pre-hook.
1160 (delete-selection-pre-hook): Use it.
1161 (delete-selection-self-insert-function): New function.
1162 (delete-selection-self-insert-hooks): New hook.
1163 (self-insert-command, self-insert-iso): Use it.
1164 * electric.el (electric-pair-syntax): New function, extracted from
1165 electric-pair-post-self-insert-function.
1166 (electric-pair-post-self-insert-function): Use it.
1167 (electric-pair-delete-selection-self-insert-function): New function.
1168 (electric-pair-mode): Require delsel and setup
1169 delete-selection-self-insert-hooks (bug#11520).
1170
045ef729
CY
11712012-10-20 Chong Yidong <cyd@gnu.org>
1172
4c5d08a8
CY
1173 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
1174 no changes to show (Bug#12586).
1175
045ef729
CY
1176 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
1177 list explicitly (Bug#12571).
1178
3503c798 11792012-10-20 Arne Jørgensen <arne@arnested.dk>
79e1997a 1180
b1d39ccc
SL
1181 * progmodes/flymake.el (flymake-create-temp-inplace):
1182 Use file-truename.
79e1997a 1183
2068905b
EZ
11842012-10-20 Eli Zaretskii <eliz@gnu.org>
1185
1186 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
1187
4c9e9550
JB
11882012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
1189
1190 * calc/calc-units.el (math-extract-units): Properly extract powers
1191 of units.
1192
1a6e7e38
DC
11932012-10-20 Daniel Colascione <dancol@dancol.org>
1194
1195 * frame.el (make-frame): Set x-display-name as we used to in order
1196 to unbreak creating an X11 frame from an Emacs daemon started
1197 without a display.
1198
8e808318
SM
11992012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1200
1201 * minibuffer.el (minibuffer-force-complete): Make the next completion use
f5925cd9 1202 the same completion-field (bug#12221).
8e808318 1203
fb0104da
MR
12042012-10-19 Martin Rudalics <rudalics@gmx.at>
1205
1206 * emacs-lisp/debug.el (debug): Record height of debugger window
1207 also when debugger will be back (Bug#8789).
1208
8c27235e
CY
12092012-10-18 Chong Yidong <cyd@gnu.org>
1210
1211 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
1212 Convert to defcustom.
1213 (gdb-get-source-file): Don't bind pop-up-windows.
1214
1215 * progmodes/gud.el (gud-display-line): Don't specially re-use
1216 other frames for the gdb-mi case (Bug#12648).
1217
90eacf99
SM
12182012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1219
aaf0c300
SM
1220 * emacs-lisp/advice.el: Clean up commentary a bit.
1221 (ad-do-advised-functions, ad-with-originals): Use `declare'.
1222 (byte-code-function-p): Never redefine.
1223
90eacf99
SM
1224 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
1225
281c9d2b
GM
12262012-10-18 Glenn Morris <rgm@gnu.org>
1227
40714e3d
GM
1228 * dired.el (dired-sort-toggle): Some ls implementations only allow
1229 a single option string. (Bug#12666)
1230
281c9d2b
GM
1231 * minibuffer.el (completion-cycle-threshold): Doc fix.
1232
b278604e
KH
12332012-10-17 Kenichi Handa <handa@gnu.org>
1234
90eacf99
SM
1235 * international/mule.el (set-keyboard-coding-system):
1236 Recover input meta mode when the new coding system doesn not use 8-bit.
b278604e
KH
1237 Supply TERMINAL arg to set-input-meta-mode.
1238
df171c23 12392012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
7ebc5f5a
MH
1240
1241 * wdired.el (wdired-old-marks): New variable.
1242 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
1243 (wdired-do-renames): Move point with renamed file and don't lose
1244 mark status (Bug#11795).
1245
e5a94ec4
JL
12462012-10-16 Juri Linkov <juri@jurta.org>
1247
1248 * replace.el (query-replace-help): Mention multi-buffer replacement
1249 keys in the Help message. (Bug#12655)
1250
d18a0d24
CY
12512012-10-15 Chong Yidong <cyd@gnu.org>
1252
1253 * emacs-lisp/byte-run.el (defsubst): Doc fix.
1254
8111f5e6
EZ
12552012-10-14 Eli Zaretskii <eliz@gnu.org>
1256
7b9abf24
EZ
1257 * window.el (display-buffer): Doc fix.
1258
8111f5e6
EZ
1259 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1260 Adjust the msft regexp to the output of Studio 2010, and move msft
1261 before edg-1. See the discussion on emacs-devel,
1262 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
1263 for the details.
1264
5046ef67
SM
12652012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
1266
9760c73c
SM
1267 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
1268 (oset): Move uses of object-class-fast macro after its definition.
1269
5046ef67
SM
1270 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
1271
0d11ff1c
CY
12722012-10-13 Chong Yidong <cyd@gnu.org>
1273
1274 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
1275 enabled, re-enable it (Bug#11963).
1276
88ded8ac
MR
12772012-10-13 Martin Rudalics <rudalics@gmx.at>
1278
1279 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
1280 non-nil, restore window configuration (Bug#12623).
1281
bd0ffffd
SM
12822012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1283
06485aa8
SM
1284 * help-fns.el (describe-variable, describe-function-1):
1285 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
1286
bd0ffffd
SM
1287 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
1288
3a989246
GM
12892012-10-12 Glenn Morris <rgm@gnu.org>
1290
1291 * mail/rmailsum.el (rmail-header-summary):
1292 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
1293
55cd00c8
FEG
12942012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
1295
bd0ffffd
SM
1296 * progmodes/python.el (python-mode-map):
1297 Replace subtitute-key-definition with proper command remapping.
55cd00c8
FEG
1298 (python-nav--up-list): Fix behavior for blocks on the same level.
1299
ac9fc2c7
SM
13002012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1301
d8cc4c00 1302 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
d8cc4c00 1303
5253a5fd
SM
1304 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
1305 changes to the format of load-history.
1306
ac9fc2c7
SM
1307 * international/mule-cmds.el (read-char-by-name): Move let-binding of
1308 completion-ignore-case in case that var is buffer-local (bug#12615).
1309
cde44a77
KH
13102012-10-11 Kenichi Handa <handa@gnu.org>
1311
1312 * international/eucjp-ms.el: Re-generated.
1313
4ef4a10d
KH
13142012-10-10 Kenichi Handa <handa@gnu.org>
1315
1316 * select.el (xselect--encode-string): If a coding is specified for
1317 selection, and that is compatible with COMPOUND_TEXT, use it.
1318
9d7f027b
MR
13192012-10-10 Martin Rudalics <rudalics@gmx.at>
1320
1321 * window.el (switch-to-buffer-preserve-window-point): New option.
ac9fc2c7
SM
1322 (switch-to-buffer):
1323 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
9d7f027b 1324
238f3a58
SM
13252012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1326
1327 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
1328 Don't document nil as a useful value (bug#12583).
1329
1d51f99c
MA
13302012-10-09 Michael Albinus <michael.albinus@gmx.de>
1331
238f3a58
SM
1332 * net/tramp.el (tramp-debug-message):
1333 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
1d51f99c
MA
1334 (with-tramp-progress-reporter): Rename from
1335 `tramp-with-progress-reporter'.
238f3a58
SM
1336 (with-tramp-file-property, with-tramp-connection-property):
1337 Move from tramp-cache.el, rename from `with-file-property' and
1d51f99c
MA
1338 `with-connection-property', respectively.
1339
1340 * net/tramp-cache.el: Remove `with-file-property' and
1341 `with-connection-property'.
1342
1343 * net/tramp.el:
1344 * net/tramp-gvfs.el:
1345 * net/tramp-sh.el:
1346 * net/tramp-smb.el: Adapt callees.
1347
1348 * net/trampver.el: Update release number.
1349
26b77251
GM
13502012-10-09 Glenn Morris <rgm@gnu.org>
1351
9a5f296f
GM
1352 * w32-fns.el (set-message-beep):
1353 * term/w32-win.el (set-message-beep): Update declarations.
1354
94c66ce5
SM
13552012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1356
10766e9e
SM
1357 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
1358 (mode-line-widen, mode-line-input-method-map)
1359 (mode-line-coding-system-map, mode-line-remote)
1360 (mode-line-unbury-buffer, mode-line-bury-buffer)
1361 (mode-line-next-buffer, mode-line-previous-buffer):
1362 Replace save-selected-window+select-window => with-selected-window.
1363
f754db08
SM
1364 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
1365 * progmodes/cc-vars.el (bq-process): Remove, unused.
1366
94c66ce5
SM
1367 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
1368
a4ff7fe1
FEG
13692012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
1370
1371 Implemented `backward-up-list'-like navigation.
1372 * progmodes/python.el (python-nav-up-list)
1373 (python-nav-backward-up-list): New functions.
1374 (python-mode-map): Define substitute key for backward-up-list to
1375 python-nav-backward-up-list.
1376
24517d82
FEG
13772012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1378
1379 * progmodes/python.el (python-fill-paragraph): Rename from
1380 python-fill-paragraph-function. Fixed fill-paragraph for
1381 decorators (Bug#12605).
1382
51867ae2
FEG
13832012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1384
1385 * progmodes/python.el (python-shell-output-filter): Handle extra
1386 carriage return in OSX (Bug#12409).
1387
a5b773c4
FEG
13882012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1389
1390 Fix shell handling of unbalanced quotes and parens in output.
94c66ce5 1391 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
a5b773c4
FEG
1392 (python-syntax-propertize-function): Use it.
1393 (python-shell-output-syntax-table): New var.
1394 (inferior-python-mode): Prevent unbalanced parens/quotes from
1395 previous output mess with current input context.
1396
13373538
JB
13972012-10-08 Juanma Barranquero <lekktu@gmail.com>
1398
1399 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
1400 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
1401
775a132d
MA
14022012-10-08 Michael Albinus <michael.albinus@gmx.de>
1403
1404 * ffap.el (ffap-replace-file-component): Support Tramp file name
1405 syntax, not only ange-ftp's one.
1406
3ab44929
GM
14072012-10-08 Glenn Morris <rgm@gnu.org>
1408
57f1dee4
GM
1409 * cus-start.el (message-log-max): Set :version.
1410
3ab44929
GM
1411 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
1412
6a088630
MR
14132012-10-08 Martin Rudalics <rudalics@gmx.at>
1414
1415 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
1416 the minibuffer window (Bug#10851).
1417
8dbce54c
FEG
14182012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1419
1420 Enhancements on forward-sexp movement.
1421 * progmodes/python.el (python-nav-beginning-of-statement)
1422 (python-nav-end-of-statement): Return point-marker.
1423 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
1424 (python-info-current-symbol)
1425 (python-info-statement-starts-block-p): Rename from
1426 python-info-beginning-of-block-p.
1427 (python-info-statement-ends-block-p): Rename from
1428 python-info-end-of-block-p.
1429 (python-info-beginning-of-statement-p)
1430 (python-info-end-of-statement-p)
1431 (python-info-beginning-of-block-p, python-info-end-of-block-p):
1432 New functions.
1433
5acd2b3e
SM
14342012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1435
1436 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
1437 frame-selected-windows.
1438
e08348a0
DC
14392012-10-08 Daniel Colascione <dancol@dancol.org>
1440
1441 * battery.el (battery-status-function): Check for
1442 w32-battery-status itself, not system-time windows-nt.
1443
1444 * frame.el: Require cl-lib.
1445 (display-format-alist): New variable mapping frame types to
1446 functions that initialize them.
1447 (window-system-for-display): New function: interprets
1448 display-format-alist.
1449 (make-frame-on-display): Remove existing display-selection logic
1450 and just forward to make-frame, which will now DTRT.
1451 (make-frame): Restructure to use window-system-for-display to
1452 figure out how to create a frame on a given display.
1453 (display-mouse-p): Look for frame-type w32, not a particular
1454 system-type.
1455
1456 * loadup.el: Load w32 lisp code when we have the w32 feature.
1457
1458 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
1459 system-type windows-nt.
1460
1461 * server.el (server-create-window-system-frame): Look for window
1462 type.
1463 (server-proces-filter): Only force a window system when windows-nt
1464 _and_ w32. Explain why.
1465
1466 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
1467 of window systems we configure for the mode.
1468
1469 * startup.el (command-line): Mark window system is initialized
1470 after we've done it.
1471
1472 * common-win.el (x-select-text): Look for w32, not windows-nt.
1473
1474 * ns-win.el: Require cl-lib. Add ourselves to
1475 display-format-alist.
1476 (ns-initialize-window-system): Assert we're not initialized twice.
1477
1478 * w32-win.el: Enable lexical binding; require cl-lib; add
1479 ourselves to display-format-alist.
1480 (w32-handle-dropped-file): Convert incoming dropped files from
1481 Windows paths to Cygwin ones before passing them on to the rest of
1482 Emacs.
1483 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
1484 (w32-initialize-window-system): Assert we're not initialized twice.
1485
1486 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
1487 (x-initialize-window-system): Assert we're not initialized twice.
1488
1489 * w32-common-fns.el: New File.
1490 (w32-version, w32-using-nt, w32-get-clipboard-data)
1491 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1492 (w32-charset-info-alist, x-last-selected, text)
1493 (x-get-selection-value, x-selection-value): Move here.
1494
1495 * w32-fns.el: Require w32-common-fns.
1496 (w32-version, w32-using-nt, w32-get-clipboard-data)
1497 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1498 (w32-charset-info-alist, x-last-selected, text)
1499 (x-get-selection-value, x-selection-value): Move to
1500 w32-common-fns.
1501
1502 * w32-vars.el:
1503 (w32-allow-system-shell, w32-system-shells): Define only in
1504 non-cygwin case.
1505
795b1482
SM
15062012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1507
1508 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
1509 (read-passwd): Remove a few more potential sources of leaks.
1510
f27c99dc
FEG
15112012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1512
1513 * progmodes/python.el (inferior-python-mode)
795b1482 1514 (python-shell-make-comint): Fix initialization of local
f27c99dc
FEG
1515 variables copied from parent buffer.
1516
fcacb558
JD
15172012-10-07 Jan Djärv <jan.h.d@swipnet.se>
1518
1519 * term/ns-win.el (ns-read-file-name): Update declaration to match
1520 nsfns.m.
1521 (ns-respond-to-change-font): Change fontsize separatly so we are sure
1522 it is set when font is acted upon.
1523
be0d5bae
FEG
15242012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1525
1526 Enhancements to indentation.
1527 * progmodes/python.el (python-indent-context): Give priority to
1528 inside-string context. Make comments indentation markers.
1529 (python-indent-region): Do not mess with strings, unless it's the
1530 enclosing set of quotes.
1531
13af0d10
SM
15322012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1533
662a9d0e
SM
1534 * window.el (internal--before-save-selected-window)
1535 (internal--after-save-selected-window): New functions extracted from
1536 save-selected-window. Make sure we return the `alist' we construct.
1537 (save-selected-window): Use them.
1538
1539 * textmodes/tex-mode.el (tex-recenter-output-buffer):
1540 Use with-selected-window.
1541
13af0d10
SM
1542 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
1543 forms that define macros (bug#12593).
1544
6aa75fb6
KH
15452012-10-07 Kenichi Handa <handa@gnu.org>
1546
13af0d10
SM
1547 * international/mule-conf.el (compound-text-with-extensions):
1548 Add :mime-charset property as x-ctext.
6aa75fb6 1549
78d876b9
SM
15502012-10-07 Stefan Merten <smerten@oekonux.de>
1551
1552 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1553 (rst-indent-literal-normal, rst-indent-literal-minimized)
1554 (rst-indent-comment): Correct :version tag.
557337e9 1555 (rst-official-cvs-rev): Correct version string.
78d876b9 1556
99a1e701
GM
15572012-10-07 Glenn Morris <rgm@gnu.org>
1558
1559 * mail/rmailmm.el (rmail-mime-process-multipart):
1560 Do not confuse a multipart message with an epilogue
1561 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
1562
08f18c3d
FEG
15632012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1564
1565 Fix shell output retrieval and comint-prompt-regexp init.
1566 * progmodes/python.el (inferior-python-mode):
1567 (python-shell-make-comint): Fix initialization of
1568 comint-prompt-regexp from copied file local variables.
1569 (python-shell-fetched-lines): Remove var.
1570 (python-shell-output-filter-in-progress): Rename from
1571 python-shell-fetch-lines-in-progress.
1572 (python-shell-output-filter-buffer): Rename from
1573 python-shell-fetch-lines-string.
1574 (python-shell-fetch-lines-filter): Delete function.
1575 (python-shell-output-filter): New function.
1576 (python-shell-send-string-no-output): Use them.
1577
82ed3ab4
GM
15782012-10-07 Glenn Morris <rgm@gnu.org>
1579
1595ecfa
GM
1580 * hi-lock.el (hi-lock-process-phrase):
1581 Try to make it less fragile. (Bug#7161)
1582
82ed3ab4
GM
1583 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
1584
f1f4dba0
GM
15852012-10-06 Glenn Morris <rgm@gnu.org>
1586
addc11ed 1587 * ehelp.el (electric-help-mode): Use help-mode rather than
32939005
GM
1588 non-existent mode `help'.
1589 (electric-help-map): Use button-buffer-map. (Bug#10917)
addc11ed 1590
460042b8
GM
1591 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
1592 (reftex-create-bibtex-footer): Fix custom types.
1593
67667c70
GM
1594 * progmodes/sh-script.el (sh-indent-after-continuation):
1595 Add explicit :group.
1596
18dec750
GM
1597 * textmodes/rst.el (rst-preferred-decorations)
1598 (rst-shift-basic-offset): Clarify obsolescence versions.
1599
d1a1c7e6
GM
1600 * profiler.el (profiler): Add missing group :version tag.
1601 * avoid.el (mouse-avoidance-banish-position):
1602 * proced.el (proced-renice-command):
1603 * calc/calc.el (calc-ensure-consistent-units):
1604 * calendar/icalendar.el (icalendar-import-format-uid):
1605 * net/tramp.el (tramp-save-ad-hoc-proxies):
1606 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1607 * progmodes/flymake.el (flymake-error-bitmap)
1608 (flymake-warning-bitmap, flymake-fringe-indicator-position):
1609 * progmodes/sh-script.el (sh-indent-after-continuation):
1610 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
1611 (verilog-before-save-font-hook, verilog-after-save-font-hook):
1612 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
1613 (vhdl-array-index-record-field-in-sensitivity-list)
1614 (vhdl-indent-comment-like-next-code-line):
1615 * textmodes/reftex-vars.el (reftex-ref-style-alist)
1616 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
1617 (reftex-cite-key-separator, reftex-create-bibtex-header)
1618 (reftex-create-bibtex-footer):
1619 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1620 (rst-indent-literal-normal, rst-indent-literal-minimized)
1621 (rst-indent-comment): Add missing custom :version tags.
1622
ef35abb4
GM
1623 * calendar/timeclock.el (timeclock-modeline-display):
1624 Add missing obsolete alias for renamed user option.
1625
d1aae614
GM
1626 * strokes.el (strokes-modeline-string):
1627 * emulation/crisp.el (crisp-mode-modeline-string):
1628 * eshell/esh-mode.el (eshell-status-in-modeline):
1629 Aliases to defcustoms must come before the defcustom.
1630
f1f4dba0
GM
1631 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
1632 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
1633 (cal-tex-cursor-week-monday): Doc fixes.
1634 (cal-tex-cursor-week2-summary): Doc fix.
1635 Rename from cal-tex-cursor-week-at-a-glance.
1636
1637 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
1638 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
1639
1640 * calendar/calendar.el (calendar-mode-map):
1641 Add cal-tex-cursor-week2-summary.
1642
d39109c3
SM
16432012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
1644
685f87b0
SM
1645 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
1646
d39109c3
SM
1647 * subr.el (read-passwd-map): New var.
1648 (read-passwd): Use `read-string' again.
1649 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
1650
5694896d
J
16512012-10-06 Jambunathan K <kjambunathan@gmail.com>
1652
1653 * register.el (append-to-register, prepend-to-register):
1654 Deactivate mark, as does `copy-to-register' (bug#12389).
1655
9414dd8d
CY
16562012-10-06 Chong Yidong <cyd@gnu.org>
1657
1658 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
1659
2b89bca4
KH
16602012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
1661
1662 * international/characters.el: Fix simple mistake ((car chars) ->
1663 elt), delete duplicated code.
1664
d5acb99a
GM
16652012-10-06 Glenn Morris <rgm@gnu.org>
1666
1667 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
1668
123ec157
JS
16692012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
1670
1671 * color.el (color-hsl-to-rgb): Fix incorrect results for
1672 small and large hue values. (Bug#12559)
1673
7fa36ccb
FEG
16742012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
1675
1676 Enhancements to docstring formatting when filling paragraphs.
1677 * progmodes/python.el (python-fill-docstring-style): Rename from
1678 python-fill-string-style. Added new style.
1679 (python-fill-string): Use new style. Better checks for
1680 docstrings.
1681
d8788e1e
GM
16822012-10-05 Glenn Morris <rgm@gnu.org>
1683
204f3953
GM
1684 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
1685
d8788e1e
GM
1686 * color.el (color-name-to-rgb, color-rgb-to-hex)
1687 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1688 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1689 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1690 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1691
8d956cef
GM
1692 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
1693
e8757f09 16942012-10-05 Juanma Barranquero <lekktu@gmail.com>
ea9a3563
JB
1695
1696 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
1697 to get the correct size across symlinks.
1698
e8757f09
GM
1699 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
1700
0e2ae83d
JL
17012012-10-04 Juri Linkov <juri@jurta.org>
1702
1703 * replace.el (query-replace-interactive): Declare obsolete.
1704 (query-replace-read-from): Add the last incremental search string
1705 to the list of default values accessible via M-n.
1706 (map-query-replace-regexp): Use `read-regexp'.
1707 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1708 (map-query-replace-regexp, replace-string, replace-regexp):
1709 Fix docstrings to replace mentions of `query-replace-interactive'
1710 with alternatives. (Bug#12526)
1711
93cacb6d
JL
17122012-10-04 Juri Linkov <juri@jurta.org>
1713
1714 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
1715 (dired-pop-to-buffer): Declare obsolete.
1716 (dired-mark-pop-up): Doc fix.
1717
fc345011
FEG
17182012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
1719
1720 Allow user to set docstring style for fill-paragraph.
1721 * progmodes/python.el
1722 (python-fill-comment-function, python-fill-string-function)
1723 (python-fill-decorator-function, python-fill-paren-function):
1724 Remove :safe for defcustoms.
1725 (python-fill-string-style): New defcustom
5694896d 1726 (python-fill-paragraph-function): Enhance context detection.
fc345011
FEG
1727 (python-fill-string): Honor python-fill-string-style settings.
1728
6bab5d8b
MR
17292012-10-04 Martin Rudalics <rudalics@gmx.at>
1730
1731 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
1732 after setting its buffer (Bug#10805).
1733
a1a9f411
FEG
17342012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
1735
1736 Fix cornercase for string syntax.
1737 * progmodes/python.el (python-syntax-propertize-function):
1738 Simplify and enhance the regexp for unescaped quotes. Now it also
1739 matches quotes in weird situations like the single quote in
1740 "something\"'".
1741 (python-syntax-stringify): Simplify num-quotes detecting code.
1742
05e153a6
GM
17432012-10-03 Glenn Morris <rgm@gnu.org>
1744
1745 * help-macro.el (three-step-help):
1746 Revert 2012-09-29 change. (Bug#12567)
1747
2e566ecb
MR
17482012-10-03 Martin Rudalics <rudalics@gmx.at>
1749
96ef9ccd
MR
1750 * menu-bar.el (kill-this-buffer): Don't do anything when
1751 `menu-frame' is not alive or visible (Bug#8184).
1752
2e566ecb
MR
1753 * emacs-lisp/debug.el (debug): When quitting the debugger window
1754 restore current buffer (Bug#12502).
1755
a96e1cb7
CY
17562012-10-02 Chong Yidong <cyd@gnu.org>
1757
5694896d
J
1758 * progmodes/hideif.el (hif-lookup, hif-defined):
1759 Handle semantic-c-takeover-hideif.
a96e1cb7 1760
b3ecad33
PE
17612012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1762
1763 Change sampling interval units from ms to ns.
1764 * profiler.el (profiler-sampling-interval): Change units
1765 from ms to ns, multiplying the default by 1000000 so that
1766 it remains 1 ms.
1767 (profiler-report-cpu-line-format): Give enough room for
1768 the maximum counters on 64-bit hosts.
1769 (profiler-report-render-calltree-1): Call them "CPU samples",
1770 not "Time (ms)", since they are not milliseconds now (and
1771 never really were).
1772
8cb51b66 17732012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
c623f81a 1774
5694896d
J
1775 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
1776 Fix querying BBDB for entries without a last name (Bug#11580).
c623f81a 1777
fd795bf4
CY
17782012-10-02 Chong Yidong <cyd@gnu.org>
1779
1780 * emacs-lisp/eieio.el: Restore Version header.
1781
fe0a74f9
SM
17822012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1783
6be9197e
SM
1784 * vc/diff-mode.el (diff--auto-refine-data): New var.
1785 (diff-hunk): Use it to delay refinement.
1786 (diff-mode): Remove overlays when we turn off font-lock.
1787
18486139
SM
1788 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
1789 (table-initialize-table-fixed-width-mode)
1790 (table-set-table-fixed-width-mode): Remove functions.
1791 (table-command-list): Move initialization into declaration.
1792 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
1793 (table-with-cache-buffer): Use `declare'.
1794 (table-span-cell): Simplify via CSE.
1795 (table-fixed-width-mode): Use define-minor-mode.
1796 (table-call-interactively, table-funcall, table-apply): Remove.
1797 (table-function): New function, to replace them.
1798
d83ef976
SM
1799 * bookmark.el (bookmark-search-pattern): Remove var.
1800 (bookmark-read-search-input): Remove function.
1801 (bookmark-bmenu-search): Reimplement using a minibuffer.
1802
cd386662
SM
1803 * faces.el (modeline): Remove obsolete face name.
1804
fe0a74f9
SM
1805 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
1806 and give a non-nil default value.
1807 (add-change-log-entry): Simplify accordingly.
1808
9f7b98f8
DG
18092012-10-01 Dmitry Gutov <dgutov@yandex.ru>
1810
1811 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
1812 (vc-git-log-edit-toggle-amend): New function.
1813 (vc-git-log-edit-toggle-signoff): New function.
1814 (vc-git-log-edit-mode): New major mode.
1815 (vc-git-log-edit-mode-map): Keymap for it.
1816 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
1817
1818 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
1819 header names.
1820 (log-edit-toggle-header): New function.
1821 (log-edit-extract-headers): Accept function values in HEADERS alist.
1822
62a81506
CY
18232012-10-01 David Engster <deng@randomsample.de>
1824
1825 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
1826 from symbol property and change message to be more consistent with
1827 Emacs proper.
1828 (eieio-describe-generic): Add filename for each implementation.
1829 Fix indices for generic and normal methods.
1830 (eieio-method-def, eieio-class-def): New buttons.
1831 (eieio-help-find-method-definition)
1832 (eieio-help-find-class-definition): New functions.
1833 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
1834 class, constructor and method definitions.
1835
1836 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
1837 information in symbol property.
1838 (scoped-class): Remove.
1839 (eieio-slot-name-index, call-next-method): Check if it is bound.
1840
18412012-10-01 Leo P. White <lpw25@cam.ac.uk>
1842
1843 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
1844 (eieio-custom-mode): New major mode.
1845 (eieio-customize-object): Use it.
1846
18472012-10-01 Eric Ludlam <zappo@gnu.org>
1848
1849 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
1850 specifying the expected class, and whether subclassing is allowed.
1851 (eieio-persistent-convert-list-to-object):
1f9f395d
JB
1852 (eieio-persistent-validate/fix-slot-value)
1853 (eieio-persistent-slot-type-is-class-p): New functions.
1854 (eieio-named::slot-missing): Doc fix.
62a81506
CY
1855
1856 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
1857 Stop using unused publd variable.
1858
1859 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1860 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
1861 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
1862 (eieio-speedbar-handle-click): Do not specify a class for the
1863 method. Fixes method invocation order problems with EDE.
1864
375e49d4
SM
18652012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1866
1867 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
1868 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
1869
16ce6ccd
KF
18702012-10-01 Karl Fogel <kfogel@red-bean.com>
1871
1872 * bookmark.el (bookmark-version-control): Give tags in the
1873 :type choices (Bug#12309), and improve doc string.
e4c4abdd
KF
1874 (bookmark-write-file): Bind `print-circle' to `t' to allow
1875 circular custom bookmark types. (Bug#12503)
16ce6ccd 1876
19e54a4d
PE
18772012-10-01 Paul Eggert <eggert@cs.ucla.edu>
1878
86ec63ba
PE
1879 Revert the FOLLOW-SYMLINKS change for file-attributes.
1880 * files.el (remote-file-name-inhibit-cache, after-find-file):
1881 * time.el (display-time-file-nonempty-p): Undo last change.
1882
19e54a4d
PE
1883 * profiler.el (profiler-sampling-interval): Change default back to 1.
1884 See Stefan Monnier in
1885 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
1886
0478776b
FEG
18872012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
1888
1889 Shell output catching a la gud-gdb.
1890 * progmodes/python.el (python-shell-fetch-lines-in-progress)
375e49d4
SM
1891 (python-shell-fetch-lines-string, python-shell-fetched-lines):
1892 New Vars.
0478776b
FEG
1893 (python-shell-fetch-lines-filter): New function.
1894 (python-shell-send-string-no-output): Use them.
1895
c22bac2c
TM
18962012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
1897
1898 * profiler.el (profiler-sampling-interval): Rename from
1899 profiler-sample-interval.
1900 (profiler-sampling-interval): Default to 10.
1901 (profiler-find-profile): New command (was profiler-find-log).
1902 (profiler-find-profile-other-window): New command.
1903 (profiler-find-profile-other-frame): New command.
1904 (profiler-profile): Introduce API-level data structure.
1905
e7a2937b
PE
19062012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1907
1908 file-attributes has a new optional arg FOLLOW-SYMLINKS.
1909 * files.el (remote-file-name-inhibit-cache):
1910 * time.el (display-time-file-nonempty-p): Use it.
1911 * files.el (after-find-file): Don't chase links before calling
1912 file-exists-p, as file-exists-p already does the right thing.
1913
4f595e15
RA
19142012-09-30 Ralf Angeli <angeli@caeruleus.net>
1915
1916 Merge from standalone RefTeX repository.
1917
1918 The following ChangeLog entries are shortened versions of the
1919 original ones with file paths adapted. A not so strongly edited
1920 version of the original ChangeLog can be found in the commit log.
1921
1922 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
375e49d4
SM
1923 (reftex-arg-cite): Use `reftex-cite-key-separator'.
1924 Correctly handle new value type returned by `reftex-citation'.
4f595e15
RA
1925
1926 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
375e49d4
SM
1927 that entries with whitespace at various places are found.
1928 Doc fix. Include entries that are cross-referenced from cited entries.
4f595e15
RA
1929 Include @String definitions in the resulting bib file. Add header
1930 and footer defined in `reftex-create-bibtex-header' and
1931 `reftex-create-bibtex-footer'.
1932 (reftex-do-citation): Make it possible again to insert
1933 non-existent entries. Save match data when asking for optional
1934 arguments. Return all keys, not just the first one.
1935 (reftex-all-used-citation-keys): Fix regexp to correctly extract
1936 all citations in the same line.
1937 (reftex-parse-bibtex-entry): Accept additional optional argument
1938 `raw' and keep quotes or braces if it is non-nil. Match fields
1939 containing hyphens besides word constituents.
1940 (reftex-get-string-refs): New function.
1941 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
1942 and ask if it should be reread in case it did.
1943 (reftex-pop-to-bibtex-entry)
1944 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
1945 entries with spaces or tabs in front of arguments.
1946 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
375e49d4
SM
1947 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
1948 Match entries containing numbers and symbol constituents.
1949 (reftex-do-citation, reftex-figure-out-cite-format):
1950 Use `reftex-cite-key-separator'.
4f595e15
RA
1951
1952 * textmodes/reftex-dcr.el: Move provide statement to end of file.
1953 (reftex-mouse-view-crossref): Explain why point is set.
1954
1955 * textmodes/reftex-global.el: Whitespace changes.
1956
1957 * textmodes/reftex-index.el: Move provide statement to end of
1958 file.
1959 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
1960 (reftex-index-visit-phrases-buffer): Set marker when visiting
1961 buffer. This allows for returning from the phrases file to the
1962 file one was just editing instead of the file where the last
1963 phrases was added from.
1964 (reftex-index-phrases-syntax-table): New variable. Give ?\"
1965 punctuation syntax as it usually is not used as string quote in
1966 TeX-related modes and may occur unmatched. The change also
1967 prevents fontification of quoted content.
1968 (reftex-index-phrases-mode): Use it.
1969
375e49d4
SM
1970 * textmodes/reftex-parse.el (reftex-parse-from-file):
1971 Move backward one char if a `\' was matched after a section macro.
4f595e15
RA
1972 (reftex-parse-from-file): Use beginning of match instead of end as
1973 bound.
1974
1975 * textmodes/reftex-ref.el: Adapt creation of
1976 `reftex-<package>-<macro>' functions to new structure of
1977 `reftex-ref-style-alist'.
375e49d4
SM
1978 (reftex-reference): Use `reftex-ref-style-list' function.
1979 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
4f595e15
RA
1980 reference macro if `reftex-ref-macro-prompt' is non-nil.
1981 (reftex-reference): Pass refstyle to `reftex-format-special'.
1982 Determine reference macro by looking at
375e49d4
SM
1983 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
1984 Use only one special format function.
4f595e15
RA
1985 (reftex-varioref-vref, reftex-fancyref-fref)
1986 (reftex-fancyref-Fref): Remove definitions. The functions are now
1987 generated from `reftex-ref-style-alist'.
1988 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
1989 Remove.
1990 (reftex-format-special): New function.
1991
1992 * textmodes/reftex-sel.el
1993 (reftex-select-cycle-ref-style-internal): Adapt to new structure
1994 of `reftex-ref-style-alist'. Remove code for testing macro type.
1995 (reftex-select-toggle-varioref)
1996 (reftex-select-toggle-fancyref): Remove.
1997 (reftex-select-cycle-ref-style-internal)
1998 (reftex-select-cycle-ref-style-forward)
1999 (reftex-select-cycle-ref-style-backward): New functions.
2000 (reftex-select-label-map): Use `v' and `V' for general cycling
2001 through reference styles. Add `p' for switching between number
2002 and page reference types.
2003
375e49d4
SM
2004 * textmodes/reftex-toc.el (reftex-re-enlarge):
2005 Call `enlarge-window' only if there is something to do because in Emacs
4f595e15
RA
2006 the horizontal version throws an error even if the parameter is 0.
2007
2008 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
2009 (reftex-plug-into-AUCTeX): Doc fix.
2010 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
2011 string. Adapt to new name.
2012 (reftex-ref-style-alist): Change structure so that it is not
2013 possible to use multiple different package names within a style.
375e49d4
SM
2014 Remove the symbols for symbols for macro type distinction.
2015 Add characters for macro selection.
4f595e15
RA
2016 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
2017 (reftex-create-bibtex-footer): New variables.
2018 (reftex-format-ref-function): Mention third argument of special
2019 format function.
375e49d4
SM
2020 (reftex-ref-style-alist, reftex-ref-style-default-list):
2021 New variables.
4f595e15
RA
2022 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
2023 to new implementation. Mark as obsolete. Add compatibility code
2024 for honoring the variable values in case they are set.
375e49d4
SM
2025 (reftex-cite-format-builtin, reftex-bibliography-commands):
2026 Add support for ConTeXt.
2027 (reftex-format-ref-function, reftex-format-cite-function):
2028 Fix custom type.
4f595e15
RA
2029 (reftex-cite-key-separator): New variable.
2030
2031 * textmodes/reftex.el (reftex-syntax-table-for-bib)
2032 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
2033 `reftex-syntax-table' because parens have to retain their paren
2034 syntax in order for parsing of BibTeX entries like @book(...) to
2035 work.
2036 (reftex-in-comment): Do not error out if `comment-start-skip' is
2037 not set. Deal correctly with escaped comment characters.
375e49d4
SM
2038 (reftex-tie-multifile-symbols): Add doc string.
2039 Initialize `reftex-ref-style-list'.
4f595e15
RA
2040 (reftex-untie-multifile-symbols): Add doc string.
2041 (reftex-add-index-macros): Doc fix.
2042 (reftex-ref-style-activate, reftex-ref-style-toggle)
2043 (reftex-ref-style-list): New functions.
2044 (reftex-mode-menu): Use them. Adapt to new structure of
2045 `reftex-ref-style-alist'.
2046 (reftex-select-with-char): Kill the RefTeX Select buffer when
2047 done.
2048 (reftex-remove-if): New function.
2049 (reftex-erase-all-selection-and-index-buffers)
2050 (reftex-mode-menu): Reference styles are now computed from
2051 `reftex-ref-style-alist'. Fix typo.
2052 (reftex-report-bug): New function.
2053 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
2054 algorithms with O(n log n). Introduce optional argument SORT (not
2055 yet used).
2056
440ba395
FEG
20572012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
2058
2059 Enhancements for triple-quote string syntax.
375e49d4
SM
2060 * progmodes/python.el (python-syntax-propertize-function):
2061 Match both quote cases in one regexp.
440ba395
FEG
2062 (python-syntax-stringify): Handle matches properly.
2063
4c478e6b
JL
20642012-09-30 Juri Linkov <juri@jurta.org>
2065
2066 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
93cacb6d 2067 to nil around the call to `insert' to prevent
4c478e6b
JL
2068 directory time modification by lock_file. (Bug#2295)
2069 * tar-mode.el (tar-summarize-buffer): Idem.
2070
d80d54b2
JL
20712012-09-30 Juri Linkov <juri@jurta.org>
2072
2073 * facemenu.el (list-colors-sort): Add option "Luminance".
2074 (list-colors-sort-key): Implement it.
2075
2076 * vc/diff-mode.el (diff-refine-removed):
2077 * vc/ediff-init.el (ediff-fine-diff-A):
2078 * vc/smerge-mode.el (smerge-refined-removed):
2079 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
2080
d7e642cc
JD
20812012-09-30 Jan Djärv <jan.h.d@swipnet.se>
2082
2083 * term/ns-win.el (x-file-dialog): New function.
2084
ee41332b
JB
20852012-09-30 Juanma Barranquero <lekktu@gmail.com>
2086
2087 * ido.el (ido-max-directory-size): Default to nil; the current
2088 default is small for POSIX systems, and impractical on Windows 7
2089 now that lstat returns directory sizes for NTFS.
2090
5938d519
MR
20912012-09-30 Martin Rudalics <rudalics@gmx.at>
2092
2093 In buffer display functions handle window-height/window-width
2094 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
375e49d4
SM
2095 * window.el (window--display-buffer): New argument ALIST.
2096 Obey window-height and window-width alist entries.
2097 (window--try-to-split-window): New argument ALIST.
2098 Bind window-combination-limit to t when the window's size shall be
5938d519
MR
2099 changed and window-combination-limit equals `window-size'.
2100 (display-buffer-in-atom-window)
2101 (display-buffer-in-major-side-window)
2102 (display-buffer-in-side-window, display-buffer-same-window)
2103 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2104 (display-buffer-pop-up-window, display-buffer-below-selected)
2105 (display-buffer-at-bottom, display-buffer-in-previous-window)
2106 (display-buffer-use-some-window): Adjust all callers of
2107 window--display-buffer and window--try-to-split-window.
2108 (fit-frame-to-buffer): New option.
2109 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
2110 is non-nil.
2111 (display-buffer-in-major-side-window): Evaluate window-height /
2112 window-width alist entries.
2113
2114 * help.el (temp-buffer-resize-frames)
2115 (temp-buffer-resize-regexps): Remove options.
2116 (temp-buffer-resize-mode): Adjust doc-string.
2117 (resize-temp-buffer-window): Don't consult
2118 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
2119 temp-buffer-resize-frames.
2120
375e49d4
SM
2121 * dired.el (dired-mark-pop-up):
2122 Call display-buffer-below-selected with a fit-window-to-buffer alist
5938d519
MR
2123 entry.
2124
c4c0c2df
CY
21252012-09-30 Chong Yidong <cyd@gnu.org>
2126
48de8b12
CY
2127 * server.el (server-host): Document the security implications.
2128 (server-auth-key): Doc fix.
2129
2130 * startup.el (initial-buffer-choice): Doc fix.
2131
2132 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
2133
a97dc380
CY
2134 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
2135 restriction change.
2136
d39d3c8e
CY
2137 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
2138
c4c0c2df
CY
2139 * help-fns.el (help-fns--obsolete): Fix last change.
2140
98a5e33b
SM
21412012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
2142
34cf6f39
SM
2143 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
2144 (minor-mode-map-alist): Remove redundant code.
2145
e01c13fe
SM
2146 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
2147 visited in a buffer.
2148 (cvs-insert-visited-file): New function.
2149 (find-file-hook): Use it.
2150
2151 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
2152
02661b3a
SM
2153 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
2154 chose face.
2155 (log-edit-empty-buffer-p): Don't require a space after a header.
2156
43711d4b
SM
2157 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
2158
38a30d64
SM
2159 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
2160
4ffb41a9
SM
2161 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
2162 a proper minor-mode.
2163
98a5e33b
SM
2164 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
2165
de82e29b
GM
21662012-09-29 Glenn Morris <rgm@gnu.org>
2167
5cc2e639
GM
2168 * winner.el (winner-mode): Remove variable (let define-minor-mode
2169 handle it).
2170 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
2171 Doc fixes.
2172 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
2173 (winner-mode): Use define-minor-mode.
2174
7bd302eb
GM
2175 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
2176 the full definition in loaddefs, rather than duplicating it.
2177
2923922f 2178 * help-macro.el (three-step-help): No need to autoload defcustom.
ced08382 2179
0e3e4156
GM
2180 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
2181 (inferior-lisp-program, inferior-lisp-load-command)
2182 (inferior-lisp-prompt, inferior-lisp-mode-hook):
2923922f 2183 No need to autoload defcustoms.
0e3e4156 2184
de82e29b
GM
2185 * hippie-exp.el (hippie-expand-try-functions-list)
2186 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
2187 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
2188 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
2923922f 2189 (hippie-expand-only-buffers): No need to autoload defcustoms.
de82e29b
GM
2190 * progmodes/vhdl-mode.el (vhdl-line-expand):
2191 Explicitly load hippie-exp, so it does not get autoloaded
2192 while hippie-expand-try-functions-list is let-bound.
2193
e60b51ab
GM
21942012-09-28 Glenn Morris <rgm@gnu.org>
2195
277f0cfa
GM
2196 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
2197
e60b51ab
GM
2198 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
2199 Only "cl.el" counts as cl these days.
2200
53baf48a
JL
22012012-09-28 Juri Linkov <juri@jurta.org>
2202
2203 Display archive errors in the echo area instead of inserting
2204 to the file buffer.
2205
2206 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
2207 to STDERR-TEST that can be a regexp matching a successful output.
2208 Create a temporary file and redirect stderr to it. Search for
2209 STDERR-TEST in the stderr output and display it in the echo area
2210 if no match is found.
2211 (archive-extract-by-file): New function like
2212 `archive-extract-by-stdout' but extracting archives to files
2213 and looking for successful matches in stdout. Function body is
2214 mostly copied from `archive-rar-extract'.
2215 (archive-rar-extract): Use `archive-extract-by-file'.
2216 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
2217
9c1228c3
LL
22182012-09-28 Leo Liu <sdl.web@gmail.com>
2219
375e49d4
SM
2220 * pcomplete.el (pcomplete-show-completions):
2221 Use minibuffer-message to make pcomplete usable in minibuffer.
147c0425 2222
9c1228c3
LL
2223 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
2224
7f457c06
SM
22252012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2226
3df749b0
SM
2227 * type-break.el: Use lexical-binding.
2228 (type-break-mode): Use define-minor-mode.
2229
7f457c06
SM
2230 * emacs-lisp/pcase.el (pcase--mark-used): New.
2231 (pcase--u1): Use it (bug#12512).
2232
2233 * custom.el (load-theme): Set buffer-file-name so the load is recorded
2234 in load-history with the right file name.
2235
c00ebc98
TH
22362012-09-28 Tassilo Horn <tsdh@gnu.org>
2237
2238 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
2239 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
2240 (doc-view-get-bounding-box): Make bounding box slicing work for
2241 ODF and DVI documents.
2242
96fb7170
GM
22432012-09-28 Glenn Morris <rgm@gnu.org>
2244
2245 * type-break.el (type-break-mode, type-break-interval)
2246 (type-break-good-rest-interval, type-break-keystroke-threshold):
2247 No need to autoload.
2248 (type-break-good-rest-interval, type-break-keystroke-threshold):
2249 Add :set-after.
2250
5bc93c67
CY
22512012-09-28 Chong Yidong <cyd@gnu.org>
2252
2253 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
2254 Add :version tag.
2255
9cad61d6
SM
22562012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2257
e28e67b3 2258 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
9cad61d6 2259
daee954c
GM
22602012-09-27 Glenn Morris <rgm@gnu.org>
2261
a88324d4
GM
2262 * faces.el (x-display-name): Declare (for without-x builds).
2263
8e5064e5
GM
2264 * linum.el (linum-format): Don't autoload it. Improve :type.
2265
cc1783c2
GM
2266 * progmodes/tcl.el: Don't require outline when compiling.
2267 (outline-regexp, outline-level): Declare.
1dddcf4c
GM
2268 * textmodes/sgml-mode.el: Don't require outline when compiling.
2269 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
2270
48c339f2
GM
2271 * term.el (term-ansi-reset):
2272 Try setting term-ansi-face-already-done to nil. (Bug#11785)
2273
daee954c
GM
2274 * vc/vc.el (vc-next-action): Only gripe about committing read-only
2275 files for RCS and SCCS. (Bug#9781)
2276
b7f42161
CY
22772012-09-27 Chong Yidong <cyd@gnu.org>
2278
2279 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
2280 change; value should be t.
2281
a2e770db
SM
22822012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2283
83600dc8
SM
2284 * image-mode.el: Use lexical-binding.
2285 (image-mode-winprops): Use t to stand for the window of
2286 a buffer that's not displayed.
2287 * doc-view.el (doc-view-new-window-function): Handle the new
2288 t in winprops.
2289 (doc-view-enlarge): Make it a real nop if the size is not changed.
2290 (doc-view-display): Handle the case where the buffer is not (yet?)
2291 displayed in any window.
2292 (doc-view-saved-settings): New var.
2293 (doc-view-mode): Use it.
2294 (doc-view-fallback-mode): Set it.
2295
a2e770db
SM
2296 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
2297 Set lexical-binding.
2298 (minibuffer-eldef-shorten-default): New var.
2299 (minibuffer-default-in-prompt-regexps): Use it for new default.
2300 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
2301
e3b60857
JB
23022012-09-26 Juanma Barranquero <lekktu@gmail.com>
2303
2304 * international/uni-bidi.el:
2305 * international/uni-category.el:
2306 * international/uni-name.el:
2307 * international/uni-numeric.el: Regenerate.
2308
3a880af4
SM
23092012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2310 Stefan Monnier <monnier@iro.umontreal.ca>
2311
2312 * profiler.el: New file.
2313
07b1a5fb
SM
23142012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
2315
2316 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
2317 (testcover-reinstrument): Simplify with CSE.
2318
42019c2e
JB
23192012-09-26 Juanma Barranquero <lekktu@gmail.com>
2320
2321 * window.el (temp-buffer-window-setup): Fix typo in docstring.
2322
179f044b
WS
23232012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
2324
2325 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
2326 (verilog-auto-input, verilog-auto-insert-lisp)
2327 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
2328 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
2329 (verilog-auto-unused, verilog-auto-wire)
2330 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
2331 newline. Reported by Andrew Jones.
2332 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
2333 Reported by Brad Dobbie.
07b1a5fb
SM
2334 (verilog-batch-delete-trailing-whitespace):
2335 Create verilog-batch-delete-trailing-whitespace.
2336 Reported by Brad Dobbie.
179f044b
WS
2337 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
2338 parameters from another module. Reported by Dan Katz.
2339 (verilog-auto, verilog-auto-assign-modport)
2340 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
2341 AUTOINOUTMODPORT for UVM interface module shell generation.
2342 Reported by Brad Dobbie.
2343 (verilog-auto-inst-interfaced-ports): Make default nil, as more
2344 standard behavior.
2345 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
2346 Reported by Matt Martin.
2347
9c52dd5a
MR
23482012-09-25 Martin Rudalics <rudalics@gmx.at>
2349
2350 * window.el (window--resize-child-windows): When resizing child
2351 windows proportionally, process them in reverse order to
2352 preserve the "when splitting a window the new one gets the odd
2353 line" behavior.
2354 (window--resize-root-window-vertically): When resizing the
2355 minibuffer window try to affect only windows at the bottom of the
2356 frame. (Bug#12419)
2357
863666eb
CY
23582012-09-25 Chong Yidong <cyd@gnu.org>
2359
2360 * subr.el (declare): Doc fix.
2361
2362 * help-fns.el (help-fns--obsolete): Handle macros properly.
2363
59f7af81
CY
23642012-09-25 Chong Yidong <cyd@gnu.org>
2365
2366 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
2367 this function obsolete.
2368
2369 * calendar/cal-x.el (calendar-two-frame-setup)
2370 (calendar-only-one-frame-setup, calendar-one-frame-setup):
2371 * calendar/calendar.el (american-calendar, european-calendar)
2372 (calendar-for-loop):
2373 * comint.el (comint-dynamic-simple-complete)
2374 (comint-dynamic-complete-as-filename, comint-unquote-filename):
2375 * desktop.el (desktop-load-default):
2376 * dired-x.el (dired-omit-here-always)
2377 (dired-hack-local-variables, dired-default-directory):
2378 * emacs-lisp/derived.el (derived-mode-class):
2379 * emacs-lisp/timer.el (timer-set-time-with-usecs):
2380 * emacs-lock.el (toggle-emacs-lock):
2381 * epa.el (epa-display-verify-result):
2382 * epg.el (epg-sign-keys, epg-start-sign-keys)
2383 (epg-passphrase-callback-function):
2384 * eshell/esh-util.el (eshell-for):
2385 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
2386 (eshell-add-to-window-buffer-names):
2387 * files.el (locate-file-completion):
2388 * imenu.el (imenu-example--create-c-index)
2389 (imenu-example--create-lisp-index)
2390 (imenu-example--lisp-extract-index-name)
2391 (imenu-example--name-and-position):
2392 * international/mule-cmds.el (princ-list):
2393 * international/mule-diag.el (decode-codepage-char):
2394 * international/mule-util.el (detect-coding-with-priority):
2395 * iswitchb.el (iswitchb-read-buffer):
2396 * mail/mailalias.el (mail-complete):
2397 * mail/sendmail.el (mail-sent-via):
2398 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
2399 (mouse-major-mode-menu):
2400 * password-cache.el (password-read-and-add):
2401 * pcomplete.el (pcomplete-parse-comint-arguments):
2402 * progmodes/sh-script.el (sh-maybe-here-document):
2403 * replace.el (query-replace-regexp-eval):
2404 * savehist.el (savehist-load):
2405 * simple.el (choose-completion-delete-max-match):
2406 * term.el (term-dynamic-simple-complete):
2407 * vc/ediff-init.el (ediff-check-version):
2408 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
2409 * vc/vc.el (vc-diff-switches-list):
2410 * view.el (view-return-to-alist-update): Likewise.
2411
2412 * subr.el (eval-next-after-load, makehash, insert-string)
2413 (assoc-ignore-representation, assoc-ignore-case): Use declare to
2414 mark obsolete.
2415 (mode-line-inverse-video): Variable deleted.
2416
2417 * international/mule-util.el (string-to-sequence): Remove.
2418
2419 * calendar/calendar.el (calendar-version):
2420 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
2421 (icalendar-convert-diary-to-ical):
2422 * cus-edit.el (custom-mode):
2423 * ansi-color.el (ansi-color-unfontify-region):
2424 * international/latin1-disp.el (latin1-char-displayable-p):
2425 * progmodes/cwarn.el (turn-on-cwarn-mode):
07b1a5fb
SM
2426 * progmodes/which-func.el (which-func-update-1):
2427 Use define-obsolete-function-alias.
59f7af81
CY
2428
2429 * net/newst-backend.el (newsticker-cache-filename):
07b1a5fb
SM
2430 * net/newst-treeview.el (newsticker-groups-filename):
2431 Fix incorrect obsolescence declaration.
59f7af81
CY
2432
2433 * allout.el (allout-passphrase-hint-string): Likewise.
2434 (allout-init): Use a declare form to mark obsolete.
2435
2436 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
2437 this applies to functions.
2438
2439 * iswitchb.el (iswitchb-read-buffer): Move code of
2440 iswitchb-define-mode-map here, and delete that obsolete function.
2441
2442 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
2443 font-lock-reference-face.
2444
cca96c97
GM
24452012-09-25 Glenn Morris <rgm@gnu.org>
2446
b06eeda8
GM
2447 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
2448 Doc fixes.
2449
cca96c97
GM
2450 * eshell/em-term.el (eshell-term-name):
2451 Default to term-term-name. (Bug#12485)
2452
dc4f818b
FEG
24532012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2454
cca96c97
GM
2455 * progmodes/python.el (python-shell-send-buffer): Better handling
2456 of "if __name__ == '__main__':" conditionals when sending the buffer.
dc4f818b 2457
289c24bd
GM
24582012-09-24 Glenn Morris <rgm@gnu.org>
2459
2460 * eshell/esh-cmd.el (eshell-find-alias-function):
2461 Tighten up file-name regexp. (Bug#12499)
2462
8fb8b88f
FEG
24632012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2464
2465 Enhancements for triple-quote string syntax.
2466 * progmodes/python.el (python-quote-syntax): Remove.
2467 (python-syntax-propertize-function): New value.
07b1a5fb
SM
2468 (python-syntax-count-quotes, python-syntax-stringify):
2469 New functions.
8fb8b88f 2470
6c27f0f8
CY
24712012-09-24 Chong Yidong <cyd@gnu.org>
2472
a5f2b6ec
CY
2473 * mail/supercite.el (sc-version): Remove obsolete function.
2474 (sc-describe): Don't mark as obsolete, since it is bound.
2475 (sc-submit-bug-report): Remove.
2476
2477 * vc/log-edit.el (cvs-changelog-full-paragraphs)
2478 (cvs-commit-buffer-require-final-newline): Remove.
0c765e5f
CY
2479 (log-edit-require-final-newline)
2480 (log-edit-changelog-full-paragraphs): Default to t.
a5f2b6ec
CY
2481
2482 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
2483 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
2484 * vc/vc.el (vc-checkout-carefully): Likewise.
2485
2486 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
2487 (emerge-version): Remove.
2488
2489 * progmodes/compile.el (compile-internal): Remove.
2490 (compilation-parse-errors-function): Fix typo.
2491
2492 * international/mule.el (set-char-table-default): Remove.
2493 (set-coding-priority, make-coding-system, generic-char-p)
2494 (charset-list, charset-bytes, charset-id): Use declare to mark
2495 functions as obsolete.
2496
2497 * vc/pcvs-defs.el (cvs-buffer-name-alist)
2498 (cvs-invert-ignore-marks): Remove references to obsolete vars.
2499 * vc/vc-hooks.el (vc-default-registered): Don't use
2500 vc-master-templates.
2501
07b1a5fb
SM
2502 * font-lock.el (font-lock-reference-face):
2503 Use define-obsolete-variable-alias.
6c27f0f8
CY
2504
2505 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
2506 * calendar/calendar.el (calendar-font-lock-keywords):
2507 * calendar/diary-lib.el (diary-font-lock-keywords)
2508 (diary-fancy-font-lock-keywords):
2509 * textmodes/reftex-sel.el (reftex-insert-docstruct):
2510 * textmodes/reftex-index.el (reftex-insert-index):
2511 * textmodes/reftex-cite.el (reftex-format-bib-entry):
2512 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2513 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
2514 * progmodes/prolog.el (prolog-font-lock-keywords):
2515 * progmodes/idlwave.el (idlwave-idl-keywords):
2516 * progmodes/ada-mode.el (ada-font-lock-keywords):
2517 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
2518
bcc0adbf
GM
25192012-09-24 Glenn Morris <rgm@gnu.org>
2520
2521 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
2522
095bb823
FEG
25232012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
2524
2525 * progmodes/python.el (python-indent-line): More consistent cursor
2526 movement behavior.
2527
70efc5c9
SM
25282012-09-23 Stefan Merten <smerten@oekonux.de>
2529
2530 * textmodes/rst.el: Fix compiler warning.
2531
2f438239
RW
25322012-09-23 Roland Winkler <winkler@gnu.org>
2533
07b1a5fb
SM
2534 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
2535 Transcribe also LaTeX hyphenation.
2f438239
RW
2536 (bibtex-reformat): Bug fix. Do not quote twice the elements of
2537 bibtex-reformat-previous-options.
2538
936ad041
RW
25392012-09-23 Roland Winkler <winkler@gnu.org>
2540
2541 * proced.el (proced-renice-command): New variable.
2542 (proced-marked-processes): New function.
2543 (proced-with-processes-buffer): New macro.
2544 (proced-send-signal): Use them.
2545 (proced-renice): New command bound to r.
2546
6fab0274
RW
25472012-09-23 Roland Winkler <winkler@gnu.org>
2548
2549 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
2550 ibuffer-saved-filter-groups has one element, shortcut the call of
2551 completing-read. (Bug#12331)
2552
9a930676
CY
25532012-09-23 Chong Yidong <cyd@gnu.org>
2554
2555 * bindings.el (mode-line-toggle-read-only):
2556 * bs.el (bs-toggle-readonly):
2557 * buff-menu.el (Buffer-menu-toggle-read-only):
2558 * dired.el (dired-toggle-read-only):
2559 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
2560
d07ff9db
CY
25612012-09-23 Chong Yidong <cyd@gnu.org>
2562
2563 * image.el (image-type-available-p): Adapt to init-image-library
2564 argument changes.
2565
51c4474e
JL
25662012-09-22 Juri Linkov <juri@jurta.org>
2567
2568 * dired.el (dired-mode-map): Add [remap read-only-mode] for
2569 `dired-toggle-read-only'. (Bug#12462)
2570
43bf5e8e
MR
25712012-09-22 Martin Rudalics <rudalics@gmx.at>
2572
2573 * subr.el (temp-output-buffer-show): New function.
2574 (with-output-to-temp-buffer): Call temp-output-buffer-show
2575 instead of internal-temp-output-buffer-show.
2576
c88b867f
CY
25772012-09-22 Chong Yidong <cyd@gnu.org>
2578
3df47cd5
CY
2579 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
2580 (Bug#12462).
2581
c88b867f
CY
2582 * repeat.el (repeat): Doc fix (Bug#12348).
2583
2584 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
2585 (Bug#10909).
2586
2587 * simple.el (shell-command-on-region): Doc fix.
3171e303 2588 (read-only-mode): Doc fix.
c88b867f 2589
df9685f3
EZ
25902012-09-22 Eli Zaretskii <eliz@gnu.org>
2591
2592 * emacs-lisp/timer.el (run-with-idle-timer)
2593 (timer-activate-when-idle): Warn against reinvoking an idle timer
2594 from within its own timer action. (Bug#12447)
2595
8e17c9ba
MR
25962012-09-22 Martin Rudalics <rudalics@gmx.at>
2597
2598 * cus-start.el (window-combination-limit): Add new optional
2599 values.
2600 * window.el (temp-buffer-window-show)
2601 (window--try-to-split-window): Handle new values of
2602 window-combination-limit (Bug#1806).
2603 (split-window): Test window-combination-limit for t instead of
2604 non-nil.
2605 (display-buffer-at-bottom): New buffer display action function.
2606 * help.el (temp-buffer-resize-regexps): New option.
2607 (temp-buffer-resize-mode): Rewrite doc-string.
2608 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
bd909927 2609 Don't resize reused window. Suggested by Glenn Morris.
8e17c9ba 2610
48a24920
SM
26112012-09-22 Stefan Merten <smerten@oekonux.de>
2612
70efc5c9 2613 * textmodes/rst.el: Revamp section title faces.
48a24920
SM
2614 (rst-official-version)
2615 (rst-package-emacs-version-alist): Sync with official version
2616 V1.4.0.
2617 (rst-faces-defaults, rst-set-level-default)
2618 (rst-level-face-max, rst-level-face-base-color)
2619 (rst-level-face-base-light, rst-level-face-format-light)
2620 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
2621 (rst-adornment-faces-alist): Match new setup.
2622 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
2623 (rst-level-5, rst-level-6): New faces.
2624
82f8cd94
CY
26252012-09-22 Chong Yidong <cyd@gnu.org>
2626
2627 * simple.el (undo): Handle indirect buffers (Bug#8207).
2628
acfa068f 26292012-09-21 Leo Liu <sdl.web@gmail.com>
a8c14da8
LL
2630
2631 IDO: Disable match re-ordering for buffer switching.
2bc9406c 2632 * ido.el (ido-buffer-disable-smart-matches): New variable.
a8c14da8
LL
2633 (ido-set-matches-1): Use it. (Bug#2042)
2634
acfa068f 26352012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
a316d229
JM
2636
2637 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
2638 Fix 2011-05-17 change. (Bug#12418)
2639
acfa068f 26402012-09-21 Leo Liu <sdl.web@gmail.com>
d02e58f8
LL
2641
2642 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
2643
acfa068f 26442012-09-21 Glenn Morris <rgm@gnu.org>
511fd0b2
GM
2645
2646 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
2647 Be more robust about locating simple.el.
2648
acfa068f 26492012-09-21 Glenn Morris <rgm@gnu.org>
fa05bfe0
GM
2650
2651 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
2652
acfa068f
CY
26532012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
2654
2655 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
2656
41a97e6f
JL
26572012-09-20 Juri Linkov <juri@jurta.org>
2658
eb2deaff
JL
2659 * replace.el (query-replace-read-from): Use `read-regexp' instead
2660 of `read-from-minibuffer' when `regexp-flag' is non-nil.
2661 (occur-read-primary-args): Use `read-regexp' instead of
2662 `read-string'.
2663 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
2664 `read-from-minibuffer'.
2665 * isearch.el (isearch-occur): Use `read-regexp' instead of
2666 `read-string'.
2667 * dired.el (dired-read-regexp): Use `read-regexp' instead of
2668 `read-from-minibuffer'.
2669 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
2670 of `read-string'. (Bug#7567)
2671
5825610b
JL
2672 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
2673 and allow accepting a list of strings prepended to a list of
2674 standard default values. Doc fix. (Bug#12321)
2675
eebbf404
JL
2676 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
2677
41a97e6f
JL
2678 * replace.el (read-regexp): Don't add ": " when PROMPT already
2679 ends with a colon and space. (Bug#12321)
2680
c9e452d3
TH
26812012-09-20 Tassilo Horn <tsdh@gnu.org>
2682
2683 * doc-view.el (doc-view-display): Better fix for the cl-assertion
2684 error.
2685
ee97deee
SM
26862012-09-20 Stefan Merten <smerten@oekonux.de>
2687
70efc5c9 2688 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
ee97deee
SM
2689 Fixes feature request bug#11711.
2690 (rst-mode): Create `imenu-create-index-function'.
2691 (rst-get-stripped-line): Delete after refactoring.
2692 (rst-section-tree, rst-section-tree-rec)
2693 (rst-section-tree-point): Refactor and document properly.
2694 (rst-imenu-find-adornments-for-position)
07b1a5fb
SM
2695 (rst-imenu-convert-cell, rst-imenu-create-index):
2696 New function.
ee97deee 2697
f490dab9
SM
26982012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2699
95b9712e
SM
2700 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
2701 (macroexp--expand-all): Use it.
2702 (macroexp--funcall-and-return): Remove by folding it into its sole
2703 caller (macroexp--warn-and-return).
2704 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
2705 Use macroexp--obsolete-warning.
2706
f490dab9
SM
2707 * calc/calc.el: Fix last change by removing the whole chunk, since it
2708 was only needed back when Calc was not bundled.
2709
96e8d411
MR
27102012-09-20 Martin Rudalics <rudalics@gmx.at>
2711
2712 * emacs-lisp/debug.el (debug): Restore assignment to
2713 debugger-old-buffer removed on 2012-09-08.
2714
0876a82d
JL
27152012-09-20 Juri Linkov <juri@jurta.org>
2716
2717 * dired-aux.el (dired-diff): Remove (require 'diff) since
2718 `diff-latest-backup-file' is now autoloaded.
2719
9f7c28f0
CY
27202012-09-20 Chong Yidong <cyd@gnu.org>
2721
2722 * vc/diff.el (diff-latest-backup-file): Autoload.
2723
7a04bee9
SM
27242012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2725
e6f0a80d
SM
2726 * calc/calc.el: Remove redundant autoload shape check.
2727 (sel-mode): Don't defvar.
2728 (calc-get-stack-element): Add `sel-mode' arg instead.
2729 (calc-top, calc-top-list): Pass it this additional argument.
2730 * calc/calc-store.el (calc-store-map):
2731 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
2732 (calc-map-equation, calc-outer-product, calc-inner-product):
2733 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
2734
7a04bee9
SM
2735 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
2736
12734222
JL
27372012-09-19 Juri Linkov <juri@jurta.org>
2738
2739 * dired-aux.el (dired-diff): Add (require 'diff) because
2740 `diff-latest-backup-file' is not autoloaded.
2741 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
2742 of `dired-get-filename' to t to not report error when there is
2743 no default file on the current line.
2744
46624b4f
SM
27452012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2746
ce97595b
SM
2747 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
2748 macroexp--eval-if-compile.
2749 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
2750 (macroexp--expand-all): Use them (bug#12371).
2751
46624b4f
SM
2752 * doc-view.el (doc-view-guess-paper-size)
2753 (doc-view-scale-bounding-box): Fix unbound `caddr'.
2754
db8a5a18
TH
27552012-09-19 Tassilo Horn <tsdh@gnu.org>
2756
2757 New feature: set optimal slice from BoundingBox information.
2758 * doc-view.el (doc-view-mode-map): Add keybinding.
2759 (doc-view-menu): Add menu entry.
2760 (doc-view-set-slice): Adapt docstring.
2761 (doc-view-get-bounding-box, doc-view-guess-paper-size)
2762 (doc-view-scale-bounding-box)
2763 (doc-view-set-slice-from-bounding-box): New functions.
2764 (doc-view-paper-sizes): New defvar.
2765
69f6644c
GM
27662012-09-19 Glenn Morris <rgm@gnu.org>
2767
35f5b19d
GM
2768 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
2769 (byte-compile-log-warning): Autoload. (Bug#12371)
2770
69f6644c
GM
2771 * calendar/calendar.el (calendar-american-month-header)
2772 (calendar-european-month-header, calendar-iso-month-header)
2773 (calendar-month-header): New options.
2774 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
2775 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
2776
e543ae91
JD
27772012-09-19 Jan Djärv <jan.h.d@swipnet.se>
2778
2779 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
2780
2fd5e67d
JL
27812012-09-18 Juri Linkov <juri@jurta.org>
2782
2783 * dired-aux.el (dired-diff): Restore original functionality of
2784 getting the default value, but keep new feature of using the
2785 latest existing backup file (`diff-latest-backup-file').
2786
42917e79
JL
27872012-09-18 Juri Linkov <juri@jurta.org>
2788
2789 * dired.el (dired-mark): If the region is active in Transient Mark
2790 mode, mark all files in the active region. Doc fix.
2791 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
2792 Doc fix. (Bug#10624)
2793
20f70ede
JL
27942012-09-18 Juri Linkov <juri@jurta.org>
2795
2796 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
2797 attributes for M-n are pulled from the file at point.
2798 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
2799 Suggested by Drew Adams. (Bug#10624)
2800
32fb8162
DG
28012012-09-18 Dmitry Gutov <dgutov@yandex.ru>
2802
2803 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
2804 whitespace after "end".
2805 (ruby-do-end-to-brace): Collapse block to one line if it fits
2806 within fill-column.
2807
37ab5092
MR
28082012-09-18 Martin Rudalics <rudalics@gmx.at>
2809
2810 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
2811 value.
2812 (debug): Don't remove debugger window when debugger is expected
2813 to be back.
2814
ed1f0bd3
CY
28152012-09-18 Chong Yidong <cyd@gnu.org>
2816
2817 * custom.el (defface): Doc fix.
2818
2819 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
2820
a11035b8
MB
28212012-09-18 Martin Blais <blais@furius.ca> (tiny change)
2822
2823 * progmodes/compile.el (compilation-start): Use compilation-always-kill
2824 to initialize query-on-exit; then test that instead (bug#12288).
2825
64f6a736
SM
28262012-09-17 Stefan Merten <smerten@oekonux.de>
2827
70efc5c9 2828 * textmodes/rst.el: Add support for `testcover'.
64f6a736
SM
2829 (rst-defcustom-testcover, rst-testcover-add-compose)
2830 (rst-testcover-add-1value): New functions.
2831 (rst-portable-mark-active-p): Replace by `use-region-p'.
2832 (rst-update-section, rst-classify-adornment)
2833 (rst-find-title-line): Mark `1value' forms.
2834 (rst-classify-adornment): Remove superfluous form.
2835 (rst-update-section, rst-get-adornments-around)
2836 (rst-adornment-complete-p, rst-get-next-adornment)
2837 (rst-adjust, rst-promote-region)
2838 (rst-display-adornments-hierarchy, rst-straighten-adornments)
2839 (rst-find-pfx-in-region, rst-section-tree-rec)
2840 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
2841 (rst-toc-node, rst-toc, rst-forward-section)
2842 (rst-iterate-leftmost-paragraphs)
2843 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
2844 (rst-bullet-list-region)
2845 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
2846 (rst-compile-find-conf, rst-compile)
2847 (rst-repeat-last-character): Fix style.
2848
580bd868
CY
28492012-09-17 Chong Yidong <cyd@gnu.org>
2850
2851 * comint.el (comint--complete-file-name-data): Don't add a space
2852 if the status is `sole'; that adds a gratuitous space in the
2853 completion-cycling case (Bug#12092).
2854
2855 * pcomplete.el (pcomplete-completions-at-point): Likewise.
2856
69de3ec6
RS
28572012-09-17 Richard Stallman <rms@gnu.org>
2858
0dee970c
RS
2859 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
2860 only in the mime-shown mode, not in raw mode.
2861 (rmail-mime): Toggle off mime by displaying the message without
6b250df6 2862 mime processing. (Bug#12305)
0dee970c 2863
6b250df6
GM
2864 * mail/rmail.el (rmail-retry-failure):
2865 Turn off mime processing first. (Bug#12037)
acb1c47b 2866
69de3ec6
RS
2867 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
2868
d079ee5f
CY
28692012-09-17 Chong Yidong <cyd@gnu.org>
2870
2871 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
2872 (shell-dynamic-complete-functions): Convert to defcustom.
2873 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
2874
865fe16f
CY
2875 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
2876 * comint.el (comint-prompt-read-only):
2877 * custom.el (defcustom):
2878 * hi-lock.el (hi-lock-mode):
2879 * ibuffer.el (ibuffer-formats):
2880 * ielm.el (ielm-prompt-read-only):
2881 * novice.el (disable-command):
2882 * saveplace.el (toggle-save-place):
2883 * speedbar.el (speedbar-supported-extension-expressions):
2884 * startup.el (auto-save-list-file-prefix, init-file-user)
2885 (after-init-hook, inhibit-startup-echo-area-message):
2886 * strokes.el (strokes-help):
2887 * time-stamp.el (time-stamp):
2888 * calendar/calendar.el (calendar, diary-file):
2889 * calendar/diary-lib.el (diary-mail-entries, diary)
2890 (diary-list-entries-hook):
2891 * calendar/holidays.el (holidays, calendar-holidays):
2892 * calendar/lunar.el (lunar-phases):
2893 * calendar/solar.el (sunrise-sunset):
2894 * emulation/edt.el (edt-load-keys):
2895 * emulation/viper.el (viper-mode):
2896 * eshell/em-alias.el (eshell-command-aliases-list):
2897 * eshell/esh-util.el (eshell-convert-numeric-arguments):
2898 * international/ogonek.el (ogonek-information):
2899 * net/tramp-cmds.el (tramp-bug):
2900 * net/quickurl.el (quickurl-reread-hook-postfix):
2901 * play/decipher.el (decipher-font-lock-keywords):
2902 * progmodes/cc-styles.el (c-set-style):
2903 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
2904 * progmodes/inf-lisp.el (inferior-lisp-prompt):
2905 * progmodes/octave-mod.el (octave-mode):
2906 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
2907 * progmodes/verilog-mode.el (verilog-read-defines):
2908 * textmodes/two-column.el (2C-mode): Likewise.
2909
48093eb9
KY
29102012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
2911
2912 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
2913 that holds many addresses.
2914
c584eaf9
CY
29152012-09-16 Chong Yidong <cyd@gnu.org>
2916
40d70ecb
CY
2917 * align.el (align-areas): Call the indication function with
2918 positions instead of markers for arguments (Bug#12343).
2919
1667e065
CY
2920 * files.el (parse-colon-path): Use split-string (Bug#12351).
2921
fdc2806d 2922 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
71ce58e7 2923 (display-buffer-function): Mark as obsolete.
fdc2806d 2924
f1be615c 2925 * progmodes/compile.el (compilation-parse-errors): Accept list
ce97595b
SM
2926 values similar to font-lock-keywords (Bug#12136).
2927 Suggested by Oleksandr Manzyuk.
c584eaf9
CY
2928 (compilation-error-regexp-alist): Doc fix.
2929
f40a9709
GM
29302012-09-15 Glenn Morris <rgm@gnu.org>
2931
72aa16e1
GM
2932 * version.el (emacs-bzr-version-bzr): New function.
2933 (emacs-bzr-get-version): Add optional EXTERNAL argument.
2934
82375160
GM
2935 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
2936 checkouts, check the parent dirstate matches the branch.
2937 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
2938 empty string.
2939
f40a9709
GM
2940 * version.el (emacs-bzr-version): Doc fix.
2941 (emacs-bzr-version-dirstate): New function.
2942 (emacs-bzr-get-version): For lightweight checkouts, if the parent
2943 is local try and check that it matches the branch. If not, just
2944 use dirstate information. (Bug#12441)
2945
cb26b7f5
JL
29462012-09-14 Juri Linkov <juri@jurta.org>
2947
2948 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
2949 (Bug#12399)
2950
2de39f08
SM
29512012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2952
0fb3cb7c
SM
2953 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
2954
2de39f08
SM
2955 * emacs-lisp/edebug.el: Miscellaneous cleanup.
2956 Remove obsolete byte-compiler hack that tried to silence some warnings.
2957 (edebug-submit-bug-report): Remove.
2958 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
2959 Remove aliases, use the un-prefixed name instead.
2960 (edebug-pop-to-buffer): Consider other frames.
2961 (edebug-original-read):: Make it more obvious that it's always defined.
2962 (edebug--make-form-data-entry, edebug--form-data-name)
2963 (edebug--form-data-begin, edebug--form-data-end): Rename from the
2964 single-dashed name, and implement with cl-defstruct.
2965 (edebug-set-form-data-entry): Use the standard accessors.
2966 (edebug-make-top-form-data-entry): Use push.
2967 (edebug-no-match): Drop useless `funcall'.
2968 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
2969 to functions.
2970 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
2971 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
2972 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
2973 (easy-menu-define, with-custom-print): Remove redundant specs.
2974 (edebug-outside-overriding-local-map)
2975 (edebug-outside-overriding-terminal-local-map): Remove, unused.
2976 (edebug--display): Bind unread-command-events directly to nil rather
2977 than binding it to unread-command-events and later setting it to nil.
2978 (edebug--display): Kill edebug-eval-buffer here...
2979 (edebug--recursive-edit): ...rather than here.
2980 Bind standard-output and standard-input.
2981 (edebug-eval): Check cl-macroexpand-all is fboundp.
2982 (edebug-temp-display-freq-count): Fix last change.
2983
2984 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
2985 * subr.el (noreturn, 1value): Add `debug' spec.
2986 * emacs-lisp/advice.el: Require cl-lib.
2987 (ad-copy-tree): Remove, use copy-tree instead.
2988 (ad-dolist): Remove use dolist or cl-dolist instead.
2989 (ad-do-return): Remove, use cl-return instead.
2990 (defadvice): Add `debug' spec.
2991
5b68b333
JL
29922012-09-13 Juri Linkov <juri@jurta.org>
2993
2994 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
2995 (Bug#12399)
2996
b9800ec4
GM
29972012-09-13 Glenn Morris <rgm@gnu.org>
2998
6a2e6868
GM
2999 * calc/calc.el (math-compose-expr):
3000 * calc/calc-ext.el (math-compose-expr):
3001 * progmodes/cc-defs.el (cl-macroexpand-all):
3002 * progmodes/cc-langs.el (delete-duplicates, mapcan)
3003 (cl-macroexpand-all): Update declarations.
3004
b9800ec4
GM
3005 * vc/vc.el: No need to require ediff.
3006 (ediff-load-version-control): Declare.
3007 (ediff-vc-internal): Fix declaration.
3008 (vc-version-ediff): Require ediff.
3009
c18e885b
PE
30102012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3011
3012 Use a more backwards-compatible timer format (Bug#12430).
3013 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
3014 being right after USECS, as that better supports old code that
3015 inadvisedly looked directly at the timer vector.
3016
d607d303
KH
30172012-09-13 Kenichi Handa <handa@gnu.org>
3018
3019 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
3020 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
3021 `coding-priority' property of these language environment.
3022
72eac303
PE
30232012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3024
3025 Fix glitches caused by addition of psec to timers (Bug#12430).
3026 * image.el (image-animate-timer):
3027 * time.el (display-time-world-timer):
3028 Use timer--function and timer--args rather than raw access to
3029 timer vector.
3030
2168fe4f
GM
30312012-09-13 Glenn Morris <rgm@gnu.org>
3032
3033 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
3034 If not compiling a file, try using load-file-name.
3035
bd8d6108
SM
30362012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
3037
c0c54fbd
SM
3038 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
3039 Fix last change.
3040 (edebug-update-eval-list): Use `push'.
3041
bd8d6108
SM
3042 * emacs-lisp/edebug.el: Use lexical-binding.
3043 Remove the "edebug-" prefix from non-dynamically-scoped variables.
3044 Mark unused args with underscore.
3045 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
3046 (edebug-form-data): Use defvar-local.
3047 (edebug-make-before-and-after-form, edebug-make-after-form):
3048 Use backquote.
3049 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
3050 Not dynamically scoped any more.
3051 (edebug--enter-trace): Add arguments `function' and `args'.
3052 Rename from edebug-enter-trace.
3053 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
3054 (edebug--update-coverage): Add `after-index' and `value' args.
3055 Rename from edebug-update-coverage.
3056 (edebug-slow-after): Call it accordingly.
3057 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
3058 edebug-recursive-edit.
3059 (edebug--display): Call it accordingly. Add args `value',
3060 `offset-index', and `arg-mode'. Rename from edebug-display.
3061 (edebug-debugger, edebug): Call it accordingly.
3062 (edebug-eval-display-list): Use dolist.
3063
a9f9d9de
JL
30642012-09-12 Juri Linkov <juri@jurta.org>
3065
3066 * info.el (Info-search): Don't check for isearch-mode and
3067 isearch-regexp before let-binding search-spaces-regexp to
3068 Info-search-whitespace-regexp.
3069 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
3070 search-whitespace-regexp if isearch-lax-whitespace or
3071 isearch-regexp-lax-whitespace is non-nil.
3072 (Info-mode): Don't set local variable search-whitespace-regexp.
3073 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
3074
bfeae2cf
SM
30752012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3076
3077 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
3078 (debugger-env-macro): Remove support for unread-command-char.
3079
3080 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
3081 the temporary map re-appearing on emulation-mode-map-alists.
3082
3083 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
3084 since 22.1.
3085
3086 * ehelp.el (with-electric-help): Accept functions in
3087 electric-help-form-to-execute.
3088 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
3089 And replace unread-command-char -> unread-command-events.
3090
fbbcaf1b
MA
30912012-09-12 Michael Albinus <michael.albinus@gmx.de>
3092
3093 Sync with Tramp 2.2.6.
3094
3095 * net/tramp.el (tramp-accept-process-output): Don't use
3096 JUST-THIS-ONE in the XEmacs case.
3097
3098 * net/trampver.el: Update release number.
3099
4dece104
MR
31002012-09-12 Martin Rudalics <rudalics@gmx.at>
3101
bfeae2cf
SM
3102 * emacs-lisp/debug.el (debugger-previous-window-height):
3103 New variable.
4dece104
MR
3104 (debug): When debugger-jumping-flag is non-nil try to restore
3105 height of debugger window. (Bug#8789)
3106
45b82ad0
SM
31072012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3108
60c49c0f
SM
3109 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
3110 overriding-local-map and pre/post-command-hook here.
3111 (edebug-recursive-edit): Do it here instead (bug#12345).
3112 (edebug-outside-unread-command-char): Remove all uses of
3113 unread-command-char.
3114
45b82ad0
SM
3115 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
3116 inhibit-debugger is bound instead.
3117
baa26ea0
BG
31182012-09-11 Bastien Guerry <bzg@gnu.org>
3119
3120 * subr.el (set-temporary-overlay-map): Add a docstring.
fc0c31f8 3121 (Bug#12346)
baa26ea0 3122
04e8abfa
BG
31232012-09-11 Bastien Guerry <bzg@gnu.org>
3124
96d03571 3125 * minibuffer.el (completion-table-subvert): Fix docstring.
fc0c31f8 3126 (Bug#12347)
96d03571
BG
3127
31282012-09-11 Bastien Guerry <bzg@gnu.org>
3129
fc0c31f8 3130 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
04e8abfa 3131
04e082b0
MM
31322012-09-10 Michael R. Mauger <mmaug@yahoo.com>
3133
3134 * progmodes/sql.el: Version 3.1
3135 (sql-db2-escape-newlines): New variable.
3136 (sql-escape-newlines-filter): Use it.
3137
399a361b
JB
31382012-09-10 Juanma Barranquero <lekktu@gmail.com>
3139
3140 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
3141
0780c517
DN
31422012-09-10 Dan Nicolaescu <dann@gnu.org>
3143
45b82ad0
SM
3144 * vc/diff-mode.el (diff-mode-menu):
3145 Bind diff-remove-trailing-whitespace.
0780c517 3146
9b851e25
SM
31472012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
3148
3149 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
fc0c31f8
JB
3150 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
3151 (emacs-lisp-byte-code-mode): New functions.
9b851e25
SM
3152 (eval-sexp-add-defvars): Don't skip defvars in column >0.
3153 (eval-defun-2): Remove bogus interactive spec.
3154 (lisp-indent-line): Remove redundant whole-exp code, now done in
3155 indent-according-to-mode.
3156 (save-match-data): Remove redundant indent data.
3157
3158 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
3159 Use `declare'.
3160
3231d532
JL
31612012-09-09 Juri Linkov <juri@jurta.org>
3162
3163 * replace.el (replace-regexp-lax-whitespace): New defcustom.
3164 (replace-lax-whitespace, query-replace-regexp)
3165 (query-replace-regexp-eval, replace-regexp): Doc fix.
3166 (perform-replace, replace-highlight): Let-bind
3167 isearch-lax-whitespace to replace-lax-whitespace and
3168 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
3169
3170 * isearch.el (isearch-query-replace): Let-bind
3171 replace-lax-whitespace to isearch-lax-whitespace and
3172 replace-regexp-lax-whitespace to
3173 isearch-regexp-lax-whitespace. (Bug#10885)
3174
70fe8236
SM
31752012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3176
3177 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
3178
8ed43f15
AM
31792012-09-09 Alan Mackenzie <acm@muc.de>
3180
70fe8236
SM
3181 * progmodes/cc-engine.el (c-state-cache-init):
3182 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
3183 (c-record-parse-state-state):
3184 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
8ed43f15 3185
bfabf70a
AS
31862012-09-09 Andreas Schwab <schwab@linux-m68k.org>
3187
3188 * register.el (register-separator): Rename from
3189 separator-register. All uses changed. Doc fix.
3190 (register): Fix version.
3191
011474aa
CY
31922012-09-09 Chong Yidong <cyd@gnu.org>
3193
3194 * replace.el (query-replace-map): Bind four new symbols for
3195 requesting window scrolling.
3196
3197 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
3198 query-replace-map (Bug#8948).
3199
3200 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
3201
3202 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
3203 since they are now in query-replace-map.
3204
3205 * window.el (scroll-other-window-down): Make the arg optional.
3206
a8b7cd8d
CY
32072012-09-09 Chong Yidong <cyd@gnu.org>
3208
3209 * files.el (hack-local-variables-confirm): Use quit-window to kill
3210 the *Local Variables* buffer.
3211
c3268831
DG
32122012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3213
3214 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
3215 not just expect to be at its beginning. Adjust callees.
3216 Succeed when do-end block has no space before the pipe character.
3217 (ruby-brace-to-do-end): When the original block is one-liner,
3218 convert to multiline. Reindent the result.
3219
0979429b
J
32202012-09-08 Jambunathan K <kjambunathan@gmail.com>
3221
3222 * register.el (register): New group.
27359e99 3223 (separator-register): New user option.
0979429b
J
3224 (increment-register): Route it to `append-to-register', if
3225 register contains text. Implication is that `C-x r +' can now be
3226 used for appending to a text register (bug#12217).
3227 (append-to-register, prepend-to-register): Add separator based on
5b9c45a6 3228 `separator-register'.
0979429b 3229
ace2989a
AM
32302012-09-08 Alan Mackenzie <acm@muc.de>
3231
3232 AWK Mode: make auto-newline work when there's "==" in the pattern.
3233 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
3234 correctly.
0979429b
J
3235 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
3236 Test more rigorously for "=" token.
ace2989a 3237
616c6c36
DG
32382012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3239
0979429b
J
3240 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
3241 Only fail when reached LIMIT.
616c6c36 3242
35d98877
CY
32432012-09-08 Chong Yidong <cyd@gnu.org>
3244
3245 * dired.el (dired-mode-map): Don't bind M-=.
3246
3247 * dired-aux.el (dired-diff): Use backup file as default.
3248
1715f2db
DA
32492012-09-08 Drew Adams <drew.adams@oracle.com>
3250
3251 * subr.el (add-to-history): Fix delete usage (Bug#12314).
3252
6dcef6ec
CY
32532012-09-08 Chong Yidong <cyd@gnu.org>
3254
3255 * subr.el (syntax-after, syntax-class): Doc fix.
3256
fa2bcf43
MR
32572012-09-08 Martin Rudalics <rudalics@gmx.at>
3258
3259 * window.el (display-buffer-in-previous-window): New buffer
3260 display action function.
3261
3262 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
3263 (debugger-previous-window): New variable.
3264 (debug): Rewrite using display-buffer-in-previous-window,
3265 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
3266
daac280a
SM
32672012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3268
3269 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
3270
9dd40b00
MM
32712012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
3272
daac280a
SM
3273 * progmodes/python.el (python-shell-send-string):
3274 When default-directory is remote, create temp file on remote
9dd40b00
MM
3275 filesystem.
3276 (python-shell-send-file): When file is remote, pass local view of
3277 file paths to remote Python interpreter. (Bug#12340)
3278
145823ec
CY
32792012-09-07 Chong Yidong <cyd@gnu.org>
3280
cee2e90d
CY
3281 * window.el (switch-to-buffer): Doc fix (Bug#12181).
3282
0d7eb2ea
CY
3283 * files.el (after-find-file): Don't fail on a read-only buffer if
3284 require-final-newline is `visit' or `visit-save' (Bug#11156).
3285
145823ec
CY
3286 * subr.el (read-char-choice): Allow quitting via ESC ESC.
3287
daac280a
SM
3288 * userlock.el (ask-user-about-supersession-threat):
3289 Use read-char-choice (Bug#12093).
145823ec 3290
74c582e6
CY
32912012-09-07 Chong Yidong <cyd@gnu.org>
3292
e5c2edf7
CY
3293 * subr.el (buffer-narrowed-p): New function.
3294
3295 * ses.el (ses-widen):
3296 * simple.el (count-words--buffer-message):
1f9f395d 3297 * net/browse-url.el (browse-url-of-buffer): Use it.
e5c2edf7
CY
3298
3299 * simple.el (count-words-region): Don't signal an error if there
3300 is a non-nil prefix arg and the mark is not set.
c640e87d 3301
74c582e6
CY
3302 * help.el (describe-key-briefly): Allow the message to be seen
3303 when invoked from the minibuffer (Bug#7014).
3304
d81ceaaf
DG
33052012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3306
3307 * progmodes/ruby-mode.el (ruby-end-of-defun)
3308 (ruby-beginning-of-defun): Simplify, allow indentation before
3309 block beginning and end keywords.
8f06acce
DG
3310 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
3311 (ruby-end-of-defun): Expect that the point is at the beginning of
3312 the defun.
d81ceaaf 3313
d458ef98
SM
33142012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
3315
3316 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
3317 (bug#12367).
3318 (cl--make-usage-args): Strip _ from argument names.
3319
20367d28
RS
33202012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3321
3322 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
3323 obsolete alias speedbar-key-map.
3324 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
3325 (vhdl-index-menu-init): Don't use obsolete variable
3326 font-lock-maximum-size.
3327
3424a4f6
CY
33282012-09-06 Chong Yidong <cyd@gnu.org>
3329
3330 * frame.el (window-system-version): Mark as obsolete.
3331
fcbfbdea
CY
3332 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
3333 of obsolete variable speedbar-key-map.
3334
826b3235
JL
33352012-09-06 Juri Linkov <juri@jurta.org>
3336
3337 * replace.el (replace-lax-whitespace): New defcustom.
3338 (query-replace, query-replace-regexp, query-replace-regexp-eval)
3339 (replace-string, replace-regexp): Mention it in docstrings.
3340 (perform-replace, replace-highlight): Let-bind
3341 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
3342 to the values of replace-lax-whitespace and regexp-flag.
3343 Don't let-bind search-whitespace-regexp. (Bug#10885)
3344
3345 * isearch.el (isearch-query-replace): Let-bind
3346 replace-lax-whitespace instead of let-binding
3347 replace-search-function and replace-re-search-function.
3348 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
3349 and isearch-regexp-lax-whitespace to lazy-highlight variables.
3350 (isearch-toggle-symbol): Set isearch-regexp to nil
3351 in isearch-word mode (like in isearch-toggle-word).
3352
1ec5e41d
JL
33532012-09-06 Juri Linkov <juri@jurta.org>
3354
3355 * replace.el (replace-search-function)
3356 (replace-re-search-function): Set default values to nil.
3357 (perform-replace): Let-bind isearch-related variables based on
3358 replace-related values, call `isearch-search-fun' and let-bind
3359 the result to `search-function'. Remove code that sets
3360 `search-function' and `search-string' separately for
3361 `delimited-flag'.
3362 (replace-highlight): Add new argument `delimited-flag' and
3363 rename other arguments to the names used in `perform-replace'.
3364 Let-bind `isearch-word' to the argument `delimited-flag'.
3365 (Bug#10885, bug#10887)
3366
0ba2d4b6
DG
33672012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3368
3369 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
3370 ruby-beginning-of-indent, simplify, allow all keywords to have
3371 indentation before them.
3372 (ruby-beginning-of-indent): Adjust for above. Search until the
3373 found point is not inside a string or comment.
3374 (ruby-font-lock-keywords): Allow symbols to start with "@"
3375 character, give them higher priority than variables.
3376 (ruby-syntax-propertize-function)
3377 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
3378 matchers. Expression expansions are not comments when inside a
3379 string, and there comment syntax status is irrelevant.
3380 (ruby-match-expression-expansion): New function. Check that
3381 expression expansion is inside a string, and it's not escaped.
3382 (ruby-font-lock-keywords): Use it.
3383
ef654460
MR
33842012-09-05 Martin Rudalics <rudalics@gmx.at>
3385
3386 * help.el (temp-buffer-max-height): New default value.
3387 (temp-buffer-resize-frames): New option.
3388 (resize-temp-buffer-window): Optionally resize frame.
3389
3390 * window.el (fit-frame-to-buffer-bottom-margin): New option.
3391 (fit-frame-to-buffer): New function.
3392
7e570fbf 33932012-09-05 Glenn Morris <rgm@gnu.org>
72308848
GM
3394
3395 * emulation/cua-rect.el (cua--init-rectangles):
3396 * textmodes/picture.el (picture-mode-map):
3397 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
3398 like forward-char and backward-char. (Bug#12317)
3399
7e570fbf 34002012-09-05 Leo Liu <sdl.web@gmail.com>
3aca1291
LL
3401
3402 * progmodes/flymake.el (flymake-warning-re): New variable.
3403 (flymake-parse-line): Use it.
3404
7e570fbf 34052012-09-05 Glenn Morris <rgm@gnu.org>
b6683353
GM
3406
3407 * calendar/holidays.el (holiday-christian-holidays):
3408 Rename an entry. (Bug#12289)
3409
7e570fbf 34102012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
64f8c4bd
SM
3411
3412 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
3413 (bug#12222).
3414
972debf2
SM
34152012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
3416
3417 * loadup.el: Load macroexp. Remove hack.
3418 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
3419 (macroexp--expand-all): Use it to get better warnings.
3420 (macroexp--backtrace, macroexp--trim-backtrace-frame)
3421 (internal-macroexpand-for-load): New functions.
3422 (macroexp--pending-eager-loads): New var.
3423 (emacs-startup-hook): New hack to replace one in loadup.el.
3424 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
3425 (cl--compiler-macro-cXXr): Move to top, before they can be used.
3426 (cl-psetf): Simplify.
3427 (cl-defstruct): Add indent rule.
3428
8ce192e3
LI
34292012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
3430
3431 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
3432 over `user-mail-address' for the SMTP MAIL FROM envelope.
3433 (smtpmail-via-smtp): Ditto.
3434
6578b4d8
DG
34352012-09-04 Dmitry Gutov <dgutov@yandex.ru>
3436
3437 * progmodes/ruby-mode.el: Clean up keybindings.
3438 (ruby-mode-map): Don't bind ruby-electric-brace,
3439 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
3440 backward-kill-word, reindent-then-newline-and-indent.
3441 (ruby-mark-defun): Remove.
3442 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
3443 (ruby-mode): Set local beginning-of-defun-function and
3444 end-of-defun-function values.
3445
c5e28e39
MR
34462012-09-03 Martin Rudalics <rudalics@gmx.at>
3447
3448 * window.el (temp-buffer-window-setup-hook)
3449 (temp-buffer-window-show-hook): New hooks.
3450 (temp-buffer-window-setup, temp-buffer-window-show)
3451 (with-temp-buffer-window): New functions.
972debf2
SM
3452 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
3453 (special-display-popup-frame): Make sure the window used shows BUFFER.
c5e28e39
MR
3454
3455 * help.el (temp-buffer-resize-mode): Fix doc-string.
3456 (resize-temp-buffer-window): New optional argument WINDOW.
3457
3458 * files.el (recover-file, save-buffers-kill-emacs):
3459 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
3460
73406194
MA
34612012-09-02 Michael Albinus <michael.albinus@gmx.de>
3462
3463 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
3464 remote definition of `default-directory', ensure we can connect.
3465
63dd1c6f
JL
34662012-09-02 Juri Linkov <juri@jurta.org>
3467
3468 Toggle whitespace matching mode with M-s SPC.
3469 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
3470
3471 * isearch.el (search-whitespace-regexp): Doc fix.
3472 Remove cons cell customization.
3473 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
3474 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
3475 New variables.
3476 (isearch-forward, isearch-forward-regexp): Doc fix.
3477 (isearch-toggle-lax-whitespace): New command.
3478 (search-forward-lax-whitespace, search-backward-lax-whitespace)
3479 (re-search-forward-lax-whitespace)
3480 (re-search-backward-lax-whitespace): New functions.
3481 (isearch-whitespace-regexp): Remove function.
3482 (isearch-query-replace): Let-bind replace-search-function and
3483 replace-re-search-function.
3484 (isearch-occur): Let-bind search-spaces-regexp according to the
3485 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
3486 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
3487 condition for C-q SPC.
3488 (isearch-search-fun-default): Use new functions mentioned above.
3489 (isearch-search-forward, isearch-search-backward): Remove functions.
3490 (isearch-search): Don't let-bind search-spaces-regexp.
3491 (isearch-lazy-highlight-space-regexp): Remove variable.
3492 (isearch-lazy-highlight-lax-whitespace)
3493 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
3494 (isearch-lazy-highlight-new-loop): Use them.
3495 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
3496
af7dda05
CY
34972012-09-02 Chong Yidong <cyd@gnu.org>
3498
3499 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
3500
d67d3afd
GM
35012012-09-02 Glenn Morris <rgm@gnu.org>
3502
3503 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
3504
69678719
GM
35052012-09-01 Glenn Morris <rgm@gnu.org>
3506
3507 * term.el: Tidy up menu definitions.
3508 (term-mode-map): Use easymenu for In/Out, Complete menus.
3509 (term-pager-break-map): Initialize in the defvar.
3510 (term-terminal-menu, term-signals-menu): Define with easymenu.
3511 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
3512 (term-pager-menu): New, extracted from term-process-pager.
3513 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
3514 (term-update-mode-line): Propertize line/char and page items.
3515 (term-process-pager): Move keymap initialization elsewhere.
3516
78dd6ab1
MR
35172012-09-01 Martin Rudalics <rudalics@gmx.at>
3518
3519 * window.el (switch-to-prev-buffer): Handle additional values of
3520 BURY-OR-KILL argument. Don't switch in minibuffer window.
3521 (switch-to-next-buffer): Don't switch in minibuffer window.
3522 (quit-restore-window): New function based on quit-window.
3523 Handle additional values of former KILL argument.
3524 (quit-window): Call quit-restore-window with appropriate
3525 interpretation of KILL argument.
3526 (display-buffer-below-selected): New buffer display action
3527 function.
3528
3d10e134
SM
35292012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3530
3531 * minibuffer.el (completion-at-point-functions): Complete docstring
3532 (bug#12254).
3533
0e23ef9d
PE
35342012-09-01 Paul Eggert <eggert@cs.ucla.edu>
3535
3536 Better seed support for (random).
3537 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
3538 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
3539 * play/mpuz.el, play/tetris.el, play/zone.el:
3540 * calc/calc-comb.el (math-init-random-base):
3541 * play/blackbox.el (bb-init-board):
3542 * play/life.el (life):
3543 * server.el (server-use-tcp):
3544 * type-break.el (type-break):
3545 Remove unnecessary call to (random t).
3546 * net/sasl.el (sasl-unique-id-function):
3547 Change (random t) to (random), now that the latter is more random.
3548 * play/life.el (life-initialized): Remove no-longer-needed var.
3549
862382df
MR
35502012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
3551
3552 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
3553 Consider frame's buffer predicate when choosing the buffer.
3554 (Bug#12081)
3555
262a66e1
RS
35562012-08-30 Richard Stallman <rms@gnu.org>
3557
3558 * simple.el (special-mode-map): Delete binding for `z'.
3559
f17e1d00
AS
35602012-08-30 Andreas Schwab <schwab@linux-m68k.org>
3561
3562 * progmodes/compile.el (compilation-always-kill): Doc fix.
3563
24777832
CY
35642012-08-30 Chong Yidong <cyd@gnu.org>
3565
3566 * window.el (display-buffer-reuse-frames): Make the obsolescence
3567 message more informative.
3568
69ba1f04
GM
35692012-08-30 Glenn Morris <rgm@gnu.org>
3570
3571 * paren.el (show-paren-delay):
3572 Add a :set function. Doc fix. (Bug#12297)
3573
f0019ede
MB
35742012-08-29 Martin Blais <blais@furius.ca> (tiny change)
3575
3576 * progmodes/compile.el (compilation-always-kill): New var.
3577 (compilation-start): Use it.
3578
35e62fc9
SM
35792012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
3580
af070a1c
SM
3581 * simple.el (read-only-mode): Move from files.el for bootstrapping.
3582 * files.el (read-only-mode): Move to simple.el.
3583
35e62fc9
SM
3584 * files.el (read-only-mode): New minor mode.
3585 (toggle-read-only): Use it and mark obsolete.
3586 (find-file--read-only):
3587 * vc/vc.el (vc-next-action, vc-checkout):
3588 * vc/vc-cvs.el (vc-cvs-checkout):
3589 * obsolete/vc-mcvs.el (vc-mcvs-update):
3590 * ffap.el (ffap--toggle-read-only): Update callers.
3591
c2c43c23
MA
35922012-08-29 Michael Albinus <michael.albinus@gmx.de>
3593
3594 * eshell/esh-ext.el (eshell-external-command): Do not examine
972debf2
SM
3595 remote shell scripts.
3596 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
c2c43c23
MA
3597
3598 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
3599 "/usr/local/sbin".
3600
9fba804b
SM
36012012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3602
3603 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
3604
eada0861 36052012-08-28 Leo Liu <sdl.web@gmail.com>
22ab32ef 3606
806f0cc7
LL
3607 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
3608 completion-at-point. (Bug#12220)
3609
3bb213b9
LL
3610 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
3611
22ab32ef
LL
3612 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
3613
eada0861 36142012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
db148c21 3615
19c17fc1
CY
3616 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
3617 be buffer-local; add delete-trailing-whitespace (bug#12259).
db148c21 3618
eada0861 36192012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
ffe6eaf1
JM
3620
3621 * progmodes/hideif.el (hif-compress-define-list):
3622 Fix typo. (Bug#11951)
3623
eada0861 36242012-08-28 Dan Nicolaescu <dann@gnu.org>
d30aca1b
DN
3625
3626 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
3627 buffer local setting.
3628
27d6c5a8
LL
3629 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
3630 rcirc-encode-coding-system.
3631
eada0861 36322012-08-28 Leo Liu <sdl.web@gmail.com>
4432d2e2
LL
3633
3634 * net/rcirc.el (rcirc-split-message): New function.
3635 (rcirc-send-message): Use it. (Bug#12051)
3636
d44688e4
JL
36372012-08-28 Juri Linkov <juri@jurta.org>
3638
3639 * info.el (Info-fontify-node): Hide empty lines at the end of
3640 the node. (Bug#12272)
3641
34f10d41
MR
36422012-08-27 Drew Adams <drew.adams@oracle.com>
3643
3644 * dired.el (dired-pop-to-buffer): Make window start at beginning
3645 of buffer (Bug#12281).
3646
77f1f99c
CY
36472012-08-26 Chong Yidong <cyd@gnu.org>
3648
3649 * window.el (special-display-regexps, special-display-frame-alist)
3650 (special-display-buffer-names, special-display-function)
3651 (display-buffer-reuse-frames): Mark as obsolete.
3652
3653 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
3654
3655 * help.el (help-print-return-message): Don't treat
3656 display-buffer-reuse-frames specially.
3657
d97af5a0
CY
36582012-08-26 Chong Yidong <cyd@gnu.org>
3659
9fba804b
SM
3660 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
3661 New variable, replacing gdb-frame-parameters.
d97af5a0
CY
3662 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
3663 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
3664 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
3665 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
3666 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
3667 the functions directly with gdb-display-buffer-other-frame-action.
3668 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
3669 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
3670 (gdb-display-stack-buffer, gdb-display-locals-buffer)
3671 (gdb-display-registers-buffer): Define directly.
3672 (def-gdb-display-buffer): Macro deleted.
3673 (gdb-display-buffer): Remove second and third args, callers don't
3674 use them. Defer to the default display-buffer behavior, apart
3675 from making windows dedicated.
3676 (gdb-setup-windows): Don't call display-buffer unnecessarily.
3677
3678 * progmodes/gud.el (gud-display-line): Just use display-buffer.
3679
3680 * window.el (display-buffer-pop-up-frame): Handle a
3681 pop-up-frame-parameters alist entry.
3682 (display-buffer): Document it.
3683
dd7ffad6
CY
36842012-08-26 Chong Yidong <cyd@gnu.org>
3685
3686 * isearch.el (search-whitespace-regexp): Make string and nil
3687 values apply to both ordinary and regexp search. Allow a cons
3688 cell value to distinguish between the two.
3689 (isearch-whitespace-regexp, isearch-search-forward)
3690 (isearch-search-backward): New functions.
3691 (isearch-occur, isearch-search-fun-default, isearch-search)
3692 (isearch-lazy-highlight-new-loop): Use them.
3693 (isearch-forward, isearch-forward-regexp): Doc fix.
3694
4c47bd1e
CY
36952012-08-26 Chong Yidong <cyd@gnu.org>
3696
3697 * faces.el (help-argument-name): Always inherit from italic
3698 (Bug#12213).
3699
9aba119d
MR
37002012-08-25 Martin Rudalics <rudalics@gmx.at>
3701
3702 * window.el (window--even-window-heights): Even heights when
3703 WINDOW and the selected window form a vertical combination.
3704 (display-buffer-use-some-window): Provide that window used gets
3705 sized back by quit-window. (Bug#11880) and (Bug#12091)
3706
ca5256ad
PE
37072012-08-24 Paul Eggert <eggert@cs.ucla.edu>
3708
3709 Fix file time stamp problem with bzr and CVS (Bug#12001).
3710 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
3711 in the file's time stamp, since the version control system loses
3712 that information.
3713
d1c0d176
JL
37142012-08-22 Juri Linkov <juri@jurta.org>
3715
3716 * info.el (Info-fontify-node): Hide the suffix of the
3717 Info file name in the header line. (Bug#12187)
3718
141562ff
GM
37192012-08-22 Glenn Morris <rgm@gnu.org>
3720
3721 * calendar/cal-tex.el (cal-tex-weekly-common):
3722 Restore leading blank page.
3723
61a48e19 37242012-08-22 Le Wang <l26wang@gmail.com> (tiny change)
add9ca2d
BG
3725
3726 * misc.el (forward-to-word, backward-to-word): Activate or extend
61a48e19
GM
3727 the region under `shift-select-mode'. (Bug#12231)
3728
37292012-08-22 Bastien Guerry <bzg@gnu.org>
0fcd3d9f
BG
3730
3731 * progmodes/executable.el (executable-prefix): Set to "#!" instead
3732 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
3733 gives details on why the space is never needed.
3734
ea95074e
MR
37352012-08-22 Martin Rudalics <rudalics@gmx.at>
3736
9fba804b
SM
3737 * window.el (walk-window-tree, window-with-parameter):
3738 New optional argument MINIBUF to control whether these functions
ea95074e
MR
3739 should run on the minibuffer window.
3740 (window-at-side-list): Don't operate on minibuffer window.
3741 (window-in-direction): Simplify and rewrite doc-string.
9fba804b
SM
3742 (window--size-ignore): Rename to window--size-ignore-p.
3743 Update callers.
caceae25
MR
3744 (display-buffer-in-atom-window, window--major-non-side-window)
3745 (window--major-side-window, display-buffer-in-major-side-window)
9fba804b
SM
3746 (delete-side-window, display-buffer-in-side-window):
3747 New functions.
caceae25
MR
3748 (window--side-check, window-deletable-p, delete-window)
3749 (delete-other-windows, split-window): Handle side windows and
3750 atomic windows appropriately.
3751 (window--display-buffer): Call display-buffer-record-window also
3752 when the window buffer did not change.
ea95074e 3753
80a51fa0
CS
37542012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
3755
3756 * help-fns.el (help-fns--key-bindings):
3757 Abbreviate non-symbol remap targets. (Bug#12174)
3758
fbb6300b
MR
37592012-08-22 Martin Rudalics <rudalics@gmx.at>
3760
3761 * dired.el (dired-mark-remembered): Don't clobber point.
3762 (Bug#11795)
3763
2b2c0794
GM
37642012-08-22 Glenn Morris <rgm@gnu.org>
3765
3766 * progmodes/bug-reference.el (bug-reference): New custom group.
3767 (bug-reference-bug-regexp): Make it a defcustom.
3768
37219830
DU
37692012-08-22 Daiki Ueno <ueno@unixuser.org>
3770
3771 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
3772 (js-paren-indent-offset, js-square-indent-offset)
3773 (js-curly-indent-offset): Add :safe (Bug#12257).
3774
94e0e559
EC
37752012-08-22 Edward O'Connor <hober0@gmail.com>
3776
3777 * json.el (json-key-format): Add error properties.
3778 (json-encode-key): New function.
3779 (json-encode-hash-table, json-encode-alist, json-encode-plist):
3780 Use json-encode-key.
3781
da485f5e
GM
37822012-08-22 Glenn Morris <rgm@gnu.org>
3783
3784 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
3785 (cal-tex-leftday, cal-tex-rightday): Remove functions.
3786 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
3787 Update for above change.
3788
c6cc78b8
AS
37892012-08-21 Andreas Schwab <schwab@linux-m68k.org>
3790
3791 * cus-face.el (custom-face-attributes): Fix customize type for the
3792 :underline attribute. (Bug#11805)
3793
5481664a
MR
37942012-08-21 Martin Rudalics <rudalics@gmx.at>
3795
3796 * window.el (window-point-1, set-window-point-1): Remove.
3797 (window-in-direction, record-window-buffer)
3798 (set-window-buffer-start-and-point, split-window-below)
9fba804b
SM
3799 (window--state-get-1, display-buffer-record-window):
3800 Replace calls to window-point-1 and set-window-point-1 by calls to
5481664a
MR
3801 window-point and set-window-point respectively.
3802
6d74698e
GM
38032012-08-21 Glenn Morris <rgm@gnu.org>
3804
b7fa2691
GM
3805 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
3806 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
3807 Use it.
3808
52f56d5a
GM
3809 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
3810 (cal-tex-shortday): New function.
3811 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
3812 (cal-tex-cursor-filofax-daily): Use the above.
3813
9f1ee09e
GM
3814 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
3815 New functions.
3816 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3817 (cal-tex-cursor-filofax-week): Use them.
3818
79858159
GM
3819 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
3820 New constants.
3821 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3822 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
3823
d346b2b4
GM
3824 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
3825 (cal-tex-end-document): Don't rely on buffer name.
3826
b2403709
GM
3827 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
3828 Use cal-tex-vspace.
3829 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
3830 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
2d225a3a
GM
3831 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
3832 Use cal-tex-arg.
b2403709 3833
1cebb5c0
GM
3834 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
3835 (cal-tex-cursor-week, cal-tex-cursor-week2)
3836 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
3837 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3838 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
3839 (cal-tex-insert-preamble, cal-tex-b-document)
3840 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
3841 Improve cal-tex-cmd usage.
3842
c68cd5d4
GM
3843 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
3844 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
3845 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
3846 (cal-tex-weekly-paper): New function.
3847 (cal-tex-cursor-week, cal-tex-cursor-week2)
3848 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3849 (cal-tex-cursor-day): Use it.
3850
9dca4801
GM
3851 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
3852 (cal-tex-cursor-filofax-week): Remove leading blank page.
3853
1941e134
GM
3854 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3855 Add autoload cookie. For now at least, don't use color, since
3856 no other cal-tex function does.
3857
6d74698e
GM
3858 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
3859 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3860 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
3861
64cde199
JL
38622012-08-21 Juri Linkov <juri@jurta.org>
3863
3864 * info.el (Info-file-attributes): New variable.
3865 (info-insert-file-contents): Add file attributes to
3866 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
3867 `Info-toc-nodes' when previous modtime of the Info file is less
3868 than new modtime.
3869 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
3870 of info.el. (Bug#12230)
3871
32757648
GM
38722012-08-20 Glenn Morris <rgm@gnu.org>
3873
3874 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
3875 * calendar/holidays.el (calendar-holiday-list):
3876 Report errors with display-warning rather than beep'n'sleep.
3877
a32fbbcf
MA
38782012-08-20 Michael Albinus <michael.albinus@gmx.de>
3879
3880 * net/tramp.el (tramp-accept-process-output): Accept only output
3881 from PROC. Otherwise, process filters and sentinels might be
3882 confused. (Bug#12145)
3883
a05731a0
CY
38842012-08-20 Chong Yidong <cyd@gnu.org>
3885
3886 * descr-text.el (describe-text-properties-1): Use overlays-in to
3887 report on empty overlays (Bug#3322).
3888
36e8d1eb
GM
38892012-08-20 Glenn Morris <rgm@gnu.org>
3890
3d300447
GM
3891 * mail/rmailout.el (rmail-output-read-file-name):
3892 Trap and report errors in rmail-output-file-alist elements.
3893
36e8d1eb
GM
3894 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
3895 since most non-font-lock faces are not also variables).
3896
b96e5814
ER
38972012-08-20 Edward Reingold <reingold@iit.edu>
3898
3899 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3900 New function. (Bug12160)
3901
7cef3569
GM
39022012-08-19 Glenn Morris <rgm@gnu.org>
3903
3904 * mail/rmailout.el (rmail-output-read-file-name):
3905 Fix previous change (when the alist is nil or does not match).
3906
17975d7f
CY
39072012-08-19 Chong Yidong <cyd@gnu.org>
3908
3909 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
3910 (Bug#12228).
3911
2170b1bd
CY
39122012-08-18 Chong Yidong <cyd@gnu.org>
3913
3914 * simple.el (yank-handled-properties): New defcustom.
3915 (yank-excluded-properties): Add font-lock-face and category.
3916 (yank): Doc fix.
3917
9fba804b
SM
3918 * subr.el (remove-yank-excluded-properties):
3919 Obey yank-handled-properties. The special handling of font-lock-face
2170b1bd
CY
3920 and category is now done this way, instead of being hard-coded.
3921 (insert-for-yank-1): Remove font-lock-face handling.
3922 (yank-handle-font-lock-face-property)
3923 (yank-handle-category-property): New function.
3924
ee218151
GM
39252012-08-17 Glenn Morris <rgm@gnu.org>
3926
3927 * mail/rmailout.el (rmail-output-read-file-name):
3928 Check rmail-output-file-alist against the full message body
3929 in the correct rmail buffer. (Bug#12214)
3930
4a6bc3fd
MA
39312012-08-17 Michael Albinus <michael.albinus@gmx.de>
3932
9fba804b
SM
3933 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3934 Eliminate superfluous prompt. (Bug#12203)
4a6bc3fd 3935
383dcbf9
CY
39362012-08-17 Chong Yidong <cyd@gnu.org>
3937
3938 * mouse.el (mouse-appearance-menu): If x-select-font returns a
3939 font spec, set the font directly (Bug#3228).
3940
998c4a6a
MR
39412012-08-17 Martin Rudalics <rudalics@gmx.at>
3942
3943 * window.el (delete-window): Fix last fix.
3944
52162052
MR
39452012-08-16 Martin Rudalics <rudalics@gmx.at>
3946
3947 * window.el (window-valid-p): Move to window.c.
85c2386b
MR
3948 (window-child, window-child-count, window-last-child)
3949 (window-normalize-window, window-combined-p)
3950 (window-combinations, window-atom-root, window-min-size)
3951 (window-sizable, window-sizable-p, window-size-fixed-p)
3952 (window-min-delta, window-max-delta, window--resizable)
3953 (window--resizable-p, window-resizable, window-total-size)
3954 (window-full-height-p, window-full-width-p, window-body-size)
3955 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
3956 (minimize-window, window-deletable-p, delete-window)
3957 (delete-other-windows, set-window-buffer-start-and-point)
3958 (next-buffer, previous-buffer, split-window, balance-windows-2)
3959 (set-window-text-height, window-buffer-height)
3960 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
9fba804b
SM
3961 (truncated-partial-width-window-p): Minor code adjustments.
3962 In doc-strings state whether the argument window has to denote a
85c2386b 3963 live, valid or any window.
52162052 3964
1c308380
PS
39652012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
3966
3967 * progmodes/subword.el (subword-forward-function)
3968 (subword-backward-function, subword-forward-regexp)
3969 (subword-backward-regexp): New variables.
3970 (subword-forward, subword-forward-internal, subword-backward-internal):
3971 Use new variables, eg so that different "word" definitions
3972 can be easily used. (Bug#11411)
3973
94c9ece1
SM
39742012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3975
3976 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
3977 for composite selectors.
3978 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
3979 operation just because we can't find a previous revision.
3980
f2045622
CY
39812012-08-15 Chong Yidong <cyd@gnu.org>
3982
3983 * frame.el (set-frame-font): Accept font objects.
3984
582db660
SM
39852012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3986
3987 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
3988
2f29c200
WJ
39892012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
3990
456e62c2
WJ
3991 * man.el (Man-overstrike-face, Man-underline-face)
3992 (Man-reverse-face): Remove variables.
3993 (Man-overstrike, Man-underline, Man-reverse): New faces.
3994 (Man-fontify-manpage): Use them instead of the variables.
3995 (Man-cleanup-manpage): Comment change.
3996 (Man-ansi-color-map): New variable.
3997 (Man-fontify-manpage): Use it.
3998 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
3999
2f29c200
WJ
4000 Implement ANSI SGR parameters 22-27 (bug#12146).
4001 * ansi-color.el (ansi-colors): Doc fix.
4002 (ansi-color-context, ansi-color-context-region): Doc fix.
4003 (ansi-color--find-face): New function.
4004 (ansi-color-apply, ansi-color-apply-on-region): Use it.
4005 Rename the local variable `face' to `codes' since it is now a list of
4006 ansi codes. Doc fix.
4007 (ansi-color-get-face): Remove.
4008 (ansi-color-parse-sequence): New function, derived from
4009 ansi-color-get-face.
4010 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
4011 codes 22-27.
4012
b4f5e9df
SM
40132012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
4014
4015 * subr.el (read-passwd): Allow use from a minibuffer.
4016
ba025fbd
EZ
40172012-08-14 Eli Zaretskii <eliz@gnu.org>
4018
4019 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
4020 inside comments and strings as identifiers.
4021
4022 * progmodes/gud.el (gud-tooltip-print-command): Quote the
4023 expression to evaluate. This allows to evaluate expressions with
4024 embedded whitespace.
4025 (gud-tooltip-tips): Add a blank before the newline in the
4026 message-box text, for the benefit of message-box emulation on
4027 MS-Windows.
4028
4029 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
4030 messages from GDB, pop them up in a tooltip to give feedback to
4031 user.
b4f5e9df
SM
4032 (gdb-tooltip-print-1): Quote the expression to evaluate.
4033 This allows to evaluate expressions with embedded whitespace.
ba025fbd
EZ
4034 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
4035 if the TTY name is nil or empty (which happens when communicating
4036 with the inferior via pipes, e.g. on MS-Windows).
4037 (gdb-internals): If GDB sends a "&\n" empty debugging message,
4038 don't send that to the GUD buffer.
4039
c548f821
GM
40402012-08-14 Glenn Morris <rgm@gnu.org>
4041
4042 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
4043 Optimize away setq-default with no args, as for setq. (Bug#12195)
4044
55802e4a
CY
40452012-08-14 Chong Yidong <cyd@gnu.org>
4046
4abcdac8
CY
4047 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
4048
55802e4a
CY
4049 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
4050 (Bug#12085).
4051
3c3cda1a
GM
40522012-08-14 Glenn Morris <rgm@gnu.org>
4053
4054 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
4055
e1873bd0
MA
40562012-08-14 Michael Albinus <michael.albinus@gmx.de>
4057
4058 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
4059 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4060 Use cached shell name.
4061
925411b4
FEG
40622012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4063
4064 * progmodes/python.el (python-shell-send-string):
3c3cda1a 4065 (python-shell-send-setup-code): Do not use `format' with `message'.
925411b4 4066
e636fafe
DG
40672012-08-14 Dmitry Gutov <dgutov@yandex.ru>
4068
4069 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
4070 (ruby-percent-literal-beg-re): New constant.
4071 (ruby-syntax-general-delimiters-goto-beg): Rename to
4072 `ruby-syntax-enclosing-percent-literal', improve literal type check.
4073 (ruby-syntax-propertize-general-delimiters): Rename to
4074 `ruby-syntax-propertize-percent-literal', it's a shorter and more
4075 popular term. Adjust comments everywhere.
4076 (ruby-syntax-propertize-percent-literal): Only propertize when not
4077 inside a simple string or comment. When the literal is unclosed,
4078 leave the text after it unpropertized.
f063063a
DG
4079 (ruby-syntax-methods-before-regexp): New constant.
4080 (ruby-syntax-propertize-function): Use it to recognize regexps.
4081 Don't look at the text after regexp, just use the whitelist.
e636fafe 4082
e5b19827
AS
40832012-08-14 Andreas Schwab <schwab@linux-m68k.org>
4084
4085 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
4086 non-nil always load the compiled file if it exists. (Bug#12197)
4087
a9f6f311
CY
40882012-08-14 Chong Yidong <cyd@gnu.org>
4089
4090 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
4091 (hi-lock-set-pattern): When deciding whether to use font lock or
4092 overlays, look at font-lock-mode instead of font-lock-fontified
4093 (Bug#12168).
4094 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
4095 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
4096
7d806b1e
DU
40972012-08-14 Daiki Ueno <ueno@unixuser.org>
4098
4099 * subr.el (internal--after-with-selected-window): Fix typo
4100 (Bug#12193).
4101
5beed586
FEG
41022012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4103
4104 Use `completion-table-dynamic' for completion functions.
4105 * progmodes/python.el
4106 (python-shell-completion--do-completion-at-point)
e636fafe
DG
4107 (python-shell-completion--get-completions):
4108 Remove functions.
5beed586
FEG
4109 (python-shell-completion-complete-at-point): New function.
4110 (python-completion-complete-at-point): Use it.
4111
92cb3b04
J
41122012-08-13 Jambunathan K <kjambunathan@gmail.com>
4113
4114 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
4115 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
4116
89660017
SM
41172012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
4118
3c98c962
SM
4119 * subr.el (function-get): Refine `autoload' arg so it can also
4120 autoload functions for gv.el (bug#12191).
4121 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
4122 autoloads macros.
4123
aa7c6dbe
SM
4124 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
4125 Prefer pcase-let over destructuring-bind.
4126 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
4127 Also, remove whitespace as we go, rather than after accumulating the
4128 various places.
4129
89660017
SM
4130 * subr.el (internal--before-with-selected-window)
4131 (internal--after-with-selected-window): Fix typo seleted->selected.
4132 (with-selected-window): Adjust callers.
4133 Reported by Dmitry Gutov <dgutov@yandex.ru>.
4134
31cd32c9
BG
41352012-08-13 Bastien Guerry <bzg@gnu.org>
4136
0fcd3d9f 4137 * window.el (special-display-popup-frame): Minor docstring
31cd32c9
BG
4138 enhancement. (Bug#12172)
4139
1b15d8ad
AS
41402012-08-13 Andreas Schwab <schwab@linux-m68k.org>
4141
31e54db0
AS
4142 * tar-mode.el (tar-header-data-end): Only ignore size for files of
4143 type 1-6.
4144 (tar-header-block-summarize, tar-get-descriptor): Handle pax
4145 extended headers.
4146
1b15d8ad
AS
4147 * files.el (hack-local-variables-filter): Remove useless eval.
4148
35cb9c06
MR
41492012-08-13 Martin Rudalics <rudalics@gmx.at>
4150
4151 * subr.el (with-selected-window): Fix last change.
4152
1439443b
SM
41532012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4154
4155 * subr.el (internal--before-with-seleted-window)
4156 (internal--after-with-seleted-window): New functions.
1b15d8ad
AS
4157 (with-selected-window): Use them, to replace dependency on
4158 tty-top-frame.
1439443b 4159
0d9e2599
NN
41602012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
4161
4162 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
4163 binding for `newline'.
4164 (ruby-move-to-block): When moving backward, stop at block opening,
4165 not indentation.
4166 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
4167 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
4168 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
4169 `ruby-toggle-block'.
4170
ba10c48c
SM
41712012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4172
4173 * ibuffer.el (ibuffer-do-toggle-read-only):
4174 * dired.el (dired-toggle-read-only):
4175 * buff-menu.el (Buffer-menu-toggle-read-only):
4176 * bindings.el (mode-line-toggle-read-only):
4177 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
4178
9229c658
AS
41792012-08-12 Andreas Schwab <schwab@linux-m68k.org>
4180
4181 * descr-text.el (describe-char): Put the overlays over the
4182 "displayed as" character.
4183
0fd09128
JB
41842012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
4185
4186 * calc/calc-units.el (math-default-units-table): Give an
4187 initial value.
4188 (math-put-default-units): Add options to put composite units and
4189 unit systems in the default units table.
4190 (calc-convert-units): Send composite units to
4191 `math-put-default-units' when appropriate.
4192
9ff9402d 41932012-08-11 Glenn Morris <rgm@gnu.org>
7aacaf15 4194
fbb5e336
GM
4195 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
4196
7aacaf15
GM
4197 * tutorial.el (help-with-tutorial):
4198 * emacs-lisp/copyright.el (copyright-update-directory):
4199 * emacs-lisp/autoload.el (autoload-find-generated-file)
4200 (autoload-find-file): Disable local eval: (for insurance).
4201
f40b9f10
GM
4202 * files.el (hack-local-variables-filter): If an eval: form is not
4203 known to be safe, and enable-local-variables is :safe, then ignore
4204 the form totally, as is done for non-eval forms. (Bug#12155)
6f97980a 4205 This is CVE-2012-3479.
f40b9f10 4206
daa9f1a6
SM
42072012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4208
4209 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
4210 (rx-form): Simplify.
4211
9cd80478
DG
42122012-08-09 Dmitry Gutov <dgutov@yandex.ru>
4213
0d9e2599
NN
4214 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
4215 ?, _, and : are symbol constituents, ! is not (but kinda should be).
4216 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
4217 (ruby-syntax-propertize-function): Adjust for changes in
4218 `ruby-syntax-propertize-heredoc'.
4219
42202012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
4221
9cd80478
DG
4222 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
4223 binding (use `M-;' instead).
9cd80478 4224 (ruby-singleton-class-p): New function.
0d9e2599 4225 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
9cd80478 4226
d301b413
SM
42272012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4228
4229 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
4230
1530c98e
CY
42312012-08-10 Chong Yidong <cyd@gnu.org>
4232
4233 * progmodes/python.el (python-shell-get-process-name): Don't mess
4234 with same-window-buffer-names.
4235
4236 * eshell/eshell.el (eshell-add-to-window-buffer-names)
4237 (eshell-remove-from-window-buffer-names): Make obsolete.
4238 (eshell-buffer-name, eshell-unload-hook): Don't use them.
4239 (eshell): Just use pop-to-buffer-same-window instead.
4240
e1293765
CY
42412012-08-10 Chong Yidong <cyd@gnu.org>
4242
4243 * bindings.el: Bind M-= back to count-words-region.
4244
4245 * simple.el (count-words-region): Accept a prefix arg for acting
4246 on the entire buffer.
4247 (count-words--buffer-message): New helper function.
4248
e1894109
SM
42492012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4250
4251 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
4252 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
4253 (event-start, event-end): Use posn-at-point to return a more
4254 informative posn.
4255 (posnp): New function.
4256 * mouse.el (popup-menu-normalize-position): Use it.
4257
c69f56a2
MY
42582012-08-10 Masatake YAMATO <yamato@redhat.com>
4259
4260 * mouse.el (popup-menu-normalize-position): New function.
4261 (popup-menu): Use `popup-menu-normalize-position' to normalize
4262 the form for POSITION argument.
4263
4264 * term/x-win.el (x-menu-bar-open):
4265 Use the value returend from (posn-at-point) as position
4266 passed to `popup-menu'.
4267
31673780
JB
42682012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4269
4270 * calc/calccomp.el (math-compose-expr): Add extra argument
4271 indicating that parentheses should be put around products in
4272 denominators. Give multiplication precedence over division during
4273 composition.
4274
dab7711b
CY
42752012-08-09 Chong Yidong <cyd@gnu.org>
4276
dee4ef93
CY
4277 * man.el (Man-switches, Man-sed-command, Man-awk-command)
4278 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
4279 (Man-untabify-command, manual-program): Convert to defcustom
4280 (Bug#10429).
4281
73e2bbc5
CY
4282 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
4283
3e861c8a
CY
4284 * descr-text.el (describe-char): Don't insert extra newlines
4285 (Bug#10127).
4286
a9f5a649
CY
4287 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
4288 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
4289
dab7711b
CY
4290 * align.el (align-region): Delete temporary markers (Bug#10047).
4291 Plus some code cleanups.
4292
e0cc4efa
FEG
42932012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4294
4295 * progmodes/python.el (python-pdbtrack-tracked-buffer)
4296 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
4297 (python-shell-internal-last-output): Use make-local-variable
4298 instead of make-variable-buffer-local.
4299
489af14f
FEG
43002012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4301
4302 * progmodes/python.el: Enhancements to forward-sexp.
4303 (python-nav-forward-sexp): Rename from
4304 python-nav-forward-sexp-function.
c69f56a2
MY
4305 (python-nav--forward-sexp, python-nav--backward-sexp):
4306 New functions.
489af14f 4307
0fc50303
JB
43082012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4309
4310 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
4311 modes and simplification modes.
4312
5d65606a
SM
43132012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
4314
4315 * delsel.el (delete-selection-pre-hook): Don't propagate the
4316 file-supersession signals (bug#12161).
4317
4250fdf5
SM
43182012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4319
4320 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
4321 (cl-map-extents): Add compatibility aliases (bug#12135).
4322
d9f9b465
MA
43232012-08-08 Michael Albinus <michael.albinus@gmx.de>
4324
4325 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
4326 tests by `ignore-error'.
4327 (tramp-find-shell): Open also a new shell, when cache is already
4328 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
4329
ce0fcefa
JL
43302012-08-08 Juri Linkov <juri@jurta.org>
4331
4332 * bookmark.el: Add `defaults' property to the bookmark record.
4333 (bookmark-current-buffer): Doc fix.
4334 (bookmark-make-record): Add `defaults' property with default values
4335 to the bookmark record.
4336 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
4337 with `bookmark-insert-current-bookmark'.
4338 (bookmark-set): Get `defaults' property from the bookmark record
4339 and use it in `read-from-minibuffer'.
4340 (bookmark-insert-current-bookmark): Remove function.
4341
4342 * info.el (Info-bookmark-make-record): Add `defaults' property
4343 with values of canonical Info node name, the current Info file
4344 name and the current Info node name. (Bug#12107)
4345
53fa8652
JL
43462012-08-08 Juri Linkov <juri@jurta.org>
4347
4348 * files.el (basic-save-buffer): Use `buffer-name' as the default
4349 of `read-file-name' when buffer is not visiting a file (bug#12128).
4350
242c0a95
JL
43512012-08-08 Juri Linkov <juri@jurta.org>
4352
4353 * info.el (Info-isearch-search): Doc fix.
4354 (Info-search): Change search-failed message from "initial node" to
4355 "end of node" (bug#12078).
4356 (Info-isearch-search): Change `isearch-string-state' to
4357 `isearch--state-string'.
4358
32ac3a6b
GM
43592012-08-08 Glenn Morris <rgm@gnu.org>
4360
4361 * language/persian.el: Remove file.
f8c1afd5 4362 * language/misc-lang.el: Move unique part of persian.el here.
32ac3a6b
GM
4363 * loadup.el: Remove language/persian.
4364
2c2d9c9c
OF
43652012-08-08 Óscar Fuentes <ofv@wanadoo.es>
4366
4367 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
4368
2d79ec42
FEG
43692012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
4370
4371 * progmodes/python.el Fixed defsubst warning.
4372 (python-syntax-context) Rename from python-info-ppss-context.
4373 (python-syntax-context-type): Rename from
4374 python-info-ppss-context-type.
4375 (python-syntax-comment-or-string-p): Rename from
4376 python-info-ppss-comment-or-string-p.
4377
2bd255dd
JB
43782012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
4379
4380 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
4381
c395097f
AS
43822012-08-07 Andreas Schwab <schwab@linux-m68k.org>
4383
6125983e
AS
4384 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
4385 a defcustom that is quoted with backquote.
4386
4250fdf5
SM
4387 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
4388 Fix handling of interactive spec when the body uses return.
651eaf36
AS
4389 (math-do-arg-check, math-define-function-body): Use backquote forms.
4390 * calc/calc-ext.el (math-defcache): Likewise.
4391 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
4392 * allout.el (allout-new-exposure): Likewise.
4393 * calc/calcalg2.el (math-tracing-integral): Likewise.
4394 * info.el (Info-last-menu-item): Likewise.
4395 * emulation/vip.el (vip-loop): Likewise.
4396 * textmodes/artist.el (artist-funcall): Likewise.
4397 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
4398 Construct menu-item directly.
4399
4250fdf5
SM
4400 * progmodes/autoconf.el (font-lock-syntactic-keywords):
4401 Don't declare.
c395097f 4402
5fb50dd3
CY
44032012-08-07 Chong Yidong <cyd@gnu.org>
4404
4405 * simple.el (deactivate-mark): Preserve text properties when
4406 saving the primary selection (Bug#8384).
4407
54eea618
KR
44082012-08-07 Kevin Ryde <user42@zip.com.au>
4409
4410 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
4411 (woman-parse-numeric-value): On a bad .IP line, issue a warning
4412 and continue processing (Bug#12110).
4413
638eaeb9
SM
44142012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4415
4416 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
4417 syntax-propertize-function (bug#10095).
4418
ea376861
SM
44192012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4420
f91b35be
SM
4421 * help-fns.el (help-fns--key-bindings, help-fns--signature)
4422 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
4423 describe-function-1.
4424 (describe-function-1): Use them. Move compiler macro after sig.
4425 (help-fns--compiler-macro): Use function-get. Assume we're already in
4426 standard-output. Adjust layout to new call order.
4427
ea376861
SM
4428 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
4429 re-binding a symbol that has a symbol-macro (bug#12119).
4430
d5be7bd0
MB
44312012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
4432
4433 * language/persian.el: New file. (Bug#11812)
4434 * loadup.el: Add language/persian.el.
4435
90749b53
CY
44362012-08-06 Chong Yidong <cyd@gnu.org>
4437
4438 * window.el (window--maybe-raise-frame): New function.
4439 (window--display-buffer): Split off from here.
4440 (display-buffer-reuse-window, display-buffer-pop-up-frame)
4441 (display-buffer-pop-up-window, display-buffer-use-some-window):
4442 Obey an inhibit-switch-frame action alist entry.
4443 (display-buffer): Update doc.
4444
4445 * replace.el (occur-after-change-function): Avoid losing focus by
4446 using the inhibit-switch-frame display parameter (Bug#12139).
4447
ba7b0154
FEG
44482012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
4449
4450 Make internal shell process buffer names start with space.
4451 * progmodes/python.el (python-shell-make-comint): Add optional
4452 argument INTERNAL.
4453 (run-python-internal): Use it.
4454 (python-shell-internal-get-or-create-process): Check for new
4455 internal buffer names.
4456
5eaeacb5
GM
44572012-08-06 Glenn Morris <rgm@gnu.org>
4458
e296d94b 4459 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
5eaeacb5
GM
4460 Do less getting and setting of environment variables.
4461
b7ccbdc2
CY
44622012-08-05 Chong Yidong <cyd@gnu.org>
4463
777fe95e
CY
4464 * proced.el (proced): Add substitution string to docstring to
4465 trigger autoloading of the proced library on C-h f (Bug#1768).
4466
4250fdf5
SM
4467 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
4468 Don't show defvars which have no second argument (Bug#8638).
b7ccbdc2
CY
4469
4470 * imenu.el (imenu-generic-expression): Move documentation here
4471 from imenu--generic-function.
4472 (imenu--generic-function): Refer to imenu-generic-expression.
4473
9e3b7800 44742012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
d5c31f1d
VØ
4475
4476 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
4477 indentation declaration.
4478 (viper-loop): Add indentation declaration (Bug#7025).
4479
e5d9c0d1
CY
44802012-08-05 Chong Yidong <cyd@gnu.org>
4481
f0422feb
CY
4482 * help-fns.el (describe-variable): Add hyperlink for
4483 directory-local variables files. Improve buffer-local and
4484 permanent-local reporting; suggested by MON KEY (Bug#6644).
4485
4486 * help-mode.el (help-dir-local-var-def): New button type.
4487
e5d9c0d1
CY
4488 * files.el (kill-buffer-hook): Provide a defvar.
4489
a4f2deaa
GM
44902012-08-05 Glenn Morris <rgm@gnu.org>
4491
4492 * eshell/esh-ext.el (eshell/addpath):
4493 Also update eshell-path-env. (Bug#12013)
4494
a9dd5754
CY
44952012-08-05 Chong Yidong <cyd@gnu.org>
4496
a4f2deaa 4497 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
615b0bf0 4498
d014c740
CY
4499 * fringe.el (fringe-styles): Add docstring.
4500 (fringe--check-mode): New function.
4501 (set-fringe-mode, set-fringe-style): Use it.
4502 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
4503
a9dd5754
CY
4504 * files.el (set-auto-mode): Fix invalid setq call.
4505
7c2dc8bd
SM
45062012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
4507
4508 * isearch.el: Misc simplification; use defstruct.
4509 (isearch-mode-map): Dense maps now work like sparse ones.
4510 (isearch--state): New defstruct.
4511 (isearch-string-state, isearch-message-state, isearch-point-state)
4512 (isearch-success-state, isearch-forward-state)
4513 (isearch-other-end-state, isearch-word-state, isearch-error-state)
4514 (isearch-wrapped-state, isearch-barrier-state)
4515 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
4516 replaced by defstruct's accessors.
4517 (isearch--set-state): Rename from isearch-top-state and change
4518 calling convention.
4519 (isearch-push-state): Use new isearch--get-state.
4520 (isearch-toggle-word): Disable regexp when enabling word.
4521 (isearch-message-prefix): Remove unused arg _c-q-hack.
4522 (isearch-message-suffix): Remove unused arg _ellipsis.
4523
7fcc0070
AS
45242012-08-04 Andreas Schwab <schwab@linux-m68k.org>
4525
4526 * simple.el (list-processes--refresh): For a server use :host or
4527 :local as the address.
97ad0769 4528 (list-processes): Doc fix.
7fcc0070 4529
a11035b8 45302012-08-04 Michal Nazarewicz <mina86@mina86.com>
00340faf
MN
4531
4532 * lisp/mpc.el: Support password in host argument.
4533 (mpc--proc-connect): Parse and use new password element.
4534 Set mpc-proc variable instead of returning process.
4535 (mpc-proc): Adjust accordingly.
4536
6dad7178
EZ
45372012-08-03 Eli Zaretskii <eliz@gnu.org>
4538
18949c2f
EZ
4539 * whitespace.el (whitespace-display-mappings): Use Unicode
4540 codepoints, instead of emacs-mule codepoints. See
4541 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
4542 for the details.
4543
6dad7178
EZ
4544 * files.el (file-truename): Don't skip symlink-chasing part on
4545 windows-nt. Incorporate the resolution of 8+3 short aliases on
4250fdf5
SM
4546 Windows into the loop that recursively chases symlinks.
4547 Compare directory and its parent case-insensitively on MS-Windows and
6dad7178
EZ
4548 MS-DOS.
4549
385b0198
CY
45502012-08-03 Chong Yidong <cyd@gnu.org>
4551
6200f3c4
CY
4552 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
4553
385b0198
CY
4554 * sort.el (sort-regexp-fields): Doc fix.
4555
b9e74744
TH
45562012-08-03 Tassilo Horn <tsdh@gnu.org>
4557
4558 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
4559 labels regex position point at the expected place.
4560
41013cb4
MK
45612012-08-03 MON KEY <monkey@sandpframing.com>
4562
4563 * net/imap.el (imap-interactive-login, imap-authenticate)
4564 (imap-mailbox-lsub, imap-mailbox-list)
4565 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
4566 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
4567 (imap-parse-response): Doc fix.
4568
0ffee616
JT
45692012-08-03 João Távora <joaotavora@gmail.com>
4570
4571 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
4572 if sexp scanning does not move point (Bug#5734).
4573
cfcc9cc8
TH
45742012-08-02 Tassilo Horn <tsdh@gnu.org>
4575
4576 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
4577 Add listings, minted, and ctable packages.
4578 (reftex-label-alist-builtin): Move listings, minted, and ctable
4579 entries before LaTeX.
a01bbb84 4580 (reftex-label-alist): Docfix.
cfcc9cc8 4581
66ec2442
BG
45822012-08-02 Bastien Guerry <bzg@gnu.org>
4583
4584 * replace.el (occur): Fix docstring (bug#12122).
4585
837b365b
GM
45862012-08-02 Glenn Morris <rgm@gnu.org>
4587
4588 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
4589
e098de97
PE
45902012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4591
4592 Obsolete alias inactivate-current-input-method-function (Bug#10150).
4593 * international/mule-cmds.el: Create
4594 inactivate-current-input-method-function as an obsolete alias for
4595 deactivate-current-input-method-function. See Katsumi Yamaoka in
4596 <http://bugs.gnu.org/10150#46>.
4597
a0f95636
JB
45982012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
4599
4600 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
4601 of nested `if's.
4602
0d26d7c4
GM
46032012-08-01 Glenn Morris <rgm@gnu.org>
4604
4605 * progmodes/autoconf.el (autoconf-definition-regexp):
4606 Add AH_TEMPLATE, adjust submatch numbering.
4607 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
4608 (autoconf-current-defun-function): Update for above change.
4609 (autoconf-current-defun-function): First skip to end of current word.
4610
b686ba06
RS
46112012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
4612
4613 * calendar/cal-html.el (cal-html-insert-agenda-days):
4614 Fix typo. (Bug#12018)
4615
0d49da68
FEG
46162012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4617
4618 Shell processes: enhancements to startup and CEDET compatibility.
4619 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
4620 (python-shell-make-comint): accept-process-output at startup.
4621 (run-python-internal): Set inferior-python-mode-hook to nil.
4622 (python-shell-internal-get-or-create-process): call sit-for.
4623 (python-preoutput-result): Add obsolete alias.
4624 (python-shell-internal-send-string): Use it.
4625 (python-shell-send-setup-code): Remove call to
4626 accept-process-output.
4627
f1a71c6e
AS
46282012-07-31 Andreas Schwab <schwab@linux-m68k.org>
4629
4630 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
4631 (Bug#12108)
4632
d2605269
JB
46332012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
4634
4635 * calc-mode.el (calc-basic-simplification-mode): Rename from
4636 `calc-limited-simplification-mode'.
4637 (calc-alg-simplification-mode): New function.
fc0c31f8 4638 (calc-set-simplify-mode): Adjust message.
f1a71c6e 4639
d2605269
JB
4640 * calc.el (calc-set-mode-line): Adjust mode line display for
4641 basic simplification mode.
4642
4643 * calc-help.el (calc-m-prefix-help): Update help message.
4644
4645 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
4646 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
4647
a3827a43
BG
46482012-07-31 Bastien Guerry <bzg@gnu.org>
4649
4650 * man.el (man): Fix comment. (bug#12101)
4651
502e3f89
MR
46522012-07-31 Martin Rudalics <rudalics@gmx.at>
4653
4654 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
4655 Don't return a non-nil value when no suitable buffer was found.
4656
d7714961
FEG
46572012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4658
4659 * progmodes/python.el (run-python-internal): Disable font lock for
4660 internal shells.
4661
1f45e27e
SM
46622012-07-30 Stefan Merten <smerten@oekonux.de>
4663
70efc5c9 4664 * textmodes/rst.el: Silence `checkdoc-ispell'.
1f45e27e
SM
4665 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
4666 (rst-official-version, rst-official-cvs-rev)
4667 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
4668 (rst-mode-map): New key binding.
4669
0aee6912
PE
46702012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4671
4672 Update .PHONY listings in makefiles.
4673 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
4674 autoloads, update-subdirs, updates, bzr-update, update-authors,
4675 compile-onefile, compile-calc, backup-compiled-files,
4676 compile-after-backup, compile-one-process, mh-autoloads,
4677 bootstrap-clean, distclean, maintainer-clean.
4678
9052f9f0
JB
46792012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
4680
1823ac5a
JB
4681 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
4682 (calc-set-mode-line): Don't display "AlgSimp ".
4683
4684 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
4685 (calc-lim-simplify-mode): New function.
4686 (calc-set-simplify-mode): Default to 'alg.
4687 (calc-default-simplify-mode): Make algebraic simplifications
4688 the default.
4689
4690 * calc/calc-ext.el (calc-init-extensions): Remove binding for
4691 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
4692
8d7c7eed 4693 * calc/calc-help.el (calc-m-prefix-help): Change messages to
4b337409
JB
4694 indicate new simplification modes.
4695
1823ac5a
JB
4696 * calc/README: Mention new default simplification mode.
4697
9052f9f0
JB
4698 * calc/calc.el (math-normalize-error): New variable.
4699 (math-normalize): Set `math-normalize-error' to t
4700 when there's an error.
4701
4702 * calc/calc-alg.el (math-simplify): Don't simplify when
4703 `math-normalize' returns an error.
4704
20ba0cb4
EZ
47052012-07-29 Eli Zaretskii <eliz@gnu.org>
4706
4707 * international/mule-cmds.el (set-locale-environment): Revert last
4708 change, since display-graphic-p returns nil when this function is
4709 called during startup. Instead...
4710
4711 * term/w32console.el (terminal-init-w32console): ...setup the
4712 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
4713
a5dcc929
JL
47142012-07-29 Juri Linkov <juri@jurta.org>
4715
4716 * simple.el (goto-line): Don't display default line number in the
4717 prompt because it should be displayed by `read-number' (bug#9952).
4718 Add the current line number to the defaults of `goto-line' to
4719 allow its easier modification by users with `M-n' (bug#9201).
4720
4721 * subr.el (read-number): Support multiple default values like in
4722 other minibuffer reading functions. Replace `read' with
4723 `string-to-number' for consistency with `number-to-string'.
4724
72b255c7
PE
47252012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4726
4727 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
4728 * emulation/viper-init.el (viper-deactivate-input-method-action):
4729 Rename from viper-inactivate-input-method-action.
4730 (viper-deactivate-input-method):
4731 Rename from viper-inactivate-input-method.
4732 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
4733 * international/mule-cmds.el (deactivate-input-method):
4734 Rename from inactivate-input-method.
4735 Also run input-method-deactivate-hook.
4736 (deactivate-current-input-method-function):
4737 Rename from inactivate-current-input-method-function.
4738 (input-method-deactivate-hook): New hook.
4739 (input-method-inactivate-hook): Mark obsolete.
bb6eb9fc
PE
4740 (inactivate-input-method): Mark obsolete.
4741
72b255c7
PE
4742 * international/quail.el (quail-activate):
4743 Also run quail-deactivate-hook.
4744 (quail-deactivate): Rename from quail-inactivate.
4745 * international/robin.el (robin-activate):
4746 Also run robin-deactivate-hook.
4747 (robin-deactivate): Rename from robin-inactivate.
4748
2549c068
CY
47492012-07-29 Chong Yidong <cyd@gnu.org>
4750
4751 * simple.el (indicate-copied-region): New function.
4752 (kill-ring-save): Split off from here.
4753
4754 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
4755 (kill-rectangle): Set deactivate-mark to t on read-only error.
4756
4757 * register.el (copy-to-register, copy-rectangle-to-register):
4758 Deactivate the mark, and use indicate-copied-region (Bug#10056).
4c478e6b
JL
4759 (append-to-register, prepend-to-register): Call indicate-copied-region.
4760
47612012-07-29 Juri Linkov <juri@jurta.org>
17711ed9
JL
4762
4763 * simple.el (async-shell-command-buffer): New defcustom.
4764 (shell-command): Use it. (Bug#4719)
4765
01bd1b0d
EZ
47662012-07-28 Eli Zaretskii <eliz@gnu.org>
4767
4768 * international/mule-cmds.el (set-locale-environment): In a
4769 console session on MS-Windows, set up keyboard and terminal
4770 encoding from the OEM codepage, not the ANSI codepage.
4771 (Bug#12055)
4772
a55739d3
CY
47732012-07-28 Chong Yidong <cyd@gnu.org>
4774
4775 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
4776 gdb-get-location.
4777
0e1a094f 47782012-07-28 Leo Liu <sdl.web@gmail.com>
9a0f8f2e
LL
4779
4780 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
4781 the alist (bug#12029).
4782
20329d73
EZ
47832012-07-28 Eli Zaretskii <eliz@gnu.org>
4784
4785 * makefile.w32-in (custom-deps, finder-data, updates, compile)
4786 (compile-always, compile-first)
4787 ($(lisp)/calendar/cal-loaddefs.el)
4788 ($(lisp)/calendar/diary-loaddefs.el)
4789 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4790 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
4791 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
4792 instead of on update-subdirs.
4793 (bootstrap-clean): Delete $(lisp)/subdirs.el.
4794
345a2258
CY
47952012-07-28 Chong Yidong <cyd@gnu.org>
4796
1eee6341
CY
4797 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
4798 directory if vc-deduce-backend returns nil (Bug#7350).
4799
345a2258
CY
4800 * simple.el (delete-trailing-lines): New option.
4801 (delete-trailing-whitespace): Obey it (Bug#11879).
4802
049a0936
DE
48032012-07-28 David Engster <deng@randomsample.de>
4804
4805 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
4806 Explanation of new 'symbol-qnames feature in doc-strings.
4807 (xml-maybe-do-ns): Return expanded names as plain symbols if
4808 'symbol-qnames was provided in XML-NS argument (Bug#11916).
4809 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
4810
aa81af71
FEG
48112012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4812
4813 Consistent completion in inferior python with emacs -nw.
4814 * progmodes/python.el (inferior-python-mode): replace "<tab>"
4815 binding in inferior-python-mode-map with "\t".
4816 (python-shell-completion-complete-at-point)
4817 (python-completion-complete-at-point): Remove interactive spec.
4818
e827b1eb
JB
48192012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4820
4821 * calc/calccomp.el (math-compose-expr): Undo previous change.
4822
a90dfb95
FEG
48232012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4824
4250fdf5 4825 * progmodes/python.el (python-mode-map): Add keybinding for
a90dfb95
FEG
4826 run-python.
4827 (python-shell-make-comint): Fix pop-to-buffer call.
4828 (run-python): Autoload. New arg SHOW.
4829 (python-shell-get-or-create-process): Do not pop python process
4830 buffer.
4831
32770973 48322012-07-27 Michael Albinus <michael.albinus@gmx.de>
1c6ef030
MA
4833
4834 * notifications.el (notifications-on-action-signal)
4835 (notifications-on-closed-signal): Use also the bus address for the map.
4836 (notifications-notify, notifications-close-notification)
fc0c31f8 4837 (notifications-get-capabilities): Add optional argument BUS.
1c6ef030 4838
86332df2
TH
48392012-07-27 Tassilo Horn <tsdh@gnu.org>
4840
4250fdf5
SM
4841 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
4842 Add support for the lstlisting and minted environments, and for the
86332df2
TH
4843 ctable macro.
4844 * textmodes/reftex.el (reftex-compile-variables): Also recognize
4845 labels written in keyvals syntax.
4846
ca1302a4
JB
48472012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4848
4849 * calc/calccomp.el (math-compose-expr): Use parentheses when
4850 there is a product in the denominator of a fraction.
4851
f8b91036
EZ
48522012-07-26 Eli Zaretskii <eliz@gnu.org>
4853
4854 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
4855 ($(lisp)/calendar/diary-loaddefs.el)
4856 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4250fdf5
SM
4857 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
4858 Fixes failures in parallel bootstrap because subdirs.el is being
f8b91036
EZ
4859 rewritten while the autoload files are built at the same time,
4860 which needs to load subdirs.el.
4861
c8e5a42c
MR
48622012-07-26 Martin Rudalics <rudalics@gmx.at>
4863
4864 * mouse.el (popup-menu): Fix doc-string and re-indent code.
4865 (mouse-drag-line): Don't exit tracking when a switch-frame or
4866 switch-window event occurs (Bug#12006).
4867
670d85ea
SM
48682012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4869
4870 * mouse.el (popup-menu): Fix last change.
4871
7abaf5cc
SM
48722012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4873
4874 Autoload from Lisp with more care. Follow aliases when looking for
4875 function properties.
4876 * subr.el (autoloadp): New function.
4877 (symbol-file): Use it.
4878 (function-get): New function.
4879 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
4880 autoload-do-load.
4881 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
4882 (lisp-indent-function):
4883 * emacs-lisp/gv.el (gv-get):
4884 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
4885 * emacs-lisp/byte-opt.el (byte-optimize-form):
4886 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
4887 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
4888 Use function-get.
4889 * emacs-lisp/cl.el: Don't propagate function properties any more.
4890
4891 * speedbar.el (speedbar-add-localized-speedbar-support):
4892 * emacs-lisp/disass.el (disassemble-internal):
4893 * desktop.el (desktop-load-file):
4894 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
4895 (describe-function-1):
4896 * emacs-lisp/find-func.el (find-function-noselect):
4897 * emacs-lisp/elp.el (elp-instrument-function):
4898 * emacs-lisp/advice.el (ad-has-proper-definition):
4899 * apropos.el (apropos-safe-documentation, apropos-macrop):
4900 * emacs-lisp/debug.el (debug-on-entry):
4901 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
4902 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
4903 * calc/calc.el (name): Use autoloadp & autoload-do-load.
4904
b1364986
AA
49052012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
4906
4907 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
4908 function, not an obsolete variable (Bug#12046).
4909
67ada220
AS
49102012-07-25 Andreas Schwab <schwab@linux-m68k.org>
4911
4912 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
4913
f08088e3
CS
49142012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
4915
4916 * emacs-lisp/pp.el (pp-display-expression): Select old selected
4917 window only if it is still live (Bug#12034).
4918
8137e7b3
MR
49192012-07-25 Martin Rudalics <rudalics@gmx.at>
4920
4921 * subr.el (redirect-frame-focus): Add advertised calling
4922 convention (Bug#12030).
4923
09ae5da1
PE
49242012-07-25 Paul Eggert <eggert@cs.ucla.edu>
4925
4926 Prefer typical American spelling for "acknowledgment".
4927 * vc/add-log.el (change-log-acknowledgment): Rename from
4928 change-log-acknowledgement, with an alias for the old name.
4929
3cc5a3a8
JB
49302012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
4931
4932 * calc-alg.el (math-simplify-divide): Don't cross multiply
4933 in an equation when the lhs is a variable.
4934
b7af7f62
JD
49352012-07-24 Julien Danjou <julien@danjou.info>
4936
4937 * net/netrc.el (netrc-find-service-number, netrc-store-data):
4938 Remove, unused.
4939
ec1b09b1
EZ
49402012-07-23 Eli Zaretskii <eliz@gnu.org>
4941
4942 * startup.el (command-line): Don't display an empty user name in
4943 the error message about non-existent home directory, when
4944 init-file-user was set to an empty string. See
4945 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
4946 for the details and context.
4947
b525fd8a
VB
49482012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
4949
4950 * ses.el (ses-cell-formula-aset): New macro.
4951 (ses-cell-references-aset): New macro.
4952 (ses-cell-p): New function.
4953 (ses-rename-cell): Do no longer rely on complex operations like
4954 ses-cell-set-formula or ses-set-cell to change the cell and handle
4955 the undo at the same time, but rather use lower level new macros
4956 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
fc0c31f8 4957 the undo directly. Refresh the mode line.
b525fd8a 4958
2c73e345
LL
49592012-07-21 Leo Liu <sdl.web@gmail.com>
4960
670d85ea
SM
4961 * progmodes/cc-cmds.el (c-defun-name):
4962 Use match-string-no-properties instead for consistency.
2c73e345 4963
542dfbde
LL
49642012-07-20 Leo Liu <sdl.web@gmail.com>
4965
3646bcd6
LL
4966 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
4967 (Bug#7879)
4968
542dfbde
LL
4969 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
4970
25721031
CY
49712012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
4972
4973 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
4974 * progmodes/bug-reference.el, misearch.el: Provide themselves
4975 (bug#11915).
4976
4977 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
4978 of narrowed buffer (bug#11966).
4979
316e68a7
VB
49802012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
4981
4982 * ses.el (ses-rename-cell): Set new name also in reference list of
4983 cells of which the renamed cell depends.
4984
bbf0e7d9
MY
49852012-07-20 Masatake YAMATO <yamato@redhat.com>
4986
4987 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
4988 to check whether menu-bar is shown or not. If not shown,
4989 show the menu-bar as a popup menu instead of using tmm.
4990 * mouse.el (popup-menu): Accept `point' as `position' argument.
4991
c28662a8
DG
49922012-07-20 Dmitry Gutov <dgutov@yandex.ru>
4993
4994 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
4995 up inside string symbol literal (bug#11923).
4996
87ab808f
EZ
49972012-07-20 Eli Zaretskii <eliz@gnu.org>
4998
4999 * startup.el (fancy-startup-text): Read the whole tutorial, not
5000 just its first 256 bytes. Prevents gibberish in display of the
5001 tutorial title.
5002
89dea803
DA
50032012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5004
5005 Drop idle buffer compaction due to an absence of the
5006 proved efficiency.
5007 * compact.el: Remove.
5008
8a4e6db8
SS
50092012-07-19 Sam Steingold <sds@gnu.org>
5010
5011 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
5012 vc-bzr-pull & vc-bzr-merge-branch.
5013 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
5014 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
5015 for consistency with compilation-error-regexp-alist.
5016 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
5017 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
5018 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
5019 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
5020
5db81e33
SM
50212012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5022
5023 * emacs-lisp/chart.el: Use lexical-binding.
5024 (chart-emacs-storage): Don't hardcode the list of entries.
5025
5b835e1d
DA
50262012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5027
5028 Next round of tweaks caused by Fgarbage_collect changes.
5029 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
5030
9cd47b72
DA
50312012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5032
5033 Compact buffers when idle.
5034 * compact.el: New file.
5035
1d6fc0df
SM
50362012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5037
5038 * subr.el (eventp): Presume that if it looks vaguely like an event,
5039 it's an event (bug#10190).
5040
1d29cc7d
FEG
50412012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
5042
5043 Enhancements to ppss related code (thanks Stefan).
5044 * progmodes/python.el (python-indent-context)
5045 (python-indent-calculate-indentation, python-indent-dedent-line)
5046 (python-indent-electric-colon, python-nav-forward-block)
5047 (python-mode-abbrev-table)
1d6fc0df 5048 (python-info-assignment-continuation-line-p): Simplify checks
1d29cc7d
FEG
5049 for ppss context.
5050 (python-info-continuation-line-p): Cleanup.
5051 (python-info-ppss-context): Do not catch 'quote.
5052 (python-info-ppss-context-type)
5053 (python-info-ppss-comment-or-string-p): Simplify.
5054
d583cbe6
FEG
50552012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
5056
5057 * progmodes/python.el: Enhancements to eldoc support.
5058 (python-info-current-symbol): New function.
5059 (python-eldoc-at-point): Use python-info-current-symbol.
5060 (python-info-current-defun): Fix cornercase on first defun scan.
5061 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
5062 and signal error when no inferior python process is available.
5063
eceb6feb
DG
50642012-07-18 Dmitry Gutov <dgutov@yandex.ru>
5065
5066 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
5067 assume it's always t.
5068 (vc-git-registered): Remove caching, the function is only called
5069 once.
5070 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
5071
4c8ff0fe
CY
50722012-07-18 Chong Yidong <cyd@gnu.org>
5073
19fb7186
CY
5074 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
5075
9587c688
CY
5076 * simple.el (count-words): Report on narrowing (Bug#9959).
5077
0fe776a1
CY
5078 * bindings.el: Bind M-= to count-words.
5079
4c8ff0fe
CY
5080 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
5081
7f5331cc
MY
50822012-07-18 Masatake YAMATO <yamato@redhat.com>
5083
5084 * progmodes/sh-script.el (sh-imenu-generic-expression):
5085 Capture a function with `function' keyword and without parentheses
5086 like "function FOO" (bug#11856).
5087
2dc2a609
TH
50882012-07-18 Tassilo Horn <tassilo@member.fsf.org>
5089
5090 * window.el (split-window-sensibly): Make WINDOW argument
5091 optional.
5092
439f7677
CY
50932012-07-18 Chong Yidong <cyd@gnu.org>
5094
9aeb25a6
CY
5095 * subr.el (keyboard-translate): Doc fix (Bug#7261).
5096
439f7677
CY
5097 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
5098 and make C-x 8 RET exit isearch (Bug#11439).
5099
5100 * international/iso-transl.el: Move isearch-mode-map key
5101 definitions to isearch.el.
5102
12999ea8
SM
51032012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
5104
5105 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
5106 (eieio-defclass): Use gv-define-setter when possible.
5107
3ab6e069
DA
51082012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5109
5110 Reflect recent changes in Fgarbage_collect.
5111 * emacs-lisp/chart.el (chart-emacs-storage): Change to
5112 reflect new format of data returned by Fgarbage_collect.
5113
0a60bc10
FEG
51142012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5115
5116 New utility functions + python-info-ppss-context fix (Bug#11910).
5117 * progmodes/python.el (python-info-beginning-of-block-statement-p)
5118 (python-info-ppss-comment-or-string-p): New functions.
5119 (python-info-ppss-context): Small fix for string check.
5120
6dafa0d5
JL
51212012-07-17 Juri Linkov <juri@jurta.org>
5122
5123 * dired-aux.el (dired-do-async-shell-command): Doc fix.
5124 (dired-do-async-shell-command): Don't add `*' at the end of the
5125 command (Bug#11815).
5126 (dired-do-shell-command): Doc fix.
5127 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
5128 Join the individual commands using either "&" or ";" as the
5129 separator depending on the values of these trailing characters.
5130 At the end re-add the trailing "&". (Bug#10598)
5131
5132 * simple.el (async-shell-command): Sync the interactive spec with
5133 `shell-command'. Doc fix.
5134 (shell-command): Doc fix.
5135
b19dd9d1
JL
51362012-07-17 Juri Linkov <juri@jurta.org>
5137
5138 * descr-text.el (describe-char): Fix format args. (Bug#10129)
5139
bcdc27d7 51402012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
7f5331cc 5141
bcdc27d7 5142 Final renames and doc fixes for movement commands (bug#11899).
7f5331cc
MY
5143 * progmodes/python.el (python-nav-beginning-of-statement):
5144 Rename from python-nav-statement-start.
bcdc27d7
FEG
5145 (python-nav-end-of-statement): Rename from
5146 python-nav-statement-end.
5147 (python-nav-beginning-of-block): Rename from
5148 python-nav-block-start.
5149 (python-nav-end-of-block): Rename from python-nav-block-end.
5150
191da00e
FEG
51512012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5152
7f5331cc
MY
5153 * progmodes/python.el (python-shell-send-string-no-output):
5154 Allow accept-process-output to quit, keeping shell process ready for
191da00e
FEG
5155 future interactions (Bug#11868).
5156
4dc7c8d5 51572012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
aa7aaf8f 5158
88ecaf8f
SM
5159 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
5160
ef501ef0
SM
5161 * emacs-lisp/elint.el (elint-find-args-in-code):
5162 Use help-function-arglist, so as to handle lexical byte-code.
5163
aa7aaf8f
SM
5164 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
5165 change (bug#11826).
5166
45fd731c
SM
51672012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5168
2143fa32
SM
5169 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
5170 Avoid spuriously marking the buffer as modified because of c-is-sws.
5171
efc26dbe
SM
5172 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
5173 as not-a-comment (bug#11946).
5174
f5695c9a
SM
5175 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
5176 for uninterned vars.
5177
5178 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
5179 Use read-event since we don't really want to read chars but bytes.
5180
45fd731c
SM
5181 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
5182 $$..$$ but also $..$ using regexps (bug#11953).
5183 Use tex-verbatim for \url and \path.
5184 (tex-font-lock-keywords): Define as defconst like the others.
5185 (tex-common-initialization): Don't use font-lock-syntax-table any more.
5186
ddfc8813
RK
51872012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
5188
5189 * international/mule-cmds.el (ucs-insert): Make it an obsolete
5190 alias for insert-char.
5191
758e556a
FEG
51922012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5193
5194 * progmodes/python.el: Simplified imenu implementation.
5195 (python-nav-jump-to-defun): Remove command.
5196 (python-mode-map): Use `imenu' instead.
5197 (python-nav-list-defun-positions-cache)
5198 (python-imenu-include-defun-type, python-imenu-make-tree)
5199 (python-imenu-subtree-root-label, python-imenu-index-alist):
5200 Remove vars.
5201 (python-nav-list-defun-positions, python-nav-read-defun)
5202 (python-imenu-tree-assoc, python-imenu-make-element-tree)
45fd731c
SM
5203 (python-imenu-make-tree, python-imenu-create-index):
5204 Remove functions.
758e556a
FEG
5205 (python-mode): Update to interact with imenu by setting
5206 `imenu-extract-index-name-function' only.
5207
032d23ab
FEG
52082012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5209
5210 * progmodes/python.el: Enhancements to navigation commands.
5211 (python-nav-backward-sentence)
5212 (python-nav-forward-sentence): Remove.
5213 (python-nav-backward-statement, python-nav-forward-statement)
5214 (python-nav-statement-start, python-nav-statement-end)
5215 (python-nav-backward-block, python-nav-forward-block)
5216 (python-nav-block-start, python-nav-block-end)
5217 (python-nav-forward-sexp-function)
5218 (python-info-current-line-comment-p)
5219 (python-info-current-line-empty-p): New functions.
5220 (python-indent-context): Use `python-nav-statement-start'.
5221
01795a1b
MA
52222012-07-16 Michael Albinus <michael.albinus@gmx.de>
5223
9328d9aa
MA
5224 * eshell/em-ls.el (eshell/ls): Use `apply'.
5225
5226 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
5227 multi-hops, instead of Tramp internals.
5228
01795a1b
MA
5229 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
5230
5231 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
5232 when F1 and F2 are located on different hosts.
5233
63408057
CY
52342012-07-14 Chong Yidong <cyd@gnu.org>
5235
5236 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
5237 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
5238 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
5239 (xterm-mouse--read-event-sequence-1000)
5240 (xterm-mouse--read-event-sequence-1006): New functions. For old
5241 mouse protocol, handle M-mouse-X events correctly.
5242 (xterm-mouse-event): New arg specifying mouse protocol.
5243 (turn-on-xterm-mouse-tracking-on-terminal)
5244 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
45fd731c
SM
5245 sequence to toggle extended coordinates on newer XTerms.
5246 This appears to be harmless on terminals which do not support this.
63408057 5247
cd276f6e
LL
52482012-07-14 Leo Liu <sdl.web@gmail.com>
5249
28ca98ac
LL
5250 Add fringe bitmap indicators for flymake. (Bug#11253)
5251 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
5252 (flymake-make-overlay): New arg BITMAP.
5253 (flymake-error-bitmap, flymake-warning-bitmap)
5254 (flymake-fringe-indicator-position): New user variables.
5255
cd276f6e
LL
5256 * fringe.el: New bitmap exclamation-mark.
5257
04408072
JD
52582012-07-14 Jan Djärv <jan.h.d@swipnet.se>
5259
5260 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
5261 also (Bug#7879).
5262
b5cf7fc4
CY
52632012-07-14 Chong Yidong <cyd@gnu.org>
5264
5265 * electric.el (electric-pair-post-self-insert-function): Fix pair
5266 insertion in empty-region case (Bug#11520).
5267
be755c79
RT
52682012-07-14 Chong Yidong <cyd@gnu.org>
5269
45fd731c
SM
5270 * bindings.el: Consolidate ctl-x-r-map bindings.
5271 Bind copy-rectangle-as-kill to C-x r w.
be755c79
RT
5272
5273 * rect.el, register.el: Move bindings to bindings.el.
5274
52752012-07-14 Reuben Thomas <rrt@sc3d.org>
5276
5277 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
5278
7f5b3198
AS
52792012-07-13 Andreas Schwab <schwab@linux-m68k.org>
5280
5281 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
5282
97662200
JB
52832012-07-13 Juanma Barranquero <lekktu@gmail.com>
5284
80185fed
JB
5285 * bindings.el (top): Use `mapc' instead of `mapcar'.
5286
97662200
JB
5287 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
5288
2bb1ae55
MA
52892012-07-13 Michael Albinus <michael.albinus@gmx.de>
5290
5291 * progmodes/sql.el (sql-comint): Suppress the check for program on
5292 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
5293 (Bug#11908)
5294
dea31bd3
CY
52952012-07-13 Chong Yidong <cyd@gnu.org>
5296
5297 * bindings.el: Assign a non-nil permanent-local property to
5298 per-buffer variables which lack a default value (Bug#11930).
5299
5300 * help-fns.el (describe-variable): In the "automatically becomes
5301 local" notice, take note of permanent-local variables.
5302
b68b3337
CY
53032012-07-13 Chong Yidong <cyd@gnu.org>
5304
5305 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
5306 to allow printing the message when called from Lisp.
5307
5308 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5309 Remove toggle-read-only.
5310
5311 * bs.el (bs-toggle-readonly):
45fd731c
SM
5312 * buff-menu.el (Buffer-menu-toggle-read-only):
5313 Remove with-no-warnings around toggle-read-only.
b68b3337
CY
5314
5315 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
5316 Remove with-no-warnings around toggle-read-only.
5317 (ffap-read-only, ffap-read-only-other-window)
5318 (ffap-read-only-other-frame): Callers changed.
5319
5320 * help-mode.el: Don't require view package.
5321 (help-mode-finish): Set buffer-read-only instead of calling
5322 toggle-read-only.
5323
5324 * bindings.el (mode-line-toggle-read-only):
5325 * dired.el (dired-toggle-read-only):
5326 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
5327 with non-nil second arg.
5328
5329 * emacs-lisp/eieio-custom.el (eieio-customize-object):
5330 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
5331 directly.
5332
56bc1586
EZ
53332012-07-12 Eli Zaretskii <eliz@gnu.org>
5334
5335 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
5336 not incf.
5337
a464a6c7
SM
53382012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
5339
5340 More CL cleanups and reduction of use of cl.el.
5341 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
5342 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
5343 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
5344 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
5345 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
5346 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
5347 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
5348 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
5349 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
5350 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
5351 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
5352 * eshell/em-cmpl.el, eshell/em-banner.el:
5353 * calendar/parse-time.el: Use cl-lib.
5354 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
5355 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
5356 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
5357 * term/ns-win.el, term.el, shell.el, ps-samp.el:
5358 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
5359 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
5360 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
5361 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
5362 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
5363 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
5364 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
5365 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
5366 `lambda' rather than with `quote'.
5367 (eshell-do-opt): Adjust accordingly.
5368 (eshell-process-option): Simplify.
5369 * eshell/esh-var.el:
5370 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
5371 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
5372 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
5373 to `pcase--dontcare'.
5374 * emacs-lisp/cl.el (labels): Mark obsolete.
5375 (cl--letf, letf): Move to cl-lib.
5376 (cl--letf*, letf*): Remove.
5377 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
5378 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
5379 (cl-progv): Rewrite.
5380 (cl--letf, cl-letf): Move from cl.el.
5381 (cl-letf*): New macro.
5382 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
5383
7ad4afe1
MA
53842012-07-11 Michael Albinus <michael.albinus@gmx.de>
5385
5386 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
5387
9af57756
CY
53882012-07-11 Chong Yidong <cyd@gnu.org>
5389
5390 * vc/log-edit.el (log-edit-vc-backend): New variable.
5391 (log-edit): Doc fix.
5392
5393 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
5394 argument of log-edit to set up all local variables.
5395 (vc-start-logentry): New optional arg specifying VC backend.
5396
5397 * vc/vc.el (vc-checkin): Use it.
5398 (vc-deduce-fileset): Handle Log Edit buffers.
5399 (vc-diff): Make first argument optional too.
5400
5401 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
5402
8477cc7a
MA
54032012-07-10 Michael Albinus <michael.albinus@gmx.de>
5404
5405 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
5406 command, just in case. The function is not needed anymore.
5407 (eshell-external-command): Do not call `eshell-remote-command'.
5408
19faa8e8
SM
54092012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
5410
f58e0fd5
SM
5411 Reduce use of (require 'cl).
5412 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
5413 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
5414 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
5415 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
5416 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
5417 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
5418 * battery.el, avoid.el, abbrev.el: Use cl-lib.
5419 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
5420 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
5421 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
5422 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
5423 * calculator.el, autorevert.el, apropos.el: Don't require CL.
5424 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
5425 (byte-compile-unfold-bcf, byte-compile-check-variable):
5426 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
5427 (byte-compile-nilconstp):
5428 * emacs-lisp/autoload.el (make-autoload): Use pcase.
5429 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
5430
2519d43a
SM
5431 * emacs-lisp/gv.el (cond): Make it a valid place.
5432 (if): Simplify slightly.
5433
19faa8e8
SM
5434 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
5435 (pcase--self-quoting-p): New function.
5436 (pcase--u1): Use it.
5437
c4907a5e
GM
54382012-07-10 Glenn Morris <rgm@gnu.org>
5439
5440 * emacs-lisp/authors.el (authors-fixed-entries):
5441 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
5442
c4444d16
PE
54432012-07-09 Paul Eggert <eggert@cs.ucla.edu>
5444
5445 Rename configure.in to configure.ac (Bug#11603).
5446 * emacs-lisp/authors.el (authors-canonical-file-name):
5447 * progmodes/autoconf.el (autoconf-mode):
5448 Prefer configure.ac to configure.in.
5449
d75be97d
CY
54502012-07-08 Chong Yidong <cyd@gnu.org>
5451
01ac65bd
CY
5452 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
5453 Implement the mouse-1-click-follows-link handling properly.
5454
5455 * info.el (Info-link-keymap): Use follow-link mechanism for
5456 header-line links (Bug#374).
5457
d75be97d
CY
5458 * simple.el (deactivate-mark): Do not set the primary selection
5459 if another program has acquired it (Bug#11772).
5460
87a92845 54612012-07-07 Kevin Ryde <user42@zip.com.au>
f0ecdfea
KR
5462
5463 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
5464 (woman-decode-region): Replace escaped-escapes without destroying
5465 bold or underline (Bug#11552).
87a92845 5466 (woman2-process-escapes): Handle nofill regions (Bug#11591).
f0ecdfea 5467
621b9d6c
CY
54682012-07-07 Chong Yidong <cyd@gnu.org>
5469
5470 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
19faa8e8
SM
5471 (interprogram-cut-function, interprogram-paste-function):
5472 Mention that we typically mean the clipboard.
621b9d6c 5473
133a11fc
GM
54742012-07-06 Glenn Morris <rgm@gnu.org>
5475
0d27a45e
GM
5476 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
5477
133a11fc
GM
5478 * files.el (toggle-read-only): Restrict message to interactive use.
5479
07b151f1
MA
54802012-07-06 Michael Albinus <michael.albinus@gmx.de>
5481
5482 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
5483
5484 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
5485
211b896b
GM
54862012-07-06 Glenn Morris <rgm@gnu.org>
5487
50394322
GM
5488 * Makefile.in (compile-one-process): Rename from "recompile".
5489
211b896b
GM
5490 * Makefile.in (bzr-update): "compile" is the same as "recompile
5491 autoloads", but parallelizable, so use that instead.
5492
4737eec9
DG
54932012-07-06 Dmitry Gutov <dgutov@yandex.ru>
5494
5495 * window.el (quit-window): Always restore window height when
8137e7b3 5496 it's saved in quit-restore parameter (Bug#11810).
4737eec9 5497
226c3633 54982012-07-06 Glenn Morris <rgm@gnu.org>
cb442973
GM
5499
5500 * simple.el (kill-whole-line): Doc tweak.
5501
226c3633 55022012-07-06 Eli Zaretskii <eliz@gnu.org>
93842198
EZ
5503
5504 * files.el (file-relative-name): Compare file names
5505 case-insensitively if on MS-Windows or MS-DOS, or if
5506 read-file-name-completion-ignore-case is non-nil. Don't use
5507 case-fold-search for this purpose. (Bug#11827)
5508
4dc7c8d5
SM
55092012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5510
5511 * calendar/cal-dst.el (calendar-current-time-zone):
5512 Return calendar-current-time-zone-cache if non-nil.
5513
55142012-07-17 Masatake YAMATO <yamato@redhat.com>
226c3633 55152012-07-06 Andreas Schwab <schwab@linux-m68k.org>
3d8b9024 5516
19faa8e8
SM
5517 * calendar/cal-dst.el (calendar-current-time-zone):
5518 Return calendar-current-time-zone-cache if non-nil.
3d8b9024 5519
60198fc9
GM
55202012-07-06 Glenn Morris <rgm@gnu.org>
5521
5522 * Makefile.in (cvs-update): Remove old alias.
5523
957b3189
MA
55242012-07-05 Michael Albinus <michael.albinus@gmx.de>
5525
5526 Sync with Tramp 2.2.6-pre.
5527
5528 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
5529 compatible declaration.
5530
19faa8e8
SM
5531 * net/tramp-cmds.el (tramp-append-tramp-buffers):
5532 Protect `list-load-path-shadows' call.
957b3189
MA
5533
5534 * net/tramp-compat.el (top): Require packages, which aren't
5535 autoloaded anymore for XEmacs. Protect call of
5536 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
5537 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
5538 it hurts at least for SXEmacs.
5539 (tramp-compat-temporary-file-directory): In XEmacs, there is no
5540 standard-value for `temporary-file-directory'.
5541
5542 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
5543 Redirect stderr to /dev/null.
5544 (tramp-sh-handle-write-region): uid and gid can be floats.
5545 Reported by Russell Sim <russell.sim@gmail.com>.
5546 (tramp-sh-handle-vc-registered): Hide errors.
5547 (tramp-vc-file-name-handler): Use dummy results for `process-file'
5548 and `start-file-process'.
5549 (tramp-maybe-open-connection): Check also whether `non-essential'
5550 is bound.
5551
566df3fc
CY
55522012-07-04 Chong Yidong <cyd@gnu.org>
5553
5554 * xml.el (xml--parse-buffer): Use xml-syntax-table.
5555 (xml-parse-tag): Likewise, and avoid changing entity tables.
5556 (xml-syntax-table): Define from scratch, making sure not to give
5557 x2000 and other Unicode spaces whitespace syntax, since those are
5558 not spaces in XML.
5559 (xml-parse-fragment): Delete unused function.
5560 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
5561 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
5562 (xml-entity-ref, xml-pe-reference-re)
5563 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
5564 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
5565 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
5566 (xml-entity-value-re): Use syntax references in regexps where
5567 possible; no need to define inside a let-binding.
5568 (xml-parse-dtd): Use xml-pe-reference-re.
5569 (xml-entity-or-char-ref-re): New defconst.
5570 (xml-parse-string, xml-substitute-special): Use it.
5571
30eabd7a
SM
55722012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5573
0781098a
SM
5574 * files.el (locate-dominating-file): Allow `name' to be a predicate.
5575 (find-file--read-only): New function.
5576 (find-file-read-only, find-file-read-only-other-window)
5577 (find-file-read-only-other-frame): Use it.
5578 (insert-file-contents-literally): Don't `fset'.
5579 (get-free-disk-space): Use locate-dominating-file.
5580
b5771c0d
SM
5581 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
5582 function is already compiled.
5583
30eabd7a
SM
5584 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
5585
b4886f6e
MA
55862012-07-03 Michael Albinus <michael.albinus@gmx.de>
5587
5588 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
5589 files on the same host.
5590
b9d82339
AS
55912012-07-03 Andreas Schwab <schwab@linux-m68k.org>
5592
5593 * help-fns.el (describe-function-1): Only call
5594 help-fns--autoloaded-p when we have a file name. (Bug#11848)
5595
a76e6535
CY
55962012-07-03 Chong Yidong <cyd@gnu.org>
5597
5598 * xml.el: Protect parser against XML bombs.
5599 (xml-entity-expansion-limit): New variable.
5600 (xml-parse-string, xml-substitute-special): Use it.
5601 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
5602
b544fef2
GM
56032012-07-03 Glenn Morris <rgm@gnu.org>
5604
5605 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5606 Allow linking to specific messages in debbugs reports (eg 123#5).
5607
a7aef6f5
CY
56082012-07-02 Chong Yidong <cyd@gnu.org>
5609
5610 * xml.el: Fix entity and character reference expansion, allowing
5611 them to expand into markup as per XML spec.
5612 (xml-default-ns): New variable.
5613 (xml-entity-alist): Use XML spec definitions for lt and amp.
30eabd7a
SM
5614 (xml-parse-region): Make first two arguments optional.
5615 Discard text properties.
5616 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
5617 All callers changed.
a7aef6f5
CY
5618 (xml-parse-tag): Call xml-parse-tag-1. For backward
5619 compatibility, this function should not modify buffer contents.
5620 (xml-parse-tag-1): Fix opening-tag regexp.
5621 (xml-parse-string): Rewrite, handling entity and character
5622 references properly.
5623 (xml--entity-replacement-text): Signal an error if a parameter
5624 entity is undefined.
5625
3df31c9f
SM
56262012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
5627
2b5208f1
SM
5628 * comint.el (comint-output-filter): Filter out repeated prompts.
5629
3df31c9f
SM
5630 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
5631 and file-name-absolute-p.
5632 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
5633 internal calls.
5634
e3ac1281
PE
56352012-07-02 Paul Eggert <eggert@cs.ucla.edu>
5636
5637 Spelling fixes.
5638 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
5639 Rename from byte-compile--refiy-function. All uses changed.
5640
fbf2e7ad
CY
56412012-07-01 Chong Yidong <cyd@gnu.org>
5642
5643 * xml.el (xml--parse-buffer): New function. Move most of
5644 xml-parse-region here.
5645 (xml-parse-region): Copy region into a temporary buffer, since
5646 parameter entity substitution requires changing buffer contents.
5647 Use xml--parse-buffer.
5648 (xml-parse-file): Use xml--parse-buffer.
5649 (xml-parse-dtd): Make parameter entity substitution work right.
6fe566a7 5650 Use proper regexps for ELEMENT declarations (Bug#7172).
fbf2e7ad 5651
9bf0aa15
GM
56522012-06-30 Glenn Morris <rgm@gnu.org>
5653
bbce2853
GM
5654 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
5655
9bf0aa15
GM
5656 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
5657 Remove outdated and unnecessary dbus declarations.
5658
0d23c240
EZ
56592012-06-30 Eli Zaretskii <eliz@gnu.org>
5660
5661 * emacs-lisp/timer.el (timer-until): Subtract results of
5662 float-time, instead of taking float-time of the result of
5663 time-subtract, since float-time signals an error for negative time
5664 arguments.
5665
b3218de1
CY
56662012-06-30 Chong Yidong <cyd@gnu.org>
5667
5668 * xml.el (xml-*-re): Convert defvars into defconsts, and
5669 eval-and-compile them so eval-and-compile works on derivatives.
5670 (xml--entity-replacement-text): Use eval-and-comple.
5671
a40c87a0
MA
56722012-06-30 Michael Albinus <michael.albinus@gmx.de>
5673
5674 * vc/vc-git.el (vc-git-registered): Use cache property
5675 `git-registered'.
5676 (vc-git-mode-line-string): Call `vc-working-revision' instead of
5677 `vc-git-working-revision' in order to benefit from the cache.
2bb1ae55 5678 (vc-git-root): Use cache property `git-root'. (Bug#11757)
a40c87a0 5679
ac87de97
DG
56802012-06-30 Dmitry Gutov <dgutov@yandex.ru>
5681
5682 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
2bb1ae55 5683 removed (likely outside Emacs). (Bug#11757)
ac87de97 5684
ac10fe06
SM
56852012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5686
3df31c9f 5687 * emacs-lisp/cl-lib.el: Require macroexp.
ac10fe06 5688
7f3fbd5d
CY
56892012-06-30 Chong Yidong <cyd@gnu.org>
5690
5691 * xml.el: Implement XML parameter entities.
5692 (xml-parameter-entity-alist): New variable.
5693 (xml-parse-region, xml-parse-fragment): Preserve previous values
5694 of xml-entity-alist and xml-parameter-entity-alist, so that
5695 repeated calls on different documents do not change them.
5696 (xml-parse-tag): Fix doctype regexp.
5697 (xml--entity-replacement-text): New function.
5698 (xml-parse-dtd): Use it. Don't handle system entities; doing that
5699 properly requires url retrieval which is unimplemented.
5700 (xml-escape-string): Doc fix.
5701
3cfbebba
SM
57022012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5703
5704 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
5705
2af3565e
DA
57062012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5707
5708 * fringe.el (fringe-mode): Doc fix.
5709
929df0e7
MA
57102012-06-29 Michael Albinus <michael.albinus@gmx.de>
5711
5712 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
5713 is non-nil.
5714 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
5715 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
5716
c8d3a25c 57172012-06-29 Andreas Schwab <schwab@linux-m68k.org>
3d8b9024 5718
c8d3a25c
GM
5719 * calendar/cal-dst.el (calendar-current-time-zone):
5720 Return calendar-current-time-zone-cache if non-nil.
3d8b9024 5721
c8d3a25c 57222012-06-29 Masatake YAMATO <yamato@redhat.com>
26e8548e
MY
5723
5724 * progmodes/which-func.el (which-func-format):
5725 Add mouse-face. (Bug#11698)
5726
c8d3a25c
GM
57272012-06-29 Leo Liu <sdl.web@gmail.com>
5728
5729 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
5730
57312012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5732
5733 * minibuffer.el (minibuffer-confirm-exit-commands):
5734 Add completion-at-point (bug#11725).
5735
57362012-06-29 Glenn Morris <rgm@gnu.org>
5737
5738 * progmodes/f90.el (f90-font-lock-keywords-2):
5739 Add some preprocessor elements. (Bug#10499)
5740
57412012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5742
5743 * progmodes/cperl-mode.el (cperl-update-syntaxification):
5744 Use syntax-propertize (bug#11739).
5745
2badeec4
JB
57462012-06-28 Juanma Barranquero <lekktu@gmail.com>
5747
5748 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
5749
ae4969c2
JD
57502012-06-28 Julien Danjou <julien@danjou.info>
5751
5752 * term.el (term-handle-colors-array): Use a set of new faces to
5753 color the terminal. Also uses :inverse-video property.
5754 (term-default-fg-color): Set to nil by default, deprecate in favor
5755 of `term-face'.
5756 (term-default-bg-color): Set to nil by default, deprecate in favor
5757 of `term-face'.
5758 (term-current-face): Use `term-face' by default.
5759 (term-bold-attribute): Variable deleted.
5760
1c9bd870
GM
57612012-06-28 Glenn Morris <rgm@gnu.org>
5762
5763 * simple.el (completion-list-mode-finish):
5764 Don't use toggle-read-only. (Since completion-list-mode has
5765 a special mode-class, it wasn't doing anything extra anyway.)
5766
c207708c
SM
57672012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
5768
5769 Make inlining of other-mode interpreted functions work (bug#11799).
5770 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
5771 (byte-compile): Use it to fix compilation of lexical-binding closures.
5772 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
5773 function, if needed.
5774
3fd56834
SM
57752012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5776
04901786
SM
5777 * help-mode.el (help-make-xrefs): Don't just withstand
5778 cyclic-variable-indirection but any error in documentation-property.
5779
1ec4b7b2
SM
5780 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
5781 memory use.
5782 * bindings.el (bindings--define-key): New function.
5783 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
5784 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
5785 * bindings.el: Use it to purecopy define-key bindings.
5786
e309e2a5
SM
5787 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
5788
d5c6faf9
SM
5789 * emacs-lisp/cl.el (flet): Mark obsolete.
5790 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
5791 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
5792 * progmodes/js.el (js-c-fill-paragraph):
5793 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
5794 (ebrowse-switch-member-buffer-to-derived-class):
5795 * play/5x5.el (5x5-solver): Use cl-flet.
5796
6e9590e2
SM
5797 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
5798 (cl--symbol-function): New macro.
5799 (cl--letf, cl--letf*): Use it.
5800
3fd56834
SM
5801 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5802 Strip "toggle-" if any.
5803
35ff222c
GM
58042012-06-27 Glenn Morris <rgm@gnu.org>
5805
1ba6038a
GM
5806 * info.el (Info-default-directory-list): Move here from paths.el.
5807 * paths.el: Remove file, which is now empty.
5808 * loadup.el: No longer load "paths".
5809
0ea0e51b
GM
5810 * custom.el (custom-initialize-delay): Doc fix.
5811
35ff222c
GM
5812 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
5813 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
5814 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
5815 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
5816 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
5817 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
5818 * eshell/eshell.el (eshell-defgroup): Remove alias.
5819
c89926a5
CY
58202012-06-27 Chong Yidong <cyd@gnu.org>
5821
5822 * help.el (help-enable-auto-load): New variable.
5823
5824 * help-fns.el (help-fns--autoloaded-p): New function.
5825 (describe-function-1): Refer to a function as "autoloaded" if it
5826 was autoloaded at any time in the past. Perform autoloading if
5827 help-enable-auto-load is non-nil.
5828
cc06e7e7
EZ
58292012-06-26 Eli Zaretskii <eliz@gnu.org>
5830
5831 * makefile.w32-in (compile, compile-always): Depend on
5832 update-subdirs, not on subdirs.el. Otherwise, several different
5833 sub-targets of 'bootstrap' running in parallel could
5834 simultaneously write to subdirs.el, producing a garbled file.
5835
d2c32364
SS
58362012-06-26 Sam Steingold <sds@gnu.org>
5837
5838 * files.el (file-name-base): New convenience function.
0d14cc21
GM
5839 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
5840 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
5841 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
5842 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
5843 * textmodes/ispell.el, textmodes/reftex-ref.el:
d2c32364
SS
5844 * textmodes/tex-mode.el: Use it.
5845 Did not touch cedet and org because they are maintained elsewhere.
5846
5cf983b2
MR
58472012-06-26 Martin Rudalics <rudalics@gmx.at>
5848
5849 * calendar/calendar.el (calendar-exit): Don't try to delete or
5850 iconify last frame. See:
5851 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
5852
8c4f2952
JD
58532012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
5854
5855 * server.el (server-process-filter): Remember dir in the
5856 process's `server-client-directory' properties.
5857
772b2e2c
CY
58582012-06-24 Chong Yidong <cyd@gnu.org>
5859
5860 * xml.el (xml-parse-tag): Correctly handle comment embedded in
5861 non-tag text.
5862
711b11e1
JB
58632012-06-23 Juanma Barranquero <lekktu@gmail.com>
5864
5865 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
5866
dc5d230c
SM
58672012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5868
5869 * help-fns.el (describe-variable): Don't croak when doc is not found.
5870 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
5871 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
5872 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
5873 * emacs-lisp/smie.el (smie-next-sexp): CSE.
5874 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
5875 ((lambda ..) ..).
5876 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
5877
136e1c1d
CY
58782012-06-23 Chong Yidong <cyd@gnu.org>
5879
e8c1cabf
CY
5880 * info.el (Info-mouse-follow-link): Accept symbol values of
5881 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
136e1c1d
CY
5882 (Info-fontify-node): Use Info-link-keymap for all navigation
5883 buttons, with link-args property to perform the desired action.
5884 (Info-link-keymap): Doc fix.
5885 (Info-next-link-keymap, Info-prev-link-keymap)
5886 (Info-up-link-keymap): Delete now-unused keymaps.
5887
0e9e6c6a
CY
58882012-06-23 Chong Yidong <cyd@gnu.org>
5889
05e89fea
CY
5890 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
5891
0e9e6c6a
CY
5892 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
5893 system abbrevs.
5894
5895 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
5896
e33c6771
SM
58972012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5898
b68581e2
SM
5899 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
5900 (bug#11719).
5901
e33c6771
SM
5902 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
5903 the requote function doesn't work properly (bug#11714).
5904
7117e105
GM
59052012-06-23 Glenn Morris <rgm@gnu.org>
5906
5907 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
5908
36cec983
SM
59092012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5910
5911 Further GV/CL cleanups.
5912 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
5913 gv-expander.
5914 (gv--defun-declaration): New function.
5915 (defun-declarations-alist): Use it.
5916 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
5917 (gv-place): Autoload.
5918 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
5919 original definition of dotimes and dolist.
5920 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
5921 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
5922 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
5923 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
5924 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
5925 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
5926 to the function's definition.
5927 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
5928 * window.el:
5929 * files.el:
5930 * faces.el:
5931 * env.el: Don't use CL.
5932
d35af63c
PE
59332012-06-22 Paul Eggert <eggert@cs.ucla.edu>
5934
5935 Support higher-resolution time stamps (Bug#9000).
5936
5937 * calendar/time-date.el (with-decoded-time-value): New arg
5938 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
5939 (encode-time-value): New optional arg PICO. New type 3.
5940 (time-to-seconds) [!float-time]: Support the new picoseconds
5941 component if it's used.
5942 (seconds-to-time, time-subtract, time-add):
5943 Support ps-resolution time stamps as well.
5944
5945 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
5946 (timerp): Timer vectors now have length 9, not 8.
5947 (timer--time): Support new-style (4-part) time stamps.
5948 (timer-next-integral-multiple-of-time): Time stamps now have
5949 picosecond resolution, so take a bit more care about rounding.
5950 (timer-relative-time, timer-inc-time): New optional arg psecs.
5951 (timer-set-time-with-usecs): Set psecs to 0.
5952 (timer--activate): Check psecs component, too.
5953
5954 * proced.el (proced-time-lessp): Support ps-resolution stamps.
5955
ac77b21a
SM
59562012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5957
f143bfe3
SM
5958 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
5959 Move the non-essential binding to the post/pre-command-hook where it is
5960 more obviously correct.
5961
ac77b21a
SM
5962 * subr.el (read-passwd): Don't use a history at all.
5963 * savehist.el (savehist-save): Remove password saved accidentally
5964 because of the above bug.
5965
76386c5a
BG
59662012-06-22 Bastien Guerry <bzg@gnu.org>
5967
5968 * files.el (toggle-read-only): Display a message telling whether
5969 the buffer is read-only or not (bug#11726).
5970
2ee3d7f0
SM
59712012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5972
5973 * emacs-lisp/gv.el: New file.
5974 * subr.el (push, pop): Extend to generalized variables.
5975 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
5976 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
5977 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
5978 gv-define-simple-setter, and gv-define-expander.
5979 Remove setf-methods defined in gv. Rename cl-setf -> setf.
5980 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
5981 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
5982 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
5983 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
5984 gv-letplace.
5985 (cl-defstruct): Don't define setf-method any more.
5986 * emacs-lisp/cl.el (flet): Don't autoload.
5987 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
5988 (define-setf-expander, defsetf, define-modify-macro)
5989 (cl-struct-setf-expander): Move from cl-lib.el.
5990 * emacs-lisp/syntax.el:
5991 * emacs-lisp/ewoc.el:
5992 * emacs-lisp/smie.el:
5993 * emacs-lisp/cconv.el:
5994 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
5995 (timer--time): Use gv-define-simple-setter.
5996 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
5997 to avoid coding-system problems in subr.el. Adjust all users.
5998 (macroexp--maxsize, macroexp-small-p): New functions.
5999 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
6000 * scroll-bar.el (scroll-bar-mode):
6001 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
6002 (normal-erase-is-backspace-mode): Don't use the `eq' place.
6003 * winner.el (winner-configuration, winner-make-point-alist)
6004 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
6005 * files.el (locate-file-completion-table): Avoid list*.
6006
c5695d1d
CY
60072012-06-22 Chong Yidong <cyd@gnu.org>
6008
6009 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
6010 (dired-create-files): Doc fix (Bug#11329).
6011 (dired-do-copy): Doc fix (Bug#11334).
6012 (dired-mark-read-string): Doc fix (Bug#11553).
6013
2ee3d7f0
SM
6014 * dired.el (dired-recursive-copies, dired-recursive-deletes):
6015 Doc fix (Bug#11326).
c5695d1d
CY
6016 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
6017 (dired-dwim-target): Doc fix.
6018
6019 * wdired.el (wdired-mode): Doc fix.
6020
89b5595a
GM
60212012-06-22 Glenn Morris <rgm@gnu.org>
6022
575db3f1
GM
6023 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
6024 (pcmpl-rpm-cache-stamp-file): New constant.
6025 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
6026 (pcmpl-rpm-packages): Optionally cache list of packages.
6027
a4c8dd51
GM
6028 * pcmpl-rpm.el (pcmpl-rpm): New group.
6029 (pcmpl-rpm-query-options): New option.
6030 (pcmpl-rpm-packages): No need to inline it.
6031 Use pcmpl-rpm-query-options.
6032
89b5595a
GM
6033 * calendar/calendar.el (calendar-in-read-only-buffer):
6034 Avoid some needless mode changes.
6035
e76f0800
CY
60362012-06-21 Chong Yidong <cyd@gnu.org>
6037
6038 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
6039 (desktop-path): Remove . from the default value (Bug#10977).
6b67c0d4 6040 (desktop-read): Use user-emacs-directory if desktop-path is nil.
e76f0800 6041
297a8f1d
CY
60422012-06-20 Chong Yidong <cyd@gnu.org>
6043
6044 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
6045
d34c18b1
DR
60462012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
6047
6048 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
6049 (bug#11201).
6050
32f7f28e
CY
60512012-06-20 Chong Yidong <cyd@gnu.org>
6052
6053 * term.el (term-window-width): Handle the case of a missing right
6054 fringe (Bug#8837).
6055 (term-check-size): Use window-text-height (Bug#5445).
d34c18b1
DR
6056 (term-mode): Use define-derived-mode. Minor cleanups.
6057 Set font-lock-defaults (Bug#7692).
6ff7caa8
CY
6058 (term-move-columns, term-insert-char, term-emulate-terminal)
6059 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
32f7f28e 6060
493c6688
MA
60612012-06-20 Michael Albinus <michael.albinus@gmx.de>
6062
d34c18b1
DR
6063 * net/ange-ftp.el (ange-ftp-get-passwd):
6064 Bind `enable-recursive-minibuffers'.
493c6688
MA
6065 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
6066
3f06ecf4
DR
60672012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
6068
6069 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
6070
68f12411
GM
60712012-06-19 Glenn Morris <rgm@gnu.org>
6072
6073 * progmodes/python.el (python-mode): Derive from prog-mode.
6074
b3820318
KG
60752012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
6076
6077 * emulation/edt.el (edt-default-menu-bar-update-buffers)
6078 (edt-user-menu-bar-update-buffers): New functions.
6079 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
6080
c6bf3022
CY
60812012-06-19 Chong Yidong <cyd@gnu.org>
6082
6083 * subr.el (with-selected-window): Preserve the selected window's
6084 terminal's top-frame (Bug#4702).
6085
6086 * window.el (save-selected-window): Likewise.
6087
25f09295
SM
60882012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6089
6090 * progmodes/python.el (python-rx-constituents): Move backquote.
6091 (python-skeleton-define, python-define-auxiliary-skeleton):
6092 Use `declare'.
6093
6b11952a
MA
60942012-06-18 Michael Albinus <michael.albinus@gmx.de>
6095
6096 * minibuffer.el (read-file-name-default): Revert the patch from
6097 2012-06-17.
6098
ee4b1330
SM
60992012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6100
6101 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
6102 (pcase--u1, pcase--q1): Don't use apply-partially.
6103
35647f79
GM
61042012-06-18 Glenn Morris <rgm@gnu.org>
6105
6106 * progmodes/python.el (python-proc, python-buffer)
6107 (python-send-receive, python-send-string): Fix obsolete versions.
6108
24b0cff0
MR
61092012-06-18 Martin Rudalics <rudalics@gmx.at>
6110
6111 * window.el (special-display-p): Completely remove stringp
6112 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
6113
29855149
MA
61142012-06-17 Michael Albinus <michael.albinus@gmx.de>
6115
6116 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
6117
6118 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
6119
6120 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
6121 * net/tramp-sh.el (tramp-maybe-open-connection):
6122 Throw if `non-essential' is non-nil.
6123
07463363
MR
61242012-06-17 Martin Rudalics <rudalics@gmx.at>
6125
6126 * window.el (special-display-p): Signal an error if BUFFER-NAME
6127 is not a string (Bug#11713).
6128
48d1354e
PE
61292012-06-17 Paul Eggert <eggert@cs.ucla.edu>
6130
6131 * progmodes/python.el (python-info-beginning-of-backslash):
6132 Rename from python-info-beginning-of-backlash, as a spelling fix.
6133
eb4a8a9a
CY
61342012-06-17 Chong Yidong <cyd@gnu.org>
6135
6136 * term.el (term-emulate-terminal): If term-check-size is called,
6137 move point to the process mark without resetting point (Bug#4635).
6138
ddfbf826 61392012-06-17 Glenn Morris <rgm@gnu.org>
9c758578
GM
6140
6141 * international/mule-cmds.el (mule-menu-keymap)
6142 (set-language-environment, set-locale-environment): Doc tweaks.
6143
9b0e3eba
AA
61442012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
6145
6146 * cus-face.el (custom-face-attributes): Add wave-style underline
6147 attribute.
6148 * faces.el (set-face-attribute): Update docstring to describe
6149 wave-style underline attribute.
6150
771e3eae
CY
61512012-06-16 Chong Yidong <cyd@gnu.org>
6152
6153 * term/xterm.el (terminal-init-xterm): Discard input before
6154 querying background mode (Bug#10959).
6155
7ae2ea10
SM
61562012-06-16 Stefan Merten <smerten@oekonux.de>
6157
6158 * textmodes/rst.el: Added and corrected some comments.
6159 (rst-re-alist-def): Improve symbol syntax.
6160 (rst-mode-syntax-table): Correct syntax entries.
6665a6fd
SM
6161 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
6162 (rst-official-version, rst-official-cvs-rev): Update version
6163 information.
7ae2ea10 6164
b6974efa
JB
61652012-06-15 Juanma Barranquero <lekktu@gmail.com>
6166
6167 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
6168 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
6169
8826d473
GM
61702012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
6171
6172 * progmodes/python.el: New python.el merge.
6173 (python-guess-indent): Obsolete var.
6174 (python-indent-guess-indent-offset): New defcustom.
6175 (python-indent): Obsolete var.
6176 (python-indent-offset): New defcustom.
6177 (python-python-command, python-jython-command): Delete var.
6178 (python-shell-interpreter): New defcustom.
6179 (python-pdbtrack-do-tracking-p): Delete var.
6180 (python-pdbtrack-activate): New defcustom.
6181 (python-use-skeletons): Obsolete var.
6182 (python-skeleton-autoinsert): New defcustom.
6183 (inferior-python-filter-regexp, python-continuation-offset)
6184 (python-honour-comment-indentation, python-indent-string-contents)
6185 (python-jython-packages, python-mode-hook)
6186 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
6187 (python-shell-prompt-alist)
6188 (python-source-modes): Delete defcustoms.
6189 (python-check-buffer-name, python-eldoc-setup-code)
6190 (python-eldoc-string-code, python-ffap-setup-code)
6191 (python-ffap-string-code, python-fill-comment-function)
6192 (python-fill-decorator-function, python-fill-paren-function)
6193 (python-fill-string-function, python-imenu-include-defun-type)
6194 (python-imenu-make-tree, python-imenu-subtree-root-label)
6195 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
6196 (python-shell-compilation-regexp-alist)
6197 (python-shell-completion-module-string-code)
6198 (python-shell-completion-pdb-string-code)
6199 (python-shell-completion-setup-code)
6200 (python-shell-completion-string-code)
6201 (python-shell-enable-font-lock, python-shell-exec-path)
6202 (python-shell-extra-pythonpaths)
6203 (python-shell-internal-buffer-name, python-shell-interpreter-args)
6204 (python-shell-process-environment)
6205 (python-shell-prompt-block-regexp)
6206 (python-shell-prompt-output-regexp)
6207 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
6208 (python-shell-send-setup-max-wait, python-shell-setup-codes)
6209 (python-shell-virtualenv-path): New defcustoms.
6210 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
6211 (inferior-python-mode-syntax-table, python--prompt-regexp)
6212 (python-buffer, python-command python-python-command)
6213 (python-default-template, python-imports, python-indent-index)
6214 (python-indent-list, python-indent-list-length)
6215 (python-mode-running, python-pdbtrack-is-tracking-p)
6216 (python-preoutput-continuation, python-preoutput-leftover)
6217 (python-preoutput-result, python-preoutput-skip-next-prompt)
6218 (python-prev-dir/file, python-recursing)
6219 (python-saved-check-command, python-version-checked)
6220 (python-which-func-length-limit)
6221 (view-return-to-alist): Delete vars.
6222 (python-check-custom-command, python-dotty-syntax-table)
6223 (python-imenu-index-alist, python-indent-current-level)
6224 (python-indent-dedenters, python-indent-levels)
6225 (python-nav-beginning-of-defun-regexp)
6226 (python-nav-list-defun-positions-cache)
6227 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
6228 (python-shell-internal-buffer)
6229 (python-skeleton-available): New vars.
6230 (def-python-skeleton): Delete macro.
6231 (python-skeleton-define): New macro.
6232 (python-define-auxiliary-skeleton, python-rx): New macros.
6233 (python-insert-class): Delete command.
6234 (python-skeleton-class): New command.
6235 (python-insert-def): Delete command.
6236 (python-skeleton-def): New command.
6237 (python-insert-for): Delete command.
6238 (python-skeleton-for): New command.
6239 (python-insert-if): Delete command.
6240 (python-skeleton-if): New command.
6241 (python-insert-try/except, python-insert-try/finally): Delete commands.
6242 (python-skeleton-try): New command.
6243 (python-insert-while): Delete command.
6244 (python-skeleton-while): New command.
6245 (python-backspace): Delete command.
6246 (python-indent-dedent-line-backspace): New command.
6247 (python-electric-colon): Delete command.
6248 (python-indent-electric-colon): New command.
6249 (python-guess-indent): Delete command.
6250 (python-indent-guess-indent-offset): New command.
6251 (python-shift-left): Delete command.
6252 (python-indent-shift-left): New command.
6253 (python-shift-right): Delete command.
6254 (python-indent-shift-right): New command.
6255 (python-find-function): Delete command.
6256 (python-nav-jump-to-defun): New command.
6257 (python-next-statement): Delete command.
6258 (python-nav-forward-sentence): New command.
6259 (python-previous-statement): Delete command.
6260 (python-nav-backward-sentence): New command.
6261 (python-fill-paragraph): Delete command.
6262 (python-fill-paragraph-function): New command.
6263 (python-send-buffer): Delete command.
6264 (python-shell-send-buffer): New command.
6265 (python-send-defun): Delete command.
6266 (python-shell-send-defun): New command.
6267 (python-send-region, python-send-region-and-go): Delete commands.
6268 (python-shell-send-region)
6269 (python-shell-switch-to-shell): New commands.
6270 (python-send-string): Delete command.
6271 (python-shell-send-string): New command.
6272 (python-switch-to-python): Delete command.
6273 (python-shell-switch-to-shell): New command.
6274 (python-describe-symbol): Delete command.
6275 (python-eldoc-at-point): New command.
6276 (python--set-prompt-regexp, python-args-to-list)
6277 (python-after-info-look, python-check-version)
6278 (python-check-comint-prompt, python-find-imports)
6279 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
6280 (python-unload-function, python-expand-template)
6281 (python-maybe-jython, python-preoutput-filter)
6282 (python-pdbtrack-get-source-buffer)
6283 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
6284 (python-pdbtrack-toggle-stack-tracking)
6285 (python-pdbtrack-track-stack-file, python-initial-text)
6286 (python-first-word, python-comment-line-p, python-send-command)
6287 (python-setup-brm, python-sentinel, python-set-proc)
6288 (python-skip-out, python-input-filter, python-outdent-p)
6289 (python-outline-level, python-backslash-continuation-line-p)
6290 (python-end-of-block, python-end-of-statement, python-mark-block)
6291 (python-beginning-of-block, python-beginning-of-statement)
6292 (python-blank-line-p, python-beginning-of-string)
6293 (python-open-block-statement-p): Delete functions.
6294 (python-indent-line, python-indent-line-1): Delete functions.
6295 (python-indent-line): New function.
6296 (python-indentation-levels): Delete function.
6297 (python-indent-calculate-levels): New function.
6298 (python-proc): Delete function.
6299 (python-shell-get-process): New function.
6300 (python-send-receive): Delete function.
6301 (python-shell-send-string-no-output): New function.
6302 (python-module-path): Delete function.
6303 (python-ffap-module-path): New function.
6304 (python-completion-at-point)
6305 (python-symbol-completions): Delete functions.
6306 (python-completion-complete-at-point): New function.
6307 (python-load-file): Delete function.
6308 (python-shell-send-file): New function.
6309 (python-calculate-indentation): Delete function.
6310 (python-indent-calculate-indentation): New function.
6311 (python-skip-comments/blanks): Delete function.
6312 (python-util-forward-comment): New function.
6313 (python-continuation-line-p): Delete function.
6314 (python-info-continuation-line-p): New function.
6315 (python-which-func, python-current-defun): Delete function.
6316 (python-info-current-defun): New function.
6317 (python-beginning-of-defun): Delete function.
6318 (python-nav-beginning-of-defun): New function.
6319 (python-close-block-statement-p)
6320 (python-block-end-p): Delete function.
6321 (python-info-closing-block): New function.
6322 (python-comint-output-filter-function)
6323 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
6324 (python-fill-comment, python-fill-decorator, python-fill-paren)
6325 (python-fill-string, python-imenu-make-element-tree)
6326 (python-imenu-make-tree, python-imenu-tree-assoc)
6327 (python-indent-context, python-indent-dedent-line)
6328 (python-indent-line-function)
6329 (python-indent-post-self-insert-function)
6330 (python-indent-toggle-levels)
6331 (python-info-assignment-continuation-line-p)
6332 (python-info-beginning-of-backlash)
6333 (python-info-block-continuation-line-p)
6334 (python-info-closing-block-message)
6335 (python-info-line-ends-backslash-p)
6336 (python-info-looking-at-beginning-of-defun)
6337 (python-info-ppss-context, python-info-ppss-context-type)
6338 (python-nav-list-defun-positions, python-nav-read-defun)
6339 (python-nav-sentence-end, python-nav-sentence-start)
6340 (python-pdbtrack-comint-output-filter-function)
6341 (python-pdbtrack-set-tracked-buffer)
6342 (python-shell-calculate-exec-path)
6343 (python-shell-calculate-process-environment)
6344 (python-shell-completion--do-completion-at-point)
6345 (python-shell-completion--get-completions)
6346 (python-shell-completion-complete-at-point)
6347 (python-shell-completion-complete-or-indent)
6348 (python-shell-get-or-create-process)
6349 (python-shell-get-process-name)
6350 (python-shell-internal-get-or-create-process)
6351 (python-shell-internal-get-process-name)
6352 (python-shell-internal-send-string, python-shell-make-comint)
6353 (python-shell-parse-command, python-shell-send-setup-code)
6354 (python-skeleton-add-menu-items)
6355 (python-util-clone-local-variables, python-util-position)
6356 (run-python-internal, python-indentation-levels)
6357 (python-nav-beginning-of-defun)
6358 (python-completion-complete-at-point): New functions.
6359 (run-python): Change arguments. New API requirements.
6360
4302f5ba
SM
63612012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6362
f38ea36d
SM
6363 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
6364 (bug#11649).
6365
6366 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
6367 (macroexp--expand-all): Use it.
6368
4302f5ba
SM
6369 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
6370 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
6371 Use `cl-function' instead.
6372
33377562
JB
63732012-06-14 Juanma Barranquero <lekktu@gmail.com>
6374
6375 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
6376 Suggested by Stefan Monnier while discussing bug#11657.
6377
54c5ba1a
SS
63782012-06-14 Sam Steingold <sds@gnu.org>
6379
6380 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
6381
f9f1b1fe
AS
63822012-06-14 Andreas Schwab <schwab@linux-m68k.org>
6383
6384 * play/doctor.el (doctor-doc): Remove parameter and use
6385 doctor-sent instead of sent.
6386 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
6387
a81068ba
SM
63882012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6389
5a315f9c
SM
6390 * files.el: Require cl-lib.
6391 (file-name-non-special): Replace case -> cl-case.
6392
6393 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
6394
a81068ba
SM
6395 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
6396 mapping from #' to function*.
6397
8cca9703
CY
63982012-06-13 Chong Yidong <cyd@gnu.org>
6399
6400 * mouse.el (mouse-drag-track): Do not set the mark if the user
6401 releases the mouse without selecting anything (Bug#11588).
6402
a12ac9d7
SM
64032012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6404
ccf1dc18
SM
6405 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
6406 as well (bug#11646).
6407
ef62b23d
SM
6408 * loadup.el: Count byte-code functions as well.
6409
c4c8444a
SM
6410 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
6411 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
6412
a12ac9d7
SM
6413 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
6414 (bug#11649). Add cl-defun and cl-defmacro.
6415
87e6e64f
DA
64162012-06-13 Drew Adams <drew.adams@oracle.com>
6417
6418 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6419 Fix last change.
6420
682cefaf
MA
64212012-06-13 Michael Albinus <michael.albinus@gmx.de>
6422
6423 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
6424 Otherwise, it blocks in batch mode.
6425
773e1f08
JB
64262012-06-13 Juanma Barranquero <lekktu@gmail.com>
6427
6428 * help-mode.el (bookmark-make-record-default): Declare.
6429
60057926
CY
64302012-06-13 Chong Yidong <cyd@gnu.org>
6431
6432 * emacs-lisp/package.el (list-packages): Compute a list of
6433 packages that are newly-available since the last list-packages
6434 invocation.
6435 (package-menu--new-package-list): New var.
6436 (package-menu--generate, package-menu--print-info)
6437 (package-menu--status-predicate, package-menu-mark-install):
6438 Handle new status label "new".
6439
ad4d226c
SM
64402012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6441
6442 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
6443 conversion to backquotes.
6444
f1a4e679
CY
64452012-06-12 Chong Yidong <cyd@gnu.org>
6446
6447 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
6448 Rename from gud-inhibit-global-bindings.
6449
6450 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
6451
6452 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
6453 hook from nxml-glyph-set-hook.
6454
6455 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
6456 declaration.
6457
6458 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
6459
6460 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
6461 Convert to defcustom.
6462
0c9e42b5
DA
64632012-06-12 Drew Adams <drew.adams@oracle.com>
6464
6465 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6466 New functions.
6467 (help-mode): Use them.
6468
09e06855
GM
64692012-06-11 Glenn Morris <rgm@gnu.org>
6470
6471 * progmodes/fortran.el (fortran-font-lock-keywords-3):
6472 Use preprocessor face for directives.
6473 (fortran-directive-re): Doc fix.
6474
71adb94b
SM
64752012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6476
2eb87922
SM
6477 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
6478 conversion to backquotes (bug#11652).
6479
71adb94b
SM
6480 Fix compiler-expansion of CL's cXXr functions (bug#11673).
6481 * emacs-lisp/cl-lib.el (cl--defalias): New function.
6482 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
6483 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
6484 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
6485 (cl-ninth, cl-tenth): Mark them as inlinable.
6486 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
6487 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
6488 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
6489 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
6490 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
6491 (cl-list*, cl-adjoin): Don't put an autoload manually.
6492 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
6493 (cl--compiler-macro-list*): Add autoload cookie.
6494 (cl--compiler-macro-cXXr): New function.
2eb87922 6495
71adb94b
SM
6496 * help-fns.el (help-fns--compiler-macro): New function extracted from
6497 describe-function-1; follow aliases and use `compiler-macro' property.
6498 (describe-function-1): Use it.
6499
a6674402
CY
65002012-06-11 Chong Yidong <cyd@gnu.org>
6501
6502 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
6503 is uninstalled, if imagemagick is installed.
6504
bb3faf5b
SM
65052012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6506
6507 * emacs-lisp/cl-lib.el: Use lexical-binding.
6508 (cl-map-extents, cl-maclisp-member): Remove.
6509 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
6510 (cl--set-substring, cl--block-wrapper, cl--block-throw)
6511 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
6512 * emacs-lisp/cl-extra.el: Use lexical-binding.
6513 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
6514 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
6515 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
6516 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
6517 * emacs-lisp/cl-seq.el: Use lexical-binding.
6518 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
6519 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
6520 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
6521 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
6522 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
6523 CL's internals.
6524
2fe4b125
MA
65252012-06-11 Michael Albinus <michael.albinus@gmx.de>
6526
6527 Sync with Tramp 2.2.6-pre.
6528
6529 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
6530 `print-length' and `print-level' to nil, in order to avoid
6531 truncation. Reported by Christopher Schmidt
6532 <christopher@ristopher.com>.
6533
6534 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
6535
6536 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
6537 New defmacro.
6538 (tramp-compat-copy-directory): Add optional argument
6539 COPY-CONTENTS. It is not handled yet.
6540
6541 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
6542 (tramp-ftp-file-name-p): Simplify.
6543
6544 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
6545 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
6546 connection vector.
6547
6548 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
6549 (tramp-methods): Do not use `tramp-password-end-of-line'.
6550 (tramp-completion-function-alist-putty): Handle UNIX case.
6551 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
6552 (tramp-do-file-attributes-with-stat)
6553 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
6554 gid as real numbers. They could run out of integer range on cygwin.
6555 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
6556 (tramp-sh-handle-expand-file-name): Handle hops.
87e6e64f
DA
6557 (tramp-open-connection-setup-interactive-shell):
6558 Use `tramp-cleanup'. Move check for busyboxes ...
6559 (tramp-find-shell): ... here. Simplify implementation.
6560 Set "remote-shell" property also for alternative shells.
6561 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
6562 If failing, a regular file would be written otherwise.
6563 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
2fe4b125
MA
6564 (tramp-find-inline-encoding): Cache the coding commands in the
6565 process cache. Apply test command on the remote side, if defined.
6566 (tramp-find-inline-compress): Cache the compress commands in the
6567 process cache.
6568 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
6569 when requested. Handle hops.
6570 (tramp-current-connection): New defvar.
87e6e64f
DA
6571 (tramp-maybe-open-connection): Use `tramp-cleanup'.
6572 Throw `suppress', if there was a failed connection shortly before.
2fe4b125 6573 Handle user interrupt. (Bug#10187)
87e6e64f
DA
6574 (tramp-get-inline-compress, tramp-get-inline-coding):
6575 Read connection properties from the process cache.
2fe4b125
MA
6576
6577 * net/tramp-smb.el (tramp-smb-server-version)
87e6e64f
DA
6578 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
6579 New defconsts.
2fe4b125
MA
6580 (tramp-smb-prompt): Extend for powershell prompt.
6581 (tramp-smb-file-name-handler-alist): Add handlers for
6582 `process-file', `shell-command' and `start-file-process'.
6583 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
6584 (tramp-smb-winexe-shell-command-switch): New defcustoms.
6585 (tramp-smb-file-name-p): Simplify.
6586 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
6587 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
6588 (tramp-smb-shell-quote-argument): New defuns.
6589 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
6590 Implement using "tar". By this, time-stamps are preserved.
6591 (tramp-smb-handle-copy-file): Handle also the case of directories.
6592 (tramp-smb-do-file-attributes-with-stat)
87e6e64f
DA
6593 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
6594 Use `tramp-get-connection-buffer').
2fe4b125
MA
6595 (tramp-smb-handle-rename-file): Use "rename", when source and
6596 target are on the same share.
87e6e64f
DA
6597 (tramp-smb-maybe-open-connection): Handle wrong passwords.
6598 Use `tramp-smb-server-version'.
2fe4b125
MA
6599 (tramp-smb-wait-for-output): Remove prompt.
6600
6601 * net/tramp.el (top): Require 'cl.
87e6e64f
DA
6602 (tramp-methods, tramp-rsh-end-of-line):
6603 Remove `tramp-password-end-of-line' from docstring.
2fe4b125
MA
6604 (tramp-save-ad-hoc-proxies): New defcustom.
6605 (tramp-completion-function-alist): Adapt docstring.
6606 (tramp-default-password-end-of-line): Remove defcustom.
6607 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
6608 (tramp-user-regexp, tramp-file-name-regexp-unified)
6609 (tramp-file-name-regexp-url): Extend regexp by hop separator.
6610 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
6611 (tramp-remote-file-name-spec-regexp): New defconst.
6612 (tramp-file-name-structure): Extend structure for hops.
6613 (tramp-get-method-parameter): Move up.
6614 (tramp-file-name-p, tramp-dissect-file-name)
6615 (with-parsed-tramp-file-name): Handle hops.
6616 (tramp-file-name-hop): New defun.
6617 (tramp-make-tramp-file-name): New optional arg HOP.
6618 (tramp-message-show-progress-reporter-message): New defvar.
6619 (tramp-with-progress-reporter): Use it. We cannot use
6620 `tramp-message-show-message' here, because this suppresses also
6621 error buffers.
6622 (tramp-error-with-buffer): Suppress buffer view, if
87e6e64f
DA
6623 `tramp-message-show-message' is nil.
6624 Use `tramp-get-connection-buffer'.
2fe4b125
MA
6625 (tramp-cleanup): New defun.
6626 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
6627 (tramp-file-name-handler): If `debug-on-error' is set, propagate
6628 an error unchanged.
6629 (tramp-completion-handle-file-name-all-completions): Handle hops.
6630 Fix an error when called from ido.
6631 (tramp-completion-dissect-file-name): Use better local variable
6632 name. Add hop to the vector.
6633 (tramp-handle-insert-file-contents): Use progress-reporter for the
6634 whole scenario.
6635 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
6636 to `t'.
6637 (tramp-check-for-regexp): Simplify search.
6638 (tramp-enter-password): Remove it. Move implementation ...
6639 (tramp-action-password): ... here.
6640 (tramp-mode-string-to-int, tramp-local-host-p)
6641 (tramp-make-tramp-temp-file, tramp-read-passwd)
87e6e64f
DA
6642 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
6643 Set tramp-autoload cookie.
2fe4b125
MA
6644
6645 * net/trampver.el: Update release number.
6646
66472012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6648 Michael Albinus <michael.albinus@gmx.de>
6649
6650 * net/tramp.el (tramp-set-completion-function): Fix docstring.
6651 (tramp-parse-group, tramp-parse-file)
6652 (tramp-parse-shostkeys-sknownhosts): New defuns.
6653 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
6654 (tramp-parse-shosts-group, tramp-parse-sconfig)
6655 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
6656 (tramp-parse-sknownhosts, tramp-parse-hosts)
6657 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
6658 Use them.
6659 (tramp-parse-passwd-group, tramp-parse-netrc-group)
6660 (tramp-parse-putty-group): Don't narrow.
6661 (tramp-parse-putty): Make a loop.
6662 (tramp-file-name-handler): Catch the `suppress' signal.
6663
72834e10
CY
66642012-06-11 Chong Yidong <cyd@gnu.org>
6665
6666 * image.el (imagemagick-register-types): Put the ImageMagick entry
6667 at the end of image-type-file-name-regexps.
6668
a4712e11
JB
66692012-06-11 Johan Bockgård <bojohan@gnu.org>
6670
6671 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
6672 (pcase, pcase-let*, pcase-dolist): Use them.
6673
82ad98e3
SM
66742012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6675
6676 * emacs-lisp/pcase.el (pcase--let*): New function.
6677 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
6678 (pcase--expand): Use macroexp-let².
6679
f80efb86
SM
66802012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6681
6682 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
6683 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
6684 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
6685 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
6686 * emacs-lisp/derived.el: Use pcase instead of `cl'.
6687 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
6688
31ca4639 66892012-06-10 Glenn Morris <rgm@gnu.org>
94f0aa34 6690
31ca4639
CY
6691 * mail/rmail.el (rmail-yank-current-message): Leave point at
6692 correct position. (Bug#11660)
94f0aa34 6693
31ca4639 66942012-06-10 Chong Yidong <cyd@gnu.org>
9e1b8ec4 6695
31ca4639 6696 * allout-widgets.el: Fix code header.
9e1b8ec4 6697
31ca4639 66982012-06-10 Chong Yidong <cyd@gnu.org>
00cd0305 6699
f80efb86
SM
6700 * cus-edit.el (customize-changed-options-previous-release):
6701 Bump to 24.1.
31ca4639 6702
642b6d30
AS
67032012-06-09 Andreas Schwab <schwab@linux-m68k.org>
6704
6705 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
6706
4f5d2ba1
CY
67072012-06-09 Chong Yidong <cyd@gnu.org>
6708
6709 * ebuff-menu.el (electric-buffer-list): Preserve header line.
6710
e75852fd
MR
67112012-06-09 Martin Rudalics <rudalics@gmx.at>
6712
6713 * window.el (special-display-popup-frame): Don't use
6714 window--display-buffer (Bug#11651).
6715
1e48e282
EZ
67162012-06-09 Eli Zaretskii <eliz@gnu.org>
6717
8a26b487
EZ
6718 Fix parallel builds: make sure loaddefs.el is not being written
6719 while Lisp files are compiled.
6720 (compile): Don't depend on 'mh-autoloads'.
6721 (compile-CMD, compile-SH): Depend on 'autoloads'.
6722 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
6723
1e48e282
EZ
6724 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
6725
6175e34b
CY
67262012-06-09 Chong Yidong <cyd@gnu.org>
6727
6728 * face-remap.el (face-remap-add-relative, face-remap-set-base)
6729 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
6730 Doc fixes (Bug#11225).
6731
d9857e53
SM
67322012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6733
6734 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
6735 a function if there's a clear indication that it has a compiler-macro.
6736 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
6737 (macro-declarations-alist): Add arglist to declaration functions.
6738 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
6739 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
6740 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
6741 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
6742 Also add autoload to find the compiler macro.
6743 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
6744 (cl--compiler-macro-member, cl--compiler-macro-assoc)
6745 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
6746 (cl--compiler-macro-get): New functions, replacing calls to
6747 cl-define-compiler-macro.
6748 (cl-typep) [compiler-macro]: Use macroexp-let².
6749
f81298f8 67502012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
ee574791
UJ
6751
6752 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
6753 string properly, fixes Bug#11473.
6754
4b56d0fe
CY
67552012-06-08 Chong Yidong <cyd@gnu.org>
6756
6757 * faces.el (set-face-attribute): Doc fix.
6758 (modify-face): Don't use :bold and :italic.
6759 (error, warning, success): Tweak definitions.
6760
6761 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
6762 (custom-modified, custom-set, custom-changed, custom-themed)
6763 (custom-saved, custom-button, custom-button-mouse)
6764 (custom-button-pressed, custom-state, custom-comment-tag)
6765 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
6766 (custom-group-subtitle): Use new-style face specs.
6767 (custom-invalid-face, custom-rogue-face, custom-modified-face)
6768 (custom-set-face, custom-changed-face, custom-saved-face)
6769 (custom-button-face, custom-button-pressed-face)
6770 (custom-documentation-face, custom-state-face)
6771 (custom-comment-face, custom-comment-tag-face)
6772 (custom-variable-tag-face, custom-variable-button-face)
6773 (custom-face-tag-face, custom-group-tag-face-1)
6774 (custom-group-tag-face): Remove obsolete face alias.
6775
6776 * epa.el (epa-validity-high, epa-validity-medium)
6777 (epa-validity-low, epa-mark, epa-field-name, epa-string)
6778 (epa-field-name, epa-field-body):
6779 * font-lock.el (font-lock-comment-face, font-lock-string-face)
6780 (font-lock-keyword-face, font-lock-builtin-face)
6781 (font-lock-function-name-face, font-lock-variable-name-face)
6782 (font-lock-type-face, font-lock-constant-face):
6783 * ido.el (ido-first-match, ido-only-match, ido-subdir)
6784 (ido-virtual, ido-indicator, ido-incomplete-regexp):
6785 * speedbar.el (speedbar-button-face, speedbar-file-face)
6786 (speedbar-directory-face, speedbar-tag-face)
6787 (speedbar-selected-face, speedbar-highlight-face)
6788 (speedbar-separator-face):
6789 * whitespace.el (whitespace-newline, whitespace-space)
6790 (whitespace-hspace, whitespace-tab, whitespace-trailing)
6791 (whitespace-line, whitespace-space-before-tab)
6792 (whitespace-space-after-tab, whitespace-indentation)
6793 (whitespace-empty):
6794 * emulation/cua-base.el (cua-global-mark):
6795 * eshell/em-prompt.el (eshell-prompt):
6796 * net/newst-plainview.el (newsticker-new-item-face)
6797 (newsticker-old-item-face, newsticker-immortal-item-face)
6798 (newsticker-obsolete-item-face, newsticker-date-face)
6799 (newsticker-statistics-face, newsticker-default-face):
6800 * net/newst-reader.el (newsticker-feed-face)
6801 (newsticker-extra-face, newsticker-enclosure-face):
6802 * net/newst-treeview.el (newsticker-treeview-face)
6803 (newsticker-treeview-new-face, newsticker-treeview-old-face)
6804 (newsticker-treeview-immortal-face)
6805 (newsticker-treeview-obsolete-face)
6806 (newsticker-treeview-selection-face):
6807 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
6808 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
6809 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
6810 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
6811 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
6812 (nxml-outline-active-indicator, nxml-outline-ellipsis):
6813 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
6814 (mpuz-text):
6815 * progmodes/vera-mode.el (vera-font-lock-number)
6816 (vera-font-lock-function, vera-font-lock-interface):
6817 * textmodes/table.el (table-cell): Use new-style face specs, and
6818 don't use the old :bold and :italic attributes.
6819
6820 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
6821 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
6822 (ebrowse-member-class, ebrowse-progress): Likewise.
6823 (ebrowse-tree-mark-face, ebrowse-root-class-face)
6824 (ebrowse-file-name-face, ebrowse-default-face)
6825 (ebrowse-member-attribute-face, ebrowse-member-class-face)
6826 (ebrowse-progress-face): Remove obsolete faces.
6827
6828 * progmodes/flymake.el (flymake-errline, flymake-warnline):
6829 Inherit from error and warning faces respectively.
6830
6831 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
6832 Likewise.
f80efb86
SM
6833 (flyspell-incorrect-face, flyspell-duplicate-face):
6834 Remove obsolete aliases.
4b56d0fe 6835
03310646
MA
68362012-06-08 Michael Albinus <michael.albinus@gmx.de>
6837
6838 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6839 Avoid infloop.
6840
513749ee
SM
68412012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6842
6843 * startup.el (argv, argi): Make lexically scoped.
6844 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
6845 * emacs-lisp/cl-macs.el: Use lexical-binding.
6846 Rename cl-bind-* to cl--bind-*.
6847 * files.el: Don't require `cl' since it doesn't use it.
6848 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
6849
595ef4ad
JB
68502012-06-08 Juanma Barranquero <lekktu@gmail.com>
6851
6852 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
6853 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
6854 instead of calling external sort utility.
6855 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
6856
e9f66fcb
EZ
68572012-06-08 Eli Zaretskii <eliz@gnu.org>
6858
6859 * descr-text.el (describe-char): Mention how to insert the
6860 character, if the current input method doesn't support it.
6861 See the discussion in this thread for the details:
6862 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
6863
3d10db47
SS
68642012-06-08 Sam Steingold <sds@gnu.org>
6865
6866 * bindings.el (global-map): Bind XF86Forward to next-buffer and
6867 XF86Back to previous-buffer.
6868 (minibuffer-local-map): Bind them to next-history-element and
6869 previous-history-element respectively.
6870 * help-mode.el (help-mode-map): Bind them to help-go-forward and
6871 help-go-back respectively.
6872 * info.el (Info-mode-map): Bind them to Info-history-forward and
6873 Info-history-back respectively.
6874 These are the keys next to Up on the ThinkPad keyboard.
6875
de7e2b36
SM
68762012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6877
6878 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
6879 * emacs-lisp/cl-macs.el: Provide itself.
6880 (cl--labels-convert-cache): New var.
6881 (cl--labels-convert): New function.
6882 (cl-flet, cl-labels): New implementation with new semantics, relying on
6883 lexical-binding.
6884 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
6885 (cl-closure-vars, cl--function-convert-cache)
6886 (cl--function-convert): Move from cl-macs.el.
6887 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
6888 rename by removing the "cl-" prefix.
6889 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
6890
6fa6c4ae
SM
68912012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6892
6893 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
6894 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
6895 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
6896 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
6897 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
6898 (cl-hash-table-count): Add old compatibility aliases.
6899
6900 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
6901 Use macroexpand-all-environment instead.
6902 (cl--old-macroexpand): New var.
6903 (cl--sm-macroexpand): New function.
6904 (cl-symbol-macrolet): Use it during macro expansion.
6905 (cl--function-convert-cache): New var.
6906 (cl--function-convert): New function, extracted from
6907 cl-macroexpand-all.
6908 (cl-lexical-let): Use it.
6909
6910 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
6911 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
6912 (cl-member): Remove old alias.
6913
6914 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
6915 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
6916 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
6917 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
6918 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
6919 (cl-macroexpand-cmacs): Remove var.
6920 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
6921 Use macroexpand-all instead.
6922
4dd1c416
SM
69232012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6924
6925 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
6926 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
6927 (macroexp-copyable-p): New functions and macros.
6928 * emacs-lisp/edebug.el (edebug-unwrap):
6929 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
6930 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
6931 (pcase--let*): Remove.
6932 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
6933 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
6934 macroexp-const-p instead.
6935 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
6936
6937 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
6938 instead of "cl-" for internal definitions. Use macroexp-const-p.
6939 (cl-old-bc-file-form): Remove var.
6940 (cl-const-exprs-p): Remove fun.
6941 (cl-labels, cl-macrolet): Use backquote.
6942 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
6943 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
6944 (cl-define-setf-expander): Rename from cl-define-setf-method.
6945 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
6946
6947 * international/mule-cmds.el: Don't require CL.
6948 (view-hello-file): Don't use `letf'.
6949
ed8bd4d7
SM
69502012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6951
7287f2f3
SM
6952 * tmm.el (tmm-prompt): Use string-prefix-p.
6953 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
6954 (tmm-add-prompt): Use minibuffer-completion-help.
6955 (tmm-delete-map): Remove.
6956
ed8bd4d7
SM
6957 * subr.el (kbd): Make it its own function.
6958
7b4cdbf4
SM
69592012-06-07 Stefan Merten <smerten@oekonux.de>
6960
6961 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
6962 Silence compiler warnings. Fix versions.
ed8bd4d7 6963 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
7b4cdbf4 6964 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
ed8bd4d7 6965 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
7b4cdbf4
SM
6966 (rst-package-emacs-version-alist): Correct Emacs version to
6967 represent major merge with upstream.
ed8bd4d7 6968 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
7b4cdbf4 6969
2b48d721
GM
69702012-06-06 Glenn Morris <rgm@gnu.org>
6971
6972 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
6973 Only print environment variables if set.
6974
fa779ab0
SM
69752012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6976
6977 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
6978 (macroexp--cons): Rename from maybe-cons.
6979 (macroexp--accumulate): Rename from macroexp-accumulate.
6980 (macroexp--all-forms): Rename from macroexpand-all-forms.
6981 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
6982 (macroexp--expand-all): Rename from macroexpand-all-1.
6983
628299e0
SS
69842012-06-06 Sam Steingold <sds@gnu.org>
6985
6986 * calendar/calendar.el (calendar-in-read-only-buffer):
6987 Call `special-mode' to enable the standard read-only keybindings.
6988
b7bb5838
SM
69892012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6990
6991 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
6992 with "loading" messages (bug#11635).
6993
dfb308ba
MA
69942012-06-06 Michael Albinus <michael.albinus@gmx.de>
6995
6996 * files.el (enable-remote-dir-locals): New option.
6997 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
6998
0372ee92
MA
6999 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
7000 Ensure, that the temp directory is local.
7001
7002 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
7003 `temporary-file-directory'.
7004
eed0bb91
MA
7005 * progmodes/python.el (python-send-region): Ensure, that the
7006 temporary file is created also in the remote case.
7007
7a58f64d
GM
70082012-06-06 Glenn Morris <rgm@gnu.org>
7009
f7dd4e98
GM
7010 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
7011 (vc-rcs-update-changelog): Use it.
7012
090bd7cb 7013 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
276d5f5d 7014
7a58f64d
GM
7015 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
7016 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
7017 (vc-sccs-diff): Replace use of the external vcdiff script.
7018
daed4003
GM
70192012-06-05 Glenn Morris <rgm@gnu.org>
7020
7021 * ledit.el: Move to obsolete/.
7022
48c455c7
SS
70232012-06-05 Sam Steingold <sds@gnu.org>
7024
ed9265fc 7025 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
48c455c7
SS
7026 patch (Bug#11140).
7027
57a7d507
SM
70282012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
7029
090bd7cb 7030 * emacs-lisp/cust-print.el: Move to obsolete.
d32926ff 7031
53aacf21
SM
7032 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
7033 compiler-macro expansion.
7034
57a7d507
SM
7035 Add native compiler-macro support.
7036 * emacs-lisp/macroexp.el (macroexpand-all-1):
7037 Support compiler-macros directly. Properly follow aliases and apply
7038 the compiler macros more thoroughly.
7039 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
7040 macroexpand now properly follows aliases.
7041 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
7042 (cl-compiler-macroexpand): Use new prop.
7043 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
7044
7045 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
7046
51a5f9d8
MR
70472012-06-05 Martin Rudalics <rudalics@gmx.at>
7048
7049 * window.el (get-lru-window, get-mru-window, get-largest-window):
7050 New argument NOT-SELECTED to avoid picking the selected window.
7051 (window--display-buffer-1, window--display-buffer-2): Replace by
7052 new function window--display-buffer
7053 (display-buffer-same-window, display-buffer-reuse-window)
57a7d507
SM
7054 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7055 Use window--display-buffer.
51a5f9d8
MR
7056 (display-buffer-use-some-window): Remove temporary dedication
7057 hack by calling get-lru-window and get-largest-window with
7058 NOT-SELECTED argument non-nil. Call window--display-buffer.
7059
08f9f738
GM
70602012-06-05 Glenn Morris <rgm@gnu.org>
7061
7062 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
7063 Replace external vcdiff script.
7064
e364a2b7
SM
70652012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7066
7067 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
7068
041df390
CY
70692012-06-04 Chong Yidong <cyd@gnu.org>
7070
e364a2b7
SM
7071 * image.el (imagemagick-types-inhibit): Revert last change.
7072 Add INFO and M.
47b36b94 7073 (imagemagick-enabled-types): Remove CIN and EPS*.
041df390 7074
7c1898a7
SM
70752012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7076
7077 * emacs-lisp/cl-lib.el: Rename from cl.el.
7078 * emacs-lisp/cl.el: New compatibility file.
7079 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
7080 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
7081 to obey the "cl-" prefix.
7082 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
7083
0c3461de
GM
70842012-06-03 Glenn Morris <rgm@gnu.org>
7085
1e266c88
GM
7086 * emacs-lisp/authors.el (authors-aliases): Addition.
7087
0c3461de
GM
7088 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
7089 Fix :version.
7090
d8a52e15
SM
70912012-06-03 Stefan Merten <smerten@oekonux.de>
7092
7093 * textmodes/rst.el: Add comments.
7094 (rst-transition, rst-adornment): New faces.
7095 (rst-adornment-faces-alist): Make default safe to reevaluate.
7096 Fixes
7097 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
7098 Improve customization tags.
7099 (rst-define-level-faces): Clarify meaning.
7100
5205d6f6
CY
71012012-06-03 Chong Yidong <cyd@gnu.org>
7102
7103 * progmodes/compile.el (compilation-mode-line-fail)
7c1898a7
SM
7104 (compilation-mode-line-run, compilation-mode-line-exit):
7105 New faces.
5205d6f6
CY
7106 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
7107
757ee657
JD
71082012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
7109
7c1898a7
SM
7110 * progmodes/which-func.el (which-func-update-ediff-windows):
7111 New function. Use it in ediff-select-hook (Bug#11478).
757ee657 7112
5f2c76c6
CY
71132012-06-03 Chong Yidong <cyd@gnu.org>
7114
7115 * bindings.el: Remove explicit help text from format-mode-line.
7116 It is now supplied by mode-line-default-help-echo.
7117 (mode-line-front-space, mode-line-end-spaces)
7118 (mode-line-misc-info): New variables.
7119 (mode-line-modes, mode-line-position): Move the default value to
7120 the variable definition.
7121 (mode-line-default-help-echo): New defcustom.
383f7350
CY
7122 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
7123 (mode-line-modified-help-echo): New functions.
7124 (mode-line-mule-info, mode-line-modified): Use them.
7125 (mode-line-eol-desc, propertized-buffer-identification):
7126 Consistency fixes for help text.
cbe46e5f
CY
7127 (mode-line-coding-system-map): Allow using mouse-3 to invoke
7128 set-buffer-file-coding-system (Bug#289).
7129 (mode-line-mule-info-help-echo): Update help text.
5f2c76c6 7130
f2d6a3df
SM
71312012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7132
7133 * simple.el (execute-extended-command): Set real-this-command
7134 (bug#11506).
7135
37269466
CY
71362012-06-02 Chong Yidong <cyd@gnu.org>
7137
7138 Remove incorrect uses of "modeline" in comments, docstrings, and
7139 function/variable names (Bug#10329).
7140
7141 * cus-edit.el (mode-line):
7142 * dframe.el (dframe-mouse-hscroll):
7143 * emacs-lisp/re-builder.el:
7144 * emacs-lisp/easy-mmode.el (define-minor-mode):
7145 * frame.el (set-frame-name):
7146 * help.el (lookup-minor-mode-from-indicator):
7147 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
7148 * progmodes/cc-cmds.el (c-toggle-auto-newline)
7149 (c-toggle-hungry-state):
7150 * progmodes/antlr-mode.el (antlr-language-alist):
7151 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
7152 * progmodes/vhdl-mode.el (vhdl-mode):
7153 * progmodes/which-func.el (which-func, which-func-cleanup-function):
7154 * term/ns-win.el (ns-face-at-pos):
7155 * term/sup-mouse.el (sup-mouse-report):
7156 * textmodes/flyspell.el (flyspell-mode-line-string):
7157 * textmodes/ispell.el (ispell-highlight-face):
7158 * textmodes/reftex-global.el:
7159 * vc/vc-arch.el (vc-arch-mode-line-string):
7160 * vc/vc-cvs.el (vc-cvs-mode-line-string):
7161 * vc/vc-git.el (vc-git-mode-line-string):
7162 * vc/vc-hooks.el (vc-display-status)
7163 (vc-default-mode-line-string):
7164 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
7165
7166 * ansi-color.el (ansi-color-faces-vector): Change default faces.
7167
7168 * dired.el (dired-sort-set-mode-line): Rename from
7169 dired-sort-set-modeline. All callers changed.
7170
7171 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
7172 eshell-status-in-modeline.
7173
7174 * foldout.el (foldout-mode-line-string): Rename from
7175 foldout-modeline-string. All callers changed.
7176 (foldout-update-mode-line): Rename from foldout-update-modeline.
7177
7178 * subr.el (redraw-modeline): Make into obsolete alias.
7179
7180 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
7181 timeclock-modeline-display. Make old name an alias.
7182 (timeclock-update-mode-line): Likewise. All callers changed.
7183 (timeclock-mode-line-display): No need to check before using
7184 add-hook.
7185 (timeclock-relative, timeclock-day-over-hook)
7186 (timeclock-use-elapsed, timeclock-mode-string)
7187 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
7188
7189 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
7190 crisp-mode-modeline-string.
7191
7192 * play/solitaire.el (solitaire-build-mode-line): Rename from
7193 solitaire-build-modeline. All callers changed.
7194
7195 * play/zone.el (zone-hiding-mode-line): Rename from
7196 zone-hiding-modeline. All callers changed.
7197 (zone): Remove unusued `modeline-hidden-level' property.
7198
7199 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
7200 xscheme-modeline-initialize. All callers changed.
7201
7202 * strokes.el (strokes-lighter): Rename from
7203 strokes-modeline-string.
7204
7205 * textmodes/sgml-mode.el (html-face-tag-alist)
7206 (html-tag-face-alist): Use mode-line face instead of obsolete
7207 alias modeline.
7208
42152ee4
SM
72092012-06-02 Stefan Merten <smerten@oekonux.de>
7210
7211 * textmodes/rst.el: Always require `cl'.
4cf9b38d 7212 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
42152ee4 7213
95f520b5
CY
72142012-06-02 Chong Yidong <cyd@gnu.org>
7215
7216 * image.el (imagemagick-enabled-types): Rename from
7217 imagemagick-types-enable. Add many more types.
7218 (imagemagick-types-inhibit): Change default to nil.
7219 (imagemagick-filter-types): Caller changed.
7220
4a5f187a
SM
72212012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
7222
03fef3e6
SM
7223 * emacs-lisp/cl-macs.el: Use backquotes.
7224 (cl-transform-function-property): Use eval-and-compile rather than
7225 abusing `require'.
7226 (defstruct): Use declare-function instead of with-no-warnings.
7227
4a5f187a
SM
7228 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
7229 (byte-compile-output-docform): Re-add the print-circle bindings.
7230 (byte-compile-fix-header): Use #$ just because it's shorter.
7231 (byte-compile-output-file-form): Remove defun/defmacro.
7232
bd56924f
MR
72332012-06-01 Martin Rudalics <rudalics@gmx.at>
7234
7235 * simple.el (choose-completion): Remove now obsolete binding for
7236 owindow.
7237
046e38ce
MA
72382012-06-01 Michael Albinus <michael.albinus@gmx.de>
7239
7240 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
7241 in order to avoid "Stack overflow in regexp matcher".
7242
32d72c2f
GM
72432012-05-31 Glenn Morris <rgm@gnu.org>
7244
7245 * image.el: For clarity, call imagemagick-register-types at
7246 top-level, rather than relying on a custom :initialize.
7247 (imagemagick-types-enable): New option. (Bug#11557)
60b5f187
GM
7248 (imagemagick-filter-types): New function. (Bug#7406)
7249 (imagemagick-register-types): Use imagemagick-filter-types.
32d72c2f
GM
7250 If disabling support, remove elements altogether rather
7251 than using an impossible regexp.
7252 (imagemagick-types-inhibit): Give it the default init function.
7253
dd41169b
SM
72542012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7255
4a5f187a
SM
7256 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
7257 Handle arbitrary file name lengths (Bug#11585).
dd41169b 7258
efc00ab1 72592012-05-31 Martin Rudalics <rudalics@gmx.at>
5221ccb9
MR
7260
7261 * desktop.el (desktop-read): Clear previous and next buffers for
7262 all windows and bury *Messages* buffer (bug#11556).
7263
500fcedc
SM
72642012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7265
7266 Add `declare' for `defun'. Align `defmacro's with it.
7267 * emacs-lisp/easy-mmode.el (define-minor-mode)
7268 (define-globalized-minor-mode): Don't autoload the var definitions.
7269 * emacs-lisp/byte-run.el: Use lexical-binding.
7270 (defun-declarations-alist, macro-declarations-alist): New vars.
7271 (defmacro, defun): Use them.
7272 (make-obsolete, define-obsolete-function-alias)
7273 (make-obsolete-variable, define-obsolete-variable-alias):
7274 Use `declare'.
7275 (macro-declaration-function): Mark obsolete.
7276 * emacs-lisp/autoload.el: Use lexical-binding.
7277 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
7278
6e8a1786
AM
72792012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7280
7281 * textmodes/ispell.el (ispell-with-no-warnings):
7282 Define as a macro.
500fcedc
SM
7283 (ispell-kill-ispell, ispell-change-dictionary):
7284 Use `called-interactively-p' for Emacs instead of obsolete
6e8a1786
AM
7285 `interactive-p'.
7286
61b108cc
SM
72872012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
7288
7289 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
7290 (macro-declaration-function): Move var from C code.
7291 (macro-declaration-function): Define function with defalias.
7292 * emacs-lisp/macroexp.el (macroexpand-all-1):
7293 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
7294 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
7295 defun/defmacro any more.
7296 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
7297 Provide fallback for unknown arglist.
7298 (byte-compile-arglist-warn): Change calling convention.
7299 (byte-compile-output-file-form): Move print-vars binding.
7300 (byte-compile-output-docform): Simplify accordingly.
7301 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
7302 (byte-compile-defmacro-declaration): Remove.
7303 (byte-compile-file-form-defmumble): Generalize to defalias.
7304 (byte-compile-output-as-comment): Return byte-positions.
7305 Simplify callers accordingly.
7306 (byte-compile-lambda): Use `assert'.
7307 (byte-compile-defun, byte-compile-defmacro): Remove.
7308 (byte-compile-file-form-defalias):
7309 Use byte-compile-file-form-defmumble.
7310 (byte-compile-defalias-warn): Remove.
7311
6d3f7c2f
SM
73122012-05-29 Stefan Merten <smerten@oekonux.de>
7313
7314 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
61b108cc 7315 possible. Fix authors. Improve comments. Improve loading of `cl'.
6d3f7c2f
SM
7316
7317 (rst-mode-abbrev-table): Merge definition.
7318 (rst-mode): Make sure `font-lock-defaults' is buffer local.
7319 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
7320
6dbaa1c7
UJ
73212012-05-29 Ulf Jasper <ulf.jasper@web.de>
7322
7323 * calendar/icalendar.el
7324 (icalendar-export-region): Export UID properly.
7325
d209e2fb 73262012-05-29 Leo Liu <sdl.web@gmail.com>
61b108cc
SM
7327 * calendar/icalendar.el (icalendar-import-format):
7328 Add `icalendar-import-format-uid' (Bug#11525).
6dbaa1c7
UJ
7329 (icalendar-import-format-uid): New.
7330 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
7331 Export UID.
7332
6876a58d
SM
73332012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
7334
7335 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
7336 different alternative patterns.
7337 (pcase-codegen): Be more careful to preserve identity.
7338 (pcase--u1): Don't forget to mark vars as used.
7339
7340 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
7341 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
7342 (byte-compile-from-buffer): ...rather than here.
7343
7344 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
7345 functions from byte-compile-function-environment.
7346
46b7967e
TN
73472012-05-29 Troels Nielsen <bn.troels@gmail.com>
7348
7349 * window.el (window-deletable-p): Avoid deleting the root window
7350 of a frame with an active minibuffer.
7351
69d565e2
MR
73522012-05-29 Martin Rudalics <rudalics@gmx.at>
7353
7354 * simple.el (choose-completion): Use quit-window (Bug#11567).
7355
a149fa51
CY
73562012-05-29 Chong Yidong <cyd@gnu.org>
7357
7358 * whitespace.el (whitespace-cleanup): Fix usage of
7359 whitespace-empty-at-bob-regexp (Bug#11492).
7360
2b311310
AH
73612012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7362
7363 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
7364 revert (Bug#11488).
7365
b9cb2387
JL
73662012-05-29 Juri Linkov <juri@jurta.org>
7367
7368 * isearch.el (isearch-mode-map): Bind `M-s _' to
7369 `isearch-toggle-symbol'. Bind `M-s c' to
7370 `isearch-toggle-case-fold'.
7371 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
7372 (isearch-forward): Add `M-s _' to the docstring.
7373 (isearch-forward-symbol, isearch-toggle-case-fold)
7374 (isearch-symbol-regexp): New functions. (Bug#11381)
7375
d5e61c1c
JL
73762012-05-29 Juri Linkov <juri@jurta.org>
7377
7378 * isearch.el (isearch-word): Add docstring. (Bug#11381)
7379 (isearch-occur, isearch-search-and-update): If `isearch-word' is
7380 a function, call it to get the regexp.
7381 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
7382 property `isearch-message-prefix' instead of the string "word ".
7383 (isearch-search-fun-default): For the case of `isearch-word',
7384 return a lambda that calls re-search-forward/re-search-backward
7385 with a regexp returned by `word-search-regexp' or by the function
7386 in `isearch-word'.
7387
8cbd80f7
JL
73882012-05-29 Juri Linkov <juri@jurta.org>
7389
7390 * isearch.el (isearch-search-fun-default): New function.
7391 (isearch-search-fun): Move default part to the new function
7392 `isearch-search-fun-default'.
7393 (isearch-search-fun-function): Set the default value to
7394 `isearch-search-fun-default'. (Bug#11381)
7395
7396 * comint.el (comint-history-isearch-end):
7397 Use `isearch-search-fun-default'.
7398 (comint-history-isearch-search): Use `isearch-search-fun-default'
7399 and remove spacial case for `isearch-word'.
7400 (comint-history-isearch-wrap): Remove spacial case for
7401 `isearch-word'.
7402
7403 * hexl.el (hexl-isearch-search-function):
7404 Use `isearch-search-fun-default'.
7405
7406 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
7407 Use `word-search-regexp' for `isearch-word'.
7408
7409 * misearch.el (multi-isearch-search-fun):
7410 Use `isearch-search-fun-default'.
7411
7412 * simple.el (minibuffer-history-isearch-search):
7413 Use `isearch-search-fun-default' and remove spacial case for
7414 `isearch-word'.
7415 (minibuffer-history-isearch-wrap): Remove spacial case for
7416 `isearch-word'.
7417
7418 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
7419 Remove spacial case for `isearch-word'.
7420 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
7421
85c8c5b6
AM
74222012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7423
7424 Decrease XEmacs incompatibilities.
7425 * textmodes/flyspell.el (flyspell-check-pre-word-p):
7426 Use `string-match'.
7427 (flyspell-delete-region-overlays): Use alternative definition for
7428 XEmacs.
7429 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
7430 (flyspell-word): Use `process-kill-without-query' if XEmacs.
7431 (flyspell-mode-on): Use `interactive-p' if XEmacs.
7432 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
7433 `define-obsolete-face-alias' under XEmacs, but old method.
7434
7435 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
7436 `with-no-warnings' definition or Emacs alias.
7437 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
7438 (ispell-word): Do not use `region-p' if XEmacs.
7439
8cab9efc
AM
74402012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7441
7442 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7443 Check for `ispell-dictionary-base-alist' instead of full
7444 `ispell-dictionary-alist'.
7445 (ispell-init-process): Show spellchecker when starting new Ispell
7446 process.
7447
fda91268
RZ
74482012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
7449
7450 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
7451 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
7452
694ea8e3
JB
74532012-05-27 Juanma Barranquero <lekktu@gmail.com>
7454
7455 * version.el (motif-version-string, gtk-version-string)
7456 (ns-version-string): Declare.
7457
e4d4f539
JL
74582012-05-27 Juri Linkov <juri@jurta.org>
7459
7460 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
7461 after the `eval-defun-1' specialcaseing
7462 like in `edebug-eval-defun' (bug#10181).
7463
7464 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
7465 like in `eval-defun-1'.
7466
33017faf 74672012-05-27 Eli Zaretskii <eliz@gnu.org>
b30b64b9 7468
fda91268
RZ
7469 * mail/sendmail.el (mail-yank-region):
7470 Recognize rmail-yank-current-message in addition to insert-buffer.
7471 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
b30b64b9
EZ
7472 a *mail* buffer created through rmail-start-mail with sendmail as
7473 mail-user-agent.
7474
33017faf
GM
74752012-05-27 Chong Yidong <cyd@gnu.org>
7476
7477 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
7478 Default to 256 (Bug#11267).
7479
7480 * help.el (describe-mode): Doc fix.
7481
04188bb9
GM
74822012-05-26 Glenn Morris <rgm@gnu.org>
7483
38264cc9
GM
7484 * w32-fns.el (w32-init-info): Remove.
7485 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
7486
eb7afdad
GM
7487 * info.el (info-initialize): For self-contained NS builds, put the
7488 included info/ directory at the front. (Bug#2791)
7489
04188bb9
GM
7490 * paths.el (Info-default-directory-list): Make it a defcustom,
7491 mainly so that we can use custom-initialize-delay.
7492
a179e3f7
SM
74932012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
7494
43416392
SM
7495 * subr.el (buffer-has-markers-at): Mark obsolete.
7496
a179e3f7 7497 * subr.el (lambda): Use declare.
43416392 7498
a179e3f7
SM
7499 * emacs-lisp/lisp-mode.el (lambda):
7500 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
7501
34a008d9
AH
75022012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7503
7504 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
7505
0a3b289f
GM
75062012-05-26 Glenn Morris <rgm@gnu.org>
7507
7508 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
7509
758c81e8
GM
75102012-05-25 Glenn Morris <rgm@gnu.org>
7511
f9f334f0
GM
7512 * paths.el: Remove no-byte-compile.
7513 * loadup.el: No need to load paths.el uncompiled.
7514
87eb79c2
GM
7515 * image.el (imagemagick-types-inhibit): Doc fix.
7516
758c81e8
GM
7517 * version.el: Remove no-byte-compile and associated formatting.
7518 * loadup.el: No need to load version.el uncompiled. AFAICS, this
7519 is ancient code from when there was an "inc-vers.el".
7520
e7e85dc0
SM
75212012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7522
7523 * progmodes/gdb-mi.el: Minor style changes.
7524 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
7525 Turn into minor modes.
7526 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
7527 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
7528 (gdb-shell): Remove unneeded let-binding.
7529 (gdb-get-many-fields): Eliminate O(n²) behavior.
7530
f31237a4
EZ
75312012-05-25 Eli Zaretskii <eliz@gnu.org>
7532
7533 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
7534 platforms that don't link in fontset.c.
7535
bc1b21bb
JL
75362012-05-25 Juri Linkov <juri@jurta.org>
7537
7538 Use the same diff color scheme as in modern VCSes (bug#10181).
7539
7540 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
7541 to avoid confusion with `diff-added' that now uses green colors.
7542 (diff-removed): Use shades of red.
7543 (diff-added): Use shades of green.
7544 (diff-changed): Leave just the yellow color.
7545 (diff-use-changed-face): New variable.
7546 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
7547 how to highlight context diff changes.
7548 (diff-refine-change): Use shades of yellow.
7549 (diff-refine-removed): New face that uses shades of red.
7550 (diff-refine-added): New face that uses shades of green.
7551 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
7552 `diff-refine-removed' in the call to `smerge-refine-subst'
7553 depending on the value of `diff-use-changed-face'.
7554
7555 * vc/smerge-mode.el (smerge-mine): Use shades of red.
7556 (smerge-other): Use shades of green.
7557 (smerge-base): Use shades of yellow.
7558 (smerge-refined-change): Empty face.
7559 (smerge-refined-removed): New face that uses shades of red.
7560 (smerge-refined-added): New face that uses shades of green.
7561 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
7562 args `props-r' and `props-a', and use them. Doc fix.
7563 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
7564 on its value use different faces `smerge-refined-change',
7565 `smerge-refined-removed', `smerge-refined-added' in the call to
7566 `smerge-refine-subst'.
7567
7568 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
7569 Add face condition `min-colors 88' with shades of red.
7570 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
7571 `min-colors 88' with shades of green.
7572 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
7573 `min-colors 88' with shades of yellow.
7574
6df9112c
GM
75752012-05-24 Glenn Morris <rgm@gnu.org>
7576
ead5edc0
GM
7577 * paths.el (prune-directory-list, remote-shell-program): Move to...
7578 * files.el (prune-directory-list, remote-shell-program): ...here.
7579 For the latter, delay initialization, prefer ssh, just search PATH.
7580
f18b81e6
GM
7581 * paths.el (term-file-prefix): Move to faces.el (the only user).
7582 * faces.el (term-file-prefix): Move here, make it a defcustom.
7583
ee2f89a6
GM
7584 * paths.el (news-directory, news-path, news-inews-program):
7585 Move to gnus/nnspool.el.
61a583ca 7586
f8815e4c
GM
7587 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
7588
c8f3b42c
GM
7589 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
7590 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
7591 Make the latter a defcustom, with a delayed initialization.
7592
6df9112c
GM
7593 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
7594 These were deleted from Gnus itself late 2010.
7595
5dadff36
JB
75962012-05-22 Juanma Barranquero <lekktu@gmail.com>
7597
9e1701c6
JB
7598 * progmodes/which-func.el (which-func-ff-hook):
7599 Check against user-error, not error.
7600
bd7239f5 7601 * emacs-lisp/edebug.el (top): Do not load or set up loading of
5dadff36
JB
7602 cl-specs.el, which no longer exists.
7603
3290526d
GM
76042012-05-22 Glenn Morris <rgm@gnu.org>
7605
7606 * info.el (info-emacs-bug): New command.
7607 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
7608 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
7609
ff0c3cfb
GM
76102012-05-21 Glenn Morris <rgm@gnu.org>
7611
7612 * makefile.w32-in (update-subdirs-SH):
7613 * Makefile.in (update-subdirs): Update for moved update-subdirs.
7614
5814f126
SM
76152012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7616
a52c0aa0
SM
7617 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
7618
5814f126
SM
7619 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7620 Simplify Maven regexp, and make sure the file can't start with a space
7621 (bug#11517).
7622
b847032c
GM
76232012-05-21 Glenn Morris <rgm@gnu.org>
7624
7625 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
7626 Scrap superfluous subshells.
7627
3858bfe7
SM
76282012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
7629
7630 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
7631 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
7632
d14b0029
JB
76332012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
7634
7635 * calc/calc.el (calc-ensure-consistent-units): New variable.
7636
a52c0aa0
SM
7637 * calc/calc-units.el (math-consistent-units-p)
7638 (math-check-unit-consistency): New functions.
7639 (calc-quick-units, calc-convert-units):
7640 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
7641 is non-nil.
d14b0029
JB
7642 (calc-extract-units): Fix typo.
7643
60c4db3a
SM
76442012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7645
77f3b62e
SM
7646 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
7647
60c4db3a
SM
7648 * textmodes/flyspell.el: Commenting style, plus code simplifications.
7649 (flyspell-default-deplacement-commands): Don't spell check after
7650 repeated window/frame switches (e.g. triggered by mouse-movement).
7651 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
7652 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
7653 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
7654 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
7655 Remove unused vars.
7656 (flyspell-get-casechars, flyspell-get-not-casechars):
7657 Simplify; Don't bother removing a ] just to add it back.
7658 * textmodes/ispell.el (ispell-program-name): Use executable-find.
7659
d209e2fb 76602012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
b1a10716
RS
7661
7662 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
7663 New functions.
bd7239f5 7664 (math-function-table): Add support for more C functions.
b1a10716 7665
3f1b25b5
AM
76662012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7667
090bd7cb
JB
7668 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7669 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7670 Protect delay handling for otherchars against empty otherchars.
3f1b25b5 7671
b581bb5c
SM
76722012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7673
7674 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
7675 their respective macro declarations.
7676 * skeleton.el (define-skeleton):
7677 * progmodes/compile.el (define-compilation-mode):
7678 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
7679 (define-ibuffer-filter):
7680 * emacs-lisp/generic.el (define-generic-mode):
7681 * emacs-lisp/easy-mmode.el (define-minor-mode)
7682 (define-globalized-minor-mode):
7683 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
7684 * emacs-lisp/byte-run.el (defsubst):
7685 * custom.el (deftheme): Add doc-string metadata.
7686
70b8ef8f
SM
76872012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7688
7689 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
7690
b1198e17
SM
76912012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7692
9abdc45d
SM
7693 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
7694
b1198e17
SM
7695 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
7696 * emacs-lisp/cl-macs.el: Idem.
7697 * emacs-lisp/cl-specs.el: Remove.
7698
4735906a
SM
76992012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7700
7701 Minor renaming of internal CL functions and variables.
7702 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
7703 (cl--position): Rename from cl-position.
7704 (cl--delete-duplicates): Rename from cl-delete-duplicates.
7705 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
7706 (cl--random-state): Rename from *random-state*.
7707
ac348012
SM
77082012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7709
7710 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
7711 parens around the arg list (bug#11499).
7712
a0a79cde
JL
77132012-05-17 Juri Linkov <juri@jurta.org>
7714
7715 * isearch.el (word-search-regexp, word-search-backward)
7716 (word-search-forward, word-search-backward-lax)
7717 (word-search-forward-lax): Move functions from search.c
7718 (bug#10145, bug#11381).
7719
65034a51
AM
77202012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7721
090bd7cb
JB
7722 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7723 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7724 Delay for otherchars as for normal word components.
65034a51 7725
1a72a195
SM
77262012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
7727
7728 * minibuffer.el (completion--sifn-requote): Fix last change.
7729 (minibuffer-local-must-match-filename-map):
7730 Move define-obsolete-variable-alias before its var.
7731
fdb058c2
SM
77322012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7733
c41045e6
SM
7734 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
7735
036dfb8b
SM
7736 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
7737 behavior.
7738 (completion--string-equal-p): New function.
7739 (completion--twq-all): Use it to get better assertion failure data.
7740
2473256d
SM
7741 Only handle ".." and '..' quoting in shell-mode (bug#11466).
7742 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
7743 (shell--requote-argument): New functions.
7744 (shell-completion-vars): Use them.
7745 (shell--parse-pcomplete-arguments): Rename from
7746 shell-parse-pcomplete-arguments.
7747 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
7748 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
7749 Obey comint-file-name-quote-list.
7750
fdb058c2
SM
7751 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
7752 (smie-indent-keyword): Use it.
7753
51fa99f1
SM
77542012-05-14 Stefan Merten <smerten@oekonux.de>
7755
7756 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
7757
e18afed7 77582012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
d9d1dfef
SM
7759
7760 * net/rlogin.el (rlogin-mode-map): Fix last change.
7761
e18afed7 77622012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
8633b1f4
JW
7763
7764 * mail/smtpmail.el (smtpmail-send-command): Send the command and
7765 the following \r\n using a single `process-send-string', since the
7766 Lotus SMTP server refuses to accept any commands if they are sent
e18afed7 7767 with two `process-send-string's (Bug#11444).
8633b1f4 7768
e18afed7 77692012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
fe263b8f 7770
fdb058c2
SM
7771 * shell.el (shell-parse-pcomplete-arguments):
7772 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
e18afed7 7773
2d21d7f6
WJ
77742012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7775
e18afed7 7776 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
2d21d7f6
WJ
7777 (image-transform-scale, image-transform-right-angle-fudge): New vars.
7778 (image-transform-width, image-transform-fit-width): New functions.
7779 (image-transform-properties): Use them.
7780 (image-transform-check-size): New function.
7781 (image-toggle-display-image): Use it (for testing).
7782 (image-transform-set-rotation): Reduce angle mod 360.
7783 Delete obsolete comment.
7784
7102e6d0
WJ
77852012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7786
7787 * image-mode.el: Fix scaling (bug#11399).
7788 (image-transform-resize): Doc fix.
7789 (image-transform-properties): Default scale is 1 and height should
7790 be an integer.
7791
06bc5e6e
SM
77922012-05-13 Johan Bockgård <bojohan@gnu.org>
7793
7794 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
7795 than hard-coding `car', to fix misbehavior when moving forward.
7796
0ae03b6a
CY
77972012-05-13 Chong Yidong <cyd@gnu.org>
7798
7799 * emacs-lisp/tabulated-list.el (tabulated-list-format)
7800 (tabulated-list-entries, tabulated-list-padding)
7801 (tabulated-list-sort-key): Make permanent-local.
7802
7803 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
7804 (electric-buffer-list): Put electric buffer menu
7805 command descriptions in this docstring, instead of the docstring
7806 of electric-buffer-menu-mode. Code cleanups.
7807 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
7808 Electric-buffer-menu-mode.
7809 (electric-buffer-update-highlight): Minor code cleanup.
7810
205a7391
MA
78112012-05-13 Michael Albinus <michael.albinus@gmx.de>
7812
7813 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
7814 (Bug#11447)
7815
e5bd0a28
SM
78162012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7817
7818 Move define-obsolete-variable-alias before the var's definition.
7819 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
7820 * tooltip.el (tooltip-hook):
7821 * textmodes/reftex-toc.el (reftex-toc-map):
7822 * textmodes/reftex-sel.el (reftex-select-label-map)
7823 (reftex-select-bib-map):
7824 * textmodes/reftex-index.el (reftex-index-map)
7825 (reftex-index-phrases-map):
7826 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
7827 * progmodes/meta-mode.el (meta-mode-map):
7828 * novice.el (disabled-command-hook):
7829 * loadhist.el (unload-hook-features-list):
7830 * frame.el (blink-cursor):
7831 * files.el (find-file-not-found-hooks, write-file-hooks)
7832 (write-contents-hooks):
7833 * emulation/tpu-edt.el (GOLD-map):
7834 * emacs-lock.el (emacs-lock-from-exiting):
7835 * emacs-lisp/generic.el (generic-font-lock-defaults):
7836 * emacs-lisp/chart.el (chart-map):
7837 * dos-fns.el (register-name-alist):
7838 * dired-x.el (dired-omit-files-p):
7839 * desktop.el (desktop-enable):
7840 * cus-edit.el (custom-mode-hook):
7841 * buff-menu.el (buffer-menu-mode-hook):
7842 * bookmark.el (bookmark-read-annotation-text-func)
7843 (bookmark-exit-hooks):
7844 * allout.el (allout-mode-deactivate-hook)
7845 (allout-exposure-change-hook, allout-structure-added-hook)
7846 (allout-structure-deleted-hook, allout-structure-shifted-hook):
7847 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
7848 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
7849 comes before the corresponding variable's definition.
7850
ac59c2f6
CY
78512012-05-12 Chong Yidong <cyd@gnu.org>
7852
7853 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
0d909786
CY
7854 (Buffer-menu-mouse-select): Restore function (Bug#11459).
7855 (Buffer-menu-mode-map): Bind it.
7856 (Buffer-menu--pretty-name): Add a mouse-face property.
ac59c2f6 7857
dee6c9a3
SM
78582012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
7859
2171cea5
SM
7860 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
7861 (prolog-upper-case-string, prolog-lower-case-string)
7862 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
7863 (prolog-use-smie, prolog-smie-grammar): New vars.
7864 (prolog-smie-forward-token, prolog-smie-backward-token)
7865 (prolog-smie-rules): New funs.
7866 (prolog-comment-indent): Remove.
7867 (prolog-mode-variables): Use default comment indentation instead.
7868 Setup SMIE.
7869 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
7870 (prolog-mode): Don't call them any more.
7871 (prolog-electric-colon, prolog-electric-dash)
7872 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
7873
aa0382bd
SM
7874 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
7875
dbacb4bd
SM
7876 * minibuffer.el (completion--twq-all): Again, allow case differences.
7877
13bdd94c
SM
7878 * term.el: Move keymap initialization code to be more idiomatic.
7879 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
7880 (term-terminal-menu): Move initialization into declaration.
7881 (term-escape-char): Let the user set it in her .emacs.
7882
ff46c759
SM
7883 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
7884 Provide SMIE-based indentation (not enabled by default yet).
7885 (sh-mode-map): Don't bind electric keys.
7886 Use electric-pair-mode instead of skeleton-pair.
7887 (sh-assignment-regexp): Fit within 80 columns.
7888 (sh-indent-supported): Specify actual shell name instead of boolean.
7889 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
7890 (sh-maybe-here-document): Use it. Make obsolete.
7891 (sh-electric-here-document-mode) New minor mode.
7892 (sh-mode): Use it. Don't set sh-indent-supported-here here.
7893 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
7894 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
7895 (sh-smie-rc-grammar, sh-use-smie): New vars.
7896 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
7897 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
7898 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
7899 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
7900 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
7901 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
7902 (sh-set-shell): Use smie-setup if requested.
7903
dee6c9a3
SM
7904 * term.el (term-set-escape-char): Properly set term-escape-char.
7905 See http://stackoverflow.com/questions/10524656.
7906
9f9aa044
CY
79072012-05-10 Chong Yidong <cyd@gnu.org>
7908
7909 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
7910 Use url-generic-parse-url, and handle host names and Windows
7911 filenames properly.
7912 (ffap-url-unwrap-remote): Use url-generic-parse-url.
7913 (ffap-url-unwrap-remote): Accept list values, specifying a list of
7914 URL schemes to work on.
7915 (ffap--toggle-read-only): New function.
7916 (ffap-read-only, ffap-read-only-other-window)
7917 (ffap-read-only-other-frame): Use it.
7918 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
7919 necessary for ffap-url-unwrap-remote.
7920
836d29b3
DA
79212012-05-10 Dave Abrahams <dave@boostpro.com>
7922
7923 * cus-start.el (create-lockfiles): Add it.
7924
00fd78ed
CY
79252012-05-09 Chong Yidong <cyd@gnu.org>
7926
7927 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
7928 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
7929
666b903b 79302012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
1cb51c12
SM
7931
7932 * shell.el (shell-completion-vars): Fix last change (bug#11348).
7933
666b903b 79342012-05-09 Chong Yidong <cyd@gnu.org>
18f00515
CY
7935
7936 * ansi-color.el (ansi-color-process-output): Check for validity of
7937 comint-last-output-start before using it. This avoids a bad
7938 interaction with gdb-mi's input/output buffer.
7939
666b903b 79402012-05-09 Glenn Morris <rgm@gnu.org>
fd075e7b
GM
7941
7942 * files.el (dir-locals-read-from-file):
7943 Mention dir-locals in any error message.
7944
666b903b 79452012-05-09 Chong Yidong <cyd@gnu.org>
25f292cd
CY
7946
7947 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
7948 package (Bug#11410).
7949
f677562b
CY
7950 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
7951 variables into description.
7952
666b903b 79532012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3d53ee1b
SM
7954
7955 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
7956 shell-delimiter-argument-list (bug#11348).
7957 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
7958
b499d8d0
JB
79592012-05-09 Juanma Barranquero <lekktu@gmail.com>
7960
8f6b6da8
JB
7961 * textmodes/rst.el: Silence byte-compiler warnings.
7962 (rst-re-alist, rst-reset-section-caches): Move around.
7963 (rst-re): Use `characterp', not `char-valid-p'.
7964 (font-lock-beg, font-lock-end): Declare.
7965
4824146a
JB
7966 * progmodes/idlw-shell.el (specs): Remove reference to deleted
7967 variable `idlwave-shell-activate-alt-keybindings' and simplify.
7968
b499d8d0
JB
7969 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
7970
ad89bb83
GM
79712012-05-08 Glenn Morris <rgm@gnu.org>
7972
7973 * files.el (auto-mode-alist): Treat ".make" like ".mk".
7974
8bba5a75
SM
79752012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7976
49ed9c8e
SM
7977 * vc/log-edit.el: Add GNU coding standards highlighting.
7978 (log-edit-font-lock-gnu-style)
7979 (log-edit-font-lock-gnu-keywords): New vars.
7980 (log-edit-font-lock-keywords): New fun.
7981 (log-edit-mode): Don't fold case in font-lock.
7982 (log-edit-font-lock-keywords): Do not assume case-folding.
7983
07d00b56
SM
7984 * imenu.el: Misc cleanup. Make docstrings out of comments.
7985 Use lexical-binding.
7986 (imenu--index-alist, imenu--last-menubar-index-alist)
7987 (imenu-menubar-modified-tick): Use defvar-local.
7988 (imenu--split-menu): Remove unused var.
7989 (imenu--cleanup-seen): Declare as global.
7990 (imenu--cleanup): Use dolist.
7991
8bba5a75
SM
7992 * subr.el (defvar-local): Add debug spec and doc-string position.
7993
5075bdb5
GM
79942012-05-08 Glenn Morris <rgm@gnu.org>
7995
090bd7cb 7996 * language/burmese.el, language/cham.el, language/czech.el:
c052c904
GM
7997 * language/english.el, language/georgian.el, language/greek.el:
7998 * language/japanese.el, language/khmer.el, language/korean.el:
7999 * language/lao.el, language/misc-lang.el, language/romanian.el:
8000 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
8001 * language/thai.el, language/utf-8-lang.el:
8002 Remove no-byte-compile setting.
8003
5075bdb5
GM
8004 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
8005
06f679a7
AH
80062012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8007
8008 * progmodes/make-mode.el (makefile-browse):
8009 Remove unnecessary interactive. (Bug#11324)
8010
03794570
GM
80112012-05-07 Glenn Morris <rgm@gnu.org>
8012
af8630f4
GM
8013 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
8014
03794570
GM
8015 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
8016
f0809a9d
SM
80172012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8018
28be5ce7
SM
8019 * loadup.el: Preload newcomment.el.
8020 * newcomment.el: Move autoload-only code to toplevel.
8021
f0809a9d
SM
8022 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
8023 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
8024 Handle new :right-align column property.
8025 (tabulated-list-print-col): Idem, plus use `display' text-property to
8026 try and preserve alignment for variable pitch fonts.
8027
1241b724
CY
80282012-05-07 Chong Yidong <cyd@gnu.org>
8029
8030 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
8031 (tabulated-list-use-header-line): New var.
8032 (tabulated-list-init-header): Use it.
8033 (tabulated-list-print-fake-header): New function.
8034 (tabulated-list-print): Use it.
8035 (tabulated-list-sort-button-map): Add non-header-line commands.
8036 (tabulated-list-init-header): Add column name property to basic
8037 labels as well.
8038 (tabulated-list-col-sort): Handle non-header-line button case.
8039 (tabulated-list--sort-by-column-name): Fix a corner case.
8040
f0809a9d
SM
8041 * buff-menu.el (list-buffers--refresh):
8042 Handle Buffer-menu-use-header-line.
1241b724 8043
e5f9458f
CY
80442012-05-06 Chong Yidong <cyd@gnu.org>
8045
8046 * buff-menu.el: Convert to Tabulated List mode.
8047 (Buffer-menu-buffer+size-width): Make obsolete.
8048 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
8049 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
8050 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
8051 documentation into docstring of buffer-menu.
8052 (Buffer-menu-toggle-files-only): Add an informative message.
8053 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
8054 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
8055 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
8056 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
8057 (Buffer-menu-execute, Buffer-menu-select)
8058 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
8059 (Buffer-menu-bury): Use Tabulated List machinery.
8060 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
8061 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
f0809a9d 8062 Delete.
e5f9458f
CY
8063 (list-buffers--refresh): New function.
8064 (list-buffers-noselect): Use it.
8065 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
8066 (Buffer-menu--pretty-file-name): New helper functions.
8067
8068 * loadup.el: Preload tabulated-list.
8069
8070 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
8071 tabulated-list-sort-column.
8072 (tabulated-list-init-header): Add the initial aligning space even
8073 if tabulated-list-padding is zero.
8074
e129292c
CS
80752012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
8076
8077 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
8078 whose cdr is not a cons cell correctly (bug#11038).
8079
6632d361
CY
80802012-05-06 Chong Yidong <cyd@gnu.org>
8081
e129292c
CS
8082 * emacs-lisp/tabulated-list.el (tabulated-list-format):
8083 Accept additional plist in column descriptors.
6632d361
CY
8084 (tabulated-list-init-header): Obey it.
8085 (tabulated-list-get-entry): New function.
8086 (tabulated-list-put-tag): Use it. Use string-width instead of
8087 length.
8088 (tabulated-list--column-number): New function.
8089 (tabulated-list-print): Use it.
e129292c
CS
8090 (tabulated-list-print-col): New function.
8091 Set `tabulated-list-column-name' property on each column's text.
6632d361 8092 (tabulated-list-print-entry): Use it.
e129292c
CS
8093 (tabulated-list-delete-entry, tabulated-list-set-col):
8094 New functions.
6632d361
CY
8095 (tabulated-list-sort-column): New command (Bug#11337).
8096
3cc99f68
CY
8097 * buff-menu.el (list-buffers): Move C-x C-b binding from
8098 buff-menu.el to bindings.el.
8099
8100 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
8101 :advertised-binding feature.
8102
52b61776
TN
81032012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
8104
8105 * progmodes/compile.el (compilation-internal-error-properties):
8106 Calculate start position correctly when end-col is set but
8107 end-line is not (Bug#11382).
8108
ebfe2597
WJ
81092012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
8110
8111 * man.el (Man-unindent): Use text-property-default-nonsticky to
8112 prevent untabify from inheriting face properties (Bug#11408).
8113
6d3f7c2f
SM
81142012-05-05 Stefan Merten <smerten@oekonux.de>
8115
8116 * textmodes/rst.el: Major merge with upstream development up to
8117 Docutils SVN r7399 / rst.el V1.2.1.
8118
8119 Clarify maintainership and authors.
8120
8121 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
8122 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
8123 (rst-official-version, rst-official-cvs-rev, rst-version)
8124 (rst-package-emacs-version-alist): New functions and variables
8125 for version information.
8126
8127 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
8128 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
8129 (rst-mode-syntax-table, rst-mode): New and corrected functions
8130 and variables representing reStructuredText features.
8131
8132 (rst-re): New function for reStructuredText regexes. Use in
8133 many places.
8134
8135 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
8136 (rst-mode-map): Rebind keys.
8137
8138 (rst-mode-lazy, rst-font-lock-keywords)
8139 (rst-font-lock-extend-region)
8140 (rst-font-lock-extend-region-internal)
8141 (rst-font-lock-extend-region-extend)
8142 (rst-font-lock-find-unindented-line-limit)
8143 (rst-font-lock-find-unindented-line-match)
8144 (rst-adornment-level, rst-font-lock-adornment-level)
8145 (rst-font-lock-adornment-match)
8146 (rst-font-lock-handle-adornment-pre-match-form)
8147 (rst-font-lock-handle-adornment-matcher): Major revision of
8148 font-locking. Integrate with other code. Use `jit-lock-mode'.
8149
8150 (rst-preferred-adornments, rst-adjust-hook)
8151 (rst-new-adornment-down, rst-preferred-bullets)
8152 (rst-preferred-bullets, rst-indent, rst-indent-width)
8153 (rst-indent-field, rst-indent-literal-normal)
8154 (rst-indent-literal-minimized, rst-indent-comment): Change,
8155 extend and improve customization.
8156
8157 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
8158 (rst-normalize-cursor-position, rst-get-decoration)
8159 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
8160 (rst-rstrip, rst-toc-insert-find-delete-contents)
8161 (rst-shift-fill-region, rst-compute-bullet-tabs)
8162 (rst-debug-print-tabs, rst-debug-mark-found)
8163 (rst-shift-region-guts, rst-shift-region-right)
8164 (rst-shift-region-left, rst-use-char-classes)
8165 (rst-font-lock-keywords-function)
8166 (rst-font-lock-indentation-point)
8167 (rst-font-lock-find-unindented-line-begin)
8168 (rst-font-lock-find-unindented-line-end)
8169 (rst-font-lock-find-unindented-line)
8170 (rst-font-lock-adornment-point, rst-font-lock-level)
8171 (rst-adornment-level-alist): Remove functions and variables.
8172
8173 (rst-compare-adornments, rst-get-adornment-match)
8174 (rst-suggest-new-adornment, rst-get-adornments-around)
8175 (rst-adornment-complete-p, rst-get-next-adornment)
8176 (rst-adjust-adornment, rst-display-adornments-hierarchy)
8177 (rst-straighten-adornments): Standardize function names to
8178 use "adornment" instead of "decoration". Correct callers.
8179 Similar standardizing in many places.
8180
8181 (rst-update-section, rst-adjust, rst-promote-region)
8182 (rst-enumerate-region, rst-bullet-list-region)
8183 (rst-repeat-last-character): Correct use of `interactive'.
8184
8185 (rst-classify-adornment, rst-find-all-adornments)
8186 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
8187 (rst-find-leftmost-column, rst-repeat-last-character):
8188 Refactor functions.
8189
8190 (rst-find-title-line, rst-reset-section-caches)
8191 (rst-get-adornments-around, rst-adjust-adornment-work)
8192 (rst-arabic-to-roman, rst-roman-to-arabic)
8193 (rst-insert-list-pos, rst-insert-list-new-item)
8194 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
8195 New functions.
8196
8197 (rst-all-sections, rst-section-hierarchy)
8198 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
8199 New variables.
8200
8201 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
8202 configuration instead of only buffer. Change where necessary.
8203
8204 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
8205 (rst-shift-region, rst-adaptive-fill): New functions for
8206 indentation and filling.
8207
8208 (rst-comment-line-break, rst-comment-indent)
8209 (rst-comment-insert-comment, rst-comment-region)
8210 (rst-uncomment-region): New functions for handling comments.
8211
8212 (rst-compile): Quote shell arguments.
8213
8214 (rst-compile-pdf-preview, rst-compile-slides-preview):
8215 Delete temporary files after use.
8216
a43f98b3
GM
82172012-05-05 Glenn Morris <rgm@gnu.org>
8218
48176e8b
GM
8219 * calendar/cal-html.el: Optionally include holidays in the output.
8220 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
8221 (cal-html-holidays): New option.
8222 (cal-html-css-default): Add holiday entry.
8223 (holiday-in-range): Autoload it.
8224 (cal-html-htmlify-entry): Add optional class argument.
8225 (cal-html-htmlify-list): Add optional holidays argument.
8226 (cal-html-insert-agenda-days): Include holidays in the output.
8227 (cal-html-one-month): Maybe include holidays.
8228
a43f98b3
GM
8229 * calendar/holidays.el (holiday-in-range):
8230 Move here from cal-tex-list-holidays.
8231 * calendar/cal-tex.el (cal-tex-list-holidays):
8232 Make it an obsolete alias for holiday-in-range. Update all callers.
8233
fef9d149 82342012-05-05 Chong Yidong <cyd@gnu.org>
eceeb5fc
CY
8235
8236 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
8237 Nextstep.
8238
248da2f4
RW
82392012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
8240
8241 * files.el (file-auto-mode-skip): New var.
8242 (set-auto-mode-1): Use it.
8243
f95e9344
SM
82442012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8245
df96ab1e
SM
8246 * repeat.el: Use lexical-binding.
8247 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
8248 (repeat-undo-count): Remove.
8249 (repeat):
8250 * progmodes/octave-mod.el (octave-abbrev-start):
8251 * progmodes/f90.el (f90-abbrev-start):
8252 * face-remap.el (text-scale-adjust):
8253 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
8254
5342bb06
SM
8255 * emacs-lisp/pcase.el (pcase--let*): New function.
8256 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
8257 a bit more.
8258 (pcase--split-pred): Be more clever about ruling out overlap between
8259 a predicate and some constant pattern.
8260 (pcase--q1): Use `null' instead of (eq foo nil).
8261
f95e9344
SM
8262 * subr.el (setq-local, defvar-local): New macros.
8263 (kbd): Redefine as an alias.
8264 (with-selected-window): Leave unrelated frames alone.
8265 (set-temporary-overlay-map): New function.
8266
71873e2b
SM
82672012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8268
8269 * subr.el (user-error): New function.
8270 * window.el (switch-to-buffer):
8271 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
8272 (smerge-match-conflict):
8273 * simple.el (previous-matching-history-element)
8274 (next-matching-history-element, goto-history-element, undo-more)
8275 (undo-start):
8276 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
8277 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
8278 (next-file, tags-loop-scan, list-tags, complete-tag):
8279 * progmodes/compile.el (compilation-loop):
8280 * mouse.el (mouse-minibuffer-check):
8281 * man.el (Man-bgproc-sentinel, Man-goto-page):
8282 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
8283 (Info-history-forward, Info-follow-reference, Info-menu)
8284 (Info-extract-menu-item, Info-extract-menu-counting)
8285 (Info-forward-node, Info-backward-node, Info-next-menu-item)
8286 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
8287 (Info-next-reference, Info-prev-reference, Info-index)
8288 (Info-index-next, Info-follow-nearest-node)
8289 (Info-copy-current-node-name):
8290 * imenu.el (imenu--make-index-alist)
8291 (imenu-default-create-index-function, imenu-add-to-menubar):
8292 * files.el (basic-save-buffer, recover-file):
8293 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8294 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
8295 (checkdoc-message-text, checkdoc-defun):
8296 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
8297 * cus-edit.el (customize-changed-options, customize-rogue)
8298 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
8299 (custom-variable-mark-to-reset-standard)
8300 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
8301 (custom-file):
8302 * completion.el (check-completion-length):
8303 * comint.el (comint-search-arg)
8304 (comint-previous-matching-input-string-position)
8305 (comint-previous-matching-input)
8306 (comint-replace-by-expanded-history-before-point, comint-send-input)
8307 (comint-copy-old-input, comint-backward-matching-input)
8308 (comint-goto-process-mark, comint-set-process-mark):
8309 * calendar/calendar.el (calendar-cursor-to-date): Use it.
8310 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
8311
8a61ee22
SM
83122012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8313
66408d1e
SM
8314 * dabbrev.el (dabbrev--ignore-case-p): New function.
8315 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
8316 Use it.
8317
8a61ee22
SM
8318 * files.el (automount-dir-prefix): Mark as obsolete.
8319
3c74813a
GM
83202012-05-04 Glenn Morris <rgm@gnu.org>
8321
8322 * patcomp.el, play/bruce.el: Move to obsolete/.
8323
0bfcf5c5
PE
83242012-05-04 Paul Eggert <eggert@cs.ucla.edu>
8325
8326 Fix minor Y10k bugs.
8327 * arc-mode.el (archive-unixdate):
8328 * autoinsert.el (auto-insert-alist):
8329 * calc/calc-forms.el (math-this-year):
8330 * emacs-lisp/copyright.el (copyright-current-year)
8331 (copyright-update-year, copyright):
8332 * tar-mode.el (tar-clip-time-string):
8333 * time.el (display-time-update):
8334 Don't assume years have 4 digits.
8335
78f3273a
CY
83362012-05-04 Chong Yidong <cyd@gnu.org>
8337
8338 * dos-w32.el (file-name-buffer-file-type-alist)
8339 (direct-print-region-use-command-dot-com):
8340 * ffap.el (ffap-menu-regexp):
8341 * find-file.el (ff-special-constructs):
8342 * follow.el (follow-debug):
8343 * forms.el (forms--debug):
8344 * iswitchb.el (iswitchb-all-frames):
8345 * ido.el (ido-all-frames):
8346 * emacs-lisp/timer.el (timer-max-repeats):
8347 * mail/feedmail.el (feedmail-mail-send-hook)
8348 (feedmail-mail-send-hook-queued):
8349 * mail/footnote.el (footnote-signature-separator):
8350 * mail/mailabbrev.el (mail-alias-separator-string)
8351 (mail-abbrev-mode-regexp):
8352 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
8353 * progmodes/idlwave.el (idlwave-libinfo-file)
8354 (idlwave-default-completion-case-is-down)
8355 (idlwave-library-routines): Convert defvars to defcustoms.
8356
8357 * mail/rmail.el (rmail-decode-mime-charset):
8358 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
8359 (idlwave-shell-fix-inserted-breaks)
8360 (idlwave-shell-activate-alt-keybindings)
8361 (idlwave-shell-use-breakpoint-glyph):
8362 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
8363
f7ae6719
SM
83642012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8365
8366 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
8367
47086495
WS
83682012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
8369
8370 * progmodes/verilog-mode.el (font-lock-keywords):
8371 Fix mis-highligting auto. Reported by Craig Barner.
8372 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
fc0c31f8 8373 defines from global name space. Reported by Dan Dever.
47086495
WS
8374 (verilog-auto-reset, verilog-auto-reset-widths)
8375 (verilog-auto-tieoff): Support using unbased numbers for
8376 AUTORESET and AUTOTIEOFF.
8377 (verilog-submit-bug-report): Update variable list.
8378 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
fc0c31f8 8379 parenthesis from not matching. Reported by Michael Rytting.
47086495
WS
8380 (verilog-auto-template-lint): Fix hash error when linting modules
8381 with no used templates.
8382 (verilog-warn, verilog-warn-error)
8383 (verilog-warn-fatal): When non-interactive report multiple
8384 warnings before exiting. Suggested by Brad Dobbie.
8385 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
8386 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
8387 to report unused template errors. Reported by Brad Dobbie.
8388 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
fc0c31f8 8389 nets, bug438. Reported by Vns Blore.
47086495
WS
8390 (verilog-auto-inout-module, verilog-auto-reg)
8391 (verilog-read-decls, verilog-read-sub-decls-sig)
8392 (verilog-signals-edit-wire-reg, verilog-signals-with):
8393 Fix passing of Verilog data types in ANSI input/output ports
fc0c31f8 8394 such as "output logic" into the AUTOs. Special case "wire" and
47086495
WS
8395 "reg" for backwards compatibility presuming Verilog 2001.
8396 (verilog-auto-ascii-enum): Add "auto enum" as alias.
8397 (verilog-preprocess): Fix replication of preprocess output.
8398 Reported by Brad Dobbie.
8399 (verilog-auto-inst-interfaced-ports):
8400 Create verilog-auto-inst-interfaced-ports, bug429.
8401 Reported by Julian Gorfajn.
8402 (verilog-after-save-font-hook)
8403 (verilog-before-save-font-hook): New variable.
8404 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
8405 (verilog-save-font-mods): Wrap disabling fontification, reported
8406 by David Rogoff.
8407 (verilog-do-indent, verilog-pretty-declarations-auto)
8408 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
8409 Reported by Pierre-David Pfister.
8410 (verilog-set-auto-endcomments): Fix endtask auto comments outside
8411 of class declarations, bug292. Reported by Kevin Heilman.
8412 (verilog-read-decls): Fix 'parameter type' not appearing in
8413 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
8414 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
fc0c31f8 8415 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
47086495
WS
8416 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
8417 Reported by David Kravitz.
8418
84192012-05-03 Michael McNamara <mac@mail.brushroad.com>
8420
8421 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
8422 assignment with tests in ifs and for loops.
8423 (verilog-extended-complete-re, verilog-complete-reg): Change so
8424 that DPI inport functions don't look like fuction declarations.
8425 (verilog-pretty-expr): Don't line up assignment
8426 operations to the test and increment in if and for loops
8427 (verilog-extended-complete-re, verilog-complete-reg): Change so
090bd7cb 8428 that DPI inport functions don't look like fuction declarations.
47086495 8429
2e51d4b5
KH
84302012-05-03 Kenichi Handa <handa@m17n.org>
8431
8432 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
c846da43 8433 decoding, and show a warning message without signaling an error
2e51d4b5
KH
8434 (Bug#11282).
8435
2bd785a2
SM
84362012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8437
8438 * emacs-lisp/bytecomp.el
8439 (byte-compile-file-form-custom-declare-variable): Compile all elements,
8440 since cconv.el might have introduced :fun-body, internal-make-closure,
8441 and friends for bytecomp to handle (bug#11391).
8442 * custom.el (defcustom): Avoid ((λ ..) ..).
8443
99d27583
SM
84442012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
8445
8446 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
8447
55a71479
JB
84482012-05-02 Juanma Barranquero <lekktu@gmail.com>
8449
8450 * notifications.el (dbus-debug):
8451 * term/linux.el (gpm-mouse-enable):
8452 * term/screen.el (xterm-register-default-colors): Declare.
8453
7b97c764
CY
84542012-05-02 Chong Yidong <cyd@gnu.org>
8455
2bc356d7
CY
8456 * cus-start.el (gc-cons-percentage, exec-suffixes)
8457 (dos-display-scancodes, dos-hyper-key, dos-super-key)
8458 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
8459 (make-cursor-line-fully-visible, void-text-area-pointer)
8460 (font-list-limit): Add customization data.
8461
7b97c764
CY
8462 * allout.el (allout-exposure-change-functions)
8463 (allout-structure-added-functions)
8464 (allout-structure-deleted-functions)
8465 (allout-structure-shifted-functions): Rename abnormal hooks from
8466 *-hook, and convert to defcustoms.
5d3385a0
JB
8467 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
8468 Convert to defcustoms.
7b97c764
CY
8469 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
8470
8471 * allout-widgets.el: Hook callers changed.
8472
90207a15 84732012-05-02 Eli Zaretskii <eliz@gnu.org>
91af76bf
EZ
8474
8475 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
8476 the yanked message in preference to the default value of
8477 buffer-file-coding-system.
8478
90207a15 84792012-05-02 Martin Rudalics <rudalics@gmx.at>
d9558cad 8480
5d3385a0
JB
8481 * window.el (display-buffer--action-function-custom-type):
8482 Fix entry.
d9558cad 8483
90207a15 84842012-05-02 Alan Mackenzie <acm@muc.de>
09affde0
AM
8485
8486 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
8487
d80ac57b
GM
84882012-05-01 Glenn Morris <rgm@gnu.org>
8489
976f7668
GM
8490 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
8491
beb83b5a
GM
8492 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
8493
d80ac57b
GM
8494 * cus-edit.el (custom-variable-documentation): Simplify with format.
8495
b593d6a9 84962012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
f1a71c6e 8497 Stefan Monnier <monnier@iro.umontreal.ca>
b593d6a9
AH
8498
8499 * simple.el (suggest-key-bindings, execute-extended-command):
8500 Move from keyboard.c.
8501
782fbf2a
CY
85022012-05-01 Chong Yidong <cyd@gnu.org>
8503
8504 * follow.el: Eliminate advice.
8505 (set-process-filter, process-filter, sit-for): Advice deleted.
8506 (follow-mode-off-hook): Obsolete hook removed.
b593d6a9
AH
8507 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
8508 Vars deleted.
782fbf2a
CY
8509 (follow-auto): Use a :set function.
8510 (follow-mode): Rewritten. Don't advise process filters.
8511 (follow-switch-to-current-buffer-all, follow-scroll-up)
8512 (follow-scroll-down): Assume follow-mode is bound.
8513 (follow-comint-scroll-to-bottom)
8514 (follow-align-compilation-windows): New functions.
8515 (follow--window-sorter): New function.
8516 (follow-all-followers): Use it to explicitly sort windows by their
8517 positions; don't make assumptions about next-window order.
8518 (follow-windows-start-end, follow-delete-other-windows-and-split)
8519 (follow-calc-win-start): Doc fix.
8520 (follow-windows-aligned-p, follow-select-if-visible): Don't call
8521 vertical-motion unnecessarily.
8522 (follow-adjust-window): New function.
8523 (follow-post-command-hook): Use it.
8524 (follow-call-set-process-filter, follow-call-process-filter)
8525 (follow-intercept-process-output, follow-tidy-process-filter-alist)
8526 (follow-stop-intercept-process-output, follow-generic-filter):
8527 Functions deleted.
8528 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
b593d6a9
AH
8529 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
8530 New functions, replacing advice on scroll-bar-* commands.
87233a14 8531 (follow-mwheel-scroll): New function (Bug#4112).
782fbf2a
CY
8532
8533 * comint.el (comint-adjust-point): New function.
b593d6a9
AH
8534 (comint-postoutput-scroll-to-bottom): Use it.
8535 Call follow-comint-scroll-to-bottom for Follow mode buffers.
782fbf2a 8536
290af740
GM
85372012-05-01 Glenn Morris <rgm@gnu.org>
8538
8539 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
8540 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
8541 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
8542 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
8543 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
8544 Remove no-byte-compile setting.
8545
6eac8dc9
SM
85462012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8547
8548 * minibuffer.el (completion-table-with-quoting): Fix compatibility
8549 all-completions code to not return a number in the last cdr.
8550
9cc7819c
LL
85512012-04-30 Leo Liu <sdl.web@gmail.com>
8552
8553 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
8554 read-only error.
8555
c93b886f
CY
85562012-04-29 Chong Yidong <cyd@gnu.org>
8557
8558 * follow.el (follow-calc-win-end): Rewrite to handle partial
8559 screen lines correctly (Bug#8390).
8560 (follow-avoid-tail-recenter): Minor cleanup.
8561
8b6c19f4
SM
85622012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8563
8564 Avoid the obsolete `assoc' package.
8565 * speedbar.el (speedbar-refresh): Avoid adelete.
8566 (speedbar-file-lists): Simplify and avoid aput.
8567 * man.el (Man--sections, Man--refpages): New vars, replacing
8568 Man-sections-alist and Man-refpages-alist.
8569 (Man-build-section-alist, Man-build-references-alist):
8570 Use them; avoid aput.
8571 (Man--last-section, Man--last-refpage): New vars.
8572 (Man-follow-manual-reference): Use them.
8573 Use the `default' arg of completing-read.
8574 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
8575
c5bb7569
CY
85762012-04-27 Chong Yidong <cyd@gnu.org>
8577
d1d2e2e8
CY
8578 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
8579
15cd8efd
CY
8580 * startup.el (x-apply-session-resources): New function.
8581
8582 * term/ns-win.el (ns-initialize-window-system):
8583 * term/w32-win.el (w32-initialize-window-system):
8584 * term/x-win.el (x-initialize-window-system): Use it to properly
8585 set menu-bar-mode and other vars from X resources, even if the
8586 initial frame is not a window-system frame (Bug#2299).
8587
c5bb7569
CY
8588 * subr.el (read-key): Avoid running filter function when setting
8589 up temporary tool bar entries (Bug#9922).
8590
a8e7d6d7 85912012-04-27 Andreas Schwab <schwab@linux-m68k.org>
c4347ab9
AS
8592
8593 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
8594 (Bug#11344)
8595
a8e7d6d7 85962012-04-27 Chong Yidong <cyd@gnu.org>
acb71f1d
CY
8597
8598 * select.el (xselect--encode-string): New function, split from
8599 xselect-convert-to-string.
8600 (xselect-convert-to-string): Use it.
8601 (xselect-convert-to-filename, xselect-convert-to-os)
8602 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
8603 returned strings are properly encoded (Bug#11315).
8604
a8e7d6d7 86052012-04-27 Chong Yidong <cyd@gnu.org>
d55486c7
CY
8606
8607 * simple.el (delete-active-region): Move to killing custom group.
8608
a8e7d6d7 86092012-04-27 Andreas Schwab <schwab@linux-m68k.org>
581b6788
AS
8610
8611 * progmodes/which-func.el (which-func-current): Quote %
8612 characters for mode-line processing.
8613
578c1d4b 86142012-04-27 Chong Yidong <cyd@gnu.org>
18edb22d
CY
8615
8616 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
8617 reaching eob (Bug#11286).
8618
a8e7d6d7 86192012-04-27 Eli Zaretskii <eliz@gnu.org>
9ee9f470
EZ
8620
8621 * progmodes/gdb-mi.el (gdb-control-level): New variable.
8622 (gdb): Make it buffer-local and init to zero.
8623 (gdb-control-commands-regexp): New variable.
8624 (gdb-send): Don't wrap in "-interpreter-exec console" if
8625 gdb-control-level is positive. Increment gdb-control-level
8626 whenever the command matches gdb-control-commands-regexp, and
8627 decrement it each time the command is "end". (Bug#11279)
8628
a8e7d6d7 86292012-04-27 Martin Rudalics <rudalics@gmx.at>
41cfe0cb
MR
8630
8631 * window.el (adjust-window-trailing-edge, enlarge-window)
8632 (shrink-window, window-resize):
8633 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
8634 windows (Bug#11276).
8635
b3608390
CY
86362012-04-27 Chong Yidong <cyd@gnu.org>
8637
8638 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
a8e7d6d7 8639 fix "missing prefix" warning. All callers changed.
b3608390 8640
797e6e88
SM
86412012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8642
8643 * emacs-lisp/assoc.el: Move to obsolete/.
8644
e95a67dc
SM
86452012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8646
657c21e4 8647 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
e95a67dc
SM
8648
8649 * term/ns-win.el (ns-define-service):
8650 * progmodes/pascal.el (pascal-goto-defun):
8651 * progmodes/js.el (js--read-tab):
8652 * progmodes/etags.el (tags-lazy-completion-table):
8653 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
8654 * emacs-lisp/ewoc.el (ewoc--wrap):
8655 * emacs-lisp/assoc.el (aput, adelete, amake):
8656 * doc-view.el (doc-view-convert-current-doc):
8657 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
8658
cb3e7ae0
CY
86592012-04-26 Chong Yidong <cyd@gnu.org>
8660
dce04f7f
CY
8661 * image.el (image-type-from-buffer): Only return supported image
8662 type (Bug#9045).
8663
cb3e7ae0
CY
8664 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
8665 value, for symmetry with diff-end-of-hunk.
8666 (diff-split-hunk, diff-find-source-location)
8667 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
8668 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
8669 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
8670 compute the relevant hunk or file properly (Bug#6005).
8671 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
8672
0d42eb3e
SM
86732012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8674
8675 * vc/vc-mtn.el:
8676 * vc/vc-hg.el:
8677 * vc/vc-git.el:
8678 * vc/vc-dir.el:
8679 * vc/vc-cvs.el:
8680 * vc/vc-bzr.el:
8681 * vc/vc-arch.el:
8682 * vc/vc.el: Replace lexical-let by lexical-binding.
8683 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
8684 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
8685 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
8686
f08ae1c9
CY
86872012-04-26 Chong Yidong <cyd@gnu.org>
8688
8b71081d
CY
8689 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
8690 (diff-mode-shared-map): Bind it to / and [remap undo].
8691
f08ae1c9
CY
8692 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
8693 (ediff-window-setup-function): Use it as the default, to set up
8694 windows based on whether the current frame is graphical (Bug#2138).
8695 (ediff-choose-window-setup-function-automatically): Make obsolete.
8696
8697 * vc/ediff-init.el: Always define ediff-pixel-width/height.
8698
ef24141c
SM
86992012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8700
cc356a5d
SM
8701 * ffap.el: Remove old code for obsolete package.
8702 (ffap-complete-as-file-p): Remove.
8703
b4ff4f1f
SM
8704 Use completion-table-with-quoting for comint and pcomplete.
8705 * comint.el (comint--unquote&requote-argument)
8706 (comint--unquote-argument, comint--requote-argument): New functions.
8707 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
8708 (comint-quote-filename): Use regexp-opt-charset.
8709 (comint--common-suffix, comint--common-quoted-suffix)
8710 (comint--table-subvert): Remove.
8711 (comint-unquote-function, comint-requote-function): New vars.
8712 (comint--complete-file-name-data): Use them with
8713 completion-table-with-quoting.
8714 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
8715 * pcomplete.el (pcomplete-arg-quote-list)
8716 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
8717 (pcomplete-unquote-argument-function): Default to non-nil.
8718 (pcomplete-unquote-argument): Simplify.
8719 (pcomplete--common-quoted-suffix): Remove.
8720 (pcomplete-requote-argument-function): New var.
8721 (pcomplete--common-suffix): New function.
8722 (pcomplete-completions-at-point): Use completion-table-with-quoting
8723 and completion-table-subvert.
8724
79c4eeb4
SM
8725 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
8726 (minibuffer--double-dollars): Preserve properties.
8727 (completion--sifn-requote): New function.
8728 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
8729
ef24141c
SM
8730 * minibuffer.el: Add support for completion of quoted/escaped data.
8731 (completion-table-with-quoting, completion-table-subvert): New funs.
8732 (completion--twq-try, completion--twq-all): New functions.
8733 (completion--nth-completion): New function.
8734 (completion-try-completion, completion-all-completions): Use it.
8735
784e7d6e
LL
87362012-04-25 Leo Liu <sdl.web@gmail.com>
8737
dd2ac746
SM
8738 * progmodes/python.el (python-pdbtrack-get-source-buffer):
8739 Use compilation-message if available to find real filename.
784e7d6e 8740
07875ee7
CY
87412012-04-25 Chong Yidong <cyd@gnu.org>
8742
8743 * vc/diff-mode.el (diff-setup-whitespace): New function.
8744 (diff-mode): Use it.
8745
8746 * vc/diff.el (diff-sentinel):
8747 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
8748 Whitespace mode variables based on diff style (Bug#8612).
8749
5055880d
LL
87502012-04-25 Leo Liu <sdl.web@gmail.com>
8751
daf75653
LL
8752 * progmodes/python.el (python-send-region): Add suffix .py to the
8753 temp file.
8754
5055880d
LL
8755 * files.el (auto-mode-alist): Use javascript-mode instead.
8756
db9b177b
AH
87572012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
8758
ef24141c 8759 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
db9b177b 8760
090bd7cb 8761 * net/soap-client.el (soap-resolve-references-for-sequence-type)
ef24141c 8762 (soap-resolve-references-for-array-type): Hack to prevent self
db9b177b 8763 references, see Bug#9.
ef24141c 8764 (soap-parse-envelope): Report the contents of the 'detail' node
db9b177b 8765 when receiving a fault reply.
ef24141c 8766 (soap-parse-envelope): Report the contents of the entire 'detail' node.
db9b177b 8767
090bd7cb 8768 * net/soap-inspect.el (soap-sample-value-for-simple-type)
ef24141c 8769 (soap-inspect-simple-type): New function.
db9b177b 8770
090bd7cb 8771 * net/soap-client.el (soap-simple-type): New struct.
db9b177b 8772 (soap-default-xsd-types, soap-default-soapenc-types)
ef24141c
SM
8773 (soap-decode-basic-type, soap-encode-basic-type):
8774 support unsignedInt and double basic types.
db9b177b 8775 (soap-resolve-references-for-simple-type)
ef24141c
SM
8776 (soap-parse-simple-type, soap-encode-simple-type): New function.
8777 (soap-parse-schema): Parse xsd:simpleType declarations.
db9b177b 8778
090bd7cb 8779 * net/soap-client.el (soap-default-xsd-types)
ef24141c
SM
8780 (soap-default-soapenc-types): Add integer, byte and anyURI types.
8781 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
8782 the local name of "soapenc:Array".
8783 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
db9b177b
AH
8784 decoding integer, byte and anyURI xsd types.
8785
1fc6097b
CY
87862012-04-25 Chong Yidong <cyd@gnu.org>
8787
8788 * cus-edit.el (custom-buffer-create-internal): Update header text.
8789
afc6df87
EZ
87902012-04-25 Eli Zaretskii <eliz@gnu.org>
8791
8792 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
8793 settings on 'system-type', not on 'window-system'. On MS-Windows,
8794 set interactive-mode on in GDB.
8795
dfbd787f
SM
87962012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8797
8798 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
8799 (ruby-syntax-propertize-regexp): Remove.
8800 (ruby-syntax-propertize-function): Split regexp into chunks.
8801 Match following code directly.
8802
85222d44
DG
88032012-04-24 Dmitry Gutov <dgutov@yandex.ru>
8804
51a8ea2a
DG
8805 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
8806 (ruby-syntax-propertize-regexp): New function.
8807 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
8808 by a special keyword.
8809
85222d44
DG
8810 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
8811 (ruby-syntax-general-delimiters-goto-beg)
8812 (ruby-syntax-propertize-general-delimiters): New functions.
8813 (ruby-syntax-propertize-function): Use them to handle GDL.
8814 (ruby-font-lock-keywords): Move old handling of GDL...
8815 (ruby-font-lock-syntactic-keywords): .. to here.
8816 (ruby-calculate-indent): Adjust indentation for GDL.
8817
b613912b
MA
88182012-04-24 Michael Albinus <michael.albinus@gmx.de>
8819
b5380639
MA
8820 * notifications.el (top): Remove unneeded declarations.
8821 (notifications-specification-version): Change to "1.2".
e43042fe 8822 (notifications-interface, notifications-notify-method)
b613912b
MA
8823 (notifications-close-notification-method): Fix docstring.
8824 (notifications-get-capabilities-method): New defconst.
e43042fe
MA
8825 (notifications-notify): Add :action-items, :resident and
8826 :transient hints. Change "image_data" to "image-data" and
8827 "image_path" to "image-path".
b613912b
MA
8828 (notifications-get-capabilities): New defun.
8829
257440aa
LL
88302012-04-24 Leo Liu <sdl.web@gmail.com>
8831
8832 * progmodes/python.el: Move hideshow setup to the end.
8833
b1bac16e
MR
88342012-04-24 Martin Rudalics <rudalics@gmx.at>
8835
8836 * window.el (handle-select-window): Clear echo area since this is
8837 no more done by read_char (Bug#11304).
8838
d81bd059
SM
88392012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8840
8841 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
8842 and `/ M' to filter-derived-mode.
8843 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
8844 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
8845 (ibuffer-mark-by-mode): Use default rather than initial-input.
8846 (ibuffer-filter-by-derived-mode): Autoload and require-match.
8847
c4cf6d91
IA
88482012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
8849
8850 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
8851 (ibuffer-filter-by-derived-mode): New filter.
8852 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
8853
7511ded8
CY
88542012-04-23 Andreas Politz <politza@fh-trier.de>
8855
8856 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
8857
775c916b
CY
88582012-04-23 Chong Yidong <cyd@gnu.org>
8859
8860 * cus-edit.el (customize-apropos, customize-apropos-options):
8861 Disable matching of non-option variables (Bug#11176).
8862 (customize-option, customize-option-other-window)
8863 (customize-changed-options): Doc fix.
8864 (customize-apropos-options, customize-apropos-faces)
8865 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
8866
8867 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
922d37d3 8868 Fix word list splitting (Bug#11132).
46c71e23
CY
8869 (apropos-symbol, apropos-keybinding, apropos-label)
8870 (apropos-property, apropos-function-button)
8871 (apropos-variable-button, apropos-misc-button): New faces.
8872 (apropos-symbol-face, apropos-keybinding-face)
8873 (apropos-label-face, apropos-property-face, apropos-match-face):
8874 Variables removed (Bug#8396).
8875 (apropos-library-button, apropos-format-plist, apropos-print)
8876 (apropos-print-doc, apropos-describe-plist): Callers changed.
775c916b 8877
2df41f9c
MA
88782012-04-23 Michael Albinus <michael.albinus@gmx.de>
8879
8880 * net/xesam.el (xesam-mode-map): Use let-bound map in
8881 initialization. (Bug#11292)
8882
da00640a
AM
88832012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8884
8885 Preserve ispell session localwords when switching back to
8886 original buffer.
8887
090bd7cb
JB
8888 * textmodes/ispell.el (ispell-buffer-session-localwords):
8889 New buffer-local variable to hold buffer session localwords.
ed9265fc 8890 (ispell-kill-ispell): Add option 'clear to delete session
da00640a
AM
8891 localwords.
8892 (ispell-command-loop, ispell-change-dictionary)
8893 (ispell-buffer-local-words): Preserve session localwords when
8894 needed.
8895
090bd7cb
JB
8896 * textmodes/flyspell.el (flyspell-process-localwords)
8897 (flyspell-do-correct): Preserve session localwords when needed.
da00640a 8898
f621ccf5
AM
88992012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8900
090bd7cb
JB
8901 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
8902 using obsolete `translation-table-for-input'.
ef24141c
SM
8903 (ispell-word, ispell-process-line, ispell-complete-word):
8904 Use plain `insert' instead of removed `ispell-insert-word'.
f621ccf5 8905
c2d1019e
CY
89062012-04-22 Chong Yidong <cyd@gnu.org>
8907
8908 * cus-edit.el (custom-variable-menu)
8909 (custom-variable-reset-saved, custom-face-menu)
8910 (custom-face-reset-saved): If there is no saved value, make the
8911 "reset-saved" operation bring back the default (Bug#9509).
8912 (custom-face-state): Properly detect themed faces.
8913
eeddc531
CY
8914 * faces.el (face-spec-set): Stop supporting deprecated form of
8915 third arg.
8916
dcbf5805
MA
89172012-04-22 Michael Albinus <michael.albinus@gmx.de>
8918
8919 Move functions from C to Lisp. Make non-blocking method calls
8920 the default. Implement further D-Bus standard interfaces.
8921
ef24141c
SM
8922 * net/dbus.el (dbus-message-internal): Declare function.
8923 Remove unneeded function declarations.
dcbf5805
MA
8924 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
8925 (dbus-message-type-method-return, dbus-message-type-error)
8926 (dbus-message-type-signal): Declare variables. Remove local
8927 definitions.
8928 (dbus-interface-dbus, dbus-interface-peer)
8929 (dbus-interface-introspectable, dbus-interface-properties)
8930 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
8931 Adapt docstring.
8932 (dbus-interface-objectmanager): New defconst.
8933 (dbus-call-method, dbus-call-method-asynchronously)
8934 (dbus-send-signal, dbus-method-return-internal)
8935 (dbus-method-error-internal, dbus-register-service)
8936 (dbus-register-signal, dbus-register-method): New defuns, moved
8937 from dbusbind.c
8938 (dbus-call-method-handler, dbus-setenv)
ef24141c
SM
8939 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
8940 New defuns.
dcbf5805
MA
8941 (dbus-call-method-non-blocking): Make it an obsolete function.
8942 (dbus-unregister-object, dbus-unregister-service)
8943 (dbus-handle-event, dbus-register-property)
8944 (dbus-property-handler): Obey the new structure of
8945 `bus-registered-objects'.
8946 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
8947 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
8948 Use `dbus-call-method'.
8949
cf20dee0
CY
89502012-04-22 Chong Yidong <cyd@gnu.org>
8951
8952 * cus-edit.el (custom-commands, custom-reset-menu)
8953 (Custom-reset-standard): Tweak labels.
8954 (custom-reset-button-menu): Change default to t.
8955 (custom-buffer-create-internal): For the custom-reset-button-menu
8956 case, put the revert button first.
8957 (custom-group-subtitle): New face.
8958 (custom-group-value-create): Align docstring to a specific column.
8959
8960 * wid-edit.el (widget-documentation-link-add): Don't handle
8961 indentation in this function.
8962 (widget-documentation-string-indent-to): New function.
8963 (widget-documentation-string-value-create): Use it.
8964
8965 * autorevert.el (auto-revert):
8966 * epg-config.el (epg):
8967 * ibuffer.el (ibuffer):
8968 * mpc.el (mpc):
8969 * ses.el (ses):
8970 * eshell/eshell.el (eshell):
8971 * net/ange-ftp.el (ange-ftp):
8972 * progmodes/ebnf2ps.el (postscript):
8973 * progmodes/flymake.el (flymake):
8974 * progmodes/prolog.el (prolog):
8975 * progmodes/verilog-mode.el (verilog-mode):
8976 * progmodes/which-func.el (which-func):
8977 * term/xterm.el (xterm):
8978 * textmodes/picture.el (picture):
8979 * textmodes/tildify.el (tildify):
8980 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
8981 customization buffers.
8982
583e23bd
AM
89832012-04-22 Alan Mackenzie <acm@muc.de>
8984
8985 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
8986 Adding a ) can hide the resulting (..) from searches. Fix it.
8987 Bound the backward search to the position of the existing (.
8988
7dd51bf1
JB
89892012-04-21 Juanma Barranquero <lekktu@gmail.com>
8990
8991 * progmodes/verilog-mode.el (verilog-mode): Check whether
8992 which-func-modes is t before adding verilog-mode.
8993 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8994
d64a438f
LL
89952012-04-21 Leo Liu <sdl.web@gmail.com>
8996
7dd51bf1 8997 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
d64a438f 8998
081e8d65
MV
89992012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
9000
9001 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
9002 filling of the last column of a table (Bug#5635).
9003 (woman-find-next-control-line): New arg, specifying an additional
9004 regexp component for the control line.
9005 (woman2-roff-buffer): Use it.
9006 (woman-break-table): New function.
9007 (woman2-TS): Use it.
9008
90092012-04-21 Chong Yidong <cyd@gnu.org>
9010
9011 * woman.el (woman-set-buffer-display-table, woman-decode-region)
9012 (woman-horizontal-escapes, woman-negative-vertical-space)
9013 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
9014 (WoMan-warn-ignored): Use ?\s instead of ?\ .
9015
ed571ccb
SM
90162012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9017
9018 * minibuffer.el (completion-file-name-table): Complete user names.
9019
39773899
LL
90202012-04-20 Leo Liu <sdl.web@gmail.com>
9021
9022 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
9023 and pcase-let*.
9024
de6ff46d
CY
90252012-04-20 Chong Yidong <cyd@gnu.org>
9026
9027 * server.el (server-execute): Respect initial-buffer-choice if it
9028 is a string and there are no files to open (Bug#2825).
9029 (server-create-window-system-frame, server-create-tty-frame):
9030 Don't switch buffers here.
2d0e8e61
CY
9031 (server-process-filter): Only try to open a window system frame if
9032 compiled with graphical support (Bug#8314).
de6ff46d 9033
54071013
DN
90342012-04-20 Dan Nicolaescu <dann@gnu.org>
9035
9036 * battery.el (battery-echo-area-format): Display remaining time
9037 for sysfs backend too (Bug#11269).
9038 (battery-linux-sysfs): Fix conditional for the charge.
9039
f30d612a
CY
90402012-04-20 Chong Yidong <cyd@gnu.org>
9041
c07a4c0b 9042 * progmodes/gdb-mi.el (gdb): Revert previous change.
f30d612a
CY
9043 (gdb-inferior-io--init-proc): New function.
9044 (gdb-init-1): Use it.
9045 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
9046 responsible for allocating a new pty and hooking it to gdb when
9047 the old pty gets an EIO due to process exit.
9048 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
9049 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
9050 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
9051
2116e93c
EZ
90522012-04-20 Eli Zaretskii <eliz@gnu.org>
9053
9054 * window.el (window-min-size, window-sizable, window-min-delta)
9055 (window-max-delta, window--resizable, window-resizable)
9056 (window-total-size, window-full-height-p, window-full-width-p)
9057 (window-in-direction, window--resize-mini-window, window-resize)
9058 (window--resize-child-windows-normal)
9059 (window--resize-child-windows, window--resize-siblings)
9060 (window--resize-this-window, adjust-window-trailing-edge)
cd0f830c 9061 (enlarge-window, shrink-window): Doc fixes.
2116e93c 9062
c07a4c0b 90632012-04-20 Chong Yidong <cyd@gnu.org>
b668fa6e 9064
ef24141c
SM
9065 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
9066 New function to call delete-process on the gdb-inferior buffer's pty.
b668fa6e
CY
9067 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
9068 pty process (Bug#11273).
9069 (gdb-update): New arg to suppress talking to the gdb process.
9070 (gdb-done-or-error): Use it.
9071 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
9072 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
9073 sentinel not being called.
9074
9075 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
9076
d02766ab
CY
9077 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
9078
c07a4c0b 90792012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
9080
9081 * net/network-stream.el (open-network-stream): Doc fix.
9082
c07a4c0b 90832012-04-20 Chong Yidong <cyd@gnu.org>
2c070447
CY
9084
9085 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
9086
c07a4c0b 90872012-04-20 Alan Mackenzie <acm@muc.de>
f0f6bc35
AM
9088
9089 Ensure searching for keywords is case sensitive.
9090
9091 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
9092 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
9093 (c-defun-name, c-mark-function, c-cpp-define-name)
9094 (c-comment-indent, c-scan-conditionals, c-indent-defun)
c07a4c0b 9095 (c-context-line-break): Bind case-fold-search to nil.
f0f6bc35 9096
ef24141c
SM
9097 * progmodes/cc-mode.el (c-font-lock-fontify-region):
9098 Bind case-fold-search to nil.
f0f6bc35 9099
c07a4c0b 91002012-04-20 Chong Yidong <cyd@gnu.org>
4fc2c72a
CY
9101
9102 * mail/sendmail.el (mail-bury): Call return action with the right
9103 Rmail buffer (Bug#11242).
9104
9a864fa2
CY
9105 * server.el (server-process-filter): Handle corner case where both
9106 tty and nowait options are present (Bug#11102).
9107
539aa513
EZ
91082012-04-20 Eli Zaretskii <eliz@gnu.org>
9109
9110 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
6cf2a23e
EZ
9111 (top level): Put into the executable the ident-style '$Id:' tag on
9112 windows-nt as well.
539aa513 9113
cfc7d5da
SM
91142012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9115
9116 * electric.el (electric-indent-post-self-insert-function): Check that
9117 electric-indent-mode is enabled in current buffer.
9118
5b01685c
JB
91192012-04-19 Juanma Barranquero <lekktu@gmail.com>
9120
9121 * imenu.el (imenu-progress-message): Restore; it is "used" in
9122 erc/erc-imenu.el and net/snmp-mode.el.
9123
4d6769e1
JB
91242012-04-19 Juanma Barranquero <lekktu@gmail.com>
9125
9126 * avoid.el (mouse-avoidance-mode): Mark unused arg.
9127 (mouse-avoidance-nudge-mouse): Remove unused binding.
9128
9129 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
9130
9131 * descr-text.el (describe-char):
9132 * progmodes/python.el (python-describe-symbol):
9133 Don't call `toggle-read-only', set `buffer-read-only'.
9134
9135 * imenu.el (imenu-default-goto-function): Mark unused args.
9136 (imenu-progress-message): Remove obsolete macro; all callers changed.
9137
9138 * subr.el (keymap-canonicalize): Remove unused binding.
9139 (read-passwd): Mark unused arg.
9140
9141 * tutorial.el (tutorial--display-changes): Remove unused binding.
9142 (tutorial--save-tutorial-to): Remove unused variable.
9143
9144 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
9145 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
9146 (package-generate-autoloads, package-menu--generate)
9147 (package-menu--find-upgrades): Remove unused bindings.
9148
9149 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
9150 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
9151 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
9152 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
9153 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
9154 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
9155 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
9156 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
9157 (cua-delete-char-rectangle): Mark unused args.
9158 (cua-align-rectangle): Remove unused binding.
9159
9160 * mail/rmail.el (compilation--message->loc)
9161 (epa--find-coding-system-for-mime-charset): Declare.
9162
9163 * net/dbus.el (dbus-register-service): Declare.
9164 (dbus-name-owner-changed-handler): Remove unused binding.
9165
9166 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
9167 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
9168 (nxml-scan-backward-within): Mark unused arg.
9169 (nxml-dynamic-markup-word): Remove unused binding.
9170
9171 * mouse.el (mouse-menu-major-mode-map):
9172 * emacs-lisp/authors.el (authors-scan-change-log)
9173 (authors-add-to-author-list):
9174 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
9175 * emacs-lisp/smie.el (smie-auto-fill):
9176 * mail/sendmail.el (mail-bury):
9177 * mail/unrmail.el (unrmail):
9178 * net/tls.el (open-tls-stream):
9179 * textmodes/picture.el (picture-mouse-set-point):
9180 Remove unused bindings.
9181
8c8fc5df
MA
91822012-04-19 Michael Albinus <michael.albinus@gmx.de>
9183
9184 * net/tramp.el (tramp-action-password): Let-bind
9185 `enable-recursive-minibuffers' to t.
9186
a77b0ac9
SS
91872012-04-18 Sam Steingold <sds@gnu.org>
9188
9189 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
9190 instead of 'string to accommodate values like [f11].
9191 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
9192 * progmodes/gdb-mi.el: Likewise.
9193
12a106a9
LL
91942012-04-18 Leo Liu <sdl.web@gmail.com>
9195
9196 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
9197 current buffer.
9198 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
9199 LOCAL is nil.
9200
bc6494ef
CY
92012012-04-18 Chong Yidong <cyd@gnu.org>
9202
9203 * simple.el (line-move): Use forward-line if in batch mode
9204 (Bug#11053).
9205
c09c46b2
CS
92062012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
9207
9208 * files.el (after-find-file): Do not try to add a final newline if
9209 the buffer is read-only (Bug#11156).
9210
5f6530ea
RS
92112012-04-17 Richard Stallman <rms@gnu.org>
9212
9213 * mail/rmail.el (rmail-start-mail):
9214 Pass (rmail-mail-return...) for the return-action.
9215 Pass (rmail-yank-current-message...) for the yank-action.
9216 (rmail-yank-current-message): New function.
9217 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
9218 (rmail-reply): Likewise.
9219 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
9220
9221 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
c09c46b2 9222 buffer, not the last. Reject temp buffers. Use the rmail-mode
5f6530ea
RS
9223 buffer, not newbuf.
9224
197b6f3c
JB
92252012-04-17 Juanma Barranquero <lekktu@gmail.com>
9226
9227 * server.el (server-ensure-safe-dir): Simplify.
9228
2311d8e5 92292012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
98fb480e 9230
2311d8e5
GM
9231 * emacs-lisp/smie.el: Provide smarter auto-filling.
9232 (smie-auto-fill): New function.
9233 (smie-setup): Use it.
98fb480e 9234
2311d8e5
GM
9235 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
9236
92372012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
8eb5d48f
PH
9238
9239 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
9240 (comment-indent): Use it.
9241
2311d8e5 92422012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
4bdf2ad2
VB
9243
9244 * ses.el: The overall change is to add cell renaming, that is
9245 setting fancy names for cell symbols other than name matching
9246 "\\`[A-Z]+[0-9]+\\'" regexp .
2311d8e5 9247 (ses-localvars): Add ses--renamed-cell-symb-list.
4bdf2ad2 9248 (ses-create-cell-variable): New defun.
2311d8e5 9249 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
4bdf2ad2
VB
9250 (ses-relocate-formula): Relocate formulas only for cells the
9251 symbols of which are not renamed, i.e. symbols whose names do not
9252 match regexp "\\`[A-Z]+[0-9]+\\'".
9253 (ses-relocate-all): Relocate values only for cells the symbols of
9254 which are not renamed.
9255 (ses-load): Create cells variables as the (ses-cell ...) are read,
9256 in order to check row col consistency with cell symbol name only
9257 for cells that are not renamed.
9258 (ses-replace-name-in-formula): New defun.
9259 (ses-rename-cell): New defun.
4bdf2ad2 9260
fc72b15c
PO
92612012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
9262
9263 * progmodes/perl-mode.el (perl-indent-parens-as-block):
9264 New option (bug#11118).
9265 (perl-calculate-indent): Respect it.
9266
12e10e61
GM
92672012-04-17 Glenn Morris <rgm@gnu.org>
9268
9269 * dired-aux.el (dired-mark-read-string): Doc fix.
9270
30009afd
DA
92712012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
9272
9273 * dired-aux.el (dired-mark-read-string): Offer optional completion.
9274 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
9275
41f03f4d
GM
92762012-04-17 Glenn Morris <rgm@gnu.org>
9277
9278 * mouse.el (mouse-drag-track):
9279 * speedbar.el (speedbar-frame-mode):
9280 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
9281
f45f90f3
LL
92822012-04-16 Leo Liu <sdl.web@gmail.com>
9283
9284 * progmodes/python.el: Trivial cleanup.
9285
94ee8db5
GM
92862012-04-16 Glenn Morris <rgm@gnu.org>
9287
121b8917
GM
9288 * vc/vc.el (vc-string-prefix-p):
9289 * vc/pcvs-util.el (cvs-string-prefix-p):
9290 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
9291 * mpc.el (mpc-string-prefix-p):
9292 Make all of these into obsolete aliases for string-prefix-p.
9293 Update callers.
9294 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
9295
1197ecfa
GM
9296 * textmodes/two-column.el: Move custom options to the start.
9297 (frame-width): Remove compat definition.
9298 (2C-associate-buffer, 2C-dissociate):
9299 Use with-current-buffer rather than save-excursion.
9300 (2C-dissociate): Force a mode-line update.
9301 (2C-autoscroll): Use ignore-errors.
9302
099e7202
GM
9303 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
9304 Autoload trivia.
9305
bf350d6a
GM
9306 * emacs-lisp/cl-extra.el (*random-state*):
9307 Remove unnecessary declaration.
9308
0e829eab
GM
9309 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
9310
e3ad7552
GM
9311 * play/cookie1.el (cookie-snarf):
9312 Give an explicit error if input file cannot be read.
9313
68892d27
GM
9314 * play/yow.el (yow-file): Use expand-file-name rather than concat.
9315
20f0c46d
GM
9316 * progmodes/perl-mode.el (c-macro-expand):
9317 Remove unnecessary autoload (it is in loaddefs.el).
9318
5a0978ce
GM
9319 * textmodes/picture.el (picture-desired-column)
9320 (picture-update-desired-column): Convert comments to doc-strings.
9321 (picture-substitute): Remove function.
9322 (picture-mode-map): Initialize in the defvar.
9323
6b955486
GM
9324 * woman.el: Remove eval-after-load for tar-mode.
9325 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
9326 (woman-tar-extract-file): Autoload it.
9327
94ee8db5
GM
9328 * frame.el (automatic-hscrolling): Make this alias obsolete.
9329
177eca34
AM
93302012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9331
090bd7cb 9332 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
4be3075e 9333 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
3851314b
AM
9334 (ispell-dictionary-base-alist): Revert to original XEmacs
9335 friendly version for default. [:alpha:] will be added in
090bd7cb 9336 `ispell-set-spellchecker-params' if needed.
177eca34 9337
c505aaeb
CY
93382012-04-16 Chong Yidong <cyd@gnu.org>
9339
b19dd9d1 9340 * image.el (imagemagick--file-regexp): New variable.
c505aaeb
CY
9341 (imagemagick-register-types): Use it.
9342 (imagemagick-types-inhibit): Add :set function. Allow new value
9343 of t to inhibit all types.
9344
9345 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
9346 so we can preload it.
9347
9348 * loadup.el (fboundp): Preload regexp-opt, needed by
9349 imagemagick-register-types.
9350
60efac0f
CY
93512012-04-15 Chong Yidong <cyd@gnu.org>
9352
9353 * frame.el (scrolling): Remove nearly unused customization group.
9354
9355 * scroll-all.el (scroll-all-mode): Move to windows group.
9356
5dd1713e
CY
93572012-04-15 Chong Yidong <cyd@gnu.org>
9358
9359 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
9360
e6fd457e
CY
93612012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
9362
9363 Avoid the use of ((lambda ...) ...) in lexical-binding code.
4d6769e1 9364 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
e6fd457e 9365
e153c136
GM
93662012-04-15 Glenn Morris <rgm@gnu.org>
9367
9368 * simple.el (process-file-side-effects): Doc fix.
9369
e6fd457e 93702012-04-15 Glenn Morris <rgm@gnu.org>
ca7d96c8
GM
9371
9372 * international/mule-cmds.el (set-language-environment): Doc fix.
9373
3603c3b1
JB
93742012-04-14 Juanma Barranquero <lekktu@gmail.com>
9375
9376 * server.el (server-auth-key, server-generate-key): Doc fixes.
9377 (server-get-auth-key): Doc fix. Use `string-match-p'.
9378 (server-start): Reflow docstring.
9379
e6de100c
LI
93802012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
9381
9382 * server.el (server-generate-key): `called-interactively-p'
9383 requires a parameter.
9384
29734c21
MN
93852012-04-14 Michal Nazarewicz <mina86@mina86.com>
9386
9387 * server.el (server-auth-key): New variable.
75f1671a 9388 (server-generate-key, server-get-auth-key): New function.
29734c21
MN
9389 (server-start): Use the new variable and functions to allow
9390 setting a permanent server key (bug#9423).
9391
d65c9521
LL
93922012-04-14 Leo Liu <sdl.web@gmail.com>
9393
9394 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
9395
5ae255c7
PE
93962012-04-14 Paul Eggert <eggert@cs.ucla.edu>
9397
9398 Spelling fixes.
9399 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
9400 Emacs uses American spelling.
9401
d5e6342e
JB
94022012-04-14 Juanma Barranquero <lekktu@gmail.com>
9403
9404 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
9405 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
9406 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
9407 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
9408
ab036cd7
SM
94092012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9410
9411 * progmodes/which-func.el (which-func-modes): Change default.
9412
35dc09a1 94132012-04-14 Kim F. Storm <storm@cua.dk>
9557e2be
CY
9414
9415 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
9416 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
9417
35dc09a1 94182012-04-14 Chong Yidong <cyd@gnu.org>
81927dd2
CY
9419
9420 * custom.el (custom-theme-set-variables): Doc fix.
9421
35dc09a1 94222012-04-14 Glenn Morris <rgm@gnu.org>
8edb942b
GM
9423
9424 * international/mule.el (set-auto-coding-for-load): Doc fix.
9425
35dc09a1 94262012-04-14 Alan Mackenzie <acm@muc.de>
0de3da9f 9427
35dc09a1
GM
9428 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
9429 imenu work again for Objective C Mode. Correct the *-index values,
9430 these having been disturbed by a previous change in 2011-08.
57f845ee 9431
0de3da9f
AM
9432 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
9433 Correct two search limits.
9434
35dc09a1 94352012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
ede141ac
SM
9436
9437 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
9438
35dc09a1 94392012-04-14 Andreas Schwab <schwab@linux-m68k.org>
d0203d61
AS
9440
9441 * international/characters.el: Fix sorting.
9442
35dc09a1 94432012-04-14 Eli Zaretskii <eliz@gnu.org>
cb80bcd1
EZ
9444
9445 * international/characters.el: Add more missing Latin case pairs.
9446
35dc09a1 94472012-04-14 Glenn Morris <rgm@gnu.org>
4a427f58
GM
9448
9449 * files.el (dir-locals-set-class-variables): Doc fix.
9450
35dc09a1 94512012-04-14 Eli Zaretskii <eliz@gnu.org>
9f847f41 9452
3f1b5bf8
EZ
9453 * international/characters.el: Add set-case-syntax-pair call for
9454 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
9455 counterpart. (Bug#11209)
9456
9f847f41
EZ
9457 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
9458
35dc09a1 94592012-04-14 Glenn Morris <rgm@gnu.org>
0c2014a3
GM
9460
9461 * calendar/holidays.el (calendar-check-holidays): Doc fix.
9462
35dc09a1 94632012-04-14 Eli Zaretskii <eliz@gnu.org>
e2627d21 9464
35dc09a1
GM
9465 * textmodes/ispell.el (ispell-dictionary-base-alist):
9466 Add data for Hebrew.
e2627d21 9467
35dc09a1 94682012-04-14 Chong Yidong <cyd@gnu.org>
5c14e333 9469
35dc09a1
GM
9470 * net/rcirc.el (rcirc-cmd-quit):
9471 Revert 2012-03-18 change (Bug#11192).
5c14e333 9472
35dc09a1 94732012-04-14 Glenn Morris <rgm@gnu.org>
bf6fa423
GM
9474
9475 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
9476
35dc09a1 94772012-04-14 Eli Zaretskii <eliz@gnu.org>
82b24fb2 9478
4517fe3a
SM
9479 * minibuffer.el (completion-in-region-mode-map):
9480 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
82b24fb2 9481
b472a594
VD
94822012-04-13 Vivek Dasmohapatra <vivek@etla.org>
9483
9484 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
9485
09b95ce3
MY
94862012-04-13 Masatake YAMATO <yamato@redhat.com>
9487
9488 * minibuffer.el (minibuffer-local-filename-syntax): New variable
9489 to allow `C-M-f' and `C-M-b' to move to the nearest path
9490 separator (bug#9511).
9491
4b63a9ca
LI
94922012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
9493
9494 * avoid.el: Require cl when compiling. And also move the
9495 `provide' to the end.
9496
7b55b8bf
TV
94972012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9498
9499 * avoid.el (mouse-avoidance-banish-position): New variable.
9500 (mouse-avoidance-banish-destination): Use it (bug#10165).
9501
adedaa1f
LL
95022012-04-13 Leo Liu <sdl.web@gmail.com>
9503
9504 * progmodes/which-func.el (which-func-modes): Add objc-mode.
9505
70e74021
KB
95062012-04-13 Ken Brown <kbrown@cornell.edu>
9507
9508 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
ab036cd7 9509 this is no longer needed now that cygstart understands file:// URLs.
70e74021
KB
9510 (browse-url-filename-alist): For the same reason, don't modify
9511 file:// URLs on Cygwin.
9512
e75e89ba
SM
95132012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9514
9515 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
9516 the region on shift if the binding is already shifted (bug#11221).
9517
82f289a4
GM
95182012-04-12 Glenn Morris <rgm@gnu.org>
9519
9520 * mail/mailpost.el: Move to obsolete/.
9521
d333dc4c
DA
95222012-04-12 Drew Adams <drew.adams@oracle.com>
9523
9524 * imenu.el (imenu--generic-function): Ignore invisible definitions
9525 (bug#10123).
9526
0d15b5ba
VD
95272012-04-12 Vivek Dasmohapatra <vivek@etla.org>
9528
9529 * hexl.el (hexl-bits): New variable.
9530 (hexl-options): Mention the variable in the doc string.
75f1671a 9531 (hexl-rulerise, hexl-line-displen): New functions.
0d15b5ba 9532 (hexl-mode): Mention the new variable.
75f1671a
JB
9533 (hexl-mode, hexl-current-address, hexl-current-address):
9534 Use the displen.
0d15b5ba
VD
9535 (hexl-ascii-start-column): New function.
9536 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
9537 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
9538
64a440db
AM
95392012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9540
9541 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
9542 '("-i" ENCODING), in 2 separate command-line arguments, to specify
9543 the encoding, as expected by hunspell.
9544
6decb6c2
SM
95452012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9546
9547 * battery.el (battery--linux-sysfs-regexp): New const.
9548 (battery-status-function): Use it. Remove yeeloong special case.
9549 (battery-yeeloong-sysfs): Remove.
9550 (battery-echo-area-format): Remove yeeloong special case.
9551
088be6fb
SM
95522012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9553
6622e416
SM
9554 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
9555 Reported by Noah Friedman.
9556
088be6fb
SM
9557 * subr.el (read-passwd): Use read-string.
9558
b49f886e
LMI
95592012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9560
9561 * vcursor.el (vcursor-move): Increase the priority of the overlay
9562 (bug#9663).
9563
a63067fc
DD
95642012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9565
9566 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
9567 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
9568
ac3cf14a
WS
95692012-04-11 William Stevenson <yhvh2000@gmail.com>
9570
9571 * textmodes/artist.el (artist-mode): Convert artist-mode to use
9572 define-minor-mode (bug#10760).
9573
c4fc691b 95742012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
49a2697c 9575
4d6769e1 9576 * progmodes/grep.el (rgrep): Tweak the find command line so
49a2697c
WJ
9577 that directories matching `grep-find-ignored-files' won't be
9578 pruned (bug#10351).
9579
af23e2e5
CY
95802012-04-11 Chong Yidong <cyd@gnu.org>
9581
9582 * startup.el (command-line): Remove support for long-obsolete
9583 variable font-lock-face-attributes.
9584
ab7ce8c1
GM
95852012-04-11 Glenn Morris <rgm@gnu.org>
9586
9587 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
9588
de8c03dc
SM
95892012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9590
9591 * window.el (window--state-get-1): Obey window-point-insertion-type.
9592
050cc68b
LB
95932012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
9594
9595 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
9596 to previous function when point is on the first character of a
75f1671a 9597 function. Take care of that in `narrow-to-defun' (bug#6157).
050cc68b 9598
a38c310c
GM
95992012-04-11 Glenn Morris <rgm@gnu.org>
9600
effed0c2
GM
9601 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
9602 not just file-errors.
9603
a38c310c
GM
9604 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
9605 (vc-bzr-sha1): Use internal sha1.
9606
0221e323
SM
96072012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9608
9609 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
9610
43956923
SG
96112012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
9612
9613 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
9614 that start in the middle of the line (bug#10496).
9615
6a8c9eaf
DN
96162012-04-10 Dan Nicolaescu <dann@gnu.org>
9617
9618 * battery.el (battery-linux-proc-acpi): Only one battery is
9619 discharged at a time, but that seems to confuse battery.el when
9620 computing `rate-type' for the battery not being discharged
9621 (bug#10332).
9622
1930bf5d
SM
96232012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
9624
2a718f6f
SM
9625 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
9626
599430d0
SM
9627 * international/quail.el: Use dolist and simplify.
9628 (quail-define-package, quail-update-keyboard-layout)
9629 (quail-define-rules): Use dolist.
9630 (quail-insert-kbd-layout, quail-get-translation): CSE.
9631
a2754b6c
SM
9632 * tmm.el: Use dolist, remove left over hook.
9633 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
9634 Use dolist.
9635 (calendar-load-hook): Don't mess with it.
9636
1930bf5d
SM
9637 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
9638 Use derived-mode-p. Run the diff asynchronously.
9639
9f67961c
LMI
96402012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9641
9642 * obsolete/mouse-sel.el: Add an Obsolete-since header.
9643
2a8ce227
JB
96442012-04-10 Juanma Barranquero <lekktu@gmail.com>
9645
9646 * misc.el: Display absolute path of loaded DLLs (bug#10424).
9647 (list-dynamic-libraries--loaded): New function.
9648 (list-dynamic-libraries--refresh): Use it.
9649
8f33b5f8
NW
96502012-04-10 Nathan Weizenbaum <nweiz@google.com>
9651
1930bf5d
SM
9652 * progmodes/python.el (python-fill-paragraph):
9653 Make python-fill-region in a multiline string work when font-lock is
8f33b5f8
NW
9654 disabled (bug#7018).
9655
b12f0439
L
96562012-04-10 Laimonas VÄ—bra <laimonas.vebra@gmail.com> (tiny change)
9657
1930bf5d 9658 * language/european.el (cp775): Add oem/legacy (en)coding on
75f1671a
JB
9659 DOS/MS Windows for the Baltic languages. There are still plenty
9660 of texts written in this encoding/codepage (bug#6519).
b12f0439 9661
57c3bd01
GM
96622012-04-10 Glenn Morris <rgm@gnu.org>
9663
9664 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
9665 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
9666
6c3eab30
FA
96672012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
9668
1930bf5d 9669 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6c3eab30
FA
9670 next-line "n" and previous-line "p" in order to make recentf more
9671 consistent with ibuffer, dired or org-mode (bug#9387).
9672
24d78a88
LMI
96732012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9674
bc72b5d9
LMI
9675 * image.el (put-image): Return the overlay created instead of the
9676 optional input string (bug#7834). Note that this may break code
9677 that is (for some reason or other) depending on `put-image'
9678 returning the string.
9679
bd2dba5a
LMI
9680 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
9681
74beb59f
LMI
9682 * simple.el (zap-to-char): Allow zapping using input methods
9683 (bug#1580).
9684
24d78a88
LMI
9685 * textmodes/fill.el (fill-region): Leave point and mark where they
9686 were before filling (bug#5399).
9687
263f20cd
GM
96882012-04-09 Glenn Morris <rgm@gnu.org>
9689
9690 * version.el (emacs-bzr-get-version):
9691 Handle lightweight checkouts of local branches.
9692
58d1f797
AS
96932012-04-09 Andreas Schwab <schwab@linux-m68k.org>
9694
263f20cd 9695 * international/characters.el: Recover lost case pairs. (Bug#11209)
58d1f797 9696
b4d3bc10
CY
96972012-04-09 Chong Yidong <cyd@gnu.org>
9698
9699 * custom.el (custom-variable-p): Return nil for non-symbol
9700 arguments instead of signaling an error.
9701 (user-variable-p): Obsolete alias for custom-variable-p.
9702
9703 * apropos.el (apropos-variable):
9704 * files-x.el (read-file-local-variable):
9705 * simple.el (set-variable):
9706 * woman.el (woman-mini-help):
9707 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
9708
fd06db5d
GM
97092012-04-09 Glenn Morris <rgm@gnu.org>
9710
e5fcdb5e
GM
9711 * startup.el (normal-top-level): Don't look for leim-list.el
9712 in places where it will not be found. (Bug#910)
9713
fd06db5d
GM
9714 * international/mule-cmds.el (set-default-coding-systems):
9715 * files.el (normal-mode):
9716 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
9717 This function was removed with ucs-tables.el in 2008.
9718
b39bb7e1
EZ
97192012-04-08 Eli Zaretskii <eliz@gnu.org>
9720
9721 * textmodes/ispell.el (ispell-check-version): For hunspell, set
9722 ispell-encoding8-command to "-i", without a trailing space.
9723 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
9724 separate command-line arguments, to specify the encoding, since
9725 that's how hunspell expects it.
9726
5c5b8e23
GM
97272012-04-08 Glenn Morris <rgm@gnu.org>
9728
9729 * loadup.el: Load bindings before cus-start.
9730 This reduces somewhat the number of "rogue" settings in emacs -Q.
9731
a1ed8b05
GM
97322012-04-07 Glenn Morris <rgm@gnu.org>
9733
9734 * version.el (emacs-bzr-get-version): New function.
dfae128a 9735 (emacs-bzr-version): New variable.
a1ed8b05
GM
9736 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
9737 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
9738
b142f158
EZ
97392012-04-07 Eli Zaretskii <eliz@gnu.org>
9740
dfae128a
GM
9741 * international/uni-bidi.el, international/uni-category.el:
9742 * international/uni-combining.el, international/uni-decimal.el:
9743 * international/uni-decomposition.el, international/uni-digit.el:
9744 * international/uni-lowercase.el, international/uni-mirrored.el:
9745 * international/uni-name.el, international/uni-numeric.el:
9746 * international/uni-titlecase.el, international/uni-uppercase.el:
9747 Update for Unicode 6.1.
b142f158 9748
9078ead6
EZ
97492012-04-07 Eli Zaretskii <eliz@gnu.org>
9750
9751 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
9752
f23d2c7d
LMI
97532012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
9754
9755 * window.el (shrink-window): Mention the `window-min-height'
9756 variable in the doc string.
9757
0a0a3573
BG
97582012-04-05 Bastien Guerry <bzg@altern.org>
9759
9760 * color.el (color-lighten-name): Fix typo.
9761
e5248ac9
SM
97622012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9763
9764 * server.el (server--on-display-p): New function.
9765 (server--on-display-p): Use it.
9766
b4243e22
GV
97672012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
9768
9769 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
9770 (bug#11145).
9771
305d9f44
SM
97722012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9773
9774 * comint.el (comint--common-quoted-suffix): Check string boundary
9775 before comparing (bug#11158).
9776 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
9777
3d439cd1
CY
97782012-04-04 Chong Yidong <cyd@gnu.org>
9779
321cc491
CY
9780 * minibuffer.el (completion-extra-properties): Doc fix.
9781
3d439cd1
CY
9782 * subr.el (delayed-warnings-hook): Doc fix.
9783
2d562c0f
DU
97842012-04-04 Daiki Ueno <ueno@unixuser.org>
9785
9786 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
9787 selection (Bug#11159).
9788 (epa-insert-keys): Inform that the default public key will be
9789 exported if no key is selected.
9790
4443f204
RS
97912012-04-04 Richard Stallman <rms@gnu.org>
9792
9793 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
9794
529c06b6
CY
97952012-04-03 Chong Yidong <cyd@gnu.org>
9796
9797 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
9798 mail-insert-file, not its obsolete alias mail-attach-file.
9799
66b907dc
MA
98002012-04-03 Michael Albinus <michael.albinus@gmx.de>
9801
9802 * notifications.el (notifications-notify): Fix docstring.
9803
c0ea195d
GM
98042012-04-02 Glenn Morris <rgm@gnu.org>
9805
9806 * emacs-lisp/authors.el (authors-aliases): Another addition.
9807
5ca64e00
MA
98082012-04-02 Michael Albinus <michael.albinus@gmx.de>
9809
9810 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
9811 `tramp-compat-call-process' instead of `tramp-local-call-process'.
9812 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
9813
42ee526b
CY
98142012-04-01 Chong Yidong <cyd@gnu.org>
9815
9816 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
9817 Handle root directory properly.
9818 (copy-directory): Caller changed.
9819
9820 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9821 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
9822
0b021094
GM
98232012-03-31 Glenn Morris <rgm@gnu.org>
9824
40f86458
GM
9825 * term/xterm.el (xterm-extra-capabilities): Doc fix.
9826
7019c177
GM
9827 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
9828
a1daddd6
GM
9829 * calendar/calendar.el (calendar-window-list)
9830 (calendar-hide-window): Restore. (Bug#11140)
9831 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
9832
0b021094
GM
9833 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
9834
40311efc
TV
98352012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9836
9837 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9838 Check if file is a symlink (Bug#10489).
9839
9840 * files.el (copy-directory): Likewise.
9841
5319014e
CY
98422012-03-30 Chong Yidong <cyd@gnu.org>
9843
9844 * image.el (imagemagick-types-inhibit)
9845 (imagemagick-register-types): Doc fix.
9846
935d1290
AM
98472012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9848
090bd7cb 9849 * textmodes/ispell.el (ispell-get-extended-character-mode):
ef24141c 9850 Disable extended-char-mode for hunspell. hunspell does not support it
75f1671a 9851 and treats ~word as ordinary words in pipe mode.
935d1290 9852
61c6e8fd
GM
98532012-03-30 Glenn Morris <rgm@gnu.org>
9854
9855 * tutorial.el (help-with-tutorial): Ensure local variables don't
9856 happen to make the buffer read-only. (Bug#11127)
9857
81fdff00
SM
98582012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
9859
9860 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
9861 (perl-calculate-indent): Return `noindent' in strings.
9862
6e7a6ec0
SS
98632012-03-28 Sam Steingold <sds@gnu.org>
9864
9865 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
9866 instead of the broken adhockery which does not prevent calendar
9867 buffers from being displayed at random after exit.
9868 (calendar-window-list, calendar-hide-window): Remove the broken
9869 adhockery.
9870
fee88ca0
GM
98712012-03-28 Glenn Morris <rgm@gnu.org>
9872
9873 * replace.el (query-replace-map): Doc fix.
9874
38de3354
AS
98752012-03-28 Andreas Schwab <schwab@linux-m68k.org>
9876
9877 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
9878 contents. (Bug#11109)
9879
b973155e
SM
98802012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9881
9882 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
9883 (bug#11077).
9884 (avl-tree--check, avl-tree--check-node): New funs.
9885
dcb6e7b3
MR
98862012-03-27 Martin Rudalics <rudalics@gmx.at>
9887
9888 * window.el (switch-to-visible-buffer): New option.
b973155e
SM
9889 (switch-to-prev-buffer, switch-to-next-buffer):
9890 Observe switch-to-visible-buffer. Make sure that checking for a window
dcb6e7b3
MR
9891 showing a buffer already is done on the same frame.
9892
b4fa35fa
GM
98932012-03-27 Glenn Morris <rgm@gnu.org>
9894
9895 * startup.el (mail-host-address): Doc fix.
9896
f9210e18
SM
98972012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9898
9899 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
9900 than 197 variables.
9901
c0bf7753
AF
99022012-03-26 Ami Fischman <ami@fischman.org>
9903
9904 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
9905
33da7b16
GM
99062012-03-26 Glenn Morris <rgm@gnu.org>
9907
02243d9d
GM
9908 * files.el (save-buffers-kill-emacs): Doc fix.
9909
33da7b16
GM
9910 * startup.el (normal-top-level, command-line, command-line-1):
9911 Give them doc strings.
9912
e5a69fd0
EZ
99132012-03-25 Eli Zaretskii <eliz@gnu.org>
9914
9915 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
b973155e 9916 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
e5a69fd0 9917
9a69676a
CY
99182012-03-25 Chong Yidong <cyd@gnu.org>
9919
4125cb8b
CY
9920 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
9921 theme if it was previously enabled before (Bug#11031).
9922
dd470960
CY
9923 * cus-theme.el (custom-theme-write-faces): Retrieve current face
9924 spec with custom-face-get-current-spec if its :shown-value is not
9925 determined yet (Bug#9337).
4125cb8b 9926 (customize-create-theme, custom-theme-revert): Doc fixes.
dd470960 9927
9a69676a
CY
9928 * button.el (button-at): Minor addition to docstring.
9929
6e7e90fa
SL
99302012-03-24 Simon Leinen <simon.leinen@gmail.com>
9931
9932 * vc/vc.el (vc-merge): Fix a prompt.
9933
f06e2758
CY
99342012-03-24 Chong Yidong <cyd@gnu.org>
9935
9936 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
9937 point (Bug#9623).
9938
6e7e90fa
SL
9939 * button.el (button-at): Minor addition to docstring.
9940
b9d0879b
SM
99412012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
9942
9943 * newcomment.el (comment-choose-indent): No space after BOL.
9944
e71cebb3
SS
99452012-03-22 Sam Steingold <sds@gnu.org>
9946
9947 * window.el (switch-to-prev-buffer): Revert last patch because the
9948 bug turned out to be an advertised feature (Elisp manual 28.14).
9949
335aff35
GM
99502012-03-22 Glenn Morris <rgm@gnu.org>
9951
9952 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
9953 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
9954
c676576a
LMI
99552012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
9956
9957 * net/network-stream.el (network-stream-open-starttls): Make error
9958 message under Windows be less misleading.
9959
126f3d39
LW
99602012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
9961
9962 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
9963 understands (bug#9942).
9964
64fee311
CY
99652012-03-22 Chong Yidong <cyd@gnu.org>
9966
9967 * simple.el (end-of-visible-line): Handle return value of
9968 next-single-property-change properly (Bug#9371).
9969
a640d29a
KH
99702012-03-22 Kenichi Handa <handa@m17n.org>
9971
9972 * international/quail.el (quail-insert-kbd-layout): Fix previous
9973 change. To avoid unwanted bidi reordering, use
9974 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
9975
39675016
DG
99762012-03-21 Dmitry Gutov <dgutov@yandex.ru>
9977
9978 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
9979 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
9980 (ruby-beginning-of-indent): Be more careful with the difference
9981 between word-boundary and symbol boundary.
9982 (ruby-mode-syntax-table): Make : a symbol constituent.
9983
0a6934fc 99842012-03-21 Andreas Politz <politza@fh-trier.de>
1acad97c 9985
3d008e4f
SM
9986 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
9987
0a6934fc
SM
99882012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9989
af67c9d7
SM
9990 * progmodes/etags.el (tags-completion-at-point-function):
9991 Improve last fix.
9992
1acad97c
SM
9993 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
9994
e298b5da
SS
99952012-03-21 Sam Steingold <sds@gnu.org>
9996
9997 * progmodes/etags.el (tags-completion-at-point-function):
9998 Avoid the error when point is inside the pattern.
9999
91d82a70
JY
100002012-03-21 John Yates <john@yates-sheets.org> (tiny change)
10001
10002 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
10003 line (Bug#10855).
10004
69188b79
CY
100052012-03-21 Drew Adams <drew.adams@oracle.com>
10006
10007 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
10008
99fc91fe
AK
100092012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
10010
10011 * ido.el (ido-set-current-directory, ido-read-internal)
10012 (ido-choose-completion-string, ido-completion-help): Handle nil
10013 value of ido-completion-buffer (Bug#11008).
10014
087bbb4c
SS
100152012-03-21 Sam Steingold <sds@gnu.org>
10016
10017 * window.el (switch-to-prev-buffer): Do not switch to a visible
10018 window previous buffer, just like with the frame previous buffers.
10019
fb5b8aca
CY
100202012-03-21 Chong Yidong <cyd@gnu.org>
10021
10022 * faces.el (make-face, make-empty-face, copy-face):
10023 * face-remap.el (face-remap-add-relative, face-remap-set-base):
10024 Doc fixes.
10025
dc9924b8
SM
100262012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
10027
10028 * wid-edit.el (widget-complete-field): Remove (bug#11051).
10029 (widget-complete): Remove broken use of it.
10030
f0bcceb9
CY
100312012-03-20 Chong Yidong <cyd@gnu.org>
10032
dc9924b8
SM
10033 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
10034 Use string-width and truncate-string-width to handle arbitrary
f0bcceb9
CY
10035 characters.
10036
ee52ebf3
TH
100372012-03-20 Tassilo Horn <tassilo@member.fsf.org>
10038
10039 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
10040 to draw rectangles, not squares. (Regression introduced by revno
10041 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
10042
4c5779ab
CY
100432012-03-18 Chong Yidong <cyd@gnu.org>
10044
10045 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
10046 it is not yet defined (for temacs).
10047
15360934
LL
100482012-03-18 Leo Liu <sdl.web@gmail.com>
10049
735135f9
PE
10050 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
10051 prefix.
15360934 10052
d9a8eb66
EZ
100532012-03-17 Eli Zaretskii <eliz@gnu.org>
10054
10055 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
10056 (ispell-choices-win-default-height, ispell-silently-savep)
10057 (ispell-dictionary-alist, ispell-encoding8-command)
10058 (ispell-check-version, ispell-aspell-find-dictionary)
10059 (ispell-valid-dictionary-list, ispell-words-keyword)
10060 (ispell-get-word, ispell-internal-change-dictionary)
10061 (ispell-region, ispell-skip-region-list)
10062 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
10063 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
10064 (ispell-message-text-end, ispell-message)
10065 (ispell-buffer-local-parsing): Doc fix.
10066
f02ff80d
J
100672012-03-13 Jambunathan K <kjambunathan@gmail.com>
10068
10069 * htmlfontify.el: Add support for code block fontification for ODT
10070 export (Bug #9914).
10071 (hfy-optimisations): Define new option
10072 `body-text-only'
10073 (hfy-fontify-buffer): Honor above setting.
10074 (hfy-begin-span, hfy-end-span): New routines factored out form
10075 `hfy-fontify-buffer'.
10076 (hfy-begin-span-handler, hfy-end-span-handler): New variables
10077 that permit insertion of custom tags.
10078 (hfy-fontify-buffer): Use above handlers.
10079 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
10080 (hfy-face-to-css): Re-defined to be a variable.
dc9924b8 10081 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
75f1671a 10082 over multiple runs. This is made possible by having the caller let
f02ff80d
J
10083 bind a special variable `hfy-user-sheet-assoc'.
10084 (htmlfontify-string): New defun.
10085 (hfy-compile-face-map): Make sure that the last char in the
10086 buffer is correctly fontified.
10087 (hfy-face-resolve-face): Whitespace only change.
10088
9ac7a13f
EZ
100892012-03-17 Eli Zaretskii <eliz@gnu.org>
10090
10091 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
10092 message more clear.
10093
e2b5bdd7
LL
100942012-03-16 Leo Liu <sdl.web@gmail.com>
10095
10096 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
10097
2e492df3
AM
100982012-03-16 Alan Mackenzie <acm@muc.de>
10099
10100 Further optimise the handling of large macros.
10101
10102 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
10103 limit to a call of `c-literal-limits'.
10104 (c-determine-+ve-limit): New function.
dc9924b8
SM
10105 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
10106 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
2e492df3
AM
10107 In CASE 5B, restrict a search limit to 500.
10108 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
10109
10110 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
10111 Restrict macro bounds to +-500 from after-change's BEG END.
10112
50e94f0c
LL
101132012-03-16 Leo Liu <sdl.web@gmail.com>
10114
10115 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
10116
6f09f6ed
AH
101172012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
10118
10119 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
dc9924b8 10120 `special-mode' setting of `buffer-read-only'. (Bug#11010)
6f09f6ed 10121
c7e73d51
GM
101222012-03-16 Glenn Morris <rgm@gnu.org>
10123
da986230
GM
10124 * view.el (view-buffer, view-buffer-other-window)
10125 (view-buffer-other-frame): Doc fixes re special mode-class.
10126
0835f01e
GM
10127 * subr.el (eval-after-load): If named feature is provided not from
10128 a file, run after-load forms. (Bug#10946)
10129
c7e73d51
GM
10130 * calendar/calendar.el (calendar-insert-at-column):
10131 Handle non-unit-width characters a bit better. (Bug#10978)
10132
3f2eafd1
CY
101332012-03-15 Chong Yidong <cyd@gnu.org>
10134
10135 * emacs-lisp/ring.el (ring-extend): New function.
10136 (ring-insert+extend): Extend the ring correctly (Bug#11019).
10137
10138 * comint.el (comint-read-input-ring)
10139 (comint-add-to-input-history): Grow comint-input-ring lazily.
10140
103af3fe
SM
101412012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
10142
663b1677
SM
10143 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
10144 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
10145
103af3fe
SM
10146 * imenu.el: Fix multiple inheritance breakage (bug#9199).
10147 (imenu-add-to-menubar): Don't add a redundant index.
10148 (imenu-update-menubar): Handle a dynamically composed keymap.
10149
899cb7cb
KY
101502012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
10151
10152 * mail/sendmail.el (mail-encode-header):
10153 Bind rfc2047-encode-encoded-words to nil.
10154
3809f91d
GM
101552012-03-13 Glenn Morris <rgm@gnu.org>
10156
10157 * calendar/calendar.el (calendar-string-spread):
10158 Handle non-unit-width characters a bit better. (Bug#10978)
10159
9e345a01
LL
101602012-03-13 Leo Liu <sdl.web@gmail.com>
10161
10162 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
10163 directory and file as argument (Bug#10822).
10164
4a07df36
KS
101652012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10166
10167 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
10168 For dynamically generated code, follow $PC.
10169 (gdb-disassembly-handler-custom): Handle no function name case.
10170
4aaa9356
TL
101712012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
10172
10173 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
10174 * emulation/ws-mode.el (ws-query-replace):
10175 * sort.el (sort-regexp-fields):
10176 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
10177
225979da
SM
101782012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10179
10180 * dabbrev.el: Fix cycle completion order (bug#10963).
10181 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
10182 (dabbrev-completion): Don't use an obarray; provide
10183 a cycle-sort-function.
10184
e2f1fdab
LL
101852012-03-12 Leo Liu <sdl.web@gmail.com>
10186
dc9924b8 10187 * simple.el (kill-new): Use equal-including-properties for comparison.
e2f1fdab
LL
10188 (kill-do-not-save-duplicates): Doc fix.
10189
b19490ed
SM
101902012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10191
10192 * dabbrev.el: Fix cycle completion (bug#10963).
10193 Use lexical binding and wrap to 80 columns.
10194 (dabbrev-completion): Delay computing the list of completions.
10195
4b05d722
KH
101962012-03-12 Kenichi Handa <handa@m17n.org>
10197
10198 * international/quail.el (quail-insert-kbd-layout): Surround each
10199 row by LRO and PDF instead of inserting many LRMs. Pad the left
10200 and right of each non-spacing marks. Insert invisible space
10201 between lower and upper characters to prevent composition.
10202
dbbc2e69
SM
102032012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10204
10205 * minibuffer.el (minibuffer-complete): Don't get confused when the
10206 function is run twice via different commands (bug#10958).
10207 (complete-with-action): Fix docstring.
10208
292112ed
CY
102092012-03-12 Chong Yidong <cyd@gnu.org>
10210
5d1ac394
CY
10211 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
10212 (nxml-completion-at-point-function): New function.
10213 (nxml-mode): Use it.
10214 (nxml-bind-meta-tab-to-complete-flag): Default to t.
10215
292112ed
CY
10216 * emacs-lisp/package.el (package-unpack, package-unpack-single):
10217 Load generated autoloads file before byte compiling (Bug#10970).
10218 (package--make-autoloads-and-compile): New helper fun.
10219
4098f8f7
CS
102202012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
10221
10222 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
10223
8f754691
MA
102242012-03-11 Michael Albinus <michael.albinus@gmx.de>
10225
10226 * autorevert.el (auto-revert-handler): Ensure, that
10227 file-readable-p is applied only for local files or in
10228 auto-revert-tail-mode.
10229
e29ab36b
AS
102302012-03-11 Andreas Schwab <schwab@linux-m68k.org>
10231
dbbc2e69
SM
10232 * server.el (server-eval-at): Handle non-tcp connections.
10233 Decode result string.
ad0bf5b6 10234
e29ab36b
AS
10235 * server.el (server-msg-size): New constant.
10236 (server-reply-print): New function.
10237 (server-eval-and-print): Use it.
10238 (server-eval-at): Use server-quote-arg and server-unquote-arg.
10239 Handle -print-nonl.
10240
de5939ba
CS
102412012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
10242
10243 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
10244 (Bug#10987).
10245
0c93eabf
CY
102462012-03-11 Chong Yidong <cyd@gnu.org>
10247
397a688f
CY
10248 * simple.el (goto-line): Doc fix (Bug#9938).
10249
2cc775f9
CY
10250 * subr.el (save-window-excursion): Doc fix (Bug#9979).
10251
0c93eabf
CY
10252 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
10253 when finished (Bug#10963).
10254
c491fa41
MR
102552012-03-11 Martin Rudalics <rudalics@gmx.at>
10256
10257 * window.el (split-window-below): Fix bug in case where
10258 split-window-keep-point is nil (Bug#10971).
10259
300e8fa5
JL
102602012-03-11 Juri Linkov <juri@jurta.org>
10261
10262 * replace.el (replace-highlight): Set isearch-word to nil
10263 unconditionally. (Bug#10887)
10264
dbf6c5a1
EZ
102652012-03-10 Eli Zaretskii <eliz@gnu.org>
10266
10267 * net/mairix.el (mairix-replace-invalid-chars): Rename from
10268 mairix-replace-illegal-chars; all callers changed. Don't remove
dc9924b8 10269 ^, ~, and = characters: they are meaningful in mairix search specs.
dbf6c5a1
EZ
10270 (mairix-widget-create-query): Add usage information about mairix
10271 search forms: negating words, searching for substrings, etc.
10272
b9e501de
JP
102732012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
10274
10275 * international/fontset.el (font-encoding-alist): Add an entry for
10276 ksx1001 (Bug#5667).
10277
92795c91
RS
102782012-03-10 Richard Stallman <rms@gnu.org>
10279
1694e6c1
RS
10280 * mail/sendmail.el (mail-encode-header):
10281 Set rfc2047-encode-encoded-words.
10282
607e8555
RS
10283 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
10284
de3bc99a
RS
10285 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
10286 view buffer means not swapped.
10287 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
10288 (rmail-write-region-annotate): Error if real text has disappeared.
10289
92795c91
RS
10290 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
10291
699bd04e
CY
102922012-03-10 Chong Yidong <cyd@gnu.org>
10293
10294 * emulation/cua-rect.el (cua--init-rectangles):
dbbc2e69
SM
10295 * emulation/cua-base.el (cua--init-keymaps):
10296 Add delete-forward-char to remappings (Bug#9666).
699bd04e 10297
570a1714
MR
102982012-03-10 Martin Rudalics <rudalics@gmx.at>
10299
dbbc2e69
SM
10300 * speedbar.el (speedbar-unhighlight-one-tag-line):
10301 Avoid unhighlighting due to frame switching (Bug#10275).
570a1714 10302
82dcf4e4
CY
103032012-03-10 Chong Yidong <cyd@gnu.org>
10304
7a2c7ca7
CY
10305 * minibuffer.el (completion-in-region, completion-help-at-point):
10306 Give the completion field overlay a high priority (Bug#6830).
10307
82dcf4e4
CY
10308 * dired.el (dired-goto-file): Recognize absolute file name
10309 listings (Bug#7126).
10310 (dired-goto-file-1): New helper function.
10311 (dired-toggle-read-only): Inhibit warnings.
10312
052e28ac
MA
103132012-03-09 Michael Albinus <michael.albinus@gmx.de>
10314
75f1671a 10315 * net/dbus.el (dbus-property-handler): Return empty array if
052e28ac
MA
10316 there are no properties.
10317
95d5e396
LL
103182012-03-09 Leo Liu <sdl.web@gmail.com>
10319
10320 * savehist.el (savehist-printable): Stricter check for string
10321 value (Bug#10937).
10322
3f018d6d
EZ
103232012-03-09 Eli Zaretskii <eliz@gnu.org>
10324
dbbc2e69
SM
10325 * mail/smtpmail.el (smtpmail-send-it):
10326 Bind coding-system-for-write to *-unix, so that FCC files are kept in
3f018d6d
EZ
10327 valid mbox format.
10328
f7fd3d79
GM
103292012-03-09 Glenn Morris <rgm@gnu.org>
10330
10331 * files.el (dir-locals-find-file):
10332 Don't check result is regular, readable.
10333 (dir-locals-read-from-file): Demote errors.
10334
6ff6e72f
EZ
103352012-03-08 Eli Zaretskii <eliz@gnu.org>
10336
dbbc2e69
SM
10337 * international/quail.el (quail-insert-kbd-layout):
10338 Insert invisible LRM characters before each character in a keyboard
6ff6e72f
EZ
10339 layout cell, to prevent their reordering by bidi display engine.
10340 For details, see the discussion in
10341 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
10342
9cec7834
AM
103432012-03-08 Alan Mackenzie <acm@muc.de>
10344
10345 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
10346 the starting position; make it extend the marked region when
10347 invoked repeatedly - all under appropriate circumstances.
10348 Fixes bugs #5525, #10906.
10349
9a40b8d4
GM
103502012-03-08 Glenn Morris <rgm@gnu.org>
10351
10352 * files.el (locate-dominating-file, dir-locals-find-file):
10353 Undo 2012-03-06 change.
10354
7a08ed35
EZ
103552012-03-07 Eli Zaretskii <eliz@gnu.org>
10356
dbbc2e69
SM
10357 * international/quail.el (quail-help):
10358 Force bidi-paragraph-direction be left-to-right. See discussion in
7a08ed35
EZ
10359 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
10360 for the reason.
10361
5aca4f71 103622012-03-07 Michael Albinus <michael.albinus@gmx.de>
6612a284
MA
10363
10364 Avoid superfluous registering of signals. (Bug#10807)
10365
10366 * notifications.el (notifications-on-action-object)
10367 (notifications-on-close-object): New defvars.
10368 (notifications-on-action-signal, notifications-on-closed-signal):
10369 Unregister the signal if not needed any longer.
10370 (notifications-notify): Register `notifications-action-signal' or
10371 `notifications-closed-signal', if :on-action or :on-close has been
10372 passed as argument.
10373
78e8b10a
CY
103742012-03-07 Chong Yidong <cyd@gnu.org>
10375
10376 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
10377 non-X platforms.
10378
69481eb8
GM
103792012-03-06 Glenn Morris <rgm@gnu.org>
10380
10381 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10382 (x-disown-selection-internal, x-get-selection-internal):
10383 Doc fix (add arglist signatures). (Bug#10783)
10384
133b8e11
KS
103852012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10386
10387 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
10388 Handle breakpoints with no "type".
10389
99a83064
GM
103902012-03-06 Glenn Morris <rgm@gnu.org>
10391
10392 * files.el (locate-dominating-file): Add optional predicate argument.
10393 (dir-locals-find-file): Make use of above change.
10394
17798e78
TTN
103952012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
10396
10397 * info.el (Info-insert-dir): Also try "dir.gz".
10398
eb182446
GM
103992012-03-06 Glenn Morris <rgm@gnu.org>
10400
8f2114ee
GM
10401 * files.el (dir-locals-find-file):
10402 Ignore non-readable or non-regular files. (Bug#10928)
10403
eb182446
GM
10404 * files.el (locate-dominating-file): Doc fix.
10405
24679323
AS
104062012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
10407
10408 * calendar/calendar.el (calendar-set-mode-line):
10409 `getenv' returns a string. (Bug#10951)
10410
01d972a9
LL
104112012-03-05 Leo Liu <sdl.web@gmail.com>
10412
109aa8a9
LL
10413 * simple.el (backward-delete-char-untabify): Constrain point to
10414 field (Bug#10939).
10415
01d972a9
LL
10416 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
10417
10607bea
CY
104182012-03-05 Chong Yidong <cyd@gnu.org>
10419
10420 * simple.el (count-words): If called from Lisp, return the word
10421 count, for symmetry with `count-lines'. Arglist changed.
10422 (count-words--message): Args changed. Consolidate counting code
10423 from count-words and count-words-region.
10424 (count-words-region): Caller changed.
10425 (count-lines-region): Make it an obsolete alias.
10426
5dd11cfe
TH
104272012-03-04 Tassilo Horn <tassilo@member.fsf.org>
10428
10429 * saveplace.el (save-place-to-alist)
10430 (save-place-ignore-files-regexp): Allow value nil to disable this
10431 feature.
10432
c349f4e6
CY
104332012-03-04 Chong Yidong <cyd@gnu.org>
10434
10435 * faces.el (face-spec-reset-face): For the default face, reset the
10436 attributes to default values (Bug#10748).
10437
e627be4c
LMI
104382012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10439
10440 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
10441 previous patch: Check `message-send-mail-function', and not the
10442 default function (bug#10897).
10443
ebeabff4
MA
104442012-03-04 Michael Albinus <michael.albinus@gmx.de>
10445
a41a6cf4
MA
10446 * notifications.el (notifications-on-action-signal)
10447 (notifications-on-closed-signal): Check for unique service name of
10448 incoming event. Fix error in removing entry.
ebeabff4 10449 (top): Register for signals with wildcard service name.
a41a6cf4 10450 (notifications-notify): Use daemon unique service name for map entries.
ebeabff4 10451
c1ca42b4
CY
104522012-03-04 Chong Yidong <cyd@gnu.org>
10453
dc9924b8 10454 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
c1ca42b4 10455
ea16568d
GM
104562012-03-04 Glenn Morris <rgm@gnu.org>
10457
10458 * abbrev.el (copy-abbrev-table, abbrev-table-p)
10459 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
10460 (expand-abbrev, define-abbrev-table): Doc fixes.
10461
fbae4637
LMI
104622012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10463
10464 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
10465 `message-default-send-mail-function' and not `send-mail-function'
10466 when doing the prompting for `sendmail-query-once' before sending
10467 in Message buffers (bug#10897).
10468
a1e7225c
LMI
10469 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
10470 This is inconsistent with all the other stream functions, which leave
10471 the setting up to the higher levels (if so wanted) (bug#10931).
10472
56d093a9
AM
104732012-03-02 Alan Mackenzie <acm@muc.de>
10474
10475 Depessimize the handling of very large macros.
10476
10477 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
10478 (c-macro-cache-syntactic): New variables to implement a one
10479 element macro cache.
10480 (c-invalidate-macro-cache): New function.
10481 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
10482 Adapt to use the new cache.
10483 (c-state-safe-place): Use better the cache of safe positions.
10484 (c-state-semi-nonlit-pos-cache)
10485 (c-state-semi-nonlit-pos-cache-limit):
10486 New variables for...
10487 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
10488 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
dbbc2e69
SM
10489 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
10490 Use c-state-semi-safe-place.
56d093a9 10491
dbbc2e69
SM
10492 * progmodes/cc-langs.el (c-get-state-before-change-functions):
10493 Add c-invalidate-macro-cache to the C, C++, Obj entries.
56d093a9 10494
817e5c3d
MA
104952012-03-02 Michael Albinus <michael.albinus@gmx.de>
10496
dbbc2e69
SM
10497 * jka-compr.el (jka-compr-call-process):
10498 Apply `file-accessible-directory-p' only when the default directory is
817e5c3d
MA
10499 not remote.
10500
a032a702
MA
105012012-03-01 Michael Albinus <michael.albinus@gmx.de>
10502
10503 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
10504 access of FILE2, if FILE1 does not exist.
10505
99a54f21
MA
10506 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
10507 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
10508
10509 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
10510 Add "PAGER=" to `process-environment'.
10511
f6561e1f
MM
105122012-03-01 Michael R. Mauger <mmaug@yahoo.com>
10513
10514 * progmodes/sql.el: Bug fix
10515 (sql-get-login-ext): Save login values in globals.
10516 (sql-get-login): Use new version of `sql-get-login-ext'.
10517 (sql-interactive-mode): Set global `sql-connection' to nil.
10518 (sql-connect): Set global values for connection.
10519 (sql-product-interactive): Save global values as buffer local.
10520
2d44d9cc
LL
105212012-02-29 Leo Liu <sdl.web@gmail.com>
10522
10523 * abbrev.el (define-abbrevs): Reset sys to nil.
10524
96b49301 105252012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10526
bf7f9bc5
JB
10527 * files.el (file-equal-p): Rename from `files-equal-p'.
10528 Return nil when one or both files don't exist.
96b49301 10529 (file-subdir-of-p): Now only top directory must exists,
10530 return nil if it doesn't.
bf7f9bc5
JB
10531 (copy-directory): No need to test with `file-subdir-of-p' after
10532 creating dir.
10533 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
10534 to `file-equal-p'.
96b49301 10535
44e97401
GM
105362012-02-28 Glenn Morris <rgm@gnu.org>
10537
10538 * shell.el (shell-mode):
10539 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
10540 * play/landmark.el (landmark-font-lock-face-O):
10541 * play/handwrite.el (handwrite):
10542 * play/gomoku.el (gomoku-O):
10543 * net/browse-url.el (browse-url-browser-display):
10544 * international/mule.el (define-charset):
10545 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
10546 * filesets.el (filesets-find-file-delay):
10547 * eshell/em-xtra.el (eshell-xtra):
10548 * eshell/em-unix.el (eshell-grep):
10549 * emulation/viper.el (viper-mode):
10550 * emacs-lisp/regexp-opt.el (regexp-opt-group):
10551 * emacs-lisp/easymenu.el (easy-menu-define):
10552 * calendar/timeclock.el (timeclock-use-display-time):
10553 * bs.el (bs-mode):
10554 * bookmark.el (bookmark-save-flag):
10555 Doc fix (standardize possessive apostrophe usage).
10556
c98c6276
CY
105572012-02-27 Chong Yidong <cyd@gnu.org>
10558
bf7f9bc5
JB
10559 * emulation/viper-cmd.el (viper-intercept-ESC-key):
10560 Fix key-binding lookup for ESC key (Bug#9146).
ecf5f74e 10561
c98c6276
CY
10562 * font-lock.el (font-lock-specified-p): Rename from
10563 font-lock-spec-present. Callers changed.
10564
9c62cd04 105652012-02-27 Daniel Hackney <dan@haxney.org>
8ac9e529 10566
bf7f9bc5
JB
10567 * emacs-lisp/package.el (package-compute-transaction):
10568 Handle holding a package version to t in package-load-list.
8ac9e529 10569
530739c9
MA
105702012-02-26 Michael Albinus <michael.albinus@gmx.de>
10571
10572 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
10573 (tramp-get-inode, tramp-get-device): Use cached values.
10574
487915d7
AM
105752012-02-26 Alan Mackenzie <acm@muc.de>
10576
10577 Check there is a font-lock specification before doing initial
10578 fontification.
10579
10580 * font-core.el (font-lock-mode): Move the conditional from
10581 :after-hook to font-lock-initial-fontify.
10582 (font-lock-default-function): Move the check for a specification
10583 to font-lock-spec-present.
10584
dc9924b8 10585 * font-lock.el (font-lock-initial-fontify): Call ...
487915d7
AM
10586 (font-lock-spec-present): New function.
10587
4fd96557
JB
105882012-02-26 Jim Blandy <jimb@red-bean.com>
10589
10590 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
10591 (gdb-send): Apply it to the operand of the '-interpreter-exec
10592 console' command, so that we can pass arguments with (say) quotes
10593 in them. Store exact string sent in gdb-debug-log (Bug#10765).
10594
9a4888c0
CY
105952012-02-26 Chong Yidong <cyd@gnu.org>
10596
07498861
CY
10597 * help-fns.el (describe-function-1): Clarify description of
10598 remapping (Bug#10844).
10599
9a4888c0
CY
10600 * files.el (files-equal-p): Doc fix.
10601 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
10602 and quit the loop once a mismatch is found.
10603
ea8fb88d
JB
106042012-02-25 Juanma Barranquero <lekktu@gmail.com>
10605
10606 * bs.el (bs--show-with-configuration): Don't throw an error
10607 if the window cannot be split; otherwise, subsequent calls to
10608 bs-show fail, restoring a stale window config. (Bug#10882)
10609
525795c1
JD
106102012-02-25 Jan Djärv <jan.h.d@swipnet.se>
10611
10612 * term/ns-win.el (global-map): Bind ns-drag-file to
10613 ns-find-file (Bug#5855, Bug#10050).
10614
f008086f
AS
106152012-02-25 Andreas Schwab <schwab@linux-m68k.org>
10616
10617 * calendar/parse-time.el (parse-time-string): Allow extractor to
10618 return nil.
10619
a3fcfa99
MA
106202012-02-25 Michael Albinus <michael.albinus@gmx.de>
10621
91027d08
JB
10622 * net/tramp.el (tramp-file-name-for-operation):
10623 Add `files-equal-p' and `file-subdir-of-p'.
a3fcfa99
MA
10624
10625 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
91027d08
JB
10626 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
10627 Add COPY-CONTENTS argument.
a3fcfa99 10628
67b0de11
CY
106292012-02-25 Chong Yidong <cyd@gnu.org>
10630
10631 Add custom groups for VC backends, for consistency with vc-bzr.
10632
10633 * vc/vc-arch.el (vc-arch):
10634 * vc/vc-cvs.el (vc-cvs):
10635 * vc/vc-git.el (vc-git):
10636 * vc/vc-hg.el (vc-hg):
10637 * vc/vc-mtn.el (vc-mtn):
10638 * vc/vc-rcs.el (vc-rcs):
10639 * vc/vc-sccs.el (vc-sccs):
10640 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
10641 All relevant defcustoms reassigned.
10642
3c9dfce6
CY
106432012-02-25 Chong Yidong <cyd@gnu.org>
10644
1339bf43
CY
10645 * newcomment.el (comment-styles): Add autoload (Bug#10868).
10646
3c9dfce6
CY
10647 * term/x-win.el (x-initialize-window-system): Reduce default for
10648 x-selection-timeout to 5 seconds (Bug#8869).
10649
25b2e303 106502012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10651
ec70a47d
GM
10652 * files.el (files-equal-p, file-subdir-of-p): New functions.
10653 (copy-directory): Error when trying to copy a directory on itself.
25b2e303 10654 Add missing copy-contents arg to tramp handler.
ec70a47d
GM
10655 * dired-aux.el (dired-copy-file-recursive): Same.
10656 (dired-create-files): Modify destination when source is equal to
10657 dest when copying files.
53a46cd0 10658 Return also when dest is a subdir of source. (Bug#10489)
25b2e303 10659
914260cd
MA
106602012-02-24 Michael Albinus <michael.albinus@gmx.de>
10661
10662 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
10663 (Bug#10874)
10664
2cb228f7
AM
106652012-02-23 Alan Mackenzie <acm@muc.de>
10666
10667 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
10668 parameter "after-hook:" to allow the expansion to run code after
10669 the execution of the mode hooks.
10670
10671 * font-lock.el (font-lock-initial-fontify): New function extracted
91027d08 10672 from font-lock-mode-internal.
2cb228f7 10673
91027d08 10674 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
2cb228f7
AM
10675 :after-hook.
10676
8f0fde21
SM
106772012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10678
3e88618b
SM
10679 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
10680 (completion--cache-all-sorted-completions): New function.
10681 (completion-all-sorted-completions): Use it.
10682 (completion--do-completion, minibuffer-force-complete):
10683 Use it to re-instate the flush hook.
10684
8f0fde21
SM
10685 * icomplete.el (icomplete-completions): Replace last fix with a better
10686 one (bug#10850).
10687
8e911f6f
DG
106882012-02-23 Dmitry Gutov <dgutov@yandex.ru>
10689
10690 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
10691 when it might call us back infinitely (bug#10797).
10692
49fe4321
GM
106932012-02-23 Glenn Morris <rgm@gnu.org>
10694
10695 * minibuffer.el (completion-category-overrides): Doc fix.
10696
b291b572
SM
106972012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10698
10699 * minibuffer.el (completion-table-with-context): Fix inf-loop.
10700 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
10701
31a9ef2e
GM
107022012-02-23 Glenn Morris <rgm@gnu.org>
10703
5e6e6794 10704 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
31a9ef2e
GM
10705 (authors-obsolete-files-regexps, authors-ignored-files)
10706 (authors-ambiguous-files, authors-renamed-files-alist):
10707 Add more entries.
10708
0bd1e074
JL
107092012-02-23 Juri Linkov <juri@jurta.org>
10710
10711 * isearch.el (isearch-occur): Sync interactive spec with occur's
10712 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
10713
b617673c
JL
10714 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
10715
19e9789e
JL
107162012-02-22 Juri Linkov <juri@jurta.org>
10717
10718 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
10719 (ucs-insert): Doc fix. Check for hex digits in the string.
10720 Don't display `nil' in the error message. (Bug#10857)
10721
f41ce09d
AM
107222012-02-22 Alan Mackenzie <acm@muc.de>
10723
7a71b18d 10724 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
f41ce09d 10725
ac2eceee
GM
107262012-02-22 Glenn Morris <rgm@gnu.org>
10727
10728 * ffap.el (ffap-c-path):
10729 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
10730
abd1f678
CY
107312012-02-22 Chong Yidong <cyd@gnu.org>
10732
10733 * custom.el (load-theme): Doc fix.
10734
f25aef2e
GM
107352012-02-22 Glenn Morris <rgm@gnu.org>
10736
10737 * dired-x.el (dired-guess-shell-alist-default):
10738 Remove escape sequences from nroff output. (Bug#172)
10739
5f8dc2ca
GM
107402012-02-21 Glenn Morris <rgm@gnu.org>
10741
6ff86ec4
GM
10742 * vc/emerge.el (emerge-defvar-local):
10743 Set `permanent-local' property rather than unused `preserved'.
10744
be3223a3 10745 * textmodes/picture.el (picture-delete-char): New alias.
5f8dc2ca
GM
10746 (picture-mode-map): Use it. (Bug#10860)
10747 (picture-mode): Doc fix.
10748
3fe58f4f
JB
107492012-02-21 Juanma Barranquero <lekktu@gmail.com>
10750
10751 * newcomment.el (uncomment-region-default): Remove unused binding.
10752
f9a998c3
GM
107532012-02-21 Glenn Morris <rgm@gnu.org>
10754
10755 * textmodes/picture.el (picture-motion, picture-motion-reverse)
10756 (picture-self-insert, picture-tab-chars): Doc fix.
10757 (picture-mode-map): Fix C-a, C-e.
10758
c6029348
GM
107592012-02-20 Glenn Morris <rgm@gnu.org>
10760
10761 * emacs-lisp/authors.el (authors-aliases): Add another entry.
10762
ab1ce9d7
LL
107632012-02-20 Leo Liu <sdl.web@gmail.com>
10764
10765 * icomplete.el (icomplete-completions): Check FROM arg before
10766 passing to substring (Bug#10850).
10767
0fd40f89
CY
107682012-02-19 Chong Yidong <cyd@gnu.org>
10769
10770 * comint.el: Require ansi-color.
10771 (comint-output-filter-functions): Add ansi-color-process-output.
10772
10773 * ansi-color.el: Don't set comint-output-filter-functions; it is
10774 now in the initial value defined in comint.el.
10775 (ansi-color-apply-face-function): New variable.
10776 (ansi-color-apply-on-region): Use it.
10777 (ansi-color-apply-overlay-face): New function.
10778
10779 * shell.el (shell): No need to require ansi-color.
10780 (shell-mode): Use ansi-color-apply-face-function to highlight
10781 color escapes using font-lock-face property (Bug#10835).
10782
20af2394
CY
107832012-02-19 Chong Yidong <cyd@gnu.org>
10784
10785 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
10786 mode-line formats (Bug#10839).
10787
e23a3fbe
GM
107882012-02-18 Glenn Morris <rgm@gnu.org>
10789
b474519e
GM
10790 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
10791
10792 * mail/undigest.el (unforward-rmail-message): Doc fix.
10793
e23a3fbe
GM
10794 * saveplace.el (save-place-ignore-files-regexp): Add :version.
10795
57939ff4
EZ
107962012-02-18 Eli Zaretskii <eliz@gnu.org>
10797
10798 * international/characters.el (script-list): Sync with the latest
10799 Unicode Character Database.
10800
0c23686e
AS
108012012-02-18 Andreas Schwab <schwab@linux-m68k.org>
10802
10803 * international/titdic-cnv.el: Remove duplicate coding tag.
10804 * language/cham.el: Likewise.
10805 * language/tai-viet.el: Likewise.
10806
6818b449
GM
108072012-02-18 Glenn Morris <rgm@gnu.org>
10808
10809 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
10810 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
10811 (calendar-bahai-all-holidays-flag, calendar-other-dates):
10812 * calendar/diary-lib.el (diary-abbreviated-year-flag):
10813 * calendar/holidays.el (holiday-bahai-holidays)
10814 (calendar-holidays, list-holidays):
10815 Use utf-8 Bahá'í in doc-strings, menus, etc.
10816
0311a3fc
TH
108172012-02-17 Tassilo Horn <tassilo@member.fsf.org>
10818
10819 * saveplace.el (save-place-ignore-files-regexp): New variable
10820 allowing for excluding files from saving their location of point.
10821 The default value matches the temporary commit message editing
10822 files from Git, SVN, Bazaar, and Mercurial.
10823 (save-place-to-alist): Use it.
10824
d209e2fb 108252012-02-17 Lawrence Mitchell <wence@gmx.li>
f1a71c6e 10826 Stefan Monnier <monnier@iro.umontreal.ca>
eb864a71
LM
10827
10828 * newcomment.el (uncomment-region-default): Don't leave extra space
10829 when an arg is provided (bug#8150).
10830
ee0ce425
TZ
108312012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
10832
eb864a71 10833 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
ee0ce425 10834
95ddf442
GM
108352012-02-17 Glenn Morris <rgm@gnu.org>
10836
10837 * net/socks.el: Require network-stream. (Bug#10599)
10838
48dd1e39 108392012-02-17 Kenichi Handa <handa@m17n.org>
c406be43
KH
10840
10841 * international/charprop.el:
10842 * international/uni-name.el:
10843 * international/uni-old-name.el:
10844 * international/uni-comment.el: Regenerate.
10845
d68cd087
GM
108462012-02-16 Glenn Morris <rgm@gnu.org>
10847
10848 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
10849 Interactively in calendar buffer, give an error if not on a date.
10850
13932042
GM
108512012-02-15 Glenn Morris <rgm@gnu.org>
10852
10853 * shell.el (shell-delimiter-argument-list):
10854 Revert 2011-02-17 change. (Bug#8027)
10855
c3a70e2b
CY
108562012-02-15 Chong Yidong <cyd@gnu.org>
10857
60236b0d
CY
10858 * minibuffer.el (completion-at-point-functions): Doc fix.
10859
c3a70e2b
CY
10860 * custom.el (defcustom): Doc fix; note use of defvar.
10861
9f26dc24
GM
108622012-02-15 Glenn Morris <rgm@gnu.org>
10863
10864 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
10865 Doc fixes.
10866
6546b134
GM
108672012-02-14 Glenn Morris <rgm@gnu.org>
10868
10869 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
10870
d29b2b4c
LI
108712012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
10872
10873 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
10874 way the ports list is computed.
835bdcba
LI
10875 (smtpmail-query-smtp-server): Prompt the user for a port number if
10876 we can't connect to any of the standard ports (bug#10810).
d29b2b4c 10877
08dcdbc9
TZ
108782012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
10879
10880 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
10881
2605051a
GM
108822012-02-13 Glenn Morris <rgm@gnu.org>
10883
10884 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
10885
7ee99f32
TZ
108862012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
10887
10888 * net/gnutls.el (gnutls-trustfiles): New variable.
10889 (gnutls-negotiate): Use it.
10890
5f0af64f
LI
108912012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
10892
10893 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
10894 does its stuff if Gnus is running.
10895
c14fcc95
AM
108962012-02-13 Alan Mackenzie <acm@muc.de>
10897
10898 Fix a loop in c-set-fl-decl-start.
10899
7a71b18d 10900 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
c14fcc95
AM
10901 c-backward-syntactic-ws actually moves backwards.
10902
142b4d90
LL
109032012-02-13 Leo Liu <sdl.web@gmail.com>
10904
10905 * net/rcirc.el (rcirc-markup-attributes): Move point to the
10906 beginning so that all \C-o chars are removed.
10907
fa9958a6
TZ
109082012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
10909
dc9924b8 10910 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
fa9958a6 10911
0bc5886a
AM
109122012-02-12 Alan Mackenzie <acm@muc.de>
10913
10914 Fix infinite loop with long macros.
4d6769e1 10915 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
0bc5886a 10916
d4bd55e7
CY
109172012-02-12 Chong Yidong <cyd@gnu.org>
10918
10919 * window.el (display-buffer): Doc fix (Bug#10785).
10920
66f3fe22
GM
109212012-02-12 Glenn Morris <rgm@gnu.org>
10922
bd7da63e
GM
10923 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10924 (x-disown-selection-internal, x-get-selection-internal):
10925 Sync docs with the xselect.c versions.
10926
66f3fe22
GM
10927 * allout-widgets.el: Add missing license notice.
10928
3e0d2fa7
GM
109292012-02-11 Glenn Morris <rgm@gnu.org>
10930
cfecdf09
GM
10931 * select.el (x-get-selection-internal, x-own-selection-internal)
10932 (x-disown-selection-internal):
10933 * x-dnd.el (x-get-selection-internal): Update declarations.
10934
6d216d7f
GM
10935 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
10936
2bed3f04
GM
10937 * window.el (window-sides-slots):
10938 * tool-bar.el (tool-bar-position):
10939 * term/xterm.el (xterm-extra-capabilities):
10940 * ses.el (ses-self-reference-early-detection):
10941 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
10942 (verilog-auto-wire-type)
10943 (verilog-auto-delete-trailing-whitespace)
10944 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
10945 (verilog-auto-tieoff-declaration):
10946 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
10947 (sql-oracle-statement-starters, sql-oracle-scan-on):
10948 * progmodes/prolog.el (prolog-align-comments-flag)
10949 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
10950 (prolog-left-indent-regexp, prolog-paren-indent-p)
10951 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
10952 (prolog-types, prolog-mode-specificators)
10953 (prolog-determinism-specificators, prolog-directives)
10954 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
10955 (prolog-electric-dot-flag)
10956 (prolog-electric-dot-full-predicate-template)
10957 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
10958 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
10959 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
10960 (prolog-program-switches, prolog-prompt-regexp)
10961 (prolog-debug-on-string, prolog-debug-off-string)
10962 (prolog-trace-on-string, prolog-trace-off-string)
10963 (prolog-zip-on-string, prolog-zip-off-string)
10964 (prolog-use-standard-consult-compile-method-flag)
10965 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
10966 (prolog-imenu-max-lines, prolog-info-predicate-index)
10967 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
10968 (prolog-char-quote-workaround):
10969 * progmodes/cc-vars.el (c-defun-tactic):
10970 * net/tramp.el (tramp-encoding-command-interactive)
10971 (tramp-local-end-of-line):
10972 * net/soap-client.el (soap-client):
10973 * net/netrc.el (netrc-file):
10974 * net/gnutls.el (gnutls):
10975 * minibuffer.el (completion-category-overrides)
10976 (completion-cycle-threshold)
10977 (completion-pcm-complete-word-inserts-delimiters):
10978 * man.el (Man-name-local-regexp):
10979 * mail/feedmail.el (feedmail-display-full-frame):
10980 * international/characters.el (glyphless-char-display-control):
10981 * eshell/em-ls.el (eshell-ls-date-format):
10982 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
10983 (lisp-lambda-list-keyword-parameter-indentation)
10984 (lisp-lambda-list-keyword-parameter-alignment):
10985 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
10986 * dired-x.el (dired-omit-verbose):
10987 * cus-theme.el (custom-theme-allow-multiple-selections):
10988 * calc/calc.el (calc-highlight-selections-with-faces)
10989 (calc-lu-field-reference, calc-lu-power-reference)
10990 (calc-note-threshold):
10991 * battery.el (battery-mode-line-limit):
10992 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
10993 (archive-7z-update):
10994 * allout.el (allout-prefixed-keybindings)
10995 (allout-unprefixed-keybindings)
10996 (allout-inhibit-auto-fill-on-headline)
10997 (allout-flattened-numbering-abbreviation):
10998 * allout-widgets.el (allout-widgets-auto-activation)
10999 (allout-widgets-icons-dark-subdir)
11000 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
11001 (allout-widgets-theme-dark-background)
11002 (allout-widgets-theme-light-background)
11003 (allout-widgets-item-image-properties-emacs)
11004 (allout-widgets-item-image-properties-xemacs)
11005 (allout-widgets-run-unit-tests-on-load)
11006 (allout-widgets-time-decoration-activity)
11007 (allout-widgets-hook-error-post-time)
11008 (allout-widgets-track-decoration):
11009 Add missing :version tags to new defcustoms and defgroups.
11010
5fec1b8e
GM
11011 * progmodes/sql.el (sql-ansi-statement-starters)
11012 (sql-oracle-statement-starters): Add custom type.
11013
3e0d2fa7
GM
11014 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
11015 (prolog-system-version): Give it a type.
11016
90b671e2
EZ
110172012-02-11 Eli Zaretskii <eliz@gnu.org>
11018
11019 * term/pc-win.el (x-select-text, x-selection-owner-p)
11020 (x-own-selection-internal, x-disown-selection-internal)
11021 (x-get-selection-internal): Sync doc strings and argument lists
11022 with xselect.c, common-win.el and x-win.el. (Bug#10783)
11023
5eac0c02
LL
110242012-02-11 Leo Liu <sdl.web@gmail.com>
11025
11026 * progmodes/python.el (python-end-of-statement): Fix infinite
11027 loop. (Bug#10788)
11028
f82cb659
GM
110292012-02-10 Glenn Morris <rgm@gnu.org>
11030
11031 * international/mule-cmds.el (unify-8859-on-encoding-mode)
11032 (unify-8859-on-decoding-mode): Properly mark as obsolete.
11033
cc26d239
LI
110342012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
11035
11036 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
11037 about SMTP before checking the From header.
11038
91027d08 11039 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
cc26d239
LI
11040 into own function for reuse by emacsbug.el.
11041
1be3ca5a
LL
110422012-02-10 Leo Liu <sdl.web@gmail.com>
11043
11044 * subr.el (condition-case-unless-debug): Rename from
11045 condition-case-no-debug. All callers changed.
11046 (with-demoted-errors): Fix caller.
11047
11048 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
11049 * nxml/rng-valid.el (rng-do-some-validation):
11050 * emacs-lisp/package.el (package-refresh-contents)
11051 (package-menu-execute):
11052 * desktop.el (desktop-create-buffer):
91027d08 11053 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
1be3ca5a 11054
b011fbfe
GM
110552012-02-10 Glenn Morris <rgm@gnu.org>
11056
b2096d72
GM
11057 * textmodes/bibtex.el:
11058 Add missing :version tags for new/changed defcustoms.
11059
b011fbfe
GM
11060 * files.el (remote-file-name-inhibit-cache): Doc fixes.
11061
4c7e65bf
LI
110622012-02-09 Lars Ingebrigtsen <larsi@rusty>
11063
11064 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
11065 (smtpmail-via-smtp): Use it, or fall back on the From address.
11066 (smtpmail-send-it): Ditto.
11067
f3934f6f
SM
110682012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
11069
11070 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
11071 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
11072 (byte-compile-tmp-var): New const.
11073 (byte-compile-defvar): Use it to minimize .elc size.
11074 Just use `defvar' rather than simulate it (bug#10761).
11075
a075a2c5
GM
110762012-02-09 Glenn Morris <rgm@gnu.org>
11077
cf3aa21b
GM
11078 * files.el (rename-uniquely): Doc fix. (Bug#3806)
11079
354998cd
GM
11080 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
11081 Add :version tags.
11082
dc9924b8
SM
11083 * progmodes/compile.el (compilation-error-screen-columns)
11084 (compilation-first-column, compilation-filter-start): Doc fixes.
83274125 11085
dab3703d
GM
11086 * vc/log-view.el (log-view-toggle-entry-display):
11087 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
11088
3f88cd72
GM
11089 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
11090 (report-emacs-bug-can-use-xdg-email):
11091 (report-emacs-bug-insert-to-mailer): Doc fixes.
11092 (report-emacs-bug): Message fix.
11093
d95b247d
GM
11094 * net/browse-url.el (browse-url-can-use-xdg-open)
11095 (browse-url-xdg-open): Doc fixes.
11096
a075a2c5
GM
11097 * electric.el (electric-indent-mode, electric-pair-mode)
11098 (electric-layout-rules, electric-layout-mode): Doc fixes.
11099 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
11100
ffb6157e
MR
111012012-02-08 Martin Rudalics <rudalics@gmx.at>
11102
11103 * server.el (server-unselect-display): Don't inadvertently kill
11104 the current buffer. (Bug#10729)
11105
e1ac4066
GM
111062012-02-08 Glenn Morris <rgm@gnu.org>
11107
34e8a2da
GM
11108 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
11109 (sql-list-table): Doc fixes.
11110
b4ac6e8c
GM
11111 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
11112 Comment out (does nothing).
11113
e1ac4066
GM
11114 * completion.el (dynamic-completion-mode):
11115 * dirtrack.el (dirtrack-debug-mode):
11116 * electric.el (electric-layout-mode):
11117 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
11118 * face-remap.el (text-scale-mode, buffer-face-mode):
11119 * iimage.el (iimage-mode):
11120 * image-mode.el (image-transform-mode):
11121 * minibuffer.el (completion-in-region-mode):
11122 * scroll-lock.el (scroll-lock-mode):
11123 * simple.el (next-error-follow-minor-mode):
11124 * tar-mode.el (tar-subfile-mode):
11125 * tooltip.el (tooltip-mode):
11126 * vcursor.el (vcursor-use-vcursor-map):
11127 * wid-browse.el (widget-minor-mode):
11128 * emulation/tpu-edt.el (tpu-edt-mode):
11129 * emulation/tpu-extras.el (tpu-cursor-free-mode):
11130 * international/iso-ascii.el (iso-ascii-mode):
11131 * language/thai-util.el (thai-word-mode):
11132 * mail/supercite.el (sc-minor-mode):
11133 * net/goto-addr.el (goto-address-mode):
11134 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
11135 * progmodes/cwarn.el (cwarn-mode):
11136 * progmodes/flymake.el (flymake-mode):
11137 * progmodes/glasses.el (glasses-mode):
11138 * progmodes/hideshow.el (hs-minor-mode):
11139 * progmodes/pascal.el (pascal-outline-mode):
11140 * textmodes/enriched.el (enriched-mode):
11141 * vc/smerge-mode.el (smerge-mode):
11142 Doc fixes (minor mode argument).
11143
5e0d957f
EZ
111442012-02-07 Eli Zaretskii <eliz@gnu.org>
11145
11146 * ls-lisp.el (ls-lisp-sanitize): New function.
11147 (ls-lisp-insert-directory): Use it to fix or remove any elements
11148 in file-alist with missing attributes. (Bug#4673)
11149
98d7371e
AM
111502012-02-07 Alan Mackenzie <acm@muc.de>
11151
11152 Fix spurious recognition of c-in-knr-argdecl.
11153
11154 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
11155 putative K&R region.
11156
667ced3a
AM
111572012-02-07 Alan Mackenzie <acm@muc.de>
11158
eb864a71
LM
11159 * progmodes/cc-engine.el (c-forward-objc-directive):
11160 Prevent looping in "#pragma mark @implementation".
667ced3a 11161
5b77774d
MA
111622012-02-07 Michael Albinus <michael.albinus@gmx.de>
11163
11164 * notifications.el (notifications-on-closed-signal): Make `reason'
11165 optional. (Bug#10744)
11166
af008560
GM
111672012-02-07 Glenn Morris <rgm@gnu.org>
11168
60d47423
GM
11169 * emacs-lisp/easy-mmode.el (define-minor-mode):
11170 Doc fixes for the macro and the mode it defines.
11171
dd605cc4
GM
11172 * image.el (imagemagick-types-inhibit): Doc fix.
11173
af008560
GM
11174 * cus-start.el (imagemagick-render-type): Add it.
11175
5cc59a37
LI
111762012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
11177
4d6769e1
JB
11178 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
11179 Set the default at load time, too, so that `font-lock-fontify-buffer'
11180 can be called without setting up the entire mode first. This fixes
11181 a bug in `mm-inline-text' with C MIME parts.
5cc59a37 11182
9a6dd747
CY
111832012-02-06 Chong Yidong <cyd@gnu.org>
11184
2d16b285
CY
11185 * simple.el (list-processes--refresh): Delete exited processes
11186 (Bug#8094).
11187
171e9b6e
CY
11188 * comint.el (comint-next-prompt): next-single-char-property-change
11189 and prev-single-char-property-change never return nil (Bug#8657).
11190
9a6dd747
CY
11191 * custom.el (defcustom): Doc fix (Bug#9711).
11192
aa4589a7
CY
111932012-02-05 Chong Yidong <cyd@gnu.org>
11194
5c2a252f
CY
11195 * cus-edit.el (custom-variable-reset-backup): Quote the value
11196 before storing it in the customized-value property (Bug#6712).
4aab9006 11197 (custom-display): Add a customization type tag.
983b9602 11198 (custom-buffer-create-internal): Improve tooltip message.
5c2a252f 11199
aa4589a7
CY
11200 * wid-edit.el (widget-field-value-get): New optional arg to
11201 suppress trailing whitespace truncation.
11202 (character): Use it (Bug#2689).
11203
1ff980ae
AS
112042012-02-05 Andreas Schwab <schwab@linux-m68k.org>
11205
11206 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
11207 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
11208
03988c98
CY
112092012-02-05 Chong Yidong <cyd@gnu.org>
11210
eeb6cc88
CY
11211 * cus-edit.el (custom-variable-value-create): For mismatched
11212 types, show the current value (Bug#7600).
11213
03988c98
CY
11214 * custom.el (defcustom): Doc fix.
11215
f8cdeef0
GM
112162012-02-05 Glenn Morris <rgm@gnu.org>
11217
11218 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
11219
0696d255
JB
112202012-02-05 Juanma Barranquero <lekktu@gmail.com>
11221
11222 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
11223 (pp-buffer): Use `ignore-errors', `looking-at-p'.
11224 (pp-last-sexp): Use `looking-at-p'.
11225
34c99998
GM
112262012-02-04 Glenn Morris <rgm@gnu.org>
11227
8f05da42
GM
11228 * files.el (revert-buffer):
11229 Doc fix (mention revert-buffer-in-progress-p).
11230
f160676e
GM
11231 * emacs-lisp/ert-x.el (ert-simulate-command):
11232 Check deferred-action-list (which is obsolete) is bound.
11233
c7291ad9
GM
11234 * subr.el (with-wrapper-hook): Doc fixes.
11235
34c99998
GM
11236 * simple.el (filter-buffer-substring-functions)
11237 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
11238
6283a7d3
LL
112392012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
11240
11241 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
11242 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
11243
e96e3013
LL
112442012-02-04 Leo Liu <sdl.web@gmail.com>
11245
11246 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
11247
8ded50f2
GM
112482012-02-04 Glenn Morris <rgm@gnu.org>
11249
82ff1d13
GM
11250 * image.el (image-extension-data): Add obsolete alias.
11251
987a0a16
GM
11252 * isearch.el (isearch-update): Doc fix.
11253
ea32ef46
GM
11254 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
11255
8ded50f2
GM
11256 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
11257
eea14f31
GM
112582012-02-03 Glenn Morris <rgm@gnu.org>
11259
11260 * image.el (image-animated-p): Doc fix. Use image-animated-types.
11261 (image-animate-timeout): Doc fix.
11262
11263 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
11264
12f381b7
GM
112652012-02-02 Glenn Morris <rgm@gnu.org>
11266
953cebf5
GM
11267 * server.el (server-auth-dir): Doc fix.
11268 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
11269
12f381b7
GM
11270 * subr.el (run-mode-hooks): Doc fix.
11271
953a8c3b
JL
112722012-02-02 Juri Linkov <juri@jurta.org>
11273
11274 * image-mode.el (image-toggle-display-image): Remove tautological
11275 `major-mode' from the `derived-mode-p' test.
11276
c5d3843c
KH
112772012-02-02 Kenichi Handa <handa@m17n.org>
11278
9f6e692e 11279 * composite.el (compose-region): Cancel previous change.
c5d3843c 11280
159462d4 112812012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
11282
11283 * composite.el (compose-region, compose-string): Signal error for
11284 a null string component (Bug#6988).
11285
9f562668
CY
112862012-02-01 Chong Yidong <cyd@gnu.org>
11287
e2cef717
CY
11288 * view.el (view-buffer-other-window, view-buffer-other-frame):
11289 Handle special modes like view-buffer (Bug#10650).
11290 (view-buffer): Simplify.
11291
9f562668
CY
11292 * frame.el (set-frame-font): Tweak meaning of third argument.
11293
9f6e692e
JB
11294 * dynamic-setting.el (font-setting-change-default-font):
11295 Use set-frame-font (Bug#9982).
9f562668 11296
781acb9f
GM
112972012-02-01 Glenn Morris <rgm@gnu.org>
11298
6035be52
GM
11299 * progmodes/compile.el (compilation-internal-error-properties):
11300 Respect compilation-first-column in the "*compilation*" buffer.
11301
781acb9f
GM
11302 * emacs-lisp/easy-mmode.el (define-minor-mode):
11303 Relax :variable's test for a named function.
11304
abbceb00
AM
113052012-01-31 Alan Mackenzie <acm@muc.de>
11306
11307 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
11308 off by one error.
11309
fce3fdeb
CY
113102012-01-31 Chong Yidong <cyd@gnu.org>
11311
11312 * frame.el (set-frame-font): New arg ALL-FRAMES.
11313
11314 * menu-bar.el (menu-set-font): Use set-frame-font.
11315
11316 * faces.el (face-spec-reset-face): Don't apply unspecified
11317 attribute values to the default face.
11318
47893581
JB
113192012-01-31 Juanma Barranquero <lekktu@gmail.com>
11320
11321 * progmodes/cwarn.el (cwarn): Remove dead link.
11322 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
11323 Remove * from defcustom docstrings.
11324 (turn-on-cwarn-mode): Make obsolete.
11325 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
11326 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
11327
e58e988a
GM
113282012-01-31 Glenn Morris <rgm@gnu.org>
11329
60dc2671 11330 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
6c9b47ae 11331 Fix :variable handling of mode a symbol not equal to modefun.
60dc2671 11332 Allow named functions to be used as the cdr of :variable.
e58e988a 11333
7a3f511d
GM
113342012-01-30 Glenn Morris <rgm@gnu.org>
11335
11336 * emacs-lisp/authors.el (authors-fixed-entries):
11337 Remove reference to deleted file rnewspost.el.
11338
cb882333
JB
113392012-01-29 Juanma Barranquero <lekktu@gmail.com>
11340
11341 * window.el (window-with-parameter): Remove unused variable `windows'.
11342 (window--side-check): Remove unused variable `code'.
11343 (window--resize-siblings): Remove unused variable `first'.
11344 (adjust-window-trailing-edge): Remove unused variable `failed'.
11345 (window-deletable-p, window--delete): Remove unused variable `buffer'.
11346 Use `let', not `let*'.
11347 (balance-windows-2): Remove unused variable `found'.
11348 (window--state-put-2): Remove unused variable `splits'.
11349 (window-state-put): Remove unused variable `selected'.
11350 (same-window-p): Use `string-match-p'.
11351 (display-buffer-assq-regexp): Remove unused variable `value'.
11352 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11353 Mark argument ALIST as ignored.
11354 (pop-to-buffer): Remove unused variable `old-window'.
11355
907201af
EZ
113562012-01-29 Eli Zaretskii <eliz@gnu.org>
11357
11358 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
11359 and .lzma compressed files.
11360
ea162670
CY
113612012-01-29 Chong Yidong <cyd@gnu.org>
11362
5b95ee8a
CY
11363 * frame.el (window-system-default-frame-alist): Doc fix.
11364
ea162670
CY
11365 * dynamic-setting.el (font-setting-change-default-font): Don't
11366 change the default face if SET-FONT argument is non-nil (Bug#9982).
11367
d6e6f4b1
SB
113682012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
11369
11370 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
11371
0f29fa41 113722012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
6b25e4e2
SE
11373
11374 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
11375 breakpoints in files outside current directory (Bug#6098).
11376
db174434
CY
113772012-01-29 Chong Yidong <cyd@gnu.org>
11378
6b25e4e2
SE
11379 * progmodes/python.el: Require ansi-color at top-level.
11380
6df6ae42
JB
11381 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
11382 Define and use in Emacs Lisp mode (Bug#9360).
db174434
CY
11383 (lisp-mode-abbrev-table): Add doc.
11384 (lisp-mode-variables): Don't set local-abbrev-table.
11385 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
11386
e70ee681
RW
113872012-01-28 Roland Winkler <winkler@gnu.org>
11388
11389 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
11390
ace88aa2
RW
113912012-01-28 Roland Winkler <winkler@gnu.org>
11392
11393 * textmodes/bibtex.el (bibtex-entry-alist): New function.
11394 (bibtex-set-dialect): Use it. Either set global values of
11395 dialect-dependent variables or bind these variables buffer-locally
11396 (Bug#10254).
11397 (bibtex-mode): Call bibtex-set-dialect via
11398 hack-local-variables-hook.
eb864a71
LM
11399 (bibtex-dialect): Update docstring.
11400 Add safe-local-variable predicate.
ace88aa2
RW
11401 (bibtex-entry-alist, bibtex-field-alist): Initialize via
11402 bibtex-set-dialect.
11403 (bibtex-mode-map): Define menu for each dialect.
11404 (bibtex-entry): Fix docstring.
11405
93376c5b
CY
114062012-01-28 Chong Yidong <cyd@gnu.org>
11407
11408 * eshell/esh-arg.el (eshell-quote-argument): New function.
11409
11410 * eshell/esh-ext.el (eshell-invoke-batch-file):
11411 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
11412 first arg to eshell-parse-command (Bug#10523).
11413
4372494f
DA
114142012-01-28 Drew Adams <drew.adams@oracle.com>
11415
11416 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
11417 `default-directory' is non-nil.
11418
4d4ec1f8
EZ
114192012-01-28 Eli Zaretskii <eliz@gnu.org>
11420
11421 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
11422 line that displays system-configuration-options. (Bug#9924)
11423
7c188927
DA
114242012-01-28 Drew Adams <drew.adams@oracle.com>
11425
11426 * descr-text.el (describe-char): Show information about POS, in
11427 addition to information about the character at POS. Improve and
11428 update the doc string. Change "code point" to "code point in
11429 charset", to avoid confusion with the character's Unicode code
11430 point shown above that. (Bug#10129)
11431
e0da685a
EZ
114322012-01-28 Eli Zaretskii <eliz@gnu.org>
11433
11434 * descr-text.el (describe-char): Show the raw character, not only
11435 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
11436 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
11437 for the reasons.
11438
70550acf
PH
114392012-01-28 Phil Hagelberg <phil@hagelb.org>
11440
eb864a71
LM
11441 * emacs-lisp/package.el (package-install):
11442 Run package-refresh-contents if there is no archive yet (Bug#9798).
70550acf 11443
0ce8e868
CY
114442012-01-28 Chong Yidong <cyd@gnu.org>
11445
cb882333
JB
11446 * emacs-lisp/package.el (package-maybe-load-descriptor):
11447 New function, split from package-maybe-load-descriptor.
0ce8e868
CY
11448 (package-maybe-load-descriptor): Use it.
11449 (package-download-transaction): Fully load required packages
11450 inside the loop, so that `require' calls work (Bug#10593).
11451 (package-install): No need to call package-initialize now.
11452
2e7f3bea
CY
114532012-01-28 Chong Yidong <cyd@gnu.org>
11454
6e9bad14
CY
11455 * simple.el (deactivate-mark): Doc fix (Bug#8614).
11456
f823b8ca
CY
11457 * tooltip.el (tooltip-mode): Doc fix.
11458 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
11459
2680c309
CY
11460 * frame.el (set-cursor-color): Doc fix (Bug#352).
11461
d7a9e63b
CY
11462 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
11463 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
11464
2e7f3bea
CY
11465 * cus-edit.el (custom-buffer-create-internal): Fix search button
11466 action (Bug#10542).
2ae01800 11467 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
2e7f3bea 11468
fc4f7a23
EW
114692012-01-27 Eduard Wiebe <usenet@pusto.de>
11470
11471 * dired.el (dired-mark-files-regexp):
11472 Include any subdirectory components. (Bug#10445)
11473
7dd37071
ML
114742012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
11475
11476 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
11477 Handle [host]:port syntax. (Bug#10533)
11478
a268160b
AH
114792012-01-27 Alex Harsanyi <harsanyi@mac.com>
11480
11481 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
11482
e43273ef
GM
114832012-01-26 Glenn Morris <rgm@gnu.org>
11484
11485 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
11486 * term.el (term-raw-escape-map): Use Control-X-prefix.
11487 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
11488
1edf595d
MR
114892012-01-25 Martin Rudalics <rudalics@gmx.at>
11490
11491 * window.el (window-state-get, window--state-get-1): Don't deal
11492 with fixed-sizeness of windows. Simplify code.
11493
fa8eafef
JC
114942012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
11495
6df6ae42
JB
11496 * window.el (window--state-get-1, window--state-put-2):
11497 Don't save and restore the mark.
fa8eafef 11498
0b21c100
CY
114992012-01-25 Chong Yidong <cyd@gnu.org>
11500
11501 * custom.el (custom-variable-p): Doc fix.
11502
5ae1a6c8
GM
115032012-01-25 Glenn Morris <rgm@gnu.org>
11504
40047858
GM
11505 * dired.el (dired-goto-file): Handle some of the more common
11506 characters that `ls -b' escapes. (Bug#10596)
11507
5ddce96c
GM
11508 * progmodes/compile.el (compilation-next-error-function):
11509 Respect compilation-first-column in the "*compilation*" buffer.
11510 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
11511
5ae1a6c8
GM
11512 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
11513
b559f1a9
GM
115142012-01-24 Glenn Morris <rgm@gnu.org>
11515
11516 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
11517
6725d21a
JD
115182012-01-24 Julien Danjou <julien@danjou.info>
11519
11520 * color.el (color-rgb-to-hsl): Fix value computing.
11521 (color-hue-to-rgb): New function.
11522 (color-hsl-to-rgb): New function.
11523 (color-clamp, color-saturate-hsl, color-saturate-name)
11524 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
11525 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
11526
70df4bbe
GM
115272012-01-24 Glenn Morris <rgm@gnu.org>
11528
11529 * vc/vc-rcs.el (vc-rcs-create-tag):
11530 * vc/vc-sccs.el (vc-sccs-create-tag):
11531 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
11532
802a2ae2
ML
115332012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
11534
11535 * eshell/esh-util.el (eshell-read-hosts-file):
11536 Skip comment lines. (Bug#10549)
11537
d7128bb1
ML
11538 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
11539
d1a5c3b4
JB
115402012-01-23 Juanma Barranquero <lekktu@gmail.com>
11541
2724d9c7
JB
11542 * subr.el (display-delayed-warnings): Doc fix.
11543 (collapse-delayed-warnings): New function to collapse identical
11544 adjacent warnings.
11545 (delayed-warnings-hook): Add it.
d1a5c3b4 11546
a5509865
MA
115472012-01-22 Michael Albinus <michael.albinus@gmx.de>
11548
11549 * net/tramp.el (tramp-action-login): Set connection property "login-as".
11550
a5509865
MA
11551 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
11552 (tramp-default-user-alist): Don't add "pscp".
11553 (tramp-do-copy-or-rename-file-out-of-band): Use connection
11554 property "login-as", if set. (Bug#10530)
11555
cc6d5805
MA
115562012-01-21 Michael Albinus <michael.albinus@gmx.de>
11557
11558 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
11559 "plink1" and "psftp". (Bug#10530)
11560
115612012-01-21 Kenichi Handa <handa@m17n.org>
71784361
KH
11562
11563 * international/mule-cmds.el (prefer-coding-system): Show a
11564 warning message if the default value of file-name-coding-system
11565 was not changed.
11566
f0960428
JC
115672012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11568
cb882333
JB
11569 * windmove.el (windmove-reference-loc):
11570 Fix windmove-reference-loc miscalculation.
f0960428 11571
dd6f2a63
JB
115722012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
11573
11574 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
11575 default unit.
11576
7b447e9b
GM
115772012-01-21 Glenn Morris <rgm@gnu.org>
11578
117a9ea1
GM
11579 * international/mule.el (auto-coding-alist): Add .tbz.
11580
7b447e9b
GM
11581 * files.el (local-enable-local-variables): Doc fix.
11582 (inhibit-local-variables-regexps): Rename from
11583 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
11584 Doc fix. Add some extensions from auto-coding-alist.
11585 (inhibit-local-variables-suffixes):
11586 Rename from inhibit-first-line-modes-suffixes. Doc fix.
11587 (inhibit-local-variables-p):
11588 New function, extracted from set-auto-mode-1.
11589 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
11590 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
11591 (hack-local-variables): Doc fix. Make the mode-only case
11592 respect enable-local-variables and friends.
11593 Respect inhibit-local-variables-regexps for file-locals, but
11594 not for directory-locals.
11595 (set-visited-file-name):
11596 Take account of inhibit-local-variables-regexps.
11597 Whether it applies may change as the file name is changed.
11598 * jka-cmpr-hook.el (jka-compr-install):
11599 * jka-compr.el (jka-compr-uninstall):
11600 Update for inhibit-first-line-modes-suffixes name change.
11601
dd6e3cdd
MR
116022012-01-20 Martin Rudalics <rudalics@gmx.at>
11603
11604 * help-macro.el (make-help-screen): Temporarily restore original
11605 binding for minor-mode-map-alist (Bug#10454).
11606
0d0deb38
JD
116072012-01-19 Julien Danjou <julien@danjou.info>
11608
11609 * color.el (color-name-to-rgb): Use the white color to find the max
11610 color component value and return correctly computed values.
11611 (color-name-to-rgb): Add missing float conversion for max value.
11612
34a02f46
MR
116132012-01-19 Martin Rudalics <rudalics@gmx.at>
11614
11615 * window.el (window--state-get-1, window-state-get): Do not use
eb864a71
LM
11616 special state value for window-persistent-parameters.
11617 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
34a02f46
MR
11618 (window--state-put-2): Reset all window parameters to nil before
11619 assigning values of persistent parameters.
11620
606c44c4
AM
116212012-01-18 Alan Mackenzie <acm@muc.de>
11622
11623 Eliminate sluggishness and hangs in fontification of "semicolon
11624 deserts".
11625
cb882333
JB
11626 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
11627 Change value 10000 -> 3000.
606c44c4
AM
11628 (c-state-safe-place): Reformulate so it doesn't stack up an
11629 infinite number of wrong entries in c-state-nonlit-pos-cache.
11630 (c-determine-limit-get-base, c-determine-limit): New functions to
11631 determine backward search limits disregarding literals.
11632 (c-find-decl-spots): Amend commenting.
11633 (c-cheap-inside-bracelist-p): New function which detects "={".
11634
11635 * progmodes/cc-fonts.el
11636 (c-make-font-lock-BO-decl-search-function): Give a limit to a
11637 backward search.
11638 (c-font-lock-declarations): Fix an occurrence of point being
11639 undefined. Check additionally for point being in a bracelist or
11640 near a macro invocation without a semicolon so as to avoid a
11641 fruitless time consuming search for a declarator. Give a more
11642 precise search limit for declarators using the new
11643 c-determine-limit.
11644
f3860cea
GM
116452012-01-18 Glenn Morris <rgm@gnu.org>
11646
11647 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
11648 (set-auto-mode): Doc fixes.
11649
1db03b16
GM
116502012-01-17 Glenn Morris <rgm@gnu.org>
11651
0e6038be
GM
11652 * isearch.el (search-nonincremental-instead): Fix doc typo.
11653
1db03b16
GM
11654 * dired.el (dired-insert-directory): Handle newlines in directory name.
11655 (dired-build-subdir-alist): Unescape newlines in directory name.
11656
4cb0aa75
MA
116572012-01-17 Michael Albinus <michael.albinus@gmx.de>
11658
11659 * net/tramp.el (tramp-local-end-of-line): New defcustom.
11660 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
11661 (tramp-action-terminal): Use it. (Bug#10530)
11662
1d00653d
SM
116632012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11664
11665 * minibuffer.el (completion--replace): Strip properties (bug#10062).
11666
6a6ee00d
MR
116672012-01-16 Martin Rudalics <rudalics@gmx.at>
11668
11669 * window.el (window-state-ignored-parameters): Remove variable.
11670 (window--state-get-1): Rename argument MARKERS to IGNORE.
11671 Handle persistent window parameters. Make copy of clone-of
11672 parameter only if requested. (Bug#10348)
11673 (window--state-put-2): Install a window parameter only if it has
11674 a non-nil value or an existing parameter shall be overwritten.
11675
97912def
MA
116762012-01-15 Michael Albinus <michael.albinus@gmx.de>
11677
11678 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
11679
688070a5
EZ
116802012-01-14 Eli Zaretskii <eliz@gnu.org>
11681
11682 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
11683 don't pass the (nil) value of `upnode' to string-match.
11684
301afadc
CY
116852012-01-14 Chong Yidong <cyd@gnu.org>
11686
11687 * startup.el (command-line): Fix X resource class for cursorColor.
04877ddb 11688 Fix values recognized by the cursorBlink resource.
301afadc 11689
9e5788aa
PE
116902012-01-14 Paul Eggert <eggert@cs.ucla.edu>
11691
11692 * epg.el (epg--make-temp-file): Avoid permission race condition
11693 when running on old Emacs versions (bug#10403).
11694
3cdb7f5a
GM
116952012-01-14 Glenn Morris <rgm@gnu.org>
11696
11697 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
11698
8c82b1b4
AM
116992012-01-13 Alan Mackenzie <acm@muc.de>
11700
11701 Fix filling for when filladapt mode is enabled.
11702
11703 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
11704 c-mask-paragraph, pass in `fill-paragraph' rather than
11705 `fill-region-as-paragraph'. (This is a reversion of a previous
11706 change.)
eb864a71
LM
11707 * progmodes/cc-mode.el (c-basic-common-init):
11708 Make fill-paragraph-handle-comment buffer local and set it to nil.
8c82b1b4 11709
e517eda4
GM
117102012-01-13 Glenn Morris <rgm@gnu.org>
11711
1498536e
GM
11712 * dired.el (dired-switches-escape-p): New function.
11713 (dired-insert-directory): Use dired-switches-escape-p.
11714 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
11715
e517eda4
GM
11716 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
11717
328f984d
GM
117182012-01-12 Glenn Morris <rgm@gnu.org>
11719
11720 * mail/sendmail.el (mail-mode): Update paragraph-separate for
11721 changes in adaptive-fill-regexp. (Bug#10276)
11722
2cc769a8
AM
117232012-01-11 Alan Mackenzie <acm@muc.de>
11724
11725 Fix Emacs bug #10463 - put `widen's around the critical spots.
11726
1d00653d 11727 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
2cc769a8
AM
11728 widen around each invocation of c-state-pp-to-literal. Remove an
11729 unused let variable.
11730
e52c37fa
GM
117312012-01-11 Glenn Morris <rgm@gnu.org>
11732
11733 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
09044622 11734 Doc fix.
e52c37fa 11735
96f8741e
CY
117362012-01-10 Chong Yidong <cyd@gnu.org>
11737
1d00653d
SM
11738 * net/network-stream.el (network-stream-open-starttls):
11739 Avoid emitting a confusing error message when the server gives a bad
96f8741e
CY
11740 response to the capability command.
11741
b09a806e
GM
117422012-01-10 Glenn Morris <rgm@gnu.org>
11743
11744 * mail/unrmail.el (unrmail): Tweak previous change.
11745
7655cb66
CY
117462012-01-09 Chong Yidong <cyd@gnu.org>
11747
11748 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
11749
9d5a8f0b
AM
117502012-01-08 Alan Mackenzie <acm@muc.de>
11751
11752 Optimise font locking in long enum definitions.
11753
11754 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
11755 arm to a cond form to handle enums.
11756 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
11757 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
11758
9a0115ab 117592012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6bb72cbd
PE
11760
11761 * files.el (move-file-to-trash): Preserve default file modes on error.
a0562b3d 11762 (Bug#10401)
6bb72cbd 11763
f186bb95
LMI
117642012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11765
29232a68
LMI
11766 * faces.el (set-face-attribute): Clarify the meaning of the nil
11767 frame (bug#10294).
11768
4e5d086d
LMI
11769 * subr.el (with-selected-frame): Mention that the selected frame
11770 is restored (bug#9980).
11771
8e66aebe
LMI
11772 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
11773 (bug#9759).
11774
cd394be1 11775 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
f186bb95
LMI
11776 (password-read): Don't autoload unused function.
11777
adf4e762
JB
117782012-01-07 Juanma Barranquero <lekktu@gmail.com>
11779
11780 * progmodes/which-func.el (which-func-mode): Turn into a
11781 non-interactive function and mark as obsolete (bug#10428).
11782
89bd9ccd
CY
117832012-01-06 Chong Yidong <cyd@gnu.org>
11784
11785 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
11786 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
11787 functions, along with 1 and -1.
11788
4afee9d5
EZ
117892012-01-06 Eli Zaretskii <eliz@gnu.org>
11790
11791 * time.el (display-time-load-average)
11792 (display-time-default-load-average): Doc fixes. See the thread
11793 starting at
11794 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
11795 for the details.
11796
536aea70
GM
117972012-01-06 Glenn Morris <rgm@gnu.org>
11798
665ae865
GM
11799 * mail/unrmail.el (unrmail): Give an explicit error if the input file
11800 has no messages. (Bug#10377)
11801
c869783d
GM
11802 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
11803 than Info-edit. (Bug#10385)
11804
2bb4227e
GM
11805 * time.el (display-time-load-average, display-time-next-load-average):
11806 Doc fixes.
11807
7d5944b9
GM
11808 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
11809 local setting of buffer-read-only to the input buffer. (Bug#10419)
11810
536aea70
GM
11811 * calendar/calendar.el (calendar-mode):
11812 Locally set scroll-margin to 0. (Bug#10379)
11813
7dccca16
UM
118142012-01-06 Ulrich Mueller <ulm@gentoo.org>
11815
11816 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
11817
afbb7930
GM
118182012-01-05 Glenn Morris <rgm@gnu.org>
11819
11820 * eshell/em-unix.el (diff-no-select): Autoload it.
11821 (eshell/diff): Use diff-no-select. (Bug#10420)
11822
04482335
CY
118232012-01-05 Chong Yidong <cyd@gnu.org>
11824
7baca3bc
CY
11825 * shell.el (shell-dynamic-complete-functions): Revert last change.
11826 (shell-command-completion-function): New function.
11827 (shell-completion-vars): Use it to implement
11828 shell-completion-execonly (Bug#10417).
11829
04482335
CY
11830 * custom.el (enable-theme): Don't set custom-safe-themes.
11831
1d00653d
SM
11832 * cus-theme.el (custom-theme-merge-theme):
11833 Ignore custom-enabled-themes and custom-safe-themes.
04482335 11834
bb5aa5d6
MM
118352012-01-05 Michael R. Mauger <mmaug@yahoo.com>
11836
11837 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
11838 first prompt in `sql-interacive-mode'.
11839 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
04482335 11840 keywords.
6df6ae42 11841 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
bb5aa5d6
MM
11842 (sql-product-interactive): Bug fix: Set `sql-buffer' in
11843 context of original buffer. Invoke `sql-login-hook'.
11844
a7183d7c
EZ
118452012-01-04 Eli Zaretskii <eliz@gnu.org>
11846
11847 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
11848 letters in cite-prefix.
11849
a1eacd1e
LMI
118502012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11851
11852 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
11853
787cdb34
CY
118542012-01-03 Chong Yidong <cyd@gnu.org>
11855
1d00653d
SM
11856 * shell.el (shell-dynamic-complete-functions):
11857 Put pcomplete-completions-at-point, so as to try
787cdb34
CY
11858 comint-filename-completion first (Bug#10417).
11859
30710442
RS
118602012-01-02 Richard Stallman <rms@gnu.org>
11861
11862 * battery.el (battery-status-function):
11863 Detect when to use battery-yeeloong-sysfs.
11864 (battery-echo-area-format): Add string for Yeeloong.
11865 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
11866 (battery-yeeloong-sysfs): New function.
11867
f75bfc33
CY
118682012-01-02 Chong Yidong <cyd@gnu.org>
11869
11870 * dirtrack.el (dirtrack-list): Eliminate unused third element.
11871 (dirtrack): Merge code for handling relative filenames in prompt
11872 from shell-dir-cookie-watcher.
11873 (dirtrack-debug-message): New arg to avoid excess format calls.
11874
11875 * shell.el (shell-dir-cookie-re): Variable deleted.
11876 (shell-dir-cookie-watcher): Function deleted.
11877 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
11878 with dirtrack-mode.
11879
651e947e
EZ
118802012-01-01 Eli Zaretskii <eliz@gnu.org>
11881
1d00653d
SM
11882 * term/w32-win.el (dynamic-library-alist) <gnutls>:
11883 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
651e947e
EZ
11884 libgnutls-26.dll.
11885
94d4c7dc
AS
118862011-12-31 Andreas Schwab <schwab@linux-m68k.org>
11887
11888 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
11889
8d43f3cd
EZ
118902011-12-31 Eli Zaretskii <eliz@gnu.org>
11891
11892 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
11893 headers of non-MIME messages, when rmail-enable-mime is non-nil.
11894
98c8795a
MA
118952011-12-29 Michael Albinus <michael.albinus@gmx.de>
11896
11897 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
11898 also for alternative shells.
11899 (tramp-open-connection-setup-interactive-shell): Check, whether
11900 the shell is a busybox.
11901 (tramp-send-command): Don't suppress multiple prompts for
11902 busyboxes, it hurts.
11903
51281b32
CY
119042011-12-28 Chong Yidong <cyd@gnu.org>
11905
11906 * progmodes/gdb-mi.el (gdb-get-source-file-list)
11907 (gdb-get-source-file): Move mode line update to
11908 gdb-get-source-file (Bug#10087).
11909
2170cb53
CY
119102011-12-25 Chong Yidong <cyd@gnu.org>
11911
11912 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
11913 gud-gdb-marker-filter without taking it as an argument.
11914 (gud-gdb-run-command-fetch-lines): Caller changed.
11915 (gud-gdb-completion-function): New variable.
11916 (gud-gdb-completion-at-point): Use it.
11917 (gud-gdb-completions-1): Split from gud-gdb-completions.
11918
11919 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
11920 function as separate arguments.
11921 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
11922 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
11923 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
11924 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
11925 (gdb-stopped, def-gdb-auto-update-trigger)
11926 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
b81d40f0
JB
11927 (gdb-get-changed-registers, gdb-get-main-selected-frame):
11928 Callers changed.
2170cb53
CY
11929 (gud-gdbmi-completions): New function.
11930 (gdb): Use it for generating the completion table.
11931
be8b11bb
AM
119322011-12-24 Alan Mackenzie <acm@muc.de>
11933
11934 Introduce a mechanism to widen the region used in context font
1d00653d 11935 locking. Use this to protect declarations from losing their contexts.
be8b11bb 11936
1d00653d
SM
11937 * progmodes/cc-langs.el (c-before-font-lock-functions):
11938 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
b81d40f0 11939 (c-before-context-fontification-functions): New defvar, a list of
be8b11bb
AM
11940 functions to be run just before context (etc.) font locking.
11941
11942 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
b81d40f0 11943 New, functionality extracted from
be8b11bb 11944 c-neutralize-syntax-in-and-mark-CPP.
b81d40f0 11945 (c-in-after-change-fontification): New variable.
be8b11bb
AM
11946 (c-after-change): Set c-in-after-change-fontification.
11947 (c-set-fl-decl-start): Rejig its interface, so it can be called
11948 from both after-change and context fontifying.
b81d40f0
JB
11949 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
11950 New functions.
11951 (c-standard-font-lock-fontify-region-function): New variable.
11952 (c-font-lock-fontify-region): New function.
be8b11bb 11953
341cf6ac
JL
119542011-12-24 Juri Linkov <juri@jurta.org>
11955
11956 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
11957 (Bug#10348)
11958
bffcee0a
MA
119592011-12-23 Michael Albinus <michael.albinus@gmx.de>
11960
11961 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
11962 existence of source file. (Bug#10325)
11963
cb5e207c
AM
119642011-12-23 Alan Mackenzie <acm@muc.de>
11965
11966 Fix unstable fontification inside templates.
11967
b81d40f0
JB
11968 * progmodes/cc-langs.el (c-before-font-lock-functions):
11969 Newly created from the singular version. The (c c++ objc) entry now
cb5e207c
AM
11970 additionally has c-set-fl-decl-start. The other languages (apart
11971 from AWK) have that as a single entry.
11972
b81d40f0
JB
11973 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11974 The functionality for "local" declarations has been extracted to
cb5e207c
AM
11975 c-set-fl-decl-start.
11976
b81d40f0
JB
11977 * progmodes/cc-mode.el (c-common-init, c-after-change):
11978 Changes due to pluralisation of c-before-font-lock-functions.
cb5e207c
AM
11979 (c-set-fl-decl-start): New function, extracted from
11980 c-font-lock-enclosing-decls and enhanced.
11981
60ff536c
JB
119822011-12-23 Juanma Barranquero <lekktu@gmail.com>
11983
11984 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
11985
1c4757d6
JL
119862011-12-22 Juri Linkov <juri@jurta.org>
11987
11988 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
11989
d031f2c7
CY
119902011-12-22 Chong Yidong <cyd@gnu.org>
11991
11992 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
11993
bace743a
DA
119942011-12-21 Drew Adams <drew.adams@oracle.com>
11995
11996 * files.el (file-remote-p): Fix docstring. (Bug#10319)
11997
728a1f2b
JC
119982011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11999
12000 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
12001
0d373f73
TZ
120022011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
12003
fec0aaa4
TZ
12004 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
12005 highlighting and support. Fix up comments for capitalization.
12006 (cfengine-mode-debug): New var.
12007 (cfengine3-mode): Change the modeline indicator to "CFE3".
12008 (cfengine3-font-lock-keywords): Improve defun highlighting.
12009 (cfengine2-actions): Rename from `cfengine-actions'.
12010 (cfengine2-font-lock-keywords): Rename from
12011 `cfengine-font-lock-keywords'.
12012 (cfengine2-imenu-expression): Rename from
12013 `cfengine-imenu-expression'.
12014 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
12015 (cfengine2-beginning-of-defun): Rename from
12016 `cfengine-beginning-of-defun'.
12017 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
12018 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
12019 (cfengine2-mode): Rename from `cfengine-mode'. Change the
12020 modeline indicator to "CFE2".
12021 (cfengine-mode): Defalias to `cfengine-auto-mode'.
12022 (cfengine-mode-abbrevs): Mark obsolete.
0d373f73 12023
bc86f573
CY
120242011-12-21 Chong Yidong <cyd@gnu.org>
12025
12026 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
12027 filename argument.
12028
d45ba96b
MR
120292011-12-20 Martin Rudalics <rudalics@gmx.at>
12030
12031 * window.el (window-normalize-buffer-to-display): Remove.
12032 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
12033
a6198c90
CY
120342011-12-19 Chong Yidong <cyd@gnu.org>
12035
12036 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
12037 Don't signal an error in a predicate function; return non-nil.
12038 (vc-dir-mark-file): Move the error here.
12039 (vc-dir-mark-unmark): If acting on the region, keep going if one
12040 of the entries cannot be marked/unmarked.
12041 (vc-dir-mark-all-files): If current entry is a directory, mark
12042 only child files, as documented.
12043
34c5fb55
VB
120442011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
12045
12046 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
12047 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
12048 addition.
12049
c803b2b7
JD
120502011-12-18 Jan Djärv <jan.h.d@swipnet.se>
12051
12052 * term/ns-win.el (ns-get-selection-internal)
12053 (ns-store-selection-internal): Declare.
1154d12e
JB
12054 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
12055 Declare as obsolete.
12056 (ns-get-pasteboard, ns-paste-secondary):
12057 Use ns-get-selection-internal.
41e9b956 12058 (ns-set-pasteboard, ns-copy-including-secondary):
1154d12e 12059 Use ns-store-selection-internal.
c803b2b7 12060
9cff91f8 120612011-12-17 Chong Yidong <cyd@gnu.org>
99a289d9
CY
12062
12063 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
9cff91f8 12064 (vc-deduce-fileset): Doc fix.
99a289d9 12065
f16c898a
AS
120662011-12-16 Andreas Schwab <schwab@linux-m68k.org>
12067
12068 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
12069
763237c4
SS
120702011-12-13 Sam Steingold <sds@gnu.org>
12071
12072 * man.el (Man-getpage-in-background): When running under a
12073 window-system, ignore $MANWIDTH and $COLUMNS.
12074
5fc1c122
KH
120752011-12-15 Kenichi Handa <handa@m17n.org>
12076
12077 * language/ethio-util.el: Change coding tag to utf-8-emacs.
12078 (setup-ethiopic-environment-internal): Comment out key-binding for
12079 ethio-toggle-punctuation.
12080
13d49cbb
AM
120812011-12-13 Alan Mackenzie <acm@muc.de>
12082
898169a2
AM
12083 Add the switch statement to AWK Mode.
12084
7a71b18d 12085 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
898169a2
AM
12086 "default" to the keywords regexp.
12087
7a71b18d 12088 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
898169a2 12089 expression as the rest.
1d00653d
SM
12090 (c-nonlabel-token-key): Allow string literals for AWK.
12091 Refactor for the other modes.
898169a2 12092
13d49cbb 12093 Large brace-block initialisation makes CC Mode slow: Fix.
1d00653d 12094 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
13d49cbb
AM
12095 routines. Limit backward searching in c-font-lock-enclosing.decl.
12096
12097 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
12098 pp-state and literal type in addition to the limits.
1d00653d 12099 (c-state-safe-place): New defun, extracted from c-state-literal-at.
13d49cbb 12100 (c-state-literal-at): Use the above new defun.
1d00653d
SM
12101 (c-slow-in-literal, c-fast-in-literal): Remove.
12102 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
13d49cbb
AM
12103
12104 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
12105 being in a literal. Add a limit for backward searching.
12106
12107 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
12108 c-slow-in-literal.
12109
15e0efc7
SM
121102011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
12111
12112 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
12113
454592a6
MR
121142011-12-13 Martin Rudalics <rudalics@gmx.at>
12115
12116 * window.el (delete-other-windows): Use correct frame in call to
12117 window-with-parameter.
12118
87393f26
DP
121192011-12-12 Daniel Pfeiffer <occitan@t-online.de>
12120
12121 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
12122 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
12123 (makefile-gmake-statements, makefile-makepp-statements):
12124 Use it and add new makepp keywords.
12125 (makefile-makepp-font-lock-keywords): Add new patterns.
12126 (makefile-match-function-end): Match new [...] and [[...]].
12127
11636b22
JB
121282011-12-11 Juanma Barranquero <lekktu@gmail.com>
12129
12130 * ses.el (ses-call-printer-return, ses-cell-property-get)
12131 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
12132 (ses-create-cell-variable, ses-reset-header-string)
12133 (ses-cell-set-formula, ses-repair-cell-reference-all)
12134 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
12135 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
12136 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
12137 (ses-aset-with-undo, ses-load, ses-truncate-cell)
12138 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
12139 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
12140 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
12141 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
12142 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
12143 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
12144 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
12145 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
12146
cf018193
VB
121472011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
12148
12149 * ses.el: The overall change is to add cell renaming, that is
12150 setting fancy names for cell symbols other than name matching
12151 "\\`[A-Z]+[0-9]+\\'" regexp .
12152 (ses-create-cell-variable): New defun.
12153 (ses-relocate-formula): Relocate formulas only for cells the
12154 symbols of which are not renamed, i.e. symbols whose names do not
12155 match regexp "\\`[A-Z]+[0-9]+\\'".
12156 (ses-relocate-all): Relocate values only for cells the symbols of
12157 which are not renamed.
12158 (ses-load): Create cells variables as the (ses-cell ...) are read,
12159 in order to check row col consistency with cell symbol name only
12160 for cells that are not renamed.
12161 (ses-replace-name-in-formula): New defun.
12162 (ses-rename-cell): New defun.
12163
ee957461
CY
121642011-12-11 Chong Yidong <cyd@gnu.org>
12165
12166 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
12167 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
12168
9a9e9ef0
MR
121692011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
12170
12171 * window.el (other-window): Fix docstring.
12172
92a8eba5
EZ
121732011-12-10 Eli Zaretskii <eliz@gnu.org>
12174
12175 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
1d00653d
SM
12176 `from' or `to' address before taking its substring.
12177 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
92a8eba5
EZ
12178 encoded name is chopped in the middle of the encoded string, and
12179 thus displayed encoded.
12180
e152e577
JB
121812011-12-10 Juanma Barranquero <lekktu@gmail.com>
12182
12183 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
12184
e5d84bfe
EZ
121852011-12-10 Eli Zaretskii <eliz@gnu.org>
12186
12187 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
12188 to use texinfo-update-node and commands that call it if the
12189 Texinfo file uses @node lines without next/prev/up pointers.
b8830d28 12190 Correct outdated description about texinfo-master-menu.
e5d84bfe
EZ
12191 (texinfo-all-menus-update, texinfo-master-menu)
12192 (texinfo-update-node, texinfo-every-node-update)
12193 (texinfo-multiple-files-update): Doc fix. Warn against updating
12194 all the @node lines.
12195 (texinfo-master-menu): Only call texinfo-update-node if the prefix
b8830d28
EZ
12196 argument is numeric. Explain better in the doc string what the
12197 function really does.
12198 (texinfo-insert-master-menu-list): Improve the error message
12199 displayed if there's no menu in the Top node.
12200 (Bug#2975) See also this thread:
e5d84bfe
EZ
12201 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
12202
1d84e9bb
MG
122032011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
12204
12205 * speedbar.el (speedbar-supported-extension-expressions):
12206 Add .adb and .ads, commonly used for Ada source code (bug#10256).
12207
382c953b
JB
122082011-12-09 Juanma Barranquero <lekktu@gmail.com>
12209
12210 * printing.el (pr-mode-alist):
12211 * simple.el (filter-buffer-substring-functions)
12212 (completion-list-insert-choice-function):
12213 * window.el (window-with-parameter, window-atom-root)
12214 (window-sides-slots, window-size-fixed, window-min-delta)
12215 (window-max-delta, window--resize-mini-window)
12216 (window--resize-child-windows-normal, window-tree)
12217 (delete-other-windows, quit-window, split-window)
12218 (display-buffer-record-window, special-display-buffer-names)
12219 (special-display-regexps, special-display-popup-frame)
12220 (same-window-p, split-window-sensibly)
12221 (display-buffer-overriding-action, display-buffer-alist)
12222 (display-buffer-base-action, display-buffer, switch-to-buffer)
12223 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
12224 (fit-window-to-buffer, recenter-positions)
12225 (mouse-autoselect-window-state, mouse-autoselect-window-select):
12226 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
12227 and remove unneeded backslashes in docstrings.
12228
39c9faef
SM
122292011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
12230
98449af8
SM
12231 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
12232
39c9faef
SM
12233 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
12234 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
12235 end in ".mk".
12236 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
12237 when reading the makefile (bug#10116).
12238
86ed9fdc
SM
122392011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12240
12241 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
12242 (bug#10116).
12243
5580f89d
GM
122442011-12-06 Glenn Morris <rgm@gnu.org>
12245
12246 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
12247
28d3917c
CY
122482011-12-06 Chong Yidong <cyd@gnu.org>
12249
12250 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
12251
a98edce9
JB
122522011-12-06 Juanma Barranquero <lekktu@gmail.com>
12253
12254 * textmodes/table.el (table-shorten-cell): Fix typo.
12255
e65adfac
CG
122562011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
12257
12258 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
12259
71cc0b74
EZ
122602011-12-05 Eli Zaretskii <eliz@gnu.org>
12261
12262 * descr-text.el (describe-char): Fix display of strong
12263 right-to-left characters and directional embeddings and overrides.
12264
12265 * simple.el (what-cursor-position): Fix display of codepoints of
12266 strong right-to-left characters.
12267
315bc30d
CY
122682011-12-05 Chong Yidong <cyd@gnu.org>
12269
12270 * faces.el (read-color): Doc fix.
12271
58a70b94
GM
122722011-12-05 Glenn Morris <rgm@gnu.org>
12273
12274 * align.el (align--set-marker): Add doc-string.
12275 Don't try to move something that is not a marker. (Bug#10216)
12276
5158face
GM
122772011-12-04 Glenn Morris <rgm@gnu.org>
12278
12279 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
12280 overly zealous deletion of trailing whitespace.
12281
520fca41
JB
122822011-12-04 Juanma Barranquero <lekktu@gmail.com>
12283
12284 * server.el (server-delete-client): On Windows, do not try to delete
12285 the only terminal.
12286 (server-process-filter): On Windows, treat requests for a tty frame as
12287 if they were for a GUI frame if the running server is in GUI mode.
12288
5e605a2e
GM
122892011-12-03 Glenn Morris <rgm@gnu.org>
12290
12291 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
12292
5c3fe83f
SM
122932011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
12294
6f5e57e7
SM
12295 * electric.el: Streamline electric-indent's hook.
12296 (electric-indent-chars): Revert to simple list.
12297 (electric-indent-functions): New var.
12298 (electric-indent-post-self-insert-function): Use it.
12299
5c3fe83f
SM
12300 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
12301 there's no inferior buffer (bug#10196).
12302 (prolog-consult-compile): Don't use toggle-read-only.
12303
6bdac736
MA
123042011-12-02 Michael Albinus <michael.albinus@gmx.de>
12305
12306 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
12307 interrupt. (Bug#10187)
12308
6131ba7f
SM
123092011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
12310
99c79fee
SM
12311 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
12312 (bug#9160).
12313
6131ba7f
SM
12314 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
12315 (bug#10191).
12316
cb0a02ea
JL
123172011-12-02 Juri Linkov <juri@jurta.org>
12318
12319 * info.el (Info-search): Display "end of manual" when Isearch
12320 reaches the end of single-file Info manual. (Bug#9918)
12321
66e0570c
EZ
123222011-12-02 Eli Zaretskii <eliz@gnu.org>
12323
12324 * isearch.el (isearch-message-prefix): Run the input method part
12325 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
12326
02b16839
JL
123272011-12-02 Juri Linkov <juri@jurta.org>
12328
12329 * isearch.el (isearch-occur): Use `word-search-regexp' for
12330 `isearch-word'.
12331 (isearch-search-and-update): Add condition for `isearch-word' and
12332 call `word-search-regexp'. (Bug#10145)
12333
0b950688
GM
123342011-12-01 Glenn Morris <rgm@gnu.org>
12335
12336 * eshell/em-hist.el (eshell-hist-initialize):
12337 Handle eshell-history-size nil and HISTSIZE set or unset.
e8087a76 12338 (eshell-history-file-name, eshell-history-size): Fix custom type.
0b950688 12339
9505c3c7
SM
123402011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
12341
12342 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
12343
1bbe96b2 123442011-12-01 Michael McNamara <mac@mail.brushroad.com>
6288f0ca 12345
a1beca85
SM
12346 * progmodes/verilog-mode.el (verilog-pretty-expr):
12347 Rework verilog-pretty-expr to handle new assignment operators in system
6288f0ca
WS
12348 verilog, such as += *= and the like.
12349 (verilog-assignment-operator-re): Regular expression to find the
12350 assigment operator in a verilog assignment.
12351 (verilog-assignment-operation-re): Regular expression to find an
12352 assignment statement for pretty-expr.
12353 (verilog-in-attribute-p): Query returns true if point is in an
12354 attribute context; used to skip these for expression line up from
12355 pretty-expr.
12356 (verilog-in-parameter-p): Query returns true if point is in an
12357 parameter definition context; used to skip these for expression
12358 line up from pretty-expr.
12359 (verilog-in-parenthesis-p): Query returns true if point is in a
12360 parenthetical expression, specifically ( ) but not [ ] or { };
12361 used by pretty-expr.
12362 (verilog-just-one-space): If there is no space, don't add one.
12363 (verilog-get-lineup-indent-2): Specifically skip just attribute
12364 contexts for expression lineup, rather than skipping all
12365 parenthetical expressions.
12366 (verilog-calculate-indent): Fix comment, and fix indent.
12367 (verilog-do-indent): Indent declarations in lists (suggested by
12368 Joachim Lechner).
12369 (verilog-mode-abbrev-table): Populate abbrev mode with the various
12370 skeleton items.
12371 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
12372 by Alain Mellan).
12373
1bbe96b2 123742011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6288f0ca
WS
12375
12376 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
12377 parameters with embedded comments. Reported by Ray Stevens.
12378 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
12379 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
12380 Reported by Tim Holt.
12381 (verilog-auto): Fix AUTOing a upper module then AUTOing module
12382 instantiated by upper module causing wrong expansion until AUTOed a
12383 second time. Reported by K C Buckenmaier.
12384 (verilog-diff-auto): Fix showing .* as a difference when
12385 `verilog-auto-star-save' off. Reported by Dan Dever.
12386 (verilog-auto-reset, verilog-read-always-signals)
12387 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
12388 temporary signals in reset list if
12389 verilog-auto-reset-blocking-in-non is nil, and match assignment
a1beca85
SM
12390 style to each signal's assignment type, bug381.
12391 Reported by Thomas Esposito.
6288f0ca
WS
12392 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
12393 (verilog-uvm-statement-re): Support UVM indentation and
12394 highlighting, with old OVM keywords only.
a1beca85 12395 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
1d00653d
SM
12396 Support AUTOTIEOFF creating non-wire data types.
12397 Suggested by Jonathan Greenlaw.
6288f0ca
WS
12398 (verilog-auto-insert-lisp, verilog-delete-to-paren)
12399 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
12400 (verilog-inject-sense, verilog-read-inst-pins)
a1beca85
SM
12401 (verilog-read-sub-decls, verilog-read-sub-decls-line):
12402 Fix mismatching parenthesis inside commented out code when deleting
382c953b 12403 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6288f0ca
WS
12404 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
12405 non-numeric vector width. Reported by Alex Reed.
12406 (verilog-auto-ascii-enum): Add "onehot" option to work around not
382c953b 12407 detecting signals with parameter widths. Reported by Alex Reed.
a1beca85
SM
12408 (verilog-auto-delete-trailing-whitespace):
12409 With `verilog-auto-delete-trailing-whitespace' remove trailing
6288f0ca
WS
12410 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
12411 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
12412 Fix verilog-scan-cache corruption when running user AUTO expansion
12413 hooks that call indentation routines.
12414 (verilog-simplify-range-expression): Fix typo ignoring lower case
12415 identifiers.
12416 (verilog-delete-auto): Fix delete-autos to also remove user created
12417 automatics, as long as they start with AUTO.
12418 (verilog-batch-diff-auto, verilog-diff-auto)
12419 (verilog-diff-function): Add `verilog-diff-auto' and bind to
12420 "C-c?" to report differences in AUTO expansion, ignoring spaces.
12421 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
12422 (verilog-in-paren-quick, verilog-re-search-backward-quick)
a1beca85
SM
12423 (verilog-re-search-forward-quick, verilog-syntax-ppss):
12424 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6288f0ca
WS
12425 is disabled and its cache will get corrupt, causing AUTOS not to
12426 expand. Instead use only -quick functions.
12427 (verilog-scan-region): Fix scanning over escaped quotes.
12428 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
12429 (verilog-re-search-backward-quick)
12430 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
12431 related functions now ignore strings, to fix misparsing of strings
12432 with magic comments embedded in them.
a1beca85
SM
12433 (verilog-read-auto-template):
12434 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
12435 Reported by Brad Dobbie.
12436 (verilog-read-auto-template):
12437 Fix 'verilog-auto-inst-template-numbers' with comments.
6288f0ca 12438 Reported by Brad Dobbie.
6288f0ca
WS
12439 (verilog-auto-inst, verilog-auto-inst-param)
12440 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
12441 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
12442 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
a1beca85
SM
12443 debugging templates without merge conflicts, bug357.
12444 Reported by Brad Dobbie.
12445 (verilog-read-auto-template):
12446 Fix verilog-auto-inst-template-numbers with multiple templates.
6288f0ca
WS
12447 Reported by Brad Dobbie.
12448 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
12449 abbrevs so user won't be asked to save.
12450 (verilog-read-auto-lisp-present): Fix to start at beginning of
12451 buffer in case called outside of verilog-auto.
12452 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
12453 to "X-2". Reported by Matthew Myers.
12454 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
12455 all inputs from module templates. Reported by Leith Johnson.
12456 (verilog-module-inside-filename-p): Fix locating programs as with
12457 modules.
12458 (verilog-auto-inst-port): Fix vl-width expressions when using
12459 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
12460 (verilog-decls-get-regs, verilog-decls-get-signals,
12461 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
12462 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
12463 verilog-read-decls): Combine reg and wire structures into one var
12464 structure to represent SystemVerilog concepts.
12465 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
12466 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
a1beca85
SM
12467 (verilog-auto-wire-type, verilog-insert-definition):
12468 Add verilog-auto-wire-type and AUTOLOGIC to support using
6288f0ca
WS
12469 SystemVerilog "logic" keyword instead of "wire"/"reg".
12470 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
12471 to declares outputs that also have assignments (presumably in an
a1beca85
SM
12472 ifdef or generate if so there's not a driver conflict).
12473 Reported by Matthew Myers.
12474 (verilog-auto-declare-nettype, verilog-insert-definition):
12475 Add verilog-auto-declare-nettype to fix declarations using
6288f0ca
WS
12476 `default_nettype none. Reported by Julian Gorfajn.
12477 (verilog-read-always-signals-recurse, verilog-read-decls)
12478 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
12479 malformed end statement, bug325. Reported by Joshua Wise and
12480 Andrew Drake.
12481 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
12482 (verilog-inst-comment-re): Fix not deleting Interfaced comment
1d00653d
SM
12483 when expanding .* in interfaces, bug320.
12484 Reported by Pierre-David Pfister.
6288f0ca 12485 (verilog-read-module-name): Fix import statements between module
1d00653d
SM
12486 name and open parenthesis, bug317.
12487 Reported by Pierre-David Pfister.
6288f0ca
WS
12488 (verilog-simplify-range-expression): Fix simplification of
12489 multiplications inside AUTOWIRE connections, bug303.
12490 (verilog-auto-inst-port): Support parameter expansion in
12491 multidimensional arrays.
12492 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
12493 after "assert property". Reported by Julian Gorfajn.
12494 (verilog-simplify-range-expression): Fix "couldn't merge" errors
12495 with multiplication, bug303.
12496 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
12497 Reported by Jan Frode Lonnum.
12498
1bbe96b2
GM
124992011-11-30 Juanma Barranquero <lekktu@gmail.com>
12500
12501 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
12502 (hfy-shell-file-name, hfy-shell):
12503 * international/fontset.el (x-decompose-font-name): Fix typos.
12504
125052011-11-29 Ken Brown <kbrown@cornell.edu>
12506
12507 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
12508 (gdb-version): Remove defvar.
12509 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
12510 (gdb-gud-context-command, gdb-non-stop-handler)
12511 (gdb-current-context-command, gdb-stopped): Use it.
12512 (gdb-init-1): Enable pretty printing here.
6131ba7f
SM
12513 (gdb-non-stop-handler): Don't enable pretty-printing here.
12514 Check to see if the target supports non-stop mode; if not, turn off
1bbe96b2
GM
12515 non-stop mode. Use the following.
12516 (gdb-check-target-async): New defun.
12517 (gud-watch, gdb-stopped): Fix whitespace.
12518 (gdb-get-source-file): Don't try to display the source file if
12519 `gdb-main-file' is nil.
12520
125212011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12522
12523 * align.el: Try to generate fewer markers (bug#10047).
12524 (align--set-marker): New macro.
12525 (align-region): Use it.
12526
c935221f
SM
125272011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12528
12529 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
12530
e70b5064
CY
125312011-11-29 Chong Yidong <cyd@gnu.org>
12532
12533 * indent.el (indent-for-tab-command, indent-according-to-mode):
12534 Doc fix.
12535 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
12536
f3af92b7
MA
125372011-11-29 Michael Albinus <michael.albinus@gmx.de>
12538
12539 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
12540 aware of remote file names. (Bug#10124)
12541
ed472be9
CY
125422011-11-29 Chong Yidong <cyd@gnu.org>
12543
12544 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
12545
24510c22
SM
125462011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12547
12548 * files.el (find-file): Don't use force-same-window (bug#10144).
12549 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
12550 use pop-to-buffer if the selected window can't be used.
12551 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
12552
c60c3703
EZ
125532011-11-28 Eli Zaretskii <eliz@gnu.org>
12554
12555 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
12556 special-mode-map.
12557
e95def75
CY
125582011-11-28 Chong Yidong <cyd@gnu.org>
12559
12560 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
12561
c3f1c606
NR
125622011-11-27 Nick Roberts <nickrob@snap.net.nz>
12563
12564 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
12565 gdb-get-source-file-list on gdb-create-source-file-list.
12566
00db469c
EZ
125672011-11-26 Eli Zaretskii <eliz@gnu.org>
12568
12569 * whitespace.el (whitespace-newline): Use a different foreground
12570 color for 16-color light-background displays.
12571
4ad3bc2a
CY
125722011-11-24 Chong Yidong <cyd@gnu.org>
12573
12574 * window.el (display-buffer--special-action): Doc fix.
12575
e9fce1ac
JB
125762011-11-25 Juanma Barranquero <lekktu@gmail.com>
12577
12578 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
12579 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
12580 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
12581 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
12582 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
12583 (avl-tree-stack-first):
12584 * emacs-lisp/cconv.el (cconv--analyse-use):
12585 * net/gnutls.el (gnutls-negotiate): Fix typos.
12586
cb825e5d
GM
125872011-11-24 Glenn Morris <rgm@gnu.org>
12588
3adbe224
GM
12589 * lpr.el (lpr-windows-system, lpr-lp-system):
12590 * mail/binhex.el (binhex-begin-line):
12591 * progmodes/grep.el (grep-history, grep-find-history):
12592 * textmodes/flyspell.el:
12593 * vc/pcvs-defs.el (cvs-global-menu):
12594 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
12595 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
12596 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
12597
321decc8
GM
12598 * net/tls.el: Fix case of "GnuTLS".
12599
420b63ad
GM
12600 * paths.el (rmail-file-name): Format doc-string for make-docfile.
12601
cb825e5d
GM
12602 * version.el (emacs-build-system): Give it a doc-string.
12603
a0649f08
JL
126042011-11-24 Juri Linkov <juri@jurta.org>
12605
12606 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
12607
c0bc0fd4
GM
126082011-11-24 Glenn Morris <rgm@gnu.org>
12609
12610 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
12611 if called on a non-mime message just toggle the headers. (Bug#8006)
12612
20db1522
JB
126132011-11-24 Juanma Barranquero <lekktu@gmail.com>
12614
12615 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
12616 (allout-lead-with-comment-string, allout-structure-deleted-hook)
12617 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
12618 (allout-rebullet-heading, allout-open-sibtopic)
12619 (allout-toggle-current-subtree-encryption)
12620 (allout-toggle-subtree-encryption, allout-encrypt-string)
12621 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
12622 (allout-distinctive-bullets-string, allout-auto-activation):
12623 * window.el (window-normalize-buffer-to-display):
12624 * progmodes/verilog-mode.el (verilog-batch-indent):
12625 * textmodes/bibtex.el (bibtex-field-braces-opt)
12626 (bibtex-field-strings-opt):
12627 * vc/cvs-status.el (cvs-tree-merge):
12628 Fix typos.
12629
7262a87c
MA
126302011-11-23 Michael Albinus <michael.albinus@gmx.de>
12631
12632 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
12633 `non-essential' to t, in order to avoid remote connections.
12634
283430a1
EZ
126352011-11-23 Eli Zaretskii <eliz@gnu.org>
12636
a1beca85
SM
12637 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12638 On MS-DOS and MS-Windows, compare with loaddefs.el
283430a1
EZ
12639 case-insensitively.
12640
d2992a38
ML
126412011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12642
12643 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
12644
50419064
GM
126452011-11-23 Glenn Morris <rgm@gnu.org>
12646
da94eca1
GM
12647 * paths.el (rmail-file-name): Reformat the doc-string so that it
12648 is picked up.
12649
9aac4de2
GM
12650 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
12651 (rmail-auto-file): Ignore case in the "special" field names,
12652 as mail-fetch-field does for all others.
12653
8038d2d2
GM
12654 * mail/rmail.el (rmail-forward):
12655 * mail/rmailkwd.el (rmail-set-label):
12656 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
12657 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
12658
f3fe222a
GM
12659 * mail/rmail.el (rmail-current-message): Doc fix.
12660
50419064
GM
12661 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
12662
28109f49
SM
126632011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12664
12665 * server.el (server-eval-and-print): Allow C-g (bug#6585).
12666
394c65f1
GM
126672011-11-22 Glenn Morris <rgm@gnu.org>
12668
12669 * mail/rmailmm.el (test-rmail-mime-handler)
12670 (test-rmail-mime-bulk-handler)
12671 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
12672
f2a0aa3a
JL
126732011-11-21 Juri Linkov <juri@jurta.org>
12674
1154d12e
JB
12675 * calc/calc.el (calc-read-key-sequence):
12676 Let-bind `input-method-function' to nil. (Bug#10018)
f2a0aa3a 12677
9c34a344
LMI
126782011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12679
12680 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
12681 Tell the caller that the next line needs recomputation, even
12682 though it doesn't start a sexp (bug#10094).
12683
f04a3be9
SM
126842011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12685
12686 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
12687
7978747f
SM
126882011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12689
f04a3be9
SM
12690 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12691 Use force-same-window.
7978747f 12692
fe7a3057
JB
126932011-11-20 Juanma Barranquero <lekktu@gmail.com>
12694
12695 * descr-text.el (describe-char-unicode-data):
12696 * json.el (json-string-escape):
12697 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
12698 (Footnote-unicode, Footnote-style-p):
12699 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
12700
24901d61
CY
127012011-11-20 Chong Yidong <cyd@gnu.org>
12702
12703 * window.el (replace-buffer-in-windows): Restore interactive spec.
12704
bac7ff22
SM
127052011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12706
24f3d7b9
SM
12707 * electric.el (electric-indent-mode): Fix last change (too optimistic).
12708
bac7ff22
SM
12709 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
12710 (byte-compile-global-not-obsolete-vars): New var.
12711 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
12712 Use it.
12713 (byte-compile-warn-obsolete): Align text with the one in *Help*.
12714
cd1181db
JB
127152011-11-20 Juanma Barranquero <lekktu@gmail.com>
12716
12717 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
12718 * progmodes/pascal.el (electric-pascal-equal):
12719 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
12720 * xml.el (xml-substitute-special): Fix typos.
12721
7fb18e9e
GM
127222011-11-20 Glenn Morris <rgm@gnu.org>
12723
12724 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
12725 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
12726 Doc fixes.
12727 (rmail-decode-mime-charset): Mark as obsolete.
12728
12729 * mail/rmailsum.el (rmail-message-regexp-p-1):
12730 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
12731 Before using mime functions, check they are set. (Bug#10077)
12732
d5a6b3ba
JL
127332011-11-19 Juri Linkov <juri@jurta.org>
12734
12735 * info.el (Info-finder-find-node): Use `package--builtins' instead
12736 of `package-alist'. Use node names formed by the pattern "Keyword "
12737 and the keyword name.
12738
e981b61f
AS
127392011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12740
1d00653d 12741 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
e981b61f 12742
3ffbc301
JL
127432011-11-19 Juri Linkov <juri@jurta.org>
12744
12745 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
12746 that calls `revert-buffer' on all Info buffers. (Bug#9915)
12747 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
12748 `old-history', `old-history-forward'. Add let-binding
12749 `window-selected'. Remove calls to `kill-buffer',
12750 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
12751 before calling `Info-find-node', so `Info-find-node-2' will reread
12752 the Info file. Restore window positions only when `window-selected'
12753 is non-nil.
12754
30c62133
JL
127552011-11-19 Juri Linkov <juri@jurta.org>
12756
12757 * isearch.el (isearch-lazy-highlight-new-loop):
12758 Remove condition `(not isearch-error)'. (Bug#9918)
12759
12760 * misearch.el (multi-isearch-search-fun): Add condition
12761 `(not bound)' to ignore lazy-highlighting search.
12762 Add the search-failed message "end of multi" when the end of
12763 multi-sequence is reached. Uncapitalize the search-failed
12764 message "Repeat for next buffer".
12765
12766 * info.el (Info-search): Add the search-failed message
12767 "end of the manual" when the end of the manual is reached
12768 in Isearch mode.
12769
645ca9cf
JL
127702011-11-19 Juri Linkov <juri@jurta.org>
12771
12772 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
12773 Use non-destructive `remove' instead of `delete' because
12774 `Info-history-list' stored to `Info-isearch-initial-history-list' in
12775 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
12776
df754f66
JL
127772011-11-19 Juri Linkov <juri@jurta.org>
12778
12779 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
12780 to nil instead of binding `search-ring' and `regexp-search-ring'.
12781 (Bug#9185)
12782
0e23d96a
EZ
127832011-11-19 Eli Zaretskii <eliz@gnu.org>
12784
12785 * simple.el (line-move): Force movement by logical lines for any
12786 hscrolled window, not only when auto-hscroll-mode is on.
12787 (line-move-visual): Update doc string to that effect. (Bug#10076)
12788
8a6ccb66
AS
127892011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12790
12791 * language/european.el (macintosh): Define as alias for mac-roman.
12792
49ae5b39
EZ
127932011-11-19 Eli Zaretskii <eliz@gnu.org>
12794
12795 * mail/rmailmm.el (rmail-mime-display-header)
12796 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
12797 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
12798 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
12799 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
12800 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
12801 of a raw aref.
12802 (rmail-mime-entity-segment): To get past the tagline, move forward
12803 2 more lines, to account for the 2 empty lines that precede and
12804 follow the line with the buttons.
12805 (rmail-mime-update-tagline): Move one more line, to get past the
12806 empty line that follows the buttons in the tagline. (Bug#9520)
12807
c56cad4a
MR
128082011-11-19 Martin Rudalics <rudalics@gmx.at>
12809
12810 * window.el (window-max-delta-1, window-min-delta-1)
12811 (window-min-size-1, window-state-get-1, window-state-put-1)
12812 (window-state-put-2): Use "window--" prefix.
12813
cbe71af3
SM
128142011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
12815
2ad52c60
SM
12816 * emacs-lisp/smie.el: Improve warnings and conflict detection.
12817 (smie-warning-count): New var.
12818 (smie-set-prec2tab): Use it.
12819 (smie-bnf->prec2): Improve warnings. Add docstring.
12820 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
12821 (smie-bnf--set-class): New function.
12822 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
12823 corner case.
12824
6944dbc1
SM
12825 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
12826 (compilation-error-properties, compilation-move-to-column):
12827 Handle compilation-first-column while in the target buffer.
12828
c400c4d7
SM
12829 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
12830 Don't hardcode point-min==1.
12831
6dbe3e96
SM
12832 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
12833 (eshell-rewrite-for-command): Remove workaround.
12834 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
12835 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
12836 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
12837
cbe71af3
SM
12838 * files-x.el (modify-file-local-variable): Obey commenting conventions.
12839
a8e1496d
GM
128402011-11-17 Glenn Morris <rgm@gnu.org>
12841
12842 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12843 Ignore buffer-local generated-autoload-file if it is the same
12844 as the global value. (Bug#10049)
12845
df85d315
JB
128462011-11-17 Juanma Barranquero <lekktu@gmail.com>
12847
12848 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
12849 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
12850 (reftex-toc-previous-heading, reftex-toc-max-level)
12851 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
12852 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
12853 (reftex-toc-do-promote, reftex-toc-promote-prepare)
12854 (reftex-toc-promote-action, reftex-toc-extract-section-number)
12855 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
12856 (reftex-toc-rename-label, reftex-toc-visit-location)
12857 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
12858 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
12859 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
12860 leaving "*toc*" only for references to the buffer.
12861
a0c2d0ae
MR
128622011-11-17 Martin Rudalics <rudalics@gmx.at>
12863
12864 * window.el (window-resize, delete-window, split-window):
12865 Replace window-splits by window-combination-resize.
1d00653d 12866 * cus-start.el (window-splits): Replace by window-combination-resize.
a0c2d0ae 12867
35c0bac8
GM
128682011-11-17 Glenn Morris <rgm@gnu.org>
12869
12870 * progmodes/sh-script.el (sh-font-lock-keywords-var):
12871 Make bash entry derive from sh entry, not shell entry.
12872
d0c8fc8a
MA
128732011-11-16 Michael Albinus <michael.albinus@gmx.de>
12874
7262a87c
MA
12875 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
12876 local file name.
12877
7877f373
JB
128782011-11-16 Juanma Barranquero <lekktu@gmail.com>
12879
12880 * menu-bar.el (menu-bar-file-menu):
12881 * printing.el (pr-ps-utility):
12882 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
12883 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
12884 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
12885 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
12886 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
12887 (icalendar--convert-cyclic-to-ical)
12888 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
12889 (icalendar--convert-ical-to-diary)
12890 (icalendar--convert-recurring-to-diary)
12891 (icalendar--convert-non-recurring-all-day-to-diary)
12892 (icalendar-import-format-sample):
12893 * progmodes/idlw-shell.el (idlwave-shell-mode):
12894 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
12895 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
12896 (vhdl-ps-print-init): Fix typos.
12897
10649b82
KM
128982011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
12899
9d0cfcd6
GM
12900 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
12901 FSF and collapse date sequence, obscure author/maintainer email address
12902 better, remove extra version line, track relocation of author's webpage.
10649b82 12903
9d0cfcd6
GM
12904 * progmodes/python.el (python-pdbtrack-input-prompt)
12905 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
12906 regular python pdb prompts. Adjustments shamelessly taken exactly as
12907 suggested in EmacsWiki page (tiny change):
12908 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8642c216 12909
58179cce
JB
129102011-11-16 Juanma Barranquero <lekktu@gmail.com>
12911
12912 * expand.el (expand-pos, expand-index, expand-point):
12913 Remove redundant info from docstring.
12914 (expand-add-abbrevs): Doc fix.
12915 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
12916 (expand-sample-perl-mode-expand-list): Fix typos.
12917
12918 * net/dbus.el (dbus-event-member-name):
12919 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
12920 * term/pc-win.el (msdos-create-frame-with-faces):
12921 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
12922
b6f67890
MR
129232011-11-16 Martin Rudalics <rudalics@gmx.at>
12924
12925 * window.el (split-window, window-state-get-1)
12926 (window-state-put-1, window-state-put-2): Rename occurrences of
12927 window-nest to window-combination-limit.
1d00653d 12928 * cus-start.el (window-nest): Rename to window-combination-limit.
b6f67890 12929
ce7ddba0
CY
129302011-11-16 Chong Yidong <cyd@gnu.org>
12931
12932 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
12933 regexp (Bug#10033).
12934
3ae704f4
SM
129352011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12936
12937 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
12938 `completing-read' will remove *Completions* and will preserve
12939 current-buffer for us.
12940 (tmm-add-prompt): Users of *Completions* will always (re)set its
12941 major mode.
12942 (tmm-old-comp-map): Remove.
12943
6ad1cdde
GM
129442011-11-16 Glenn Morris <rgm@gnu.org>
12945
12946 * mail/rmailedit.el: Require rmailmm when compiling.
12947 (rmail-old-mime-state): New declaration.
12948 (rmail-edit-current-message): If editing a mime message,
12949 edit the "raw" message from the mbox buffer.
12950 (rmail-cease-edit): Handle mime messages. (Bug#9840)
12951
d20faa20
GM
129522011-11-15 Glenn Morris <rgm@gnu.org>
12953
12954 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
12955 which wasn't being used. Add optional arg to force given state.
12956 (rmail-mime): Add optional arg to force given state.
12957
c7015153
JB
129582011-11-15 Juanma Barranquero <lekktu@gmail.com>
12959
12960 * allout.el (allout-encryption-plaintext-sanitization-regexps):
12961 * frame.el (display-mm-dimensions-alist):
12962 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
12963 (outline-move-subtree-down):
12964 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
12965 (newsticker--treeview-do-get-node):
12966 * net/quickurl.el (quickurl-list-buffer-name):
12967 * progmodes/dcl-mode.el (dcl-mode):
12968 * progmodes/gdb-mi.el (gdb-mapcar*):
12969 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
12970
45261b50
GM
129712011-11-15 Glenn Morris <rgm@gnu.org>
12972
12973 * mail/rmail.el (rmail-file-coding-system): It's only ever used
12974 in a boolean sense, so just make it a boolean, and fix the doc.
12975 (rmail-show-mime-function, rmail-mime-feature)
12976 (rmail-require-mime-maybe): Doc fixes.
12977 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
12978
12979 * mail/rmailmm.el (rmail-show-mime): Doc fix.
12980
0d26e0b6
JB
129812011-11-15 Juanma Barranquero <lekktu@gmail.com>
12982
12983 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
12984 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
12985 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
12986 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
12987
447f30f6
GM
129882011-11-15 Glenn Morris <rgm@gnu.org>
12989
672b871d
GM
12990 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
12991 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
12992 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
12993 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
12994 (rmail-mime, rmail-show-mime): Doc fixes.
12995
f6aa5bb1
GM
12996 * term/ns-win.el (mode-line-frame-identification):
12997 Leave it alone. (Bug#10051)
12998
947cd66b
GM
12999 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
13000
447f30f6
GM
13001 * mail/rmailout.el (rmail-output-to-rmail-buffer):
13002 Handle empty buffers. (Bug#9978)
13003
0b381c7e
JB
130042011-11-14 Juanma Barranquero <lekktu@gmail.com>
13005
13006 * international/mule.el (define-charset):
13007 * mail/rmailmm.el (rmail-mime-find-header-encoding):
13008 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
13009 * progmodes/verilog-mode.el (verilog-backward-token):
13010 * textmodes/ispell.el (lookup-words):
13011 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
13012
71e027ac
GM
130132011-11-14 Glenn Morris <rgm@gnu.org>
13014
56632ce4
GM
13015 * progmodes/executable.el
13016 (executable-make-buffer-file-executable-if-script-p):
13017 Handle file-modes returning nil.
13018
40500957
GM
13019 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
13020 message - not necessary, and causes problems. (Bug#9831)
13021
071c2340
GM
13022 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
13023
d3cfca60
GM
13024 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
13025
71e027ac
GM
13026 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
13027 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
13028 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
13029
89d61221
MR
130302011-11-12 Martin Rudalics <rudalics@gmx.at>
13031
13032 * window.el (window-resize, delete-window): Use window-splits
13033 variable instead of function.
13034 (window-state-get-1, window-state-put-2, window-state-put):
13035 Don't deal with windows' splits status.
13036
98282f6f
GM
130372011-11-12 Glenn Morris <rgm@gnu.org>
13038
13039 * apropos.el (apropos-do-all, apropos-library, apropos-value)
13040 (apropos-documentation): Doc fixes.
13041
40a8bdf6
JB
130422011-11-11 Juanma Barranquero <lekktu@gmail.com>
13043
13044 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
13045 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
13046
65bd19ff
SM
130472011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
13048
13049 * electric.el (electric-indent-post-self-insert-function): Make it
13050 possible for a char to only indent in some circumstances.
13051 (electric-indent-mode): Simplify.
13052
54f9154c
MR
130532011-11-11 Martin Rudalics <rudalics@gmx.at>
13054
13055 * window.el (windows-with-parameter): Remove unused function.
13056 (windows-at-side): Rename to window-at-side-list.
13057 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
13058 (window-side-check, window-size-ignore, window-size-fixed-1)
13059 (window-in-direction-2): Prefix with "window--".
13060 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 13061
68cbc58b
GM
130622011-11-11 Glenn Morris <rgm@gnu.org>
13063
13064 * subr.el (eval-after-load): If FILE is already loaded,
13065 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
13066
b2621720
GM
130672011-11-10 Glenn Morris <rgm@gnu.org>
13068
9a4de110
GM
13069 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
13070 Call svn via vc-svn-command rather than vc-do-command.
13071 (vc-svn-command): Add --non-interactive. (Bug#9993)
13072 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
13073
b2621720
GM
13074 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13075 Add toggle-read-only. (Bug#7292)
13076 * files.el (toggle-read-only): Mention that it should only
13077 be used interactively. (Bug#10006)
13078
1dce7193
SM
130792011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13080
d9ac1a1e
SM
13081 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13082 Adjust regexp for OCaml warnings.
13083
0c325082
SM
13084 * electric.el (electric-pair-post-self-insert-function): Let user
13085 turn it off buffer-locally (bug#9932).
13086
90132c14
SM
13087 * progmodes/python.el (python-beginning-of-statement):
13088 Rewrite (bug#2703).
13089
1dce7193
SM
13090 * progmodes/compile.el: Better handle TABs (bug#9749).
13091 (compilation-internal-error-properties)
13092 (compilation-next-error-function): Obey the target buffer's
13093 compilation-error-screen-columns.
13094
c4e7c63a
JB
130952011-11-09 Juanma Barranquero <lekktu@gmail.com>
13096
13097 * progmodes/meta-mode.el: Remove obsolete comments.
13098 (meta-right-comment-regexp, meta-ignore-comment-regexp):
13099 Fix typos in docstrings.
13100
2cffd681
MR
131012011-11-09 Martin Rudalics <rudalics@gmx.at>
13102
13103 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 13104 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
13105 (window--resizable): New function. Make all callers of
13106 window-resizable call window--resizable instead.
13107 (window-resizable): Rewrite in terms of window--resizable.
13108
0edcba87
GM
131092011-11-08 Glenn Morris <rgm@gnu.org>
13110
13111 * progmodes/delphi.el (delphi-mode-syntax-table):
13112 Let define-derived-mode define a proper syntax table. (Bug#9994)
13113
4b0d61e3
SM
131142011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13115
13116 * window.el: Stay away from defsubst.
13117 (window-list-no-nils): Remove.
13118 (window-state-get-1, window-state-get): Use backquote instead.
13119
cd394be1 131202011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
fcbcac2e 13121
4b0d61e3 13122 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 13123 Fix incorrect use of default argument in `completing-read'.
13124
e1c2c6f2
MR
131252011-11-08 Martin Rudalics <rudalics@gmx.at>
13126
13127 * window.el (display-buffer-function, special-display-function):
13128 Mention display-buffer-record-window but do not mention
13129 help-setup parameter in doc-strings.
b3f4a882 13130 (window-min-delta): Fix doc-string typo.
e1c2c6f2 13131
105216ed
CY
131322011-11-08 Chong Yidong <cyd@gnu.org>
13133
13134 * window.el (window-total-height, window-total-width): Doc fix.
13135 (window-body-size): Move from C.
13136 (window-body-height, window-body-width): Move to C.
13137
0a9f9ab5
SM
131382011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13139
13140 * window.el: Make special-display like display-buffer-alist (bug#9532).
13141 (display-buffer--special-action): New function, morphed
13142 from display-buffer--special.
13143 (display-buffer): Use it to handle special-display-buffers at higher
13144 priority (just after display-buffer-alist).
13145 (display-buffer-fallback-action, display-buffer--other-frame-action)
13146 (pop-to-buffer-same-window): Remove display-buffer--special.
13147
a769dd15
GM
131482011-11-07 Glenn Morris <rgm@gnu.org>
13149
13150 * calendar/cal-menu.el (cal-menu-set-date-title):
13151 Do nothing if not in a calendar. (Bug#9976)
13152
05a61ee3
SM
131532011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
13154
13155 * files.el (find-file): Always use selected-window.
13156
be7f5545
MR
131572011-11-07 Martin Rudalics <rudalics@gmx.at>
13158
13159 * window.el (window-combinations): Make WINDOW argument
13160 mandatory. Rewrite doc-string.
13161 (walk-window-subtree, window-atom-check, window-min-delta)
13162 (window-max-delta, window--resize-this-window)
13163 (window--resize-root-window-vertically, window-tree)
13164 (balance-windows, window-state-put): Rewrite doc-strings as to
13165 not mention the term "subwindow".
13166 (window--resize-subwindows-skip-p): Rename to
13167 window--resize-child-windows-skip-p.
13168 (window--resize-subwindows-normal): Rename to
13169 window--resize-child-windows-normal.
13170 (window--resize-subwindows): Rename to
13171 window--resize-child-windows.
13172 (window-or-subwindow-p): Rename to window--in-subtree-p.
13173
3c6702ef
ML
131742011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13175
13176 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
13177 Ensure that mbox format messages end in two newlines (Bug#9974).
13178
49745b39
CY
131792011-11-06 Chong Yidong <cyd@gnu.org>
13180
13181 * window.el (window-combination-p): Function deleted; its
13182 side-effect is not used in any existing code.
13183 (window-combinations, window-combined-p): Call window-*-child
13184 directly.
13185
24300f5f
CY
131862011-11-05 Chong Yidong <cyd@gnu.org>
13187
13188 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
13189 (window-size-ignore, window-state-get): Callers changed.
13190 (window-normalize-window): Rename from window-normalize-any-window.
13191 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 13192 (window-normalize-live-window): Delete.
447f16b8
CY
13193 (window-combination-p, window-combined-p, window-combinations)
13194 (walk-window-subtree, window-atom-root, window-min-size)
13195 (window-sizable, window-sizable-p, window-size-fixed-p)
13196 (window-min-delta, window-max-delta, window-resizable)
13197 (window-resizable-p, window-full-height-p, window-full-width-p)
13198 (window-current-scroll-bars, window-point-1, set-window-point-1)
13199 (window-at-side-p, window-in-direction, window-resize)
13200 (adjust-window-trailing-edge, maximize-window, minimize-window)
13201 (window-deletable-p, delete-window, delete-other-windows)
13202 (record-window-buffer, unrecord-window-buffer)
13203 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
13204 (quit-window, split-window, window-state-put)
13205 (set-window-text-height, fit-window-to-buffer)
13206 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 13207
89bd5ee1
EZ
132082011-11-04 Eli Zaretskii <eliz@gnu.org>
13209
53479029
EZ
13210 * mail/rmail.el (rmail-simplified-subject): Decode subject with
13211 rfc2047-decode-string.
13212 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
13213 warnings.
13214
89bd5ee1
EZ
13215 * window.el (window-body-height, window-body-width): Mention in
13216 the doc string that the return values are in frame's canonical
13217 units. (Bug#9949)
13218
bd17fdee
AM
132192011-11-03 Alan Mackenzie <acm@muc.de>
13220
13221 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
13222 change in cc-engine.el.
13223
acc825c5
SM
132242011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
13225
13226 * window.el (switch-to-buffer): Use `force-same-window' interactively.
13227
1885e5b8
MR
132282011-11-02 Martin Rudalics <rudalics@gmx.at>
13229
13230 * window.el (quit-window): Call unrecord-window-buffer after
13231 showing another buffer in the window. (Bug#9937)
acc825c5 13232 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 13233
ebe06da9
JB
132342011-11-02 Juanma Barranquero <lekktu@gmail.com>
13235
13236 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
13237 Accept status with more than 9 shelves. (Bug#9935)
13238 Reported by Colin D Bennett <colin@gibibit.com>.
13239
4ee88440
MR
132402011-11-01 Martin Rudalics <rudalics@gmx.at>
13241
13242 * help.el (with-help-window): Don't reference
13243 temp-buffer-show-specifiers in doc-string.
13244
08e1d82c
AS
132452011-10-31 Andreas Schwab <schwab@linux-m68k.org>
13246
13247 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
13248 menu-item.
13249
84bd6e9e
VJL
132502011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13251
13252 * whitespace.el: New version 13.2.2.
13253 (whitespace-newline-mode): Disable properly. Reported by Sarah
13254 <EmacsWiki>.
13255
dba0634a
UJ
132562011-10-30 Ulf Jasper <ulf.jasper@web.de>
13257
13258 * net/newst-treeview.el: Remove "Time-stamp".
13259 (newsticker--group-manage-orphan-feeds): Do not call
13260 newsticker--treeview-tree-update.
db22a3c2
JB
13261 (newsticker-treeview-update, newsticker-treeview):
13262 Call newsticker--treeview-tree-update if necessary.
dba0634a 13263
3d8daefe
MR
132642011-10-30 Martin Rudalics <rudalics@gmx.at>
13265
13266 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
13267 (window-iso-combinations): Remove "iso-" infix.
13268 Suggested by Chong Yidong.
3d8daefe
MR
13269 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
13270 (window-max-delta-1, window-resize, window--resize-siblings)
13271 (window--resize-this-window, adjust-window-trailing-edge)
13272 (split-window, balance-windows-1)
13273 (shrink-window-if-larger-than-buffer):
13274 * calendar/calendar.el (calendar-generate-window):
db22a3c2 13275 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 13276
1bc4c3ae
SM
132772011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
13278
13279 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
13280 in place (bug#9907).
13281 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
13282 (eshell-rewrite-if-command, eshell-rewrite-for-command)
13283 (eshell-structure-basic-command, eshell-rewrite-while-command)
13284 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
13285 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
13286 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
13287 (eshell-do-pipelines-synchronously, eshell-eval-command):
13288 Use backquotes and prefer setq to set.
13289 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
13290 (eshell-macrop): Use functionp.
c1e2f5fa 13291 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 13292
30b65d9c
CY
132932011-10-30 Chong Yidong <cyd@gnu.org>
13294
13295 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
13296 instead of set-mark (Bug#9810).
13297
2d197ffb
CY
132982011-10-30 Chong Yidong <cyd@gnu.org>
13299
13300 * window.el (split-window-below, split-window-right): Rename from
13301 split-window-above-each-other and split-window-side-by-side
13302 respectively. All callers changed.
13303 (split-window-sensibly, split-window-sensibly): Use them.
13304 (split-window-keep-point): Doc fix.
13305
13306 * isearch.el: Add isearch-scroll property to split-window-below
13307 and split-window-right.
13308
13309 * follow.el (follow-mode):
13310 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
13311 * progmodes/ada-xref.el (ada-gdb-application):
13312 * emulation/vip.el (vip-buffer-in-two-windows):
13313 * image-dired.el (image-dired-dired-with-window-configuration):
13314 * dired-x.el (dired-do-find-marked-files):
13315 * dired.el (dired-pop-to-buffer):
13316 * bs.el (bs--show-with-configuration):
13317 * vc/emerge.el (emerge-setup-windows):
13318 * textmodes/two-column.el (2C-two-columns):
13319 * textmodes/reftex-toc.el (reftex-toc):
13320 * progmodes/gdb-mi.el (gdb-setup-windows):
13321 * progmodes/fortran.el (fortran-window-create):
13322 * net/newst-treeview.el (newsticker--treeview-window-init):
13323 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
13324 * emulation/tpu-edt.el (tpu-gold-map):
13325 * emulation/crisp.el (crisp-mode-map):
13326 * calendar/calendar.el (calendar-basic-setup): Callers changed.
13327
38bb2ca8
CY
133282011-10-29 Chong Yidong <cyd@gnu.org>
13329
aa4de341
CY
13330 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
13331
e1eb5385
CY
13332 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
13333
5d2ece3c
CY
13334 * textmodes/flyspell.el (flyspell-word): Fix char offset for
13335 forged Ispell output (Bug#7904).
13336
38bb2ca8
CY
13337 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
13338
d0af9f77
SM
133392011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13340
13341 * doc-view.el: Avoid ugly errors about not finding nil.
13342 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
13343 (doc-view-dvipdf-program, doc-view-unoconv-program)
13344 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
13345 Avoid nil or absolute file name as default value.
13346 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
13347
52bedd34
AM
133482011-10-28 Alan Mackenzie <acm@muc.de>
13349
db22a3c2 13350 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 13351
7e43cfa5
AM
133522011-10-28 Alan Mackenzie <acm@muc.de>
13353
13354 Amend the handling of c-beginning/end-of-defun in nested declaration
13355 scopes.
13356
52bedd34
AM
13357 * progmodes/cc-vars.el (c-defun-tactic): Move here from
13358 cc-langs.el. Change it to a defcustom.
7e43cfa5 13359
52bedd34
AM
13360 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
13361 cc-vars.el.
7e43cfa5 13362
d0af9f77
SM
13363 * progmodes/cc-engine.el (c-beginning-of-statement-1):
13364 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 13365
52bedd34 13366 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 13367 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
13368 (c-widen-to-enclosing-decl-scope): New function.
13369 (c-while-widening-to-decl-block): New macro.
13370 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
13371 outward for defun boundaries, and correspondingly change symbol
13372 `respect-enclosure' to `go-outward'.
13373 (c-declaration-limits): Change algorithm to report only the "innermost"
13374 defun's boundaries.
13375
1a2ce9ee
DD
133762011-10-28 Deniz Dogan <deniz@dogan.se>
13377
13378 * net/rcirc.el (rcirc-mode): Use hard newlines.
13379
bc97a826
AM
133802011-10-28 Alan Mackenzie <acm@muc.de>
13381
13382 Amend to indent and fontify macros "which include their own semicolon"
13383 correctly, using the "virtual semicolon" mechanism.
13384
52bedd34 13385 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 13386
d0af9f77 13387 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7877f373 13388 Recode to scan one line at a time rather than having \n and \r
58179cce 13389 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
bc97a826 13390 (c-forward-label): Amend for virtual semicolons.
58179cce 13391 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
bc97a826 13392
52bedd34
AM
13393 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
13394 of the new C macros.
bc97a826 13395
52bedd34 13396 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
13397 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
13398 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
13399 (c-opt-cpp-macro-define): Make into a full language variable.
13400 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
13401 AWK Mode (including \n, \r) removed, no longer needed.
13402
d0af9f77
SM
13403 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
13404 Invoke c-make-macro-with-semi-re.
bc97a826 13405
52bedd34
AM
13406 * progmodes/cc-vars.el (c-macro-with-semi-re):
13407 (c-macro-names-with-semicolon): New variables.
58179cce 13408 (c-make-macro-with-semi-re): New function.
bc97a826 13409
7a6c0941
SM
134102011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13411
13412 * vc/log-edit.el: Fill empty field rather than adding new one.
13413 (log-edit-add-field): New function.
13414 (log-edit-insert-changelog): Use it.
13415
b0c4cdcf
ML
134162011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13417
13418 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
13419
ee1f1da9
SM
134202011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13421
13422 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
13423 (gdb--check-interpreter): New function.
13424 (gdb): Use it.
13425
51bc5f8b
GM
134262011-10-27 Glenn Morris <rgm@gnu.org>
13427
416a2c45
GM
13428 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
13429 (least-positive-float, least-negative-float)
13430 (least-positive-normalized-float, least-negative-normalized-float)
13431 (float-epsilon, float-negative-epsilon):
13432 Remove unnecessary declarations.
13433
13434 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
13435 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
13436 (least-positive-float, least-negative-float)
13437 (least-positive-normalized-float, least-negative-normalized-float)
13438 (float-epsilon, float-negative-epsilon): Add doc-strings,
13439 based on those in cl.texi.
13440
51bc5f8b
GM
13441 * files.el (set-visited-file-name): If the major-mode changed,
13442 reload the local variables. (Bug#9796)
13443
15de15c6
CY
134442011-10-27 Chong Yidong <cyd@gnu.org>
13445
13446 * subr.el (change-major-mode-after-body-hook): New hook.
13447 (run-mode-hooks): Run it.
13448
ee1f1da9
SM
13449 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13450 Use change-major-mode-before-body-hook.
15de15c6
CY
13451
13452 * simple.el (fundamental-mode):
13453 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
13454 change introducing fundamental-mode-hook.
13455
5430d399
JB
134562011-10-26 Juanma Barranquero <lekktu@gmail.com>
13457
acc825c5 13458 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 13459
ad74a69e
MA
134602011-10-26 Michael Albinus <michael.albinus@gmx.de>
13461
13462 * ido.el (ido-file-name-all-completions-1): Do not require
c7015153 13463 tramp.el explicitly. (Bug#7583)
ad74a69e 13464
71d4c2a5
SM
134652011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
13466
13467 * progmodes/octave-mod.el:
13468 * progmodes/octave-inf.el: Update maintainer.
13469
b1f6fa26
CY
134702011-10-26 Chong Yidong <cyd@gnu.org>
13471
13472 * subr.el (with-wrapper-hook): Rewrite doc.
13473
3f04efd6
MA
134742011-10-25 Michael Albinus <michael.albinus@gmx.de>
13475
13476 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 13477 filenames "/method:foo:". (Bug#9793)
3f04efd6 13478
410488d3
SM
134792011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13480
13481 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
13482 (bug#9865).
13483
c1ebb47e
GM
134842011-10-24 Glenn Morris <rgm@gnu.org>
13485
13486 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
13487
7f5c46c7
MA
134882011-10-24 Michael Albinus <michael.albinus@gmx.de>
13489
13490 * notifications.el: Add the requirement of a running D-Bus session
13491 bus to the Commentary.
13492
db2440b6
JL
134932011-10-24 Juri Linkov <juri@jurta.org>
13494
13495 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
13496 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
13497 (Bug#9364)
13498
feecf435
JL
134992011-10-24 Juri Linkov <juri@jurta.org>
13500
13501 * info.el (Info-following-node-name-re): Add newline to the list
13502 of allowed characters for leading space. (Bug#9824)
13503
a3839de2
SM
135042011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13505
acc825c5
SM
13506 * progmodes/octave-inf.el (inferior-octave-mode-map):
13507 Fix C-c C-h binding.
a3839de2
SM
13508 * progmodes/octave-mod.el (octave-help): Remove.
13509
09388e76
MA
135102011-10-23 Michael Albinus <michael.albinus@gmx.de>
13511
13512 Sync with Tramp 2.2.3.
13513
13514 * net/tramp-cache.el (top): Pacify byte-compiler using
13515 `init-file-user' and `site-run-file'.
13516
13517 * net/trampver.el: Update release number.
13518
86c60681
CY
135192011-10-23 Chong Yidong <cyd@gnu.org>
13520
13521 * files.el (toggle-read-only): Remove obsolete comment about
13522 version control.
13523
13524 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
13525 for toggle-read-only. Note that this hasn't called vc-next-action
13526 since 2008-05-02, though it wasn't documented at the time.
13527
a3839de2
SM
13528 * vc/ediff-init.el (ediff-toggle-read-only-function):
13529 Use toggle-read-only.
86c60681 13530
cd5495ff
AM
135312011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
13532
13533 Fix bug #9560, sporadic wrong indentation; improve instrumentation
13534 of c-parse-state.
13535
00b77525 13536 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 13537 correct faulty logical expression.
cd5495ff
AM
13538 (c-parse-state-state, c-record-parse-state-state):
13539 (c-replay-parse-state-state): New defvar/defuns.
13540 (c-debug-parse-state): Use new functions.
13541
42ee24ed
MR
135422011-10-22 Martin Rudalics <rudalics@gmx.at>
13543
13544 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 13545 last fix. Use window-in-direction correctly.
42ee24ed 13546
a7dee7e7
CY
135472011-10-21 Chong Yidong <cyd@gnu.org>
13548
13549 * progmodes/idlwave.el (idlwave-mode):
13550 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
13551 require-final-newline; that's done in prog-mode.
13552 Suggested by Stefan Monnier.
a7dee7e7 13553
e07b9a6d
MR
135542011-10-21 Martin Rudalics <rudalics@gmx.at>
13555
13556 * mouse.el (mouse-drag-window-above)
13557 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
13558 (mouse-drag-mode-line-1, mouse-drag-header-line)
13559 (mouse-drag-vertical-line-rightward-window): Remove.
13560 (mouse-drag-line): New function.
13561 (mouse-drag-mode-line, mouse-drag-header-line)
13562 (mouse-drag-vertical-line): Call mouse-drag-line.
13563 * window.el (window-at-side-p, windows-at-side): New functions.
13564
7e1361d9
UM
135652011-10-21 Ulrich Mueller <ulm@gentoo.org>
13566
13567 * tar-mode.el (tar-grind-file-mode):
13568 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
13569
30fcaf3a
CY
135702011-10-21 Chong Yidong <cyd@gnu.org>
13571
13572 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
13573 * progmodes/vera-mode.el (vera-mode):
13574 Use mode-require-final-newline.
30fcaf3a 13575
516eddb0
GM
135762011-10-20 Glenn Morris <rgm@gnu.org>
13577
db22a3c2 13578 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 13579
10d5f513
CS
135802011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
13581
13582 * emulation/cua-base.el (cua-set-mark): Fix case of string.
13583
ac6c8639
CY
135842011-10-20 Chong Yidong <cyd@gnu.org>
13585
13586 * emulation/cua-base.el (cua-mode):
13587 * mail/footnote.el (footnote-mode):
13588 * mail/mailabbrev.el (mail-abbrevs-mode):
13589 * net/xesam.el (xesam-minor-mode):
13590 * progmodes/bug-reference.el (bug-reference-mode):
13591 * progmodes/cap-words.el (capitalized-words-mode):
13592 * progmodes/compile.el (compilation-minor-mode)
13593 (compilation-shell-minor-mode):
13594 * progmodes/gud.el (gud-tooltip-mode):
13595 * progmodes/hideif.el (hide-ifdef-mode):
13596 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
13597 * progmodes/subword.el (subword-mode):
13598 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
13599 * progmodes/which-func.el (which-function-mode):
13600 * term/tvi970.el (tvi970-set-keypad-mode):
13601 * term/vt100.el (vt100-wide-mode):
13602 * textmodes/flyspell.el (flyspell-mode):
13603 * textmodes/ispell.el (ispell-minor-mode):
13604 * textmodes/nroff-mode.el (nroff-electric-mode):
13605 * textmodes/paragraphs.el (use-hard-newlines):
13606 * textmodes/refill.el (refill-mode):
13607 * textmodes/reftex.el (reftex-mode):
13608 * textmodes/rst.el (rst-minor-mode):
13609 * textmodes/sgml-mode.el (html-autoview-mode)
13610 (sgml-electric-tag-pair-mode):
13611 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
13612 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
13613 * emulation/crisp.el (crisp-mode):
13614 * emacs-lisp/eldoc.el (eldoc-mode):
13615 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
13616 minor mode behavior.
13617
aa42ab43
JL
136182011-10-19 Juri Linkov <juri@jurta.org>
13619
13620 * descr-text.el (describe-char): Add #x2010 and #x2011 to
13621 the list of hard-coded chars with escape-glyph face.
13622
89400f1d
SM
136232011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13624
13625 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
13626
305c07f6
MA
136272011-10-19 Michael Albinus <michael.albinus@gmx.de>
13628
13629 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
13630 running process.
13631
13754b54
GM
136322011-10-19 Glenn Morris <rgm@gnu.org>
13633
13634 * vc/vc-bzr.el (vc-bzr-after-dir-status):
13635 Ignore ignored files. (Bug#9726)
13636
06e21633
CY
136372011-10-19 Chong Yidong <cyd@gnu.org>
13638
13639 Doc fix for minor modes, stating that an omitted argument enables
13640 the mode unconditionally when called from Lisp.
13641
13642 * abbrev.el (abbrev-mode):
13643 * allout.el (allout-mode):
13644 * autoinsert.el (auto-insert-mode):
13645 * autoarg.el (autoarg-mode, autoarg-kp-mode):
13646 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
13647 (global-auto-revert-mode):
13648 * battery.el (display-battery-mode):
13649 * composite.el (global-auto-composition-mode)
13650 (auto-composition-mode):
13651 * delsel.el (delete-selection-mode):
13652 * desktop.el (desktop-save-mode):
13653 * dired-x.el (dired-omit-mode):
13654 * dirtrack.el (dirtrack-mode):
13655 * doc-view.el (doc-view-minor-mode):
13656 * double.el (double-mode):
13657 * electric.el (electric-indent-mode, electric-pair-mode):
13658 * emacs-lock.el (emacs-lock-mode):
13659 * epa-hook.el (auto-encryption-mode):
13660 * follow.el (follow-mode):
13661 * font-core.el (font-lock-mode):
13662 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
13663 * help.el (temp-buffer-resize-mode):
13664 * hilit-chg.el (highlight-changes-mode)
13665 (highlight-changes-visible-mode):
13666 * hi-lock.el (hi-lock-mode):
13667 * hl-line.el (hl-line-mode, global-hl-line-mode):
13668 * icomplete.el (icomplete-mode):
13669 * ido.el (ido-everywhere):
13670 * image-file.el (auto-image-file-mode):
13671 * image-mode.el (image-minor-mode):
13672 * iswitchb.el (iswitchb-mode):
13673 * jka-cmpr-hook.el (auto-compression-mode):
13674 * linum.el (linum-mode):
13675 * longlines.el (longlines-mode):
13676 * master.el (master-mode):
13677 * mb-depth.el (minibuffer-depth-indicate-mode):
13678 * menu-bar.el (menu-bar-mode):
13679 * minibuf-eldef.el (minibuffer-electric-default-mode):
13680 * mouse-sel.el (mouse-sel-mode):
13681 * msb.el (msb-mode):
13682 * mwheel.el (mouse-wheel-mode):
13683 * outline.el (outline-minor-mode):
13684 * paren.el (show-paren-mode):
13685 * recentf.el (recentf-mode):
13686 * reveal.el (reveal-mode, global-reveal-mode):
13687 * rfn-eshadow.el (file-name-shadow-mode):
13688 * ruler-mode.el (ruler-mode):
13689 * savehist.el (savehist-mode):
13690 * scroll-all.el (scroll-all-mode):
13691 * scroll-bar.el (scroll-bar-mode):
13692 * server.el (server-mode):
13693 * shell.el (shell-dirtrack-mode):
13694 * simple.el (auto-fill-mode, transient-mark-mode)
13695 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
13696 (line-number-mode, column-number-mode, size-indication-mode)
13697 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
13698 * strokes.el (strokes-mode):
13699 * time.el (display-time-mode):
13700 * t-mouse.el (gpm-mouse-mode):
13701 * tool-bar.el (tool-bar-mode):
13702 * tooltip.el (tooltip-mode):
13703 * type-break.el (type-break-mode-line-message-mode)
13704 (type-break-query-mode):
13705 * view.el (view-mode):
13706 * whitespace.el (whitespace-mode, whitespace-newline-mode)
13707 (global-whitespace-mode, global-whitespace-newline-mode):
13708 * xt-mouse.el (xterm-mouse-mode): Doc fix.
13709
a3839de2
SM
13710 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13711 Fix autogenerated docstring.
06e21633 13712
5214e501
JL
137132011-10-19 Juri Linkov <juri@jurta.org>
13714
13715 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
13716 by checking environment variables "DESKTOP_SESSION" and
13717 "XDG_CURRENT_DESKTOP". (Bug#9779)
13718
195f8db9
JL
137192011-10-19 Juri Linkov <juri@jurta.org>
13720
13721 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
13722 (browse-url-chromium-program, browse-url-chromium-arguments):
13723 New defcustoms.
13724 (browse-url-default-browser): Check for `browse-url-chromium' and
13725 call `browse-url-chromium-program'.
13726 (browse-url-chromium): New command. (Bug#9779)
13727
343a34ff
JB
137282011-10-18 Juanma Barranquero <lekktu@gmail.com>
13729
13730 * facemenu.el (list-colors-duplicates): On Windows, detect more
13731 duplicates by assuming that only colors matching "^System" are
13732 special "system colors". (Bug#9722)
13733
6978a151
SM
137342011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13735
13736 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
13737 to distinguish the author from the committer.
13738
6a80b297
MA
137392011-10-18 Michael Albinus <michael.albinus@gmx.de>
13740
13741 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
13742
b31a5677
JK
137432011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
13744
13745 * international/mule.el (sgml-html-meta-auto-coding-function):
13746 Add support for detecting encoding in HTML5 specified only as
13747 <meta charset="UTF-8">. Implementation just makes http-equiv and
13748 content-type parts from HTML4 encoding string optional. (Bug#9716)
13749
80c6d77f
GM
137502011-10-18 Glenn Morris <rgm@gnu.org>
13751
13752 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
13753
08b0fee8
CY
137542011-10-18 Chong Yidong <cyd@gnu.org>
13755
13756 * faces.el (cursor): Doc fix.
13757
67e729a5
CY
137582011-10-17 Chong Yidong <cyd@gnu.org>
13759
13760 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
13761
343a34ff 137622011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
13763
13764 * dirtrack.el (dirtrack): Support shell buffers with path
13765 prefixes, e.g. tramp-based remote shells. (Bug#9647)
13766
0bc06380
TZ
137672011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
13768
13769 * json.el: Bump version to 1.3 and note change in History.
13770 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
13771
8b79f3e0
SM
137722011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13773
5a7c536b
SM
13774 * comint.el (comint-insert-input, comint-send-input)
13775 (comint-get-old-input-default, comint-backward-matching-input)
13776 (comint-next-prompt): Use nil instead of `input' for field property of
13777 past user input (bug#114).
13778
96a8a0df
SM
13779 * minibuffer.el (completion--replace): Inherit surrounding properties
13780 (bug#114).
13781 (minibuffer-complete-and-exit): Use it.
13782
8b79f3e0
SM
13783 * comint.el (comint--table-subvert): Quote the all-completions output
13784 (bug#9160).
13785
b8f7ff0d
MR
137862011-10-17 Martin Rudalics <rudalics@gmx.at>
13787
8b79f3e0 13788 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 13789
b8f7ff0d 13790 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 13791 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
13792 entries and separate them from frame entries.
13793
c235b555
GM
137942011-10-15 Glenn Morris <rgm@gnu.org>
13795
13796 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
13797 Doc fixes.
13798
6bbfa6e1
CY
137992011-10-15 Chong Yidong <cyd@stupidchicken.com>
13800
8b79f3e0
SM
13801 * net/network-stream.el (network-stream-open-starttls):
13802 Improve detection of failure due to lack of TLS support.
ec5c990d 13803
6bbfa6e1
CY
13804 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
13805 putting the input text in front and in bold.
13806
98488977
SM
138072011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13808
3d1337be
SM
13809 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
13810
ee0b45e4
SM
13811 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
13812 empty buffer.
13813
98488977
SM
13814 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
13815 unread-command-events rather than pushing yet-another event.
13816
186f4720
EZ
138172011-10-14 Eli Zaretskii <eliz@gnu.org>
13818
13819 * mail/sendmail.el (sendmail-query-once): Improve the wording of
13820 the explanation of the possible choices. Make the options passed
13821 to completing-read shorter.
13822
8b7a997c
AM
138232011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13824
13825 * textmodes/flyspell.el (flyspell-large-region): Make sure
13826 extended character mode is used if defined (Bug#1339).
13827
12587bbb
EZ
138282011-10-13 Eli Zaretskii <eliz@gnu.org>
13829
13830 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
13831 character info for LRE, LRO, RLE, and RLO characters by appending
13832 an invisible PDF.
12587bbb 13833
bad41229
SM
138342011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
13835
13836 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
13837 even in case of error; add debug spec; simplify data flow.
13838 (with-timeout-handler): Remove.
13839
28dbc92f
MA
138402011-10-12 Michael Albinus <michael.albinus@gmx.de>
13841
13842 Fix Bug#6019, Bug#9315.
13843
13844 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
13845 complete `buffer-file-name', the local file name part could look
13846 remotely (for example on VMS).
13847
13848 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
13849 `tramp-run-real-handler'.
13850 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
13851 already quoted by '"'.
13852
13853 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
13854 Let `file-name-handler-alist' be nil, the local file name part
13855 could look remotely (for example on VMS).
13856
e1b0b23a
SM
138572011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
13858
13859 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
13860 from here...
13861 (flyspell-post-command-hook): ...to here.
13862
a120bde9
SM
138632011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13864
13865 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
13866 if not needed.
13867 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
13868 using completion. Protect against "slow" callers.
13869 Remove the "message hack".
13870
7ce7717b
JL
138712011-10-11 Juri Linkov <juri@jurta.org>
13872
13873 * isearch.el (isearch-lazy-highlight-word): New variable.
13874 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
13875 Use it. (Bug#9727)
13876
c02ee9d6
GM
138772011-10-11 Glenn Morris <rgm@gnu.org>
13878
13879 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
13880 like f90-previous-statement does.
13881
93e616fd 138822011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13883
1f190e73 13884 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
13885 only in interactive use, to avoid error.
13886
af7b6078
SM
138872011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13888
13889 * minibuffer.el (completion-file-name-table): Fix last change,
13890 i.e. ignore normal errors but not the other ones.
13891
0563dae9
MR
138922011-10-10 Martin Rudalics <rudalics@gmx.at>
13893
13894 * window.el (special-display-buffer-names)
13895 (special-display-regexps): Remove some remnants of earlier
13896 changes from doc-strings.
366ca7f3
MR
13897 (quit-windows-on): New function.
13898
13899 * vc/vc.el (vc-revert, vc-rollback):
13900 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
13901 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 13902 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 13903
49677495
MR
139042011-10-09 Martin Rudalics <rudalics@gmx.at>
13905
13906 * window.el (frame-auto-hide-function): Add version tag.
13907 (Bug#9699)
13908
56f2d1e1
MA
139092011-10-09 Michael Albinus <michael.albinus@gmx.de>
13910
13911 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
13912 condition.
13913
112a6592
LL
139142011-10-09 Leo Liu <sdl.web@gmail.com>
13915
13916 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
13917 (Bug#9701)
13918
0812589b
GM
139192011-10-08 Glenn Morris <rgm@gnu.org>
13920
13921 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
13922 before the first code statement zero indent. (Bug#9690)
13923
b2b0776e
CY
139242011-10-08 Chong Yidong <cyd@stupidchicken.com>
13925
13926 * simple.el (count-words-region): Always count in the region.
13927 Report the number of lines and characters too.
13928 (count-words): New command, which counts in the buffer if the
13929 region is inactive, as count-words-region used to.
13930 (count-words--message): New function. Handle plurals.
13931 (count-lines-region): Make it an alias for count-words-region.
13932
13933 * bindings.el (esc-map): Replace count-lines-region with
13934 count-words-region.
13935
c557cd6b
MR
139362011-10-08 Martin Rudalics <rudalics@gmx.at>
13937
13938 * window.el (window--delete): Delete dedicated frame
13939 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 13940 (switch-to-buffer): Fix doc-string typo.
c557cd6b 13941
61a57ef4 139422011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13943
3a7d293b 13944 * eshell/eshell.el (eshell-command): Avoid using hooks.
61a57ef4 13945
c3833279
CY
139462011-10-07 Chong Yidong <cyd@stupidchicken.com>
13947
13948 * bindings.el ([M-left],[M-right]): Bind to left-word and
13949 right-word respectively.
13950
21ce8245
GM
139512011-10-07 Glenn Morris <rgm@gnu.org>
13952
13953 * cus-start.el (debug-on-quit): Fix custom type.
13954
6d823bb2
LMI
139552011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
13956
0181e193
LMI
13957 * subr.el (define-key-after): Clarify that the function is not
13958 useful for non-menu keymaps.
13959
6d823bb2
LMI
13960 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
13961
8e3459ce 139622011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13963
21ce8245 13964 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 13965 in current minibuffer (Fix bug with recursive minibuffers).
13966
a1c2d21e
CY
139672011-10-06 Chong Yidong <cyd@stupidchicken.com>
13968
13969 * progmodes/gdb-mi.el (gdb): Doc fix.
13970
5a4cf282
MR
139712011-10-05 Martin Rudalics <rudalics@gmx.at>
13972
13973 * window.el (frame-auto-hide-function): New option replacing
13974 frame-auto-delete. Suggested by Stefan Monnier.
13975 (window--delete): Call frame-auto-hide-function instead of
13976 investigating frame-auto-delete.
c96111ea
MR
13977 (window-point-1, set-window-point-1): New functions.
13978 (window-in-direction, record-window-buffer, window-state-get-1)
13979 (display-buffer-record-window): Use window-point-1 instead of
13980 window-point.
13981 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 13982
9854542e
SM
139832011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13984
13985 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
13986
8943cfb0
GM
139872011-10-05 Glenn Morris <rgm@gnu.org>
13988
13989 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
13990 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
13991
647ab967
LL
139922011-10-05 Leo Liu <sdl.web@gmail.com>
13993
13994 * subr.el (read-char-choice): Fix argument to buffer-live-p which
13995 works with buffer object.
13996
3ddfbced
SM
139972011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13998
13999 * mpc.el (mpc-tool-bar-map): Add labels.
14000
bdfa5dd2
GM
140012011-10-04 Glenn Morris <rgm@gnu.org>
14002
14003 * calendar/holidays.el (calendar-check-holidays): Doc fix.
14004
0e2070b5
MR
140052011-10-04 Martin Rudalics <rudalics@gmx.at>
14006
14007 * window.el (window--delete): New function.
14008 (frame-auto-delete): Resuscitate option.
14009 (bury-buffer, replace-buffer-in-windows)
14010 (quit-window): Rewrite using window--delete.
14011 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14012 Pass display-buffer-mark-dedicated to window--display-buffer-2
14013 (Bug#9639).
14014
3dc61a09
SM
140152011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14016
915a9b64
SM
14017 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
14018 returns a list (bug#9554). Add remote file name completion.
14019 * comint.el (comint--table-subvert): Curry and get quote&unquote
14020 functions as arguments.
14021 (comint--complete-file-name-data): Adjust call accordingly.
14022 * pcomplete.el (pcomplete--table-subvert): Remove.
14023 (pcomplete-completions-at-point): Use comint--table-subvert instead.
14024
3dc61a09
SM
14025 * minibuffer.el (completion-table-case-fold): Use currying.
14026 (completion--styles-type, completion--cycling-threshold-type):
14027 New constants.
14028 (completion-styles, completion-category-overrides)
14029 (completion-cycle-threshold): Use them.
14030 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
14031 completion-table-case-fold.
14032
8ea0a993
SB
140332011-10-03 Stephen Berman <stephen.berman@gmx.net>
14034
14035 * minibuffer.el (completion-category-overrides): Fix type of styles
14036 and add more user friendly tags (bug#9660).
14037
8c24b7f6
SM
140382011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14039
14040 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
14041 (mule-input-method-string): New widget.
14042 (default-input-method, language-info-custom-alist): Use it.
14043
428fe61a
SM
140442011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14045
32c1fffd
SM
14046 * pcomplete.el: Require comint.
14047 (pcomplete--common-suffix): Remove.
14048 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
14049 (pcomplete--table-subvert): Sync with comint--table-subvert.
14050 (pcomplete--entries): Use comint-completion-file-name-table.
14051 * comint.el (comint-unquote-filename): Simplify.
14052 (comint-completion-file-name-table): New function (bug#9616).
14053 (comint--complete-file-name-data): Use it.
14054
428fe61a
SM
14055 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
14056 (pcmpl-gnu-tar-buffer): Remove.
14057 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
14058 around. Make sure pcomplete-suffix-list is only changed temporarily.
14059 Don't look inside the tar's file if it's too large.
428fe61a 14060
04c52e2f
CY
140612011-10-01 Chong Yidong <cyd@stupidchicken.com>
14062
ce3cefcc
CY
14063 * cus-edit.el (custom-mode-map):
14064 * epa.el (epa-key-list-mode-map):
14065 * man.el (Man-mode-map):
14066 * startup.el (splash-screen-keymap):
14067 * simple.el (special-mode-map): Use scroll-up-command and
14068 scroll-down-command.
14069
14070 * progmodes/idlw-help.el (idlwave-help-mode-map):
14071 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
14072 * net/newst-plainview.el (newsticker-mode-map):
14073 * emulation/ws-mode.el (wordstar-mode-map):
14074 * emulation/vi.el (vi-com-map):
14075 * calc/calc-graph.el (calc-graph-show-dumb):
14076 * term/sun.el (terminal-init-sun):
14077 * term/ns-win.el (global-map):
14078 * progmodes/grep.el (grep-mode-map):
14079 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
14080 * mail/rmail.el (rmail-mode-map):
14081 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
14082
04c52e2f
CY
14083 * custom.el (custom-safe-themes, load-theme): Treat value of t for
14084 custom-safe-themes as special.
14085
79adf8c8
JD
140862011-10-01 Julien Danjou <julien@danjou.info>
14087
14088 * notifications.el (notifications-notify): Fix docstring.
14089
63bd50d3
PS
140902011-10-01 Per Starbäck <per@starback.se>
14091
14092 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
14093
199e4c7e
MR
140942011-09-30 Martin Rudalics <rudalics@gmx.at>
14095
14096 * startup.el (command-line-1): Fix last fix by inserting
14097 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 14098 (Bug#9605) and (Bug#9636)
199e4c7e 14099
fe5f08dd
EZ
141002011-09-29 Eli Zaretskii <eliz@gnu.org>
14101
14102 * simple.el (line-move): If auto-hscroll-mode is disabled and the
14103 window is hscrolled, move by logical lines. (Bug#9607)
14104 (line-move-visual): Update the doc string to the above effect.
14105
b5516bbd
MR
141062011-09-29 Martin Rudalics <rudalics@gmx.at>
14107
ccee00c0
MR
14108 * window.el (display-buffer-record-window): When WINDOW is the
14109 selected window use `point' instead of `window-point'. (Bug#9626)
14110
b5516bbd
MR
14111 * startup.el (command-line-1): Use insert-before-markers when
14112 inserting initial-scratch-message. (Bug#9605)
ccee00c0 14113
b5516bbd
MR
14114 * help.el (help-window): Remove variable.
14115
52aa0014
GM
141162011-09-29 Glenn Morris <rgm@gnu.org>
14117
14118 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
14119
df9a7357
JB
141202011-09-29 Juanma Barranquero <lekktu@gmail.com>
14121
14122 * descr-text.el (describe-char-categories): Accept category
14123 descriptions more than one line long.
14124
a8406c20
SM
141252011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
14126
88d9610c
SM
14127 * simple.el (delete-trailing-whitespace): Fix last change.
14128
a5daf810
SM
14129 * progmodes/perl-mode.el (perl-syntax-propertize-function):
14130 Don't confuse "y => 3" as the beginning of a `y' operation.
14131
a8406c20
SM
14132 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
14133 object has more than 4 slots (bug#9613).
14134
a239d4e9
JB
141352011-09-28 Juanma Barranquero <lekktu@gmail.com>
14136
14137 * subr.el (with-output-to-temp-buffer):
14138 * net/quickurl.el (quickurl, quickurl-browse-url):
14139 Fix typos in docstrings.
14140
693fbdb6
EZ
141412011-09-27 Eli Zaretskii <eliz@gnu.org>
14142
14143 * minibuffer.el (completion-styles)
14144 (completion-category-overrides): Cross reference each other in doc
14145 strings.
14146
8b457e28
GM
141472011-09-27 Glenn Morris <rgm@gnu.org>
14148
14149 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
14150 to split-string. (Bug#9606)
14151
85a16208
LMI
141522011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
14153
14154 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
14155 (bug#9615).
14156
502f9ebd
CY
141572011-09-27 Chong Yidong <cyd@stupidchicken.com>
14158
14159 * emacs-lisp/package.el (list-packages): Fix echo area message.
14160
7690bdea
LL
141612011-09-27 Leo Liu <sdl.web@gmail.com>
14162
14163 * ido.el (ido-read-internal): Accept cons cell HIST arg.
14164
e2ee6f30
MA
141652011-09-25 Michael Albinus <michael.albinus@gmx.de>
14166
14167 * net/dbus.el (dbus-unregister-object): Don't release services for
14168 registered signals. (Bug#9581)
14169
f3f98342
TZ
141702011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
14171
14172 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
14173 function that picks between cfengine 2 and 3 support
14174 automatically. Update docs accordingly.
14175
dd7aa8dd
KH
141762011-09-22 Kenichi Handa <handa@m17n.org>
14177
14178 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
14179 ZERO.
14180 (indian-itrans-v5-table-for-tamil): New variable.
14181 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
14182
3f2b07f8
KM
141832011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
14184
14185 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
14186 that's true if the current command involved collapsing of text.
14187 It's reset to false at the beginning of the next command.
14188 (allout-post-command-business): Move the cursor to the beginning
14189 of entry if the cursor is hidden and collapsing activity just
14190 happened.
14191
371d6a61
CY
141922011-09-24 Chong Yidong <cyd@stupidchicken.com>
14193
14194 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
14195 tracking (Bug#9541).
14196
2ac2721a
UJ
141972011-09-24 Ulf Jasper <ulf.jasper@web.de>
14198
14199 * net/newst-reader.el (newsticker-html-renderer)
1154d12e
JB
14200 (newsticker-show-news): Automatically load html rendering package
14201 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
14202 because w3m-fill-column is let-bound" and the error "Symbol's value
14203 as variable is void: w3m-fill-column".
2ac2721a 14204
fac7ae53
MA
142052011-09-24 Michael Albinus <michael.albinus@gmx.de>
14206
14207 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
14208 Release services only if they are defined. (Bug#9581)
14209
e08b633b
RS
142102011-09-23 Richard Stallman <rms@gnu.org>
14211
e488d29c
RS
14212 * textmodes/paragraphs.el (forward-sentence): For backwards case,
14213 distinguish start of paragraph from start of its text.
14214
19c38752
RS
14215 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
14216
e08b633b
RS
14217 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
14218 (rmail-generate-viewer-buffer): Put that hook on view buffer.
14219 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
14220
0a39f27e
AS
142212011-09-23 Andreas Schwab <schwab@linux-m68k.org>
14222
14223 * international/mule-diag.el (mule-diag): Insert a newline after
14224 each fontset description.
14225
db4e950d
SM
142262011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14227
14228 * simple.el (delete-trailing-whitespace):
14229 Document last change; simplify.
14230
eca3f3ea
PW
142312011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
14232
d68e189a
PW
14233 * simple.el (delete-trailing-whitespace): Also delete
14234 extra newlines at the end of the buffer.
14235
eca3f3ea
PW
14236 * textmodes/picture.el: Make motion commands obey shift-select-mode.
14237 (picture-newline): Use forward-line so as to ignore fields.
14238
01c157cc
SM
142392011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14240
14241 * subr.el (with-wrapper-hook): Fix edebug spec.
14242
022de23e
LMI
142432011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
14244
14245 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
14246 (bug#4538).
14247
91683089
MA
142482011-09-23 Michael Albinus <michael.albinus@gmx.de>
14249
eca3f3ea
PW
14250 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
14251 Fix nasty bug using wrong cached values.
91683089 14252
5bdd6fa4
AM
142532011-09-23 Alan Mackenzie <acm@muc.de>
14254
14255 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
14256
97adfb97
CY
142572011-09-23 Chong Yidong <cyd@stupidchicken.com>
14258
14259 * window.el (pop-to-buffer): Ensure right window is selected if we
14260 chose another frame.
14261
d4ef2b50
EZ
142622011-09-22 Eli Zaretskii <eliz@gnu.org>
14263
14264 * simple.el (what-cursor-position): Use get-char-property-change
14265 and next-single-char-property-change, to be able to show display
14266 properties that come from overlays as well as text properties.
14267
72258fe5
CY
142682011-09-22 Chong Yidong <cyd@stupidchicken.com>
14269
14270 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
14271
14272 * cmuscheme.el (run-scheme, switch-to-scheme):
14273 * cus-edit.el (customize-group, custom-buffer-create)
14274 (customize-browse):
14275 * info.el (info):
14276 * shell.el (shell):
14277 * mail/sendmail.el (mail):
14278 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
14279
8f098516
RS
142802011-09-22 Richard Stallman <rms@gnu.org>
14281
14282 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
14283 move back only to line beg, don't move back over blank lines.
14284
e74f1bb6
MA
142852011-09-22 Michael Albinus <michael.albinus@gmx.de>
14286
14287 * files.el (copy-directory): Set directory attributes only in case
14288 they could be retrieved from the source directory. (Bug#9565)
14289
bfeef8b6
DK
142902011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
14291
14292 * progmodes/hideshow.el (hs-looking-at-block-start-p)
14293 (hs-find-block-beginning, hs-hide-level-recursive):
14294 Ignore strings as well as comments. (Bug#9502)
14295
7e423bb8
AS
142962011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
14297
14298 * progmodes/sql.el (sql-comint-postgres):
14299 Convert port number to a string. (Bug#9566)
14300
b4d72fcf
MR
143012011-09-22 Martin Rudalics <rudalics@gmx.at>
14302
14303 * window.el (quit-window): Undedicate window when switching to
14304 previous buffer. Reported by Thierry Volpiatto
14305 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
14306 (special-display-popup-frame): When popping up a new frame reset
14307 its previous buffers to nil. Simplify code.
b4d72fcf 14308
a7b88dc6
MA
143092011-09-21 Michael Albinus <michael.albinus@gmx.de>
14310
14311 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
14312 and process filter, as done also in `shell-command'.
14313
cf4eacfd
MR
143142011-09-21 Martin Rudalics <rudalics@gmx.at>
14315
eca3f3ea 14316 * window.el (set-window-buffer-start-and-point):
1154d12e
JB
14317 Call set-window-start with NOFORCE argument t.
14318 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
cf4eacfd
MR
14319 (quit-window): Reword doc-string. Handle new format of
14320 quit-restore parameter. Don't delete window if it has a
14321 previous buffer we can show instead of the present one.
14322 (display-buffer-record-window): Rewrite using a new format for
14323 the quit-restore window parameter
14324 (special-display-popup-frame, display-buffer-same-window)
14325 (display-buffer-reuse-window, display-buffer-pop-up-frame)
14326 (display-buffer-pop-up-window, display-buffer-use-some-window):
14327 Adapt symbol passed to display-buffer-record-window.
14328 * help.el (help-window-setup): Handle new format of quit-restore
14329 parameter.
14330
8d28cb95
SM
143312011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14332
94ab793f
SM
14333 * faces.el (face-list): Fix docstring (bug#9564).
14334
8d28cb95
SM
14335 * window.el (display-buffer--action-function-custom-type):
14336 Don't include internal functions in the Custom interface.
14337
3820edeb
JL
143382011-09-20 Juri Linkov <juri@jurta.org>
14339
14340 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
14341 (Info-forward-node, Info-backward-node, Info-next-preorder)
14342 (Info-last-preorder): Use it. (Bug#9528)
14343
5147931d
JL
143442011-09-20 Juri Linkov <juri@jurta.org>
14345
14346 * info.el (Info-last-preorder): Visit last menu item only when
14347 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
14348
cf499a1a
JD
143492011-09-20 Julien Danjou <julien@danjou.info>
14350
14351 * password-cache.el (password-cache-remove): Remove entries even if the
14352 value is nil, so that password with a nil value (negative caching) is
14353 possible to invalidate.
14354
f84e2fe2
LM
143552011-09-20 Lawrence Mitchell <wence@gmx.li>
14356
14357 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
14358 all whitespace around breakpoint. (Bug#9553)
14359 (f90-find-breakpoint): Only break at whitespace inside a comment.
14360
78054a46
SM
143612011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
14362
14363 * minibuffer.el (completion-file-name-table): Keep track of errors.
14364 (completion-table-with-predicate): Handle the case where pred1 is nil.
14365 * pcomplete.el (pcomplete-completions-at-point): Simplify.
14366
345083b2
SM
143672011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14368
e24e27be
SM
14369 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
14370 (debugger-return-value): Signal an error if the debugging context does
14371 not await any return value.
14372
345083b2
SM
14373 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
14374 * image-mode.el (image-toggle-display-text)
14375 (image-toggle-display-image): Stay away from evil `intangible'.
14376
08d355e3
LL
143772011-09-19 Leo Liu <sdl.web@gmail.com>
14378
14379 * replace.el (occur-revert-arguments): Make it permanent-local.
14380 (occur-mode): Don't call font-lock-defontify.
14381
f01da43f
CY
143822011-09-19 Chong Yidong <cyd@stupidchicken.com>
14383
14384 * net/ldap.el (ldap-search-internal): Don't push empty search
14385 result (Bug#9508).
14386
b6072fa6
SM
143872011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14388
14389 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
14390
443d6696
MA
143912011-09-19 Michael Albinus <michael.albinus@gmx.de>
14392
14393 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
14394 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
14395
7cc6e154
JL
143962011-09-18 Juri Linkov <juri@jurta.org>
14397
14398 * buff-menu.el (Buffer-menu-mode-map):
14399 * dired.el (dired-mode-map):
14400 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
14401 (lisp-interaction-mode-map):
14402 * emacs-lisp/package.el (package-menu-mode-map):
14403 * epa.el (epa-key-list-mode-map):
14404 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
14405 (menu-bar-options-menu):
14406 * outline.el (outline-mode-menu-bar-map):
14407 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
14408 * vc/vc-dir.el (vc-dir-menu-map):
14409 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
14410 Capitalize non-function content words in menu item strings.
14411
14412 * dired.el (dired-mode-map): Add menu item for
14413 `image-dired-dired-toggle-marked-thumbs'.
14414
80302a81
JL
144152011-09-18 Juri Linkov <juri@jurta.org>
14416
14417 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
14418 to `isearch-case-fold-search' and restore its original value
14419 after the `isearch-mode' call.
14420
46c5cf66
JL
144212011-09-18 Juri Linkov <juri@jurta.org>
14422
14423 * progmodes/grep.el (grep-process-setup): Don't check code for 1
14424 because `zgrep' returns 1 for successful matches (bug#9226).
14425
d18b513b
JL
144262011-09-18 Juri Linkov <juri@jurta.org>
14427
14428 * info.el (Info-extract-menu-node-name): Check the second match
14429 for empty string (second test-case of bug#9528).
14430 (Info-last-preorder): Let-bind `Info-history' to nil to not add
14431 intermediate nodes to the history (first test-case of bug#9528).
14432
72753f87
JL
144332011-09-18 Juri Linkov <juri@jurta.org>
14434
14435 * info.el (Info-mode-syntax-table): New variable.
1154d12e 14436 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
72753f87 14437
c9384295
JL
144382011-09-18 Juri Linkov <juri@jurta.org>
14439
1154d12e
JB
14440 * info.el (Info-file-supports-index-cookies):
14441 Increment line-beginning-position's arg from 3 to 4 because makeinfo
14442 outputs one more line for long file names (bug#4142).
c9384295 14443
d473dce8
CY
144442011-09-18 Chong Yidong <cyd@stupidchicken.com>
14445
14446 * newcomment.el (comment-normalize-vars): If prompting for
14447 comment-start, set comment-start-skip too (Bug#8424).
14448
2176854d
JB
144492011-09-18 Johan Bockgård <bojohan@gnu.org>
14450
14451 * icomplete.el: Fix previous fix of Bug#5849.
14452 (icomplete-mode): Don't set completion-show-inline-help.
14453 (icomplete-minibuffer-setup): Set completion-show-inline-help
14454 locally during icompletion.
14455
3aace4e4
CY
144562011-09-18 Chong Yidong <cyd@stupidchicken.com>
14457
c940224f
CY
14458 * woman.el (woman2-process-escapes): Don't delete unrecognized
14459 escapes (Bug#7843).
14460
3aace4e4
CY
14461 * files.el (inhibit-first-line-modes-regexps): Add image files.
14462 (hack-local-variables-prop-line): Return nil for malformed
14463 prop-lines (Bug#9044).
14464
710dec63
MA
144652011-09-18 Michael Albinus <michael.albinus@gmx.de>
14466
14467 * net/tramp.el (top): Don't require 'shell.
14468 (tramp-methods): Fix docstring.
14469 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
14470 Return complete remote file name. Handle "smb" case.
14471 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
14472 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
14473
14474 * net/tramp-compat.el (top): Require 'shell.
14475
14476 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
14477 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
14478 `tramp-current-host'.
14479 (tramp-get-remote-tmpdir): Remove.
14480
14481 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
14482 `tramp-tmpdir' entries.
14483 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
14484 (tramp-smb-handle-file-attributes): Ignore errors.
14485 (tramp-smb-wait-for-output): Check also for process end.
14486
5d5ac8ec
LMI
144872011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
14488
14489 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
14490 when sending QUIT (bug#9312).
14491
8c0f49f0
CY
144922011-09-17 Chong Yidong <cyd@stupidchicken.com>
14493
14494 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
14495 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
14496 occur-mode-display-occurrence.
14497 (occur-edit-mode): Add usage message.
14498 (occur-cease-edit): New command.
14499 (occur-after-change-function): Use text properties to find the
14500 position of the prefix text.
14501 (occur-engine): Set stickiness of prefix text properties.
14502
8f1383f7
GM
145032011-09-17 Glenn Morris <rgm@gnu.org>
14504
14505 * progmodes/etags.el (complete-tag):
14506 Fix call to completion-in-region. (Bug#9526)
14507
744ba0e3
JL
145082011-09-17 Juri Linkov <juri@jurta.org>
14509
14510 * textmodes/ispell.el (ispell-word): Add to the error message
14511 the word, ispell program name and current dictionary (bug#9121).
14512 (ispell-tex-arg-end): Capitalize "error" in the error message.
14513
d9bbf400
AS
145142011-09-17 Andreas Schwab <schwab@linux-m68k.org>
14515
14516 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
14517 check. (Bug#4251)
14518
8da11505
JL
145192011-09-17 Juri Linkov <juri@jurta.org>
14520
14521 * window.el (window-safe-min-height, window-safe-min-width):
14522 Fix typos (followup to bug#9522).
14523
a91adc7e
SJ
145242011-09-17 Sven Joachim <svenjoac@gmx.de>
14525
14526 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
14527
064f328a
EZ
145282011-09-16 Eli Zaretskii <eliz@gnu.org>
14529
14530 * simple.el (line-move): If goal-column is set, move by logical
14531 lines, not by display lines. (Bug#971)
14532 (next-line, previous-line, goal-column, line-move-visual): Doc fix
14533 to reflect the above change.
14534
e69df516
SM
145352011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14536
14537 * image.el (imagemagick-register-types): Use regexp-opt.
14538
cbb0f9ab
CY
145392011-09-15 Chong Yidong <cyd@stupidchicken.com>
14540
14541 * window.el (display-buffer-base-action): Rename from
14542 display-buffer-default-action. Make default value empty.
14543 (display-buffer-overriding-action): Convert to defvar.
14544 (display-buffer-fallback-action): New var.
14545
25322144
CY
145462011-09-15 Chong Yidong <cyd@stupidchicken.com>
14547
14548 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
14549 declaration.
14550 (package--add-to-archive-contents): If there is a duplicate entry
14551 with an older version, remove it.
14552 (package-menu-mark-delete, package-menu-mark-install)
14553 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
14554 (package-menu-mark-obsolete-for-deletion):
14555 Use package-menu-get-status instead of a regexp search.
25322144
CY
14556 (package-menu-get-status): Use tabulated-list-entry.
14557 (package-menu-mark-upgrades): New command.
d770725a 14558 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
14559 (package-menu-execute): Do installation before deletion.
14560 (package-menu-refresh, package-menu-execute): Use derived-mode-p
14561 instead of checking major-mode.
14562 (package-menu--find-upgrades): New function.
14563
7520339c
LMI
145642011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14565
14566 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
14567 passwords in the log buffer.
65a046c4
LMI
14568 (smtpmail-process-filter): Update the process marker so that the
14569 "broken by peer" status message is inserted in the right place.
7520339c 14570
d3c30954
SM
145712011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14572
3fe48822
SM
14573 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
14574 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
14575 bibtex-completion-at-point-function.
14576 (bibtex-completion-at-point-function): Use them.
14577
1b8b3954
SM
14578 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
14579
d3c30954
SM
14580 * mpc.el (mpc-constraints-tag-lookup): New function.
14581 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
14582 also to browser "album|playlist".
14583
72779976
JL
145842011-09-14 Juri Linkov <juri@jurta.org>
14585
14586 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
14587 (isearch-edit-string): Use length of `isearch-string' when
14588 `isearch-fail-pos' returns nil.
14589 (isearch-message): Remove duplicate code and call
14590 `isearch-fail-pos' with arg `t'.
14591
a0bf2bcd
CY
145922011-09-14 Chong Yidong <cyd@stupidchicken.com>
14593
17bb0a2d
CY
14594 * replace.el (occur-mode-goto-occurrence): Don't force using other
14595 window (Bug#9499).
14596
a0bf2bcd
CY
14597 * dired-aux.el (dired-do-chmod): Don't provide initial input.
14598
f678e0b6
MR
145992011-09-14 Martin Rudalics <rudalics@gmx.at>
14600
14601 * window.el (display-buffer-window): Remove.
14602 (display-buffer-record-window): Use help-setup window parameter
14603 instead of variable display-buffer-window.
14604 (display-buffer-function, special-display-buffer-names)
14605 (special-display-function): Mention help-setup parameter instead
14606 of display-buffer-window in doc-string.
d3c30954
SM
14607 * help.el (help-window-setup): New argument help-window.
14608 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
14609 Reword some messages.
14610 (with-help-window): Pass window used for displaying the buffer
14611 to help-window-setup. Don't set display-buffer-window.
14612
8e39b2e8
GM
146132011-09-13 Glenn Morris <rgm@gnu.org>
14614
14615 * emacs-lisp/debug.el (debugger-make-xrefs):
14616 Preserve point. (Bug#9462)
14617
85e9c04b
CY
146182011-09-13 Chong Yidong <cyd@stupidchicken.com>
14619
14620 * window.el (window-deletable-p): Use next-frame.
14621
1b36ed6a
MR
146222011-09-13 Martin Rudalics <rudalics@gmx.at>
14623
14624 * window.el (window-auto-delete): Remove.
14625 (window-deletable-p): Remove argument FORCE. Don't deal with
e4769531 14626 dedication and previous buffers.
1b36ed6a
MR
14627 (switch-to-prev-buffer): Don't delete window.
14628 (delete-windows-on): Delete a window's frame if and only if the
14629 window is dedicated.
14630 (replace-buffer-in-windows): Delete buffer's window or frame if
14631 and only if window is dedicated.
14632 (quit-window): Handle quit-restore as before last change.
4d61f28d 14633 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 14634
ef8ef9fb
CY
146352011-09-13 Chong Yidong <cyd@stupidchicken.com>
14636
14637 * window.el (window-deletable-p): Never delete the last frame on a
14638 given terminal.
14639
b2cba41e
GM
146402011-09-13 Glenn Morris <rgm@gnu.org>
14641
14642 * help.el (describe-key-briefly): Copy previous standard-output change.
14643
51553db6 146442011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
14645
14646 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
14647
b7556719
GM
146482011-09-13 Glenn Morris <rgm@gnu.org>
14649
14650 * emacs-lisp/lisp-mode.el (lisp-indent-function):
14651 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
14652
64b51947
CY
146532011-09-12 Chong Yidong <cyd@stupidchicken.com>
14654
14655 * dired-aux.el (dired-mark-read-string): Don't return default
14656 value on empty input (Bug#9361).
14657 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
14658 Omit initial minibuffer contents.
14659 (dired-do-chmod): Signal an error on empty input.
14660 (dired-mark-read-string): Don't return default on empty input.
14661
14662 * files.el (file-modes-symbolic-to-number): Doc fix.
14663
393a301e
SM
146642011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14665
14666 * international/mule-cmds.el (ucs-completions): Remove.
14667 (read-char-by-name): Use complete-with-action instead; add metadata.
14668
fa5660f9
CY
146692011-09-11 Chong Yidong <cyd@stupidchicken.com>
14670
14671 * window.el (display-buffer--action-function-custom-type)
14672 (display-buffer--action-custom-type): New vars.
14673 (display-buffer-alist, display-buffer-default-action)
14674 (display-buffer-overriding-action): Add defcustom types.
14675
4a592f66
CY
14676 * frame.el (delete-other-frames): Doc fix (Bug#276).
14677
73d56dbd
LMI
146782011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14679
14680 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
14681
37ac18a3
CY
146822011-09-11 Chong Yidong <cyd@stupidchicken.com>
14683
14684 Change modes that used same-window-* vars to use switch-to-buffer.
14685
14686 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
14687 Use switch-to-buffer.
14688
14689 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
14690 (customize-browse, custom-buffer-create-other-window):
14691 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
14692
14693 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
14694 (Info-prev, Info-up, Info-speedbar-goto-node)
14695 (info-display-manual): Use switch-to-buffer.
14696 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
14697
14698 * mail/sendmail.el (mail): Use switch-to-buffer.
14699 (mail-recover): Use switch-to-buffer-other-window.
14700
14701 * cmuscheme.el (run-scheme, switch-to-scheme):
14702 * ielm.el (ielm):
14703 * shell.el (shell):
14704 * net/rlogin.el (rlogin):
14705 * net/telnet.el (telnet, rsh):
14706 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
14707
10195bd6
AS
147082011-09-11 Andreas Schwab <schwab@linux-m68k.org>
14709
14710 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
14711
b322f63a
LMI
147122011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14713
39d7fed6
LMI
14714 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
14715 so don't mention it (bug#9301).
ba5a81f1 14716 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 14717
ee0e9f11
LMI
14718 * faces.el (face-spec-set-match-display): Make `(type graphic)'
14719 match `x', `w32' and `ns', like the manual says (bug#9029).
14720
0b1c89c1 14721 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
14722 (process-kill-buffer-query-function): Mention the buffer name in
14723 the query.
0b1c89c1 14724
77549ea8
LMI
14725 * image-mode.el (image-next-line): The line parameter is mandatory
14726 (bug#9258).
14727
803ef892
LMI
14728 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
14729 which can be useful (bug#9301).
14730
12980837
LMI
14731 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
14732
91054f8f
LMI
14733 * subr.el (match-string): Mention that the current buffer should
14734 be the same as the search was done in (bug#9282).
14735
b322f63a
LMI
14736 * facemenu.el: Disable the remove-* commands if the mark isn't
14737 active (bug#9162).
14738
3199b96f
CY
147392011-09-10 Chong Yidong <cyd@stupidchicken.com>
14740
14741 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
14742 of display-buffer.
14743 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
14744
14745 * replace.el (occur-mode-goto-occurrence)
14746 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
14747 and display-buffer.
14748
14749 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
14750 display-buffer.
14751
14752 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
14753 special-display and same-window variables.
14754 (mail-other-window): Use switch-to-buffer-other-window.
14755 (mail-other-frame): USe switch-to-buffer-other-frame.
14756
393a301e
SM
14757 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
14758 Use display-buffer-other-frame.
3199b96f
CY
14759 (gdb-display-gdb-buffer): Use pop-to-buffer.
14760
14761 * progmodes/gud.el (gud-goto-info): Use info-other-window.
14762
14763 * progmodes/python.el: Don't set same-window-buffer-names.
14764
14765 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
14766
14767 * window.el (display-buffer-alist): Add *Python*.
14768
8319e0bf
CY
147692011-09-10 Chong Yidong <cyd@stupidchicken.com>
14770
14771 * window.el (display-buffer-alist): Add entry for buffers
14772 previously handled same-window-*.
14773 (display-buffer-alist, display-buffer-default-action)
14774 (display-buffer-overriding-action): Mark as risky.
14775 (display-buffer-alist): Document action function changes.
14776 (display-buffer--same-window-action)
14777 (display-buffer--other-frame-action): New variables.
14778 (switch-to-buffer, display-buffer-other-frame): Use them.
14779 (display-buffer): Rename reuse-frame entry to reusable-frames.
14780 (display-buffer-reuse-selected-window): Function deleted.
14781 (display-buffer-reuse-window): Handle reusable-frames alist entry.
14782 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
14783 (display-buffer-special): New function.
14784 (display-buffer--maybe-pop-up-frame-or-window): Rename from
14785 display-buffer-reuse-or-pop-window. Split off special-display
14786 part into display-buffer-special.
14787 (display-buffer-use-some-window): Don't perform any special
14788 pop-up-frames handling.
14789 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 14790 (display-buffer--maybe-same-window): Rename from
0d3ff375 14791 display-buffer-maybe-same-window.
8319e0bf 14792
919a69aa
CY
14793 * info.el: Don't set same-window-regexps.
14794 (info-setup): New function.
14795 (info-other-window, info): Call it.
14796
14797 * cus-edit.el: Don't set same-window-regexps.
14798 (customize-group): New argument.
14799 (customize-group-other-window): Use it.
14800 (customize-face, customize-face-other-window): Likewise.
14801 (custom-buffer-create-other-window): Use pop-to-buffer directly.
14802
8319e0bf
CY
14803 * net/rlogin.el:
14804 * net/telnet.el:
14805 * progmodes/gud.el: Don't set same-window-regexps.
14806
14807 * cmuscheme.el:
14808 * ielm.el:
14809 * shell.el:
14810 * mail/sendmail.el:
14811 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
14812
25173000
JL
148132011-09-10 Juri Linkov <juri@jurta.org>
14814
14815 * isearch.el (isearch-edit-string): Remove obsolete mention of
14816 `C-w' (`isearch-yank-word-or-char') from docstring.
14817 (isearch-query-replace): Fix typo in docstring (bug#9466).
14818
056e44ef
JL
148192011-09-10 Juri Linkov <juri@jurta.org>
14820
14821 * paren.el (show-paren-function): Don't show escaped parens.
14822 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
14823
c3760c17
EZ
148242011-09-10 Eli Zaretskii <eliz@gnu.org>
14825
14826 * mail/sendmail.el (mml-to-mime, mml-attach-file)
14827 (mm-default-file-encoding): Remove autoload forms, they are
14828 replaced with autoload cookies in mml.el and mm-encode.el.
14829 (mail-add-attachment): New command.
14830 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
14831 (mail-mode): Mention mail-insert-file and mail-add-attachment in
14832 the doc string.
14833 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
14834
fece895e
RT
148352011-09-10 Reuben Thomas <rrt@sc3d.org>
14836
e69df516
SM
14837 * simple.el (count-words-region): Use buffer if there's no region
14838 (bug#9429).
fece895e 14839
5e68ce4a
JL
148402011-09-09 Juri Linkov <juri@jurta.org>
14841
14842 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
14843 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
14844 (wdired-isearch-filter-read-only): New function. (Bug#6362)
14845
0a6b9622
AM
148462011-09-09 Alan Mackenzie <acm@muc.de>
14847
14848 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
14849 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
14850
14a29deb
EZ
148512011-09-09 Eli Zaretskii <eliz@gnu.org>
14852
14853 Fix for Savannah bug#9392.
14854 * simple.el (mail-encode-mml): New defvar.
14855
14856 * mail/rmail.el (mail-encode-mml): Add a defvar.
14857 (rmail-enable-mime-composing): Default to t.
14858 (rmail-forward): Use MIME method of forwarding only if both
14859 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
14860 Set mail-encode-mml non-nil if the MIME method was used.
14861
14862 * mail/sendmail.el (mml-to-mime): Add autoload form.
14863 (mail-encode-mml): Add a defvar.
14864 (mail-mode): Make mail-encode-mml buffer-local and initialize it
14865 to nil.
14866 (mail-send): If mail-encode-mml is non-nil, run the outgoing
14867 message through mml-to-mime, and reset mail-encode-mml to nil.
14868
28c45130
GM
148692011-09-09 Glenn Morris <rgm@gnu.org>
14870
14871 * woman.el (woman-if-body): When processing an .el block,
14872 do not delete the next .el block as well. (Bug#9447)
69f4b618 14873 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 14874
9b1c252e
MR
148752011-09-08 Martin Rudalics <rudalics@gmx.at>
14876
14877 * window.el (window-deletable-p): Make sure window is live before
14878 invoking window-prev-buffers.
14879
567457e3
LL
148802011-09-08 Leo Liu <sdl.web@gmail.com>
14881
14882 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
14883
97f05794
JL
148842011-09-08 Juri Linkov <juri@jurta.org>
14885
14886 * progmodes/compile.el (compilation-environment): Make it
14887 a defcustom (bug#8340).
14888
8b0874b5
MR
148892011-09-08 Martin Rudalics <rudalics@gmx.at>
14890
14891 * window.el (frame-auto-delete): Rename to window-auto-delete.
14892 Make it control auto-deletion of windows and/or frames.
14893 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 14894 for deleting window/frame. (Bug#9419)
8b0874b5
MR
14895 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
14896 Rewrite handling of case when window/frame can be deleted.
14897 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 14898 argument t. (Bug#9456)
8b0874b5 14899
4feb6e73
CY
149002011-09-07 Chong Yidong <cyd@stupidchicken.com>
14901
14902 * help-mode.el (help-mode): Restore autoload.
14903
91ab9c13
JL
149042011-09-07 Juri Linkov <juri@jurta.org>
14905
14906 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
14907 `compilation-environment'. Set buffer-local
14908 `compilation-environment' to `thisenv' later after (funcall mode).
14909 (Bug#8340)
14910
14911 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
14912 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
14913 instead of replacing its value. (Bug#8340)
14914
0527e251
JL
149152011-09-07 Juri Linkov <juri@jurta.org>
14916
14917 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
14918 based on text properties put by `grep-filter' instead of matching
14919 escape sequences.
14920 (grep-mode): Set buffer-local `compilation-error-screen-columns'
14921 to the value of `grep-error-screen-columns' (bug#9438).
14922
249f792c
JL
149232011-09-07 Juri Linkov <juri@jurta.org>
14924
14925 * simple.el (next-error-highlight, next-error-highlight-no-select):
14926 Doc fix (bug#9432).
14927
ff7271b9
OT
149282011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
14929
14930 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14931 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
14932
183fc730
LL
149332011-09-07 Leo Liu <sdl.web@gmail.com>
14934
14935 * net/rcirc.el (rcirc-mode): Conditionally initialize
14936 rcirc-input-ring.
14937
77694924
SM
149382011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
14939
14940 * emacs-lisp/find-func.el (find-function-C-source): Only set
14941 find-function-C-source-directory after checking that we found a source
14942 file there (bug#9440).
14943
d809b8eb
AM
149442011-09-06 Alan Mackenzie <acm@muc.de>
14945
14946 * isearch.el (isearch-other-meta-char): Wherever a key list is
14947 unread, "unread" the prefix arg, too. This fixes bug #8901.
14948
453de99f
OG
149492011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
14950
14951 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
14952
90439906
JL
149532011-09-05 Juri Linkov <juri@jurta.org>
14954
14955 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
14956
f62bd846
JL
149572011-09-05 Juri Linkov <juri@jurta.org>
14958
14959 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
14960 keeping point where processing of grep matches begins, and
14961 continue to delete remaining escape sequences from the same point.
14962 (grep-filter): Make leading zero optional in "0?1;31m" because
14963 git-grep emits "\033[1;31m" escape sequences unlike expected
14964 "\033[01;31m" as GNU Grep does (bug#9408).
14965 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
14966
045820ec
JL
149672011-09-05 Juri Linkov <juri@jurta.org>
14968
14969 * subr.el (y-or-n-p): Capitalize "yes".
14970
f5e29b9b
MA
149712011-09-04 Michael Albinus <michael.albinus@gmx.de>
14972
14973 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
14974 `tramp-cache-unload-hook' where appropriate.
14975 (tramp-methods): Rename `tramp-remote-sh' to
14976 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
14977 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
14978
14979 * net/tramp-sh.el (top): Don't require 'shell.
14980 (tramp-methods): Add `tramp-remote-shell' and
14981 `tramp-remote-shell-args' entries.
14982 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
14983 (tramp-sh-handle-shell-command): Remove.
14984 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
14985 Use `tramp-remote-shell'.
14986
2784c434
CY
149872011-09-03 Chong Yidong <cyd@stupidchicken.com>
14988
393a301e 14989 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
14990 (sendmail-query-once): Save directly to send-mail-function.
14991 Update message-send-mail-function too.
14992
14993 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
14994
464cdf56
CS
149952011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
14996
14997 * progmodes/python.el (python-mode-map): Use correct function to
14998 start python interpreter from menu-bar (as reported by Geert
14999 Kloosterman).
15000 (inferior-python-mode-map): Fix typo.
393a301e 15001 (python-shell-map): Remove.
464cdf56 15002
d37e5c87
DD
150032011-09-03 Deniz Dogan <deniz@dogan.se>
15004
15005 * net/rcirc.el (rcirc-print): Simplify code for
15006 rcirc-scroll-show-maximum-output. There is no need to walk
15007 through all windows to find the right one.
15008
f3ada0ee
CS
150092011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
15010
15011 * help.el (help-return-method): Doc fix.
15012
1f3c99ca
MR
150132011-09-03 Martin Rudalics <rudalics@gmx.at>
15014
15015 * window.el (window-deletable-p): Don't return a non-nil value
15016 when there's a buffer that was shown in the window before.
15017 (Bug#9419)
393a301e
SM
15018 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15019 Set window's previous buffers to nil.
1f3c99ca 15020
a3cf097f
EZ
150212011-09-03 Eli Zaretskii <eliz@gnu.org>
15022
15023 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
15024 newline before and after the tag line, so it doesn't interfere
15025 with determining the paragraph direction of bidirectional text.
15026
3d03de90
LL
150272011-09-03 Leo Liu <sdl.web@gmail.com>
15028
15029 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
15030
c3313451
CY
150312011-09-02 Chong Yidong <cyd@stupidchicken.com>
15032
393a301e 15033 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
15034 (pop-to-buffer): Change interactive spec. Pass second argument
15035 directly to display-buffer.
15036 (display-buffer): Fix interactive spec. Use functionp to
15037 distinguish between a function and a list of functions.
15038
15039 * abbrev.el (edit-abbrevs):
15040 * arc-mode.el (archive-extract):
15041 * autoinsert.el (auto-insert):
15042 * bookmark.el (bookmark-bmenu-list):
15043 * files.el (find-file):
15044 * view.el (view-buffer):
15045 * progmodes/compile.el (compilation-goto-locus):
15046 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
15047
89894cd8
CY
150482011-09-02 Chong Yidong <cyd@stupidchicken.com>
15049
15050 * window.el (display-buffer-alist): Doc fix.
15051 (display-buffer): Add docstring. Don't treat
15052 display-buffer-default specially.
15053 (display-buffer-reuse-selected-window)
15054 (display-buffer-same-window, display-buffer-maybe-same-window)
15055 (display-buffer-reuse-window, display-buffer-pop-up-frame)
15056 (display-buffer-pop-up-window)
15057 (display-buffer-reuse-or-pop-window)
15058 (display-buffer-use-some-window): New functions.
15059 (display-buffer-default-action): Use them.
393a301e 15060 (display-buffer-default): Delete.
89894cd8
CY
15061 (pop-to-buffer-1): Fix choice of actions.
15062
ae0bc9fb
SM
150632011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
15064
15065 * minibuffer.el (completion--insert-strings): Don't get confused by
15066 completion entries that end with an LF char.
15067
e9d90883
EZ
150682011-09-01 Eli Zaretskii <eliz@gnu.org>
15069
15070 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
15071
437014c8
CY
150722011-09-01 Chong Yidong <cyd@stupidchicken.com>
15073
15074 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
15075 (display-buffer-same-window, display-buffer-other-window):
15076 New functions.
437014c8
CY
15077 (pop-to-buffer-1): New function. Use the above.
15078 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 15079 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
15080
15081 * view.el (view-buffer-other-window, view-buffer-other-frame):
15082 Just use pop-to-buffer.
15083
a5e063d5
TV
150842011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15085
15086 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
15087
793d32bb
WH
150882011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
15089
15090 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
15091
d65e4c15
RS
150922011-08-31 Richard Stallman <rms@gnu.org>
15093
15094 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
15095 of the separation of rmail-view-buffer from rmail-buffer.
15096 If you say no to "replace original", the decrypt is in the
15097 view buffer. If you say yes, the decrypt goes into the
15098 rmail buffer also.
15099
f818cd2a
MR
151002011-08-31 Martin Rudalics <rudalics@gmx.at>
15101
15102 * window.el (display-buffer-window): Rewrite doc-string.
15103 (display-buffer-record-window): New function.
15104 (display-buffer-macro-specifiers)
15105 (display-buffer-even-window-sizes, display-buffer-set-height)
15106 (display-buffer-set-width, display-buffer-in-window)
15107 (display-buffer-reuse-window, display-buffer-split-specifiers)
15108 (display-buffer-side-specifiers, display-buffer-split-window-1)
15109 (display-buffer-split-window, display-buffer-split-atom-window)
15110 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15111 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
15112 (display-buffer-other-window-means-other-frame)
15113 (display-buffer-normalize-special)
15114 (display-buffer-normalize-default)
15115 (display-buffer-normalize-argument)
15116 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
15117 (display-buffer-normalize-specifiers, display-buffer-frame)
15118 (display-buffer-same-window, display-buffer-same-frame)
15119 (display-buffer-other-window)
15120 (display-buffer-same-frame-other-window)
15121 (display-buffer-other-frame, pop-to-buffer-same-window)
15122 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
15123 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
15124 (switch-to-buffer-same-frame)
15125 (switch-to-buffer-other-window-same-frame)
15126 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
15127 (display-buffer-alist-set-1, display-buffer-alist-set-2)
15128 (display-buffer-alist-set): Remove.
15129 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
15130 (special-display-regexps, special-display-function):
15131 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
15132 parameter.
15133 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
15134 (special-display-frame-alist, special-display-popup-frame)
15135 (same-window-buffer-names, same-window-regexps, same-window-p)
15136 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
15137 (split-window-preferred-function, split-height-threshold)
15138 (split-width-threshold, window-splittable-p)
15139 (split-window-sensibly, window--try-to-split-window)
15140 (window--frame-usable-p, even-window-heights)
15141 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
15142 (window--display-buffer-2, display-buffer-other-frame):
15143 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
15144 (display-buffer-default, display-buffer-assq-regexp): New functions.
15145 (display-buffer-alist): Rewrite doc-string.
15146 (display-buffer-default-action)
15147 (display-buffer-overriding-action): New variables.
15148 (display-buffer, switch-to-buffer): Rewrite.
15149 (pop-to-buffer): Restore Emacs 23 behavior but use
15150 window-normalize-buffer-to-display.
15151 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
15152 Restore Emacs 23 behavior but use
15153 window-normalize-buffer-to-switch-to.
15154 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
15155 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
15156 Rewrite using Emacs 23 options.
f818cd2a 15157
5bc3b51d
MA
151582011-08-31 Michael Albinus <michael.albinus@gmx.de>
15159
15160 * net/tramp.el (tramp-root-regexp): Remove.
15161 (tramp-completion-file-name-regexp-unified)
15162 (tramp-completion-file-name-regexp-separate)
15163 (tramp-completion-file-name-regexp-url): Don't use leading volume
b46a6a83 15164 letter on w32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
15165 (tramp-drop-volume-letter): Simplify definition.
15166 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 15167
b1a4f8e1
SM
151682011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15169
15170 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
15171 (bug#9356).
15172
5664fa7b
RT
151732011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
15174
b1a4f8e1 15175 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 15176
9a45d6c3
JL
151772011-08-29 Juri Linkov <juri@jurta.org>
15178
15179 * isearch.el (isearch-done): Don't display message "Mark saved"
15180 when arg `edit' is non-nil to prevent its flicker in the echo area.
15181
fb87e0fb
CY
151822011-08-28 Chong Yidong <cyd@stupidchicken.com>
15183
15184 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
15185 obsolete packages for deletion.
15186
09ac1c2a
CS
151872011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
15188
15189 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 15190 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
15191 view-mode from help-mode.
15192 (help-xref-override-view-map): Remove.
15193 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
15194 view-mode is not used anymore.
15195
7a1ff57f
CY
151962011-08-28 Chong Yidong <cyd@stupidchicken.com>
15197
15198 * server.el (server-port): Doc fix.
15199
b9696605
CY
15200 * cus-theme.el (custom-theme-choose-mode): Inherit from
15201 special-mode (Bug#9124).
15202 (custom-theme-choose-mode-map): Add special-mode to parent.
15203
ef8cdf8c
AM
152042011-08-28 Alan Mackenzie <acm@muc.de>
15205
15206 * progmodes/cc-fonts.el
15207 (c-make-font-lock-BO-decl-search-function): New function.
15208 (c-basic-matchers-after - "Fontify the clauses after various
15209 keywords"): Extract the three keyword lists for the 3 erroneous
15210 constructs from the list of four, and use the new function above
15211 in place of an old one.
15212
27de4e20
DD
152132011-08-28 Deniz Dogan <deniz@dogan.se>
15214
15215 * net/rcirc.el (rcirc-insert-prev-input)
15216 (rcirc-insert-next-input): Remove unused argument.
15217
356a3681
SM
152182011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15219
15220 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
15221
3fc9b218
AM
152222011-08-27 Alan Mackenzie <acm@muc.de>
15223
15224 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
15225 handle function pointer parameters properly.
15226
538a061c
MR
152272011-08-27 Martin Rudalics <rudalics@gmx.at>
15228
15229 * window.el (display-buffer-reuse-window): Fix case where
15230 selected window was reused with non-nil OTHER-WINDOW argument.
15231 (Bug#9381)
15232
35b1c40c
DD
152332011-08-27 Deniz Dogan <deniz@dogan.se>
15234
15235 * net/rcirc.el (rcirc-check-auth-status): Adding support for
15236 oftc's NickServ messages.
15237
2f6a3e79
GM
152382011-08-27 Glenn Morris <rgm@gnu.org>
15239
15240 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
15241
7254299e
CY
152422011-08-26 Chong Yidong <cyd@stupidchicken.com>
15243
15244 * emacs-lisp/package.el (package-install): Call package-initialize
15245 if called interactively.
15246
f8ccf167
LL
152472011-08-26 Leo Liu <sdl.web@gmail.com>
15248
15249 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
15250
3e8cd5ce
JL
152512011-08-25 Juri Linkov <juri@jurta.org>
15252
15253 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
15254 `search-whitespace-regexp' (bug#9364).
15255
93eb7113
JL
152562011-08-25 Juri Linkov <juri@jurta.org>
15257
15258 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
15259 `regexp-search-ring' to their global values to protect from
15260 updating by `read-from-minibuffer' (bug#9185).
15261
f65d1611
JL
152622011-08-25 Juri Linkov <juri@jurta.org>
15263
15264 * textmodes/ispell.el (ispell-command-loop): Add newline
15265 at the end of the "Use option `i'..." line.
15266
f1cf7a31
JL
152672011-08-25 Juri Linkov <juri@jurta.org>
15268
15269 * battery.el (display-battery-mode): If `battery-status-function'
15270 or `battery-mode-line-format' is nil, display the message and set
15271 `display-battery-mode' to nil (bug#9363).
15272
0c95fcf7
EZ
152732011-08-25 Eli Zaretskii <eliz@gnu.org>
15274
15275 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
15276 bidi-string-mark-left-to-right; they are unnecessary now.
15277
a2ebe600
DD
152782011-08-25 Deniz Dogan <deniz@dogan.se>
15279
15280 * net/quickurl.el: Documentation typo fixes.
15281
e4ed06f1
CY
152822011-08-25 Chong Yidong <cyd@stupidchicken.com>
15283
15284 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
15285
e5f1c99e
GM
152862011-08-25 Glenn Morris <rgm@gnu.org>
15287
b2948976
GM
15288 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
15289
e5f1c99e
GM
15290 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
15291 (smtpmail-via-smtp): Handle nil response from smtp.
15292
f22f4808
JL
152932011-08-24 Juri Linkov <juri@jurta.org>
15294
15295 * proced.el (proced-marked): Inherit from `error' instead of
15296 `font-lock-warning-face'.
15297
15298 * ibuffer.el (ibuffer-marked-face): Change default face from
15299 `font-lock-warning-face' to `warning'.
15300 (ibuffer-deletion-face): Change default face from
15301 `font-lock-type-face' to `error'.
15302
15303 * battery.el (battery-update): Use the face `error' instead of
15304 `font-lock-warning-face' (bug#6117).
15305
6a93965e
JL
153062011-08-24 Juri Linkov <juri@jurta.org>
15307
15308 * faces.el (success): Change face color from "Green3" to
15309 "ForestGreen" on light background (bug#9353).
15310
1ed43b09
CY
153112011-08-24 Chong Yidong <cyd@stupidchicken.com>
15312
5664fa7b
RT
15313 * window.el (quit-window): Rename from quit-restore-window.
15314 Use same arglist as old quit-window.
1ed43b09
CY
15315 (frame-auto-delete): Doc fix.
15316
15317 * view.el (view-mode-exit): Use quit-window.
15318
11dcdbb2
JL
153192011-08-24 Juri Linkov <juri@jurta.org>
15320
15321 * isearch.el (isearch-ring-adjust1): Start visiting previous
15322 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
15323 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
15324 for empty search string (when the last search string is reused
15325 automatically) to adjust the isearch ring to the last element and
15326 prepare the correct index for further M-p commands (bug#9185).
15327
de62b4df
KH
153282011-08-24 Kenichi Handa <handa@m17n.org>
15329
15330 * international/ucs-normalize.el: If decomposition property of
15331 CHAR is the default one (i.e. a list of CHAR itself), treat it as
15332 nil.
15333 (nfd, nfkd): Likewise.
15334
963b492b
SM
153352011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
15336
15337 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
15338 from process filters aren't reliably transmitted to the surrounding
15339 accept-process-output.
15340 (mpc-proc-check): New function.
15341 (mpc-proc-sync): Use it (bug#8293)
15342
93b6b5e1
SM
153432011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15344
15345 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
15346 Add compatibility functions (bug#9313).
15347
bca633fb
EZ
153482011-08-23 Eli Zaretskii <eliz@gnu.org>
15349
b177498a
EZ
15350 * cus-start.el (all): Add entry for bidi-paragraph-direction.
15351
6df6ae42 15352 * international/uni-bidi.el: Regenerate.
bca633fb 15353
0902a04e
KH
153542011-08-23 Kenichi Handa <handa@m17n.org>
15355
15356 * international/charprop.el:
15357 * international/uni-bidi.el:
15358 * international/uni-category.el:
15359 * international/uni-combining.el:
15360 * international/uni-comment.el:
15361 * international/uni-decimal.el:
15362 * international/uni-decomposition.el:
15363 * international/uni-digit.el:
15364 * international/uni-lowercase.el:
15365 * international/uni-mirrored.el:
15366 * international/uni-name.el:
15367 * international/uni-numeric.el:
15368 * international/uni-old-name.el:
15369 * international/uni-titlecase.el:
15370 * international/uni-uppercase.el: Regenerate.
15371
3bbf23bc
MR
153722011-08-23 Martin Rudalics <rudalics@gmx.at>
15373
15374 * help.el (help-window-setup): Fix message displayed when other
15375 window is reused. (Bug#9341)
15376
b3fd59bd
SM
153772011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15378
1802e444
SM
15379 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
15380 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
15381
b3fd59bd
SM
15382 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
15383 Mark obsolete.
15384 * shell.el (shell-parse-pcomplete-arguments): New function.
15385 (shell-completion-vars): Use it instead (bug#9160).
15386
4eb61348
SM
153872011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
15388
867cab74
SM
15389 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
15390 strings and comments (bug#9333).
15391
4eb61348
SM
15392 * emacs-lisp/debug.el (debug-arglist): New function.
15393 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
15394 (debug-on-entry-1): Handle interpreted closures (bug#9120).
15395
262a1439
JL
153962011-08-22 Juri Linkov <juri@jurta.org>
15397
56ee679c
JL
15398 * progmodes/compile.el (compilation-mode-font-lock-keywords):
15399 Revert regexp that highlights output switches to its old
15400 pre-2010-10-28 value and remove one `?' from it (bug#9319).
15401
262a1439
JL
15402 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
15403 to check for empty output (bug#9226).
15404
f13f86fb
CY
154052011-08-22 Chong Yidong <cyd@stupidchicken.com>
15406
15407 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
15408 symbol-constituent as the default, as that stops font-lock from
15409 working properly (Bug#8843).
15410
c65c9622
LMI
154112011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15412
15413 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
15414 `coding-system-for-*' around the process open call to avoid
15415 auth-source side effects.
e7f2c178 15416 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
15417 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
15418 probe hangs.
c65c9622 15419
23a8a5ab
CY
154202011-08-21 Chong Yidong <cyd@stupidchicken.com>
15421
ff98b2dd
CY
15422 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
15423
23a8a5ab
CY
15424 * emacs-lisp/find-func.el (find-function-noselect): New arg
15425 lisp-only.
15426
15427 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
15428 signal an error for built-in functions (Bug#6664).
15429
f5e3c598
LMI
154302011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15431
15432 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
15433 (smtpmail-try-auth-methods): Use it.
15434
a3f2468a
CY
154352011-08-21 Chong Yidong <cyd@stupidchicken.com>
15436
2c34e8da
CY
15437 * font-lock.el (font-lock-fontify-region)
15438 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
15439 (font-lock-default-unfontify-buffer)
15440 (font-lock-default-fontify-region)
15441 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
15442
b3fd59bd
SM
15443 * progmodes/compile.el (compilation-error-properties):
15444 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
15445 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
15446 `ant' regexp.
ee31aabc 15447
a3f2468a
CY
15448 * net/browse-url.el (browse-url-firefox): Don't call
15449 browse-url-firefox-sentinel unless using -remote (Bug#9328).
15450
8e999f70
GM
154512011-08-20 Glenn Morris <rgm@gnu.org>
15452
c21a496a
GM
15453 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
15454
59ee0542
GM
15455 * tutorial.el (tutorial--default-keys): Update some default bindings.
15456
8e999f70
GM
15457 * files.el (hack-local-variables): Fully ignore case for "mode:".
15458
e3715033
AM
154592011-08-20 Alan Mackenzie <acm@muc.de>
15460
15461 Resolve invalid use of a regexp in regexp-opt.
15462
4d61f28d
JB
15463 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
15464 detection for a java annotation.
e3715033 15465
4d61f28d 15466 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
15467 detection for a java annotation.
15468
4d61f28d
JB
15469 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
15470 handling for java.
e3715033
AM
15471 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
15472
04ed2e9c
CY
154732011-08-20 Chong Yidong <cyd@stupidchicken.com>
15474
15475 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
15476 (Bug#9274).
15477
826cee64
AM
154782011-08-20 Alan Mackenzie <acm@muc.de>
15479
58179cce 15480 Fontify CPP expressions correctly when starting in the middle of
826cee64
AM
15481 such a construct. Mainly for when jit-lock etc. starts a chunk
15482 here.
15483
58179cce 15484 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
826cee64 15485 variable.
58179cce 15486 (c-make-font-lock-search-form): New function, extracted from
826cee64
AM
15487 c-make-font-lock-search-function.
15488 (c-make-font-lock-search-function): Use the above function.
15489 (c-make-font-lock-context-search-function): New function.
15490 (c-cpp-matchers): Enhance the preprocessor expression case with
15491 the above function
15492 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
15493 which takes an expression.
15494
15495 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
15496
13009bd8
MR
154972011-08-20 Martin Rudalics <rudalics@gmx.at>
15498
15499 * window.el (display-buffer-reuse-window)
15500 (display-buffer-pop-up-window): Don't reuse or split a side
15501 window.
15502
9234ff7f
GM
155032011-08-19 Glenn Morris <rgm@gnu.org>
15504
15505 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 15506 Downcase "Mode:". (Bug#9331)
9234ff7f 15507
f635daa1
CY
155082011-08-18 Chong Yidong <cyd@stupidchicken.com>
15509
15510 * international/characters.el: Add L and R categories.
15511
15512 * subr.el (bidi-string-mark-left-to-right): Rename from
15513 string-mark-left-to-right. Use category search.
15514
15515 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
15516
bc987f8b
JL
155172011-08-18 Juri Linkov <juri@jurta.org>
15518
15519 * faces.el (error, warning, success): New faces with definitions
15520 copied from old default values of `font-lock-warning-face',
15521 `compilation-warning', `compilation-info' (bug#6117).
15522
15523 * font-lock.el (font-lock-warning-face): Inherit from `error'.
15524
15525 * progmodes/compile.el (compilation-error): Inherit from `error'.
15526 (compilation-warning): Inherit from `warning'.
15527 (compilation-info): Inherit from `success'.
15528
15529 * dired.el (dired-marked): Inherit from `warning'.
15530 (dired-flagged): Inherit from `error'.
15531
57173b96
LMI
155322011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15533
3e79eb87
LMI
15534 * mail/smtpmail.el (auth-source): Require to avoid problems with
15535 binding variables (bug#9298). Also clean up some unused
15536 autoloads.
15537
b3fd59bd
SM
15538 * net/network-stream.el (network-stream-open-starttls):
15539 Support using starttls.el without using gnutls-cli.
57173b96 15540
02b404de
JL
155412011-08-17 Juri Linkov <juri@jurta.org>
15542
15543 * progmodes/grep.el (rgrep): Handle the case when
15544 `grep-find-command' is a cons cell (bug#9278).
15545
8c9177f2
MR
155462011-08-17 Martin Rudalics <rudalics@gmx.at>
15547
15548 * window.el (display-buffer-pop-up-frame): Run frame creation
15549 function with BUFFER current (as special-display-popup-frame
15550 does). Reported by Drew Adams.
15551
3644a0ab
DU
155522011-08-17 Daiki Ueno <ueno@unixuser.org>
15553
15554 * epa-mail.el: Simplify GnuPG group expansion using
15555 epg-expand-group.
15556 (epa-mail-group-alist, epa-mail-group-modtime)
15557 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
15558 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
15559 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
15560 Remove.
15561
5e617bc2 155622011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
15563
15564 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
15565
9c4aeabf
AM
155662011-08-16 Alan Mackenzie <acm@muc.de>
15567
15568 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
15569 Correct, to avoid the inside of macros.
15570
3a99bf64
RS
155712011-08-16 Richard Stallman <rms@gnu.org>
15572
04963aa8
RS
15573 * epa-mail.el: Handle GnuPG group definitions.
15574 (epa-mail-group-alist, epa-mail-group-modtime)
15575 (epa-mail-gnupg-conf-file): New variables.
15576 (epa-mail-parse-groups, epa-mail-sync-groups)
15577 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
15578 (epa-mail-expand-recipients): New functions.
15579 (epa-mail-encrypt): Call epa-mail-expand-recipients.
15580
177549d0
RS
15581 * mail/rmail.el (rmail-epa-decrypt): New command.
15582
fe38beef
RS
15583 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
15584 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
15585 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
15586 (epa-decrypt-armor-in-region): Make error message clearer.
15587
934eacb9
SM
155882011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
15589
15590 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
15591 and "a2b" to "ab" for `prefix'.
15592
d024fb4e
CY
155932011-08-14 Chong Yidong <cyd@stupidchicken.com>
15594
15595 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
15596 filter groups.
de148fee
CY
15597 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
15598 Fourquet (Bug#8804).
d024fb4e 15599
62f1ca49
JB
156002011-08-12 Juanma Barranquero <lekktu@gmail.com>
15601
15602 * startup.el (argi): Declare as global variable (bug#9275).
15603
9ccaaa4b
CY
156042011-08-12 Chong Yidong <cyd@stupidchicken.com>
15605
15606 * subr.el (string-mark-left-to-right): Search the entire string
15607 for RTL script, not just the terminating character. Doc fix.
15608
a3dae87a
SM
156092011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
15610
6cd18349
SM
15611 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
15612 New function.
15613 (js--regexp-literal, js-syntax-propertize-function): Remove.
15614 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
15615 (js-mode-map): Don't rebind electric keys.
15616 (js-insert-and-indent): Remove.
15617 (js-mode): Setup electric-layout and electric-indent instead.
15618
a3dae87a
SM
15619 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
15620
9d5cb631
DU
156212011-08-12 Daiki Ueno <ueno@unixuser.org>
15622
15623 * epa.el (epa-progress-callback-function): Fix the logic of
15624 displaying progress.
15625 * epa-file.el (epa-file-insert-file-contents): Make progress
15626 display more user-friendly.
15627 (epa-file-write-region): Ditto.
15628
3e26a4a2
CY
156292011-08-10 Chong Yidong <cyd@stupidchicken.com>
15630
15631 * subr.el (string-mark-left-to-right): New function.
15632
15633 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
15634 Use string-mark-left-to-right.
15635 (list-buffers-noselect): Caller changed.
15636
a3dae87a
SM
15637 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15638 Use string-mark-left-to-right.
3e26a4a2
CY
15639 (tabulated-list-print): Recenter after moving point.
15640
ac8cf6e6
JL
156412011-08-10 Juri Linkov <juri@jurta.org>
15642
15643 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
15644 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
15645 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
15646
8d96c9a4
CY
156472011-08-09 Chong Yidong <cyd@stupidchicken.com>
15648
15649 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
15650 (Bug#7554).
15651
7be1c708 156522011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
15653
15654 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
15655 character. (Bug#6594)
15656
37e11a63
CY
156572011-08-08 Chong Yidong <cyd@stupidchicken.com>
15658
839dde57
CY
15659 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
15660 (image-dired--with-db-file): New macro.
15661 (image-dired-write-tags, image-dired-remove-tag)
15662 (image-dired-create-gallery-lists, image-dired-write-comments)
15663 (image-dired-get-comment, image-dired-mark-tagged-files)
15664 (image-dired-list-tags, image-dired-gallery-generate): Use it.
15665 (image-dired-gallery-generate): Use insert-file-contents.
15666
37e11a63
CY
15667 * time.el (display-time-world-list, display-time-world-display):
15668 * time-stamp.el (time-stamp-string):
15669 * vc/add-log.el (add-change-log-entry): Use setenv instead of
15670 set-time-zone-rule (Bug#7337).
15671
0b4946c4
DU
156722011-08-08 Daiki Ueno <ueno@unixuser.org>
15673
15674 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
15675 (epg-error-to-string, epg-errors-to-string): New function.
15676 (epg-wait-for-completion): Reverse errors list.
15677 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
15678 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
15679 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
15680 (epg-sign-keys, epg-generate-key-from-file)
15681 (epg-generate-key-from-string): Format errors by using
15682 epg-errors-to-string (bug#9255).
15683 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
15684
75bfc667
JL
156852011-08-07 Juri Linkov <juri@jurta.org>
15686
15687 * faces.el (list-faces-display): Remove extra angle bracket
15688 from `help-mode-map'.
15689
15690 * info.el (Info-history-toc-nodes): Doc fix.
15691
15692 * longlines.el (longlines-mode): Doc fix.
15693
673e08bb
SM
156942011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
15695
4640dd88
SM
15696 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
15697 of statements and in a few more cases (bug#9183).
15698
673e08bb
SM
15699 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
15700 New functions.
15701 (cl-transform-lambda): Use them (bug#9239).
15702
89b3f019
MR
157032011-08-05 Martin Rudalics <rudalics@gmx.at>
15704
15705 * window.el (display-buffer-same-window)
15706 (display-buffer-same-frame, display-buffer-other-window)
15707 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
15708 (pop-to-buffer-other-window)
15709 (pop-to-buffer-same-frame-other-window)
15710 (pop-to-buffer-other-frame): Make them defuns.
15711 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
15712
640c8776
SM
157132011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15714
15715 * subr.el (make-composed-keymap): Move from C. Change calling
15716 convention, and improve docstring to bring attention to a subtle point.
15717 * minibuffer.el (completing-read-default): Adjust accordingly.
15718
63648a95
MA
157192011-08-03 Michael Albinus <michael.albinus@gmx.de>
15720
15721 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
15722 (tramp-open-shell): Use `tramp-shell-quote-argument'.
15723
15724 * net/trampver.el: Update release number.
15725
b796c9b7
SM
157262011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15727
15728 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
15729 "in" (bug#9190).
15730
2239d7d5
LMI
157312011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15732
e07dd7c3
LMI
15733 * mail/sendmail.el (sendmail-query-once): Restore the current
15734 buffer after querying (bug#9074).
15735
0e6a2bd7
LMI
15736 * dired.el (dired-flagged): Use different faces for marked and
15737 flagged files (bug#6117).
15738
ce887515
LMI
15739 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
15740 (bug#4433).
15741
92f2affc
LMI
15742 * ido.el (ido-mode): Switch off the message if called
15743 non-interactively.
15744
57d5aff0
LMI
15745 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
15746 before 587, since it appears that that's more likely to work for
15747 more people.
15748
98cd6c18 15749 * cus-edit.el (custom-file): When running under emacs -q, always
e1dbe924 15750 refuse to save the customizations, even if the .emacs file doesn't
98cd6c18
LMI
15751 exist.
15752
b96dec83
LMI
15753 * info.el: Remove the `Info-beginning-of-buffer' function
15754 (bug#8325).
15755
b796c9b7
SM
15756 * net/network-stream.el (network-stream-open-starttls):
15757 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 15758
d90e2ea0
MR
157592011-08-01 Martin Rudalics <rudalics@gmx.at>
15760
15761 * window.el (display-buffer-in-window): Don't set dedicated status
15762 of window here (Bug#9215).
15763 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15764 (display-buffer-pop-up-side-window)
b796c9b7 15765 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 15766
cca09170
SM
157672011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
15768
15769 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
15770 before binding generated-autoload-file.
15771
027b979c
DD
157722011-08-01 Deniz Dogan <deniz@dogan.se>
15773
15774 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
15775
3c7ee4f3
MA
157762011-07-30 Michael Albinus <michael.albinus@gmx.de>
15777
15778 Sync with Tramp 2.2.2.
15779
15780 * net/trampver.el: Update release number.
15781
2cc8e51a
JL
157822011-07-30 Juri Linkov <juri@jurta.org>
15783
15784 * dired-aux.el (dired-touch-initial): Remove function.
15785 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
15786 current time, and `default' to the last modification time of the
15787 current marked file (bug#6887).
15788
a514d856
JM
157892011-07-28 Jose E. Marchesi <jemarch@gnu.org>
15790
15791 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 15792 numeric argument to read-number (bug#9163).
a514d856 15793
8a7eddd7
MA
157942011-07-27 Michael Albinus <michael.albinus@gmx.de>
15795
15796 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
15797 connection process, it could be nil.
15798
1ddd96f5
LL
157992011-07-27 Leo Liu <sdl.web@gmail.com>
15800
15801 Simplify url handling in rcirc-mode.
15802
15803 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
15804 (rcirc-browse-url-at-mouse): Remove.
15805 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
15806
b248a85d
AM
158072011-07-26 Alan Mackenzie <acm@muc.de>
15808
15809 Fontify bitfield declarations properly.
15810
15811 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
15812 (c-symbol-chars): Now exported as a lang variable.
15813 (c-not-primitive-type-keywords): New lang variable.
15814
15815 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
15816 QT keyword "more" to prevent "more slots: ...." being spuriously
58179cce 15817 parsed as a bitfield declaration.
b248a85d 15818
b796c9b7
SM
15819 * progmodes/cc-engine.el (c-beginning-of-statement-1):
15820 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
15821 (c-punctuation-in): New function.
15822 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
15823 declarations properly.
15824
68575ab0
UJ
158252011-07-26 Ulf Jasper <ulf.jasper@web.de>
15826
15827 * calendar/icalendar.el (icalendar--all-events): Take care of
15828 multiple vcalendars in a single file.
b796c9b7 15829 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 15830
0f0a88b9
DD
158312011-07-25 Deniz Dogan <deniz@dogan.se>
15832
15833 * image.el (insert-image): Clarifying docstring.
15834
0b3f36df
MA
158352011-07-24 Michael Albinus <michael.albinus@gmx.de>
15836
15837 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
15838 `tramp-send-command-and-check' if there is no error.
15839 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
15840
a9901f61
AM
158412011-07-22 Alan Mackenzie <acm@muc.de>
15842
15843 Prevent cc-langs.elc being loaded at run time.
15844
15845 * progmodes/cc-mode.el: Remove two autoload forms which loaded
15846 cc-langs.
15847
4d61f28d 15848 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
15849 "(require 'cc-langs)". Quote a form so it will evaluate at
15850 (cc-mode's) compilation time.
15851
11d074b2
MA
158522011-07-22 Michael Albinus <michael.albinus@gmx.de>
15853
15854 * net/tramp.el (tramp-file-name-handler): Avoid recursive
15855 loading. (Bug#9114)
15856
938b94c8
MR
158572011-07-21 Martin Rudalics <rudalics@gmx.at>
15858
15859 * window.el (display-buffer-pop-up-window)
15860 (display-buffer-pop-up-side-window)
15861 (display-buffer-in-side-window): Call display-buffer-set-height
15862 and display-buffer-set-width after setting the new window's
b796c9b7 15863 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 15864
bfa4f190
SS
158652011-07-20 Sam Steingold <sds@gnu.org>
15866
15867 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
15868 (etags-tags-included-tables): Call `convert-standard-filename' on
15869 the file names contained in TAGS so that windows Emacs can handle
15870 TAGS files created by cygwin ctags.
15871
8ca42262
LMI
158722011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
15873
15874 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
15875 which apparently didn't work.
15876
5db2afd2 158772011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 15878
5db2afd2
RW
15879 * proced.el (proced-send-signal): For *Marked Processes* buffer
15880 put point at beginning of buffer.
15881
92e15d10
SB
158822011-07-19 Stephen Berman <stephen.berman@gmx.net>
15883
15884 * proced.el (proced-format): Make header lines align with the text
15885 (bug#1779).
15886
1bfd59e5
LMI
158872011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15888
15889 * view.el (view-buffer): Allow running in `special' modes if we're
15890 visiting a file (bug#8615).
15891
f5aae37c
MR
158922011-07-19 Martin Rudalics <rudalics@gmx.at>
15893
15894 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
15895 (display-buffer-alist-set-1, display-buffer-alist-set-2):
15896 New functions.
f5aae37c
MR
15897 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
15898 more accurately.
15899
bf2c1571
AM
159002011-07-18 Alan Mackenzie <acm@muc.de>
15901
15902 Fontify declarators properly when, e.g., a jit-lock chunk begins
15903 inside a declaration.
15904
15905 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
15906
b796c9b7
SM
15907 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15908 New function.
bf2c1571
AM
15909 (c-complex-decl-matchers): Insert reference to
15910 c-font-lock-enclosing-decls.
15911
15912 * progmodes/cc-engine.el (c-backward-single-comment):
15913 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
15914 to nil around calls to (forward-comment -1).
15915
4e190b80
LMI
159162011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15917
12dc863d
LMI
15918 * image.el (put-image): Doc typo fix.
15919
a762e966
LMI
15920 * progmodes/etags.el (tags-search): Doc typo fix.
15921
4e190b80
LMI
15922 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
15923 password if we get errors 550 to 554.
15924
f019fb21
LMI
159252011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
15926
b796c9b7 15927 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 15928
81746738
LMI
15929 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
15930 indentation character (bug#6380).
15931
3ee3a1b5
LMI
15932 * files.el (buffer-offer-save): Made permanently local (bug#6241).
15933
c82f64de
LMI
15934 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
15935 to clarify what the problem is (bug#4291).
15936
f019fb21
LMI
15937 * simple.el (current-kill): Clarify what
15938 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
15939 (auto-fill-mode): Document `auto-fill-function' in relation to
15940 `auto-fill-mode' (bug#2470).
f019fb21 15941
0794775d
LM
159422011-07-16 Lawrence Mitchell <wence@gmx.li>
15943
15944 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
15945 method if slot is read-only (bug#9035).
15946
be39b8cc
MR
159472011-07-16 Martin Rudalics <rudalics@gmx.at>
15948
b796c9b7 15949 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 15950 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
15951 selected before, see discussion of (Bug#8615), (Bug#6954).
15952 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 15953
6ccf7859
GM
159542011-07-15 Glenn Morris <rgm@gnu.org>
15955
15956 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 15957 Respect help-form.
6ccf7859 15958
87e86684
LM
159592011-07-09 Lawrence Mitchell <wence@gmx.li>
15960
15961 * net/gnutls.el (gnutls-min-prime-bits): New variable.
15962 (gnutls-negotiate): Use it.
15963
d6066239
LMI
159642011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15965
b796c9b7
SM
15966 * net/gnutls.el (gnutls-negotiate):
15967 Upcase `gnutls-algorithm-priority'.
d6066239 15968
bd23ebc0
GM
159692011-07-15 Glenn Morris <rgm@gnu.org>
15970
c65bca65
GM
15971 * jka-compr.el (jka-compr-verbose): Move from here...
15972 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
15973 Add missing :version tag.
15974 * info.el: No need to require jka-compr when compiling.
bd23ebc0 15975
478615cc
LMI
159762011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15977
7b41decb
LMI
15978 * net/gnutls.el (gnutls-algorithm-priority): New variable.
15979 (gnutls-negotiate): Use it.
15980
dbc44fcd
LMI
15981 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
15982
06789f97
LMI
15983 * info.el (Info-beginning-of-buffer): New command.
15984 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
15985 announcing `b' as the key (bug#8325).
ab896c37 15986 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 15987
c39da690
LMI
15988 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
15989
3aa5f34b
LMI
15990 * international/mule-cmds.el
15991 (describe-specified-language-support): Make the error message
15992 clearer (bug#8905).
15993
4bf0979f
LMI
15994 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
15995
478615cc
LMI
15996 * isearch.el (isearch-barrier): Add a doc string, since it's
15997 mentioned in a function doc string (bug#8678).
15998
75c68aa1
MR
159992011-07-15 Martin Rudalics <rudalics@gmx.at>
16000
16001 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
16002 buffer argument (Bug#9083) and self-identifying label argument.
16003
a7c33da2
GM
160042011-07-15 Glenn Morris <rgm@gnu.org>
16005
16006 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
16007
2f5c6024
LMI
160082011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16009
16010 * man.el (Man-fontify-manpage): Fix message when formatting the
16011 man page (bug#7929).
16012
0bb23927 160132011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
16014
16015 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
16016 argument LRM; if non-nil, append an invisible LRM character to the
16017 buffer name.
16018 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
16019 last argument non-nil, when formatting buffer names.
0bb23927
EZ
16020 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
16021 paragraph direction.
cce4b0a7 16022
621ef9ab
LMI
160232011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16024
d1583c48
LMI
16025 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
16026 the man page name (bug#7929).
16027
6a57fb5f
LMI
16028 * image.el (put-image): Mention the `put-image' overlay property
16029 (bug#7834).
16030
d7956b14
LMI
16031 * scroll-bar.el (set-scroll-bar-mode): Mention that
16032 `scroll-bar-mode' lists the values (bug#7772).
16033
5b2d4a66
LMI
16034 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
16035 command (bug#7729).
16036
7509a874
LMI
16037 * rect.el (apply-on-rectangle): Return the point after the last
16038 operation.
16039 (string-rectangle): Go to the point after the last operation
16040 (bug#7522).
16041
4fe74b19
LMI
16042 * printing.el (pr-toggle-region): Clarify the documentation
16043 slightly (bug#7493).
16044
b796c9b7
SM
16045 * time.el (display-time-update):
16046 Allow `display-time-mail-function' to return nil (bug#7158).
16047 Fix suggested by Detlev Zundel.
ab283561 16048
fc233c9d
LMI
16049 * vc/diff.el (diff): Clarify the order the file names are read
16050 (bug#7111).
16051
43f5740b
LMI
16052 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
16053 the doc string (bug#7015).
16054
f2182a76
LMI
16055 * font-lock.el (font-lock-maximum-decoration): Mention what
16056 numeric levels mean (bug#6935).
16057
621ef9ab
LMI
16058 * startup.el (initial-buffer-choice): Don't mention the `none'
16059 selection, which is against policy.
16060
adc47434
MR
160612011-07-14 Martin Rudalics <rudalics@gmx.at>
16062
b796c9b7
SM
16063 * window.el (display-buffer-normalize-special):
16064 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 16065
7e5bfb8f
EZ
160662011-07-14 Eli Zaretskii <eliz@gnu.org>
16067
16068 * subr.el (version<, version<=, version=): Mention "-CVS" and
16069 "-12345" alpha version numbers.
16070
27fa387a
CY
160712011-07-14 Chong Yidong <cyd@stupidchicken.com>
16072
16073 * bindings.el: Add advertised binding for set-mark-command
16074 (Bug#5772).
16075
8bdfa064
CY
160762011-07-14 Chong Yidong <cyd@stupidchicken.com>
16077
16078 * bindings.el (mode-line-other-buffer):
16079 * bookmark.el (bookmark-bmenu-2-window):
16080 * bs.el (bs-cycle-next, bs-cycle-previous):
16081 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
16082 switch-to-buffer.
16083
16084 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 16085 Delete.
8bdfa064 16086
5eba16a3
JB
160872011-07-14 Juanma Barranquero <lekktu@gmail.com>
16088
16089 * follow.el (follow-debug-message, follow-redisplay):
16090 * jka-cmpr-hook.el (with-auto-compression-mode):
16091 Fix typos in docstrings.
16092
15853710
LMI
160932011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16094
a28e4607
LMI
16095 * subr.el (with-silent-modifications): Clarify somewhat what the
16096 macro inhibits (bug#6525).
16097
15853710
LMI
16098 * simple.el (eval-expression): Note what it does if called
16099 interactively (bug#6495).
16100
bee0fcef
CY
161012011-07-13 Chong Yidong <cyd@stupidchicken.com>
16102
b796c9b7
SM
16103 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
16104 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
16105
16106 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16107 Remove switch-to-buffer.
16108
58274504
LMI
161092011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16110
bd2fcc8d
LMI
16111 * files.el (make-directory): Clarify that an error will be raised
16112 if there's an error (bug#6397).
16113
0f04b32c
LMI
16114 * startup.el (initial-buffer-choice): Add `none' as a choice
16115 (bug#6234).
16116
465c5fc8
LMI
16117 * subr.el (add-hook): Clarify section about buffer-local hooks
16118 (bug#6218).
16119
58274504
LMI
16120 * dired.el (dired-flagged): Clarify doc string (bug#6117).
16121
bead9a43
JB
161222011-07-13 Juanma Barranquero <lekktu@gmail.com>
16123
16124 * tabify.el (untabify): Preserve the current column so that point
16125 doesn't move (bug#6032).
16126
3af98a7b
LMI
161272011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16128
b796c9b7
SM
16129 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
16130 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 16131
6240145a
GM
161322011-07-13 Glenn Morris <rgm@gnu.org>
16133
16134 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
16135 (dired-insert-directory): Give a message the first time
16136 if ls is found not to support --dired.
16137
1d8c2ccc
LMI
161382011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16139
16140 * simple.el (toggle-truncate-lines): Clarify what is toggled
16141 (bug#5580). Text by Drew Adams.
16142
5fc4038e
CY
161432011-07-13 Chong Yidong <cyd@stupidchicken.com>
16144
16145 * simple.el (blink-matching-open): Make the error message from the
16146 last change less verbose.
16147
bf6012e5
DN
161482011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
16149
16150 * font-lock.el (font-lock-comment-face): Use the high contrast
16151 "yellow" color for font-lock-comment-face on low color terminals
16152 using a dark background color (bug#4221).
16153
343c3b5a
LMI
161542011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16155
7e9505c5
LMI
16156 * dired.el (dired-insert-set-properties): Make the doc string
16157 reflect what it does now (bug#5325).
16158
c26fdcf5
LMI
16159 * simple.el (blink-matching-open): Say that we were unable to find
16160 the match within the limit, if we're limited (bug#5122).
16161
bb388cc5
LMI
16162 * international/mule-cmds.el (prefer-coding-system): Add an
16163 example (bug#4869).
16164
343c3b5a
LMI
16165 * progmodes/etags.el (tags-search): Document `file-list-form'
16166 (bug#4731).
16167
2a517d45
LM
161682011-07-13 Lawrence Mitchell <wence@gmx.li>
16169
16170 * net/browse-url.el (browse-url-default-browser)
16171 (browse-url-browser-function): Make the default browser choice a
16172 bit more logical (bug#4300). Also clean up the doc string.
16173
b6c78ef2
JB
161742011-07-13 Juanma Barranquero <lekktu@gmail.com>
16175
16176 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
16177 binary endings (bug#4440).
16178
1c4dd947
LMI
161792011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16180
a2014063
LMI
16181 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
16182 which can be pretty annoying (bug#8971).
16183
9c9c2d88
LMI
16184 * jka-compr.el (jka-compr-verbose): New variable, and use
16185 throughout (bug#8971).
16186
1c4dd947
LMI
16187 * info.el (Info-find-file): Fall back on the installation
16188 directory if we can't find the info node anywhere else.
16189
a1c9f41b
SO
161902011-07-13 Sergei Organov <osv@javad.com> (tiny change)
16191
16192 * vc/vc.el (vc-revert-file):
16193 Don't set file time-stamp in the past. (Bug#5181)
16194
536f3d36
LMI
161952011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16196
7152b011
LMI
16197 * files.el (after-find-file): Give a better error message when
16198 trying to find a symlink that points to a file that doesn't exist
16199 (bug#4398).
16200
536f3d36
LMI
16201 * progmodes/cc-vars.el: Remove (probably) misleading comment
16202 (bug#4396).
16203
460c0fba
JB
162042011-07-12 Johan Bockgård <bojohan@gnu.org>
16205
16206 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
16207
7a6bda45
CY
162082011-07-12 Chong Yidong <cyd@stupidchicken.com>
16209
16210 * mouse-sel.el: Hack restoring functionality, while keeping
16211 compatibility with 2010-07-03 changes to mouse selection.
16212 (mouse-sel-primary-overlay): New var.
16213 (mouse-sel-selection-alist): Use it.
16214 (mouse-sel-mode): Doc fix; remove points that are default features
16215 of mouse.el.
16216
c79598ef
JB
162172011-07-12 Johan Bockgård <bojohan@gnu.org>
16218
16219 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16220 Fix previous fix (bug#2490).
16221
ff8be6ef
RW
162222011-07-12 Roland Winkler <winkler@gnu.org>
16223
b796c9b7
SM
16224 * textmodes/bibtex.el (bibtex-initialize):
16225 Use pop-to-buffer-same-window.
ff8be6ef
RW
16226 (bibtex-search-entries): Fix interactive call.
16227
296ba3ee
LMI
162282011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16229
f5242a02 16230 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
16231 Fontise bytecomp Error lines more correctly (bug#2490).
16232 Fix suggested by Johan Bockgård.
f5242a02 16233
296ba3ee
LMI
16234 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
16235
16236 * dired-x.el (dired-guess-default): Use `delete-dups'.
16237
f69fd0d2
CY
162382011-07-12 Chong Yidong <cyd@stupidchicken.com>
16239
16240 * dired.el (dired-mark-prompt):
16241 * dired-aux.el (dired-read-shell-command): Doc fix.
16242
eab5dc07
LMI
162432011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16244
b796c9b7
SM
16245 * mail/sendmail.el (sendmail-query-once):
16246 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
16247 emacs -Q.
16248
16249 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16250
eab5dc07
LMI
16251 * cus-edit.el (custom-file): Take an optional no-error variable.
16252 (customize-save-variable): Set the variable, and give a warning if
16253 running under "emacs -q".
16254
a1e65d42
JB
162552011-07-11 Juanma Barranquero <lekktu@gmail.com>
16256
16257 * loadhist.el (unload-feature-special-hooks):
16258 Add `auto-coding-functions', `fill-nobreak-predicate' and
16259 `find-directory-functions' (bug#5327).
16260
1d52da10
LMI
162612011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16262
be958f1d
LMI
16263 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
16264
5bedb26c
LMI
16265 * cus-edit.el (custom-guess-name-alist): -alist variables should
16266 use the `alist' type (bug#3120). Suggested by Drew Adams.
16267
1d52da10
LMI
16268 * printing.el: Add documentation to all the `pr-toggle-' commands.
16269
cd394be1 162702011-07-11 Leo Liu <sdl.web@gmail.com>
481a51b6
LL
16271
16272 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
16273 backends where it makes sense (bug#2623).
16274
dcc88d8a
LMI
162752011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16276
c3de9feb
LMI
16277 * dired-x.el (dired-guess-default): Remove duplicate shell command
16278 entries (bug#2028).
8a93078b 16279 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 16280 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 16281
dcc88d8a
LMI
16282 * subr.el (remove-duplicates): New conveniency function.
16283
505e3645
LMI
162842011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16285
16286 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
16287 (bug#1526).
16288
162892011-07-10 Martin Rudalics <rudalics@gmx.at>
16290
16291 * window.el (display-buffer-normalize-default): Don't invert
16292 meaning of even-window-heights. Reported by Eli Zaretskii
16293 <eliz@gnu.org>.
16294
455e4fa1
BR
162952011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
16296
16297 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
16298
8e0bc3e9
CY
162992011-07-10 Chong Yidong <cyd@stupidchicken.com>
16300
16301 * window.el (display-buffer): Fix arguments to
16302 display-buffer-reuse-window in last change.
16303
fa7c3228
CY
16304 * faces.el (link): Use a less saturated blue on light backgrounds.
16305
16306 * startup.el (fancy-startup-text, fancy-about-text)
16307 (fancy-startup-tail): Use font-lock faces, for background safety.
16308
c0a7f300
BN
163092011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
16310
b796c9b7
SM
16311 * emulation/viper-cmd.el (viper-change-state-to-vi):
16312 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 16313
4dc2a129
MR
163142011-07-09 Martin Rudalics <rudalics@gmx.at>
16315
16316 * window.el (display-buffer-default-specifiers): Remove.
16317 (display-buffer-macro-specifiers): Remove default specifiers.
16318 (display-buffer-alist): Default to nil.
b796c9b7 16319 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
16320 (display-buffer-pop-up-window): Allow splitting internal
16321 windows. Check whether a live window was created.
16322 (display-buffer-other-window-means-other-frame)
16323 (display-buffer-normalize-arguments): Rename to
16324 display-buffer-normalize-argument and rewrite. Set the
16325 other-window specifier.
16326 (display-buffer-normalize-special): New function.
16327 (display-buffer-normalize-options): Rename to
16328 display-buffer-normalize-default and rewrite.
16329 (display-buffer-normalize-options-inhibit): Remove.
16330 (display-buffer-normalize-specifiers): Rewrite.
16331 (display-buffer): Process other-window specifier and call
16332 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
16333 more faithfully.
b796c9b7 16334 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 16335 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
16336 (display-buffer-in-window, display-buffer-alist-set):
16337 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
16338 <tassilo@member.fsf.org>.
16339
2d43b8c9
LL
163402011-07-09 Leo Liu <sdl.web@gmail.com>
16341
16342 * register.el (insert-register): Restore accidental change on
16343 2011-06-26. (Bug#9028)
16344
7f9b7c53
GM
163452011-07-09 Glenn Morris <rgm@gnu.org>
16346
16347 * subr.el (remq): Handle the empty list. (Bug#9024)
16348
f042cfd8
AS
163492011-07-08 Andreas Schwab <schwab@linux-m68k.org>
16350
16351 * mail/sendmail.el (send-mail-function): No longer delay custom
16352 initialization.
16353 * custom.el (custom-initialize-delay): Doc fix.
16354
856b2f11
SM
163552011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16356
16357 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
16358
afae1d68
MA
163592011-07-08 Michael Albinus <michael.albinus@gmx.de>
16360
16361 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
16362 human-friendly prompt.
16363
0757af94
SM
163642011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16365
16366 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
16367 provided by a particular plugin.
16368
d760b731
LMI
163692011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
16370
16371 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
16372 save customizations (with "emacs -Q"), just set the variable
16373 instead of erroring out.
16374
16375 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16376
cd79ce90
JL
163772011-07-08 Juri Linkov <juri@jurta.org>
16378
16379 * arc-mode.el (archive-zip-expunge, archive-zip-update)
16380 (archive-zip-update-case): Use 7z if found by `executable-find'.
16381 The order of searching the available programs is the same as in
16382 `archive-zip-extract' (bug#8968).
16383
14cc04aa
CY
163842011-07-07 Chong Yidong <cyd@stupidchicken.com>
16385
16386 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
16387 (menu-bar-options-menu): Tweak descriptions.
16388
0a1848ec
LMI
163892011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16390
16391 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
16392 menu items into verb phrases (bug#1421). Also refill to fit under
16393 80 columns.
16394
f5bd0689
CY
163952011-07-07 Chong Yidong <cyd@stupidchicken.com>
16396
538e85c6
CY
16397 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
16398 (Info-read-node-name): Doc fix (Bug#1084).
16399
f5bd0689
CY
16400 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
16401 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
16402 (end-of-sexp, beginning-of-sexp)
16403 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
16404 (forward-symbol, forward-same-syntax, word-at-point)
16405 (sentence-at-point): Doc fix (Bug#1144).
16406
56ec5115
LMI
164072011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16408
f3f8e37f
LMI
16409 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
16410 should cover it (bug#1281).
16411
0757af94 16412 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 16413
e9fce1ac 16414 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12b9eb35
LMI
16415 negotiation fails, then possibly try again with a non-encrypted
16416 connection (bug#9017).
16417
56ec5115
LMI
16418 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
16419 be used.
16420
c2f9aec8
RS
164212011-07-07 Richard Stallman <rms@gnu.org>
16422
16423 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
16424 property, and handle its changed format.
16425 Look for the correct line number.
16426 Use file's line contents (but not past first =) to find
16427 correct line in message.
16428
ef7b981d 164292011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
16430
16431 * international/characters.el (build-unicode-category-table):
16432 Delete it.
0757af94 16433 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 16434
0757af94 16435 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
16436 to src/chartab.c.
16437 (get-char-code-property): Call unicode-property-table-internal to
16438 load a file. Call get-unicode-property-internal where necessary.
16439 (put-char-code-property): Call unicode-property-table-internal to
16440 load a file. Call put-unicode-property-internal where necessary.
16441 put-unicode-property-internal where necessary.
0757af94
SM
16442 (char-code-property-description):
16443 Call unicode-property-table-internal to load a file.
c805dec0
KH
16444
16445 * international/charprop.el:
16446 * international/uni-bidi.el:
16447 * international/uni-category.el:
16448 * international/uni-combining.el:
16449 * international/uni-comment.el:
16450 * international/uni-decimal.el:
16451 * international/uni-decomposition.el:
16452 * international/uni-digit.el:
16453 * international/uni-lowercase.el:
16454 * international/uni-mirrored.el:
16455 * international/uni-name.el:
16456 * international/uni-numeric.el:
16457 * international/uni-old-name.el:
16458 * international/uni-titlecase.el:
16459 * international/uni-uppercase.el: Regenerate.
16460
16461 * loadup.el: Load international/charprop.el before
16462 international/characters.
16463
e14b388a
CY
164642011-07-07 Chong Yidong <cyd@stupidchicken.com>
16465
16466 * window.el (next-buffer, previous-buffer): Signal an error if
16467 called from a minibuffer window.
16468
16469 * bindings.el: Revert 2011-07-04 change.
16470
354cf0ba
RS
164712011-07-06 Richard Stallman <rms@gnu.org>
16472
16473 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
16474 (rmail-mime-insert-bulk, rmail-mime-insert-text):
16475 Treat markers like ints.
16476 (rmail-mime-entity): Doc fix.
16477
a48868a7
LMI
164782011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16479
4906cd3d
LMI
16480 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
16481 defcustom again for backwards compatibility.
16482
e0457abe
LMI
16483 * simple.el (shell-command-on-region): Fill.
16484
d67f7e1f
LMI
16485 * dired-aux.el (dired-kill-line): Add a doc string.
16486
fe204702
LMI
16487 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
16488 to "\\sw\\|\\s_" (bug#358).
16489
a48868a7
LMI
16490 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
16491 (dired-unmark-backward): Ditto.
16492 (dired-flag-backup-files): Ditto.
16493
16494 * dired-x.el (dired-mark-sexp): Ditto.
16495
aa8a705c
RS
164962011-07-06 Richard Stallman <rms@gnu.org>
16497
16498 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
16499 (rmail-mime-entity): New arg TRUNCATED.
16500 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
16501 New functions.
16502 (rmail-mime-save): Warn if entity is truncated.
16503 (rmail-mime-toggle-hidden): Likewise, for showing.
16504 (rmail-mime-process-multipart): Record when an entity is truncated.
16505
a9a936b9
RS
16506 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
16507 if ENTITY is a string.
16508
1f2b92cb
LMI
165092011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16510
f4f73198 16511 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
16512 of faces when `M-C-x'-ing their definitions (bug#8378).
16513 Also clean up the code slightly.
f4f73198 16514
12b16734 16515 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
da6062e6 16516 because that makes the colors go away.
12b16734 16517
f0691d22
LMI
16518 * mail/sendmail.el (send-mail-function): Change the default to
16519 `sendmail-query-once'.
9e87df06 16520 (sendmail-query-once): Add an autoload cookie.
f0691d22 16521
1f2b92cb
LMI
16522 * net/network-stream.el (network-stream-open-starttls): Try using
16523 a plain connection even if the server offered STARTTLS, and we
16524 kinda wanted to use it, if Emacs doesn't have any STARTTLS
16525 capability. This should make smtpmail.el work in slightly more
16526 configurations.
16527
1cdd2a1b
MA
165282011-07-06 Michael Albinus <michael.albinus@gmx.de>
16529
16530 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16531 New defun.
16532 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
16533
fbcc67e2
MM
165342011-07-06 Michael R. Mauger <mmaug@yahoo.com>
16535
16536 * progmodes/sql.el: Version 3.0
0757af94 16537 (sql-product-alist): Add product :completion-object,
fbcc67e2 16538 :completion-column, and :statement attributes.
0757af94 16539 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 16540 (sql-mode-syntax-table): Mark all punctuation.
0757af94 16541 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
16542 ansi keywords.
16543 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 16544 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
16545 (sql-oracle-show-reserved-words): New function for development.
16546 (sql-product-font-lock): Simplify for source code buffers.
16547 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
16548 New functions.
16549 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
16550 (sql-mode-map): Add statement movement functions.
16551 (sql-ansi-statement-starters, sql-oracle-statement-starters):
16552 New variable.
fbcc67e2
MM
16553 (sql-statement-regexp, sql-beginning-of-statement)
16554 (sql-end-of-statement, sql-signum): New functions.
0757af94 16555 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
16556 (sql-show-sqli-buffer): Bug fix.
16557 (sql-interactive-mode): Store connection data as buffer local.
0757af94 16558 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
16559 with sql-interactive-mode.
16560 (sql-save-connection): Save buffer local settings.
0757af94 16561 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
16562 (sql-product-interactive): Bug fix.
16563 (sql-preoutput-hold): New variable.
16564 (sql-interactive-remove-continuation-prompt): Bug fixes.
16565 (sql-debug-redirect): New variable.
16566 (sql-str-literal): New function.
16567 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 16568 Redesign.
fbcc67e2
MM
16569 (sql-oracle-save-settings, sql-oracle-restore-settings)
16570 (sql-oracle-list-all, sql-oracle-list-table): New functions.
16571 (sql-completion-object, sql-completion-column)
16572 (sql-completion-sqlbuf): New variables.
16573 (sql-build-completions-1, sql-build-completions)
16574 (sql-try-completion): New functions.
16575 (sql-read-table-name): Use them.
16576 (sql-contains-names): New buffer local variable.
16577 (sql-list-all, sql-list-table): Use it.
16578 (sql-oracle-completion-types): New variable.
16579 (sql-oracle-completion-object, sql-sqlite-completion-object)
16580 (sql-postgres-completion-object): New functions.
16581
d4eaeab1
GM
165822011-07-06 Glenn Morris <rgm@gnu.org>
16583
16584 * window.el (pop-to-buffer): Doc fix.
16585
322b7dab 165862011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
16587
16588 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
16589
322b7dab 165902011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 16591
322b7dab 16592 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 16593
322b7dab 16594 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 16595
605dd5bf
CY
165962011-07-05 Chong Yidong <cyd@stupidchicken.com>
16597
16598 * button.el (button): Inherit from link face. Suggested by Dan
16599 Nicolaescu.
16600
7dbfa719
SM
166012011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16602
3db614b0
SM
16603 * progmodes/gdb-mi.el: Fit in 80 columns.
16604 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
16605 switch-to-buffer.
16606
7dbfa719
SM
16607 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
16608 if imenu is simply not configured (bug#8941).
16609
919d884a
KM
166102011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
16611
16612 * allout.el (allout-post-undo-hook): New allout outline-change
16613 event hook to signal undo activity.
16614 (allout-post-command-business): Run allout-post-undo-hook if an
16615 undo just occurred.
7dbfa719
SM
16616 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
16617 * allout-widgets.el (allout-widgets-after-undo-function):
16618 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
16619 in the vicinity of an undo.
16620 (allout-widgets-mode): Include allout-widgets-after-undo-function
16621 on the new allout-post-undo-hook.
16622
450a0f09
SM
166232011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16624
16625 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
16626 Let define-derived-mode define it.
16627 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
16628 cycles of abbrev-table inheritance (bug#8998).
16629
2de69e00
RW
166302011-07-05 Roland Winkler <winkler@gnu.org>
16631
16632 * textmodes/bibtex.el: Add support for biblatex.
16633 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
16634 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
16635 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
16636 (bibtex-entry-alist, bibtex-field-alist): New variables.
16637 (bibtex-entry-field-alist): Obsolete alias for
16638 bibtex-BibTeX-entry-alist.
16639 (bibtex-entry-alist, bibtex-field-alist): New widgets.
16640 (bibtex-set-dialect): New command.
16641 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
16642 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
16643 Bind via bibtex-set-dialect.
2de69e00
RW
16644 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
16645 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
16646 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
16647 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
16648 Define via bibtex-set-dialect.
450a0f09
SM
16649 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
16650 Obey bibtex-no-opt-remove-re.
2de69e00
RW
16651 (bibtex-vec-push, bibtex-vec-incr): New functions.
16652 (bibtex-format-entry, bibtex-field-list)
16653 (bibtex-print-help-message, bibtex-validate)
16654 (bibtex-search-entries): Use new format of bibtex-entry-alist.
16655
2dcdbdd9
SM
166562011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16657
16658 * progmodes/compile.el (compilation-goto-locus):
16659 * net/tramp-cmds.el (tramp-append-tramp-buffers):
16660 * bs.el (bs-cycle-next, bs-cycle-previous):
16661 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
16662 * bindings.el (mode-line-other-buffer):
16663 * autoinsert.el (auto-insert):
16664 * arc-mode.el (archive-extract):
16665 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
16666
b27640fe
JB
166672011-07-05 Juanma Barranquero <lekktu@gmail.com>
16668
16669 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
16670 Fix check of `emacs-lock-unlockable-modes'.
16671 Coerce true values of `emacs-lock--try-unlocking' to t.
16672
53bbe3ad
JB
166732011-07-05 Juanma Barranquero <lekktu@gmail.com>
16674
16675 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
16676 * emacs-lock.el: New file.
16677
1d3cdbc7
JD
166782011-07-05 Julien Danjou <julien@danjou.info>
16679
16680 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
16681 than `boundp' to check if face is set.
16682
9173deec
JB
166832011-07-05 Juanma Barranquero <lekktu@gmail.com>
16684
16685 * register.el (registerv-make):
16686 * window.el (window-min-height): Fix typos in docstrings.
16687
869795d6
JD
166882011-07-05 Jan Djärv <jan.h.d@swipnet.se>
16689
9173deec 16690 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
16691 Update doc string.
16692
b768cdcd
JB
166932011-07-04 Juanma Barranquero <lekktu@gmail.com>
16694
16695 * server.el (server-execute): Catch quit and call
16696 `server-return-error' to pass the error back to emacsclient and
16697 close the connection (bug#8942).
16698
13aa217b
KM
166992011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
16700
16701 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
16702 insecure exception for current topic. Also note that auto-saves
16703 are handled differently.
16704
5d3385a0 16705 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
13aa217b
KM
16706 State variables for tracking auto-save inhibition situation.
16707
16708 (allout-write-contents-hook-handler): Rename from
16709 'allout-write-file-hook-handler', and describe how it depends on
16710 write-contents-functions sensitivity to non-nil value to prevent
16711 file write.
16712
16713 (allout-auto-save-hook-handler): Remove. auto-save does not check
16714 this in individual buffers, only in the starting buffer, so this
16715 is not the right way for us to inhibit auto-save in a buffer
16716 according to its condition.
16717
16718 (allout-mode): Use new allout-write-contents-hook-handler, and
16719 only with write-contents-functions. Remove auto-save provisions -
16720 they're implemented elsewhere.
16721
16722 (allout-before-change-handler): If undo is in progress, note that
16723 for attention of allout-post-command-business.
16724
16725 (allout-post-command-business): If the command we're following was
16726 an undo, check for change in the status of encrypted items and
16727 adjust auto-save inhibitions accordingly.
16728
16729 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
16730 according to whether there are or aren't any plain-text topics
16731 pending encryption.
16732
2dcdbdd9 16733 (allout-inhibit-auto-save-info-for-decryption):
1154d12e
JB
16734 Adjust buffer-saved-size and some allout state to inhibit auto-saves
16735 if there are plain-text topics pending encryption.
13aa217b
KM
16736
16737 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
16738 buffer-saved-size and some allout state to not inhibit auto-saves
16739 if there are no longer any plain-text topics pending encryption.
16740
0757af94
SM
16741 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
16742 No longer provide for exemption of the current topic.
13aa217b 16743
ac89b32c
JL
167442011-07-04 Juri Linkov <juri@jurta.org>
16745
16746 Add 7z operations to delete and save changed members (bug#8968).
16747 * arc-mode.el (archive-7z-expunge, archive-7z-update):
16748 New defcustoms.
16749 (archive-7z-write-file-member): New function.
16750 (archive-7z-summarize): Fix the number of dashes in the
16751 listing output.
16752
8fa39615
SM
167532011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16754
16755 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
16756 (bug#8958).
16757
2f11b3f1
CY
167582011-07-04 Chong Yidong <cyd@stupidchicken.com>
16759
d66fef2b
CY
16760 * bindings.el: Ignore next-buffer and previous-buffer in
16761 minibuffer-local-map.
16762
2f11b3f1
CY
16763 * font-lock.el (font-lock-builtin-face): Change light background
16764 color to dark slate blue (Bug#6693).
16765
f932a347
WD
167662011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
16767
16768 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
16769
c8af70e1
SM
167702011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16771
16772 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
16773 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16774 Add switch-to-buffer.
16775
f158badc
LMI
167762011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16777
16778 * isearch.el (isearch-search-fun-function): Clarify further the
16779 meaning of the function returned.
16780
6d95bd46
MA
167812011-07-04 Michael Albinus <michael.albinus@gmx.de>
16782
16783 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
16784
16785 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
16786 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
16787 Use it.
16788 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
16789 `tramp-default-remote-path' does not exist.
16790 (tramp-send-command-and-read): New optional argument NOERROR.
16791 (tramp-open-connection-setup-interactive-shell)
16792 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
16793 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
16794 (tramp-process-sentinel): Flush also process' connection property.
16795 (tramp-sh-handle-start-file-process): Do not set process
16796 sentinel. It is done now ...
16797 (tramp-maybe-open-connection): ... here. (Bug#8929)
16798
909e6b67
MK
167992011-07-04 MON KEY <monkey@sandpframing.com>
16800
16801 * play/animate.el (animate-string): Doc fixes and allow changing
16802 the buffer name (bug#5417).
16803
168042011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16805
c8af70e1 16806 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 16807
f34755dc
PE
168082011-07-04 Paul Eggert <eggert@cs.ucla.edu>
16809
396cec72
PE
16810 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
16811 This is simpler and helps future-proof the code.
16812 (timer-until): Use time-subtract and float-time.
08235028 16813 (timer--time-less-p): Use time-less-p.
f34755dc 16814
56e6cc31
JB
168152011-07-04 Juanma Barranquero <lekktu@gmail.com>
16816
3abb79e5
JB
16817 * type-break.el (timep): Use the value of `float-time' to avoid a
16818 byte-compiler warning.
16819
56e6cc31
JB
16820 * server.el (server-eval-and-print): Return any result, even nil.
16821
7b9430b4
PE
168222011-07-03 Paul Eggert <eggert@cs.ucla.edu>
16823
16824 * type-break.el: Accept time formats that the builtins accept.
16825 (timep, type-break-time-difference): Accept any format that
16826 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
16827 This is simpler and helps future-proof the code.
16828 (type-break-time-difference): Round rather than ignoring
16829 subseconds components.
16830
3034e9e7
LMI
168312011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16832
16833 * info.el (Info-apropos-matches): Make non-interactive, since it
16834 doesn't seem to do anything useful as a command (bug#8829).
16835
1485f4c0
CY
168362011-07-03 Chong Yidong <cyd@stupidchicken.com>
16837
16838 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 16839 Move from faces.el.
1485f4c0
CY
16840 (frame-default-terminal-background): New function.
16841
16842 * custom.el (custom-push-theme): Don't record faces in `changed'
16843 theme; this doesn't work correctly for per-frame face settings.
16844 (disable-theme): Use face-set-after-frame-default to reset faces.
16845 (custom--frame-color-default): New function.
16846
9fa3dd45
LMI
168472011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16848
c8af70e1 16849 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
16850 (bug#8769).
16851
6cbbc20c
KR
168522011-03-29 Kevin Ryde <user42@zip.com.au>
16853
16854 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16855 `perl-Test2' extend to match possible "fail #N" rep count
16856 (bug#8377).
16857
c7f98048
LMI
168582011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16859
65676592
LMI
16860 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
16861 `smtpmail-via-smtp' now returns the error instead of nil.
16862
c7f98048
LMI
16863 * isearch.el (isearch-search-fun-function): Clarify the doc string
16864 (bug#8101).
16865
56e6cc31 168662011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
16867
16868 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
16869 unnecessary spaces (bug#8987).
16870
2b216704
LMI
168712011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16872
16873 * net/network-stream.el (open-network-stream): Use the
16874 :end-of-capability command thoughout.
16875
168762011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
16877
16878 * net/network-stream.el (open-network-stream): Add the
16879 :end-of-capability command parameter, used by pop3.el.
16880
36adf6ce
LMI
168812011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16882
1ca0da0e
LMI
16883 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
16884
fc00f69c
LMI
16885 * fringe.el (fringe-query-style): Remove redundant text " (type ?
16886 for list)" (bug#6475).
16887
28fd8759 16888 * files.el (file-expand-wildcards): Ignore non-readable
8350f087 16889 sub-directories while trying to find matches instead of signaling
28fd8759
LMI
16890 an error (bug#6297).
16891
0dd8b6da
LMI
16892 * man.el (Man-reference-regexp): Allow matching possible
16893 word-wrapped references (bug#6289).
16894
ce1438d6
LMI
16895 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
16896 for consistency with the other vc buffers (bug#6197).
16897 (vc-checkin): Ditto.
16898
16899 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
16900
36adf6ce
LMI
16901 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
16902
e83cc1f7
LMI
169032011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16904
8a20ca4c
LMI
16905 * custom.el (defcustom): Clarify that :set is only used in the
16906 Customize user interface (bug#6089).
16907
83319045
LMI
16908 * progmodes/flymake.el (flymake-mode): If the buffer isn't
16909 associated with a file, refuse to run instead of erroring out
16910 (bug#6084).
16911
a8392169
LMI
16912 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
16913 the doc string, since it appears that using `fill-column' always
16914 controls the width (bug#7845).
16915
e83cc1f7
LMI
16916 * simple.el (shell-command-on-region): Say where the error output
16917 went if `shell-command-default-error-buffer' is set (bug#6857).
16918
e47ca23b
KM
169192011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
16920
16921 * allout.el (allout-yank-processing): Adjust cursor position for
16922 backwards-deleted space.
16923
16924 (allout-rebullet-heading): Register changes with
16925 allout-exposure-changed-hook, so the modified topic is properly
16926 decorated.
16927
5cf56143
LMI
169282011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16929
08549772
LMI
16930 * minibuffer.el (completion-in-region): Document PREDICATE
16931 (bug#7136).
16932
48e96771
LMI
16933 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
16934 of keyword/argument pairs (bug#6904).
16935
c8af70e1
SM
16936 * replace.el (multi-occur):
16937 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 16938
e17d05e2
LMI
169392011-07-02 Drew Adams <drew.adams@oracle.com>
16940
16941 * dired.el (dired-mark-if): Make the message about whether it's
16942 marking or unmarking clearer (bug#8523).
16943
063b0e45
LMI
169442011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16945
16946 * disp-table.el (display-table-print-array): New function.
16947 (describe-display-table): Use it to print the vectors more pretty
16948 (Bug#8859).
16949
28545e04
MR
169502011-07-02 Martin Rudalics <rudalics@gmx.at>
16951
16952 * window.el (window-state-get-1): Don't assign clone numbers.
16953 Add clone-of item to list of window parameters.
16954 (window-state-put-2): Don't process clone numbers.
16955 (display-buffer-alist): Fix doc-string.
16956
3349e122
SM
169572011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
16958
16959 * subr.el (remq): Don't allocate if it's not needed.
16960 (keymap--menu-item-binding, keymap--menu-item-with-binding)
16961 (keymap--merge-bindings): New functions.
16962 (keymap-canonicalize): Use them to refine the canonicalization.
16963 * minibuffer.el (minibuffer-local-completion-map)
16964 (minibuffer-local-must-match-map): Move initialization from C.
16965 (minibuffer-local-filename-completion-map): Move initialization from C;
16966 don't inherit from anything here.
16967 (minibuffer-local-filename-must-match-map): Make obsolete.
16968 (completing-read-default): Use make-composed-keymap to combine
16969 minibuffer-local-filename-completion-map with either
16970 minibuffer-local-must-match-map or
16971 minibuffer-local-filename-completion-map.
16972
d224ac83
GM
169732011-07-01 Glenn Morris <rgm@gnu.org>
16974
3de63bf8
GM
16975 * type-break.el (type-break-time-sum): Use dolist.
16976
d224ac83
GM
16977 * textmodes/flyspell.el (flyspell-word-search-backward):
16978 Replace CL function.
16979
1a1e3f32
SM
169802011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
16981
fe3f64d5
SM
16982 * mouse.el (mouse--strip-first-event): New function.
16983 (function-key-map): Use it to map fringe clicks to normal clicks
16984 by default.
16985
eb604e34
SM
16986 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
16987 (vc-bzr-revision-completion-table): Add support for annotate and date.
16988
1a1e3f32
SM
16989 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
16990 inherit from parent.
16991
5bd35902
LMI
169922011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
16993
ace6c69c 16994 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 16995 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 16996
191e2bed
LMI
16997 * dired.el (dired-mode): Fix up the doc string as suggested by
16998 Drew Adams (bug#8817).
16999
5bd35902
LMI
17000 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
17001 cookie, since the manual says that it should be possible to add
17002 this function to `find-file-hook' (bug#8709).
17003
eee8207a
TZ
170042011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
17005
17006 * progmodes/cfengine.el: Moved all cfengine3.el functionality
17007 here. Noted Ted Zlatanov as the maintainer.
17008 (cfengine-common-settings, cfengine-common-syntax): New functions
17009 to set up common things between `cfengine-mode' and
17010 `cfengine3-mode'.
17011 (cfengine3-mode): New mode.
17012 (cfengine3-defuns cfengine3-defuns-regex
17013 (cfengine3-class-selector-regex cfengine3-category-regex)
17014 (cfengine3-vartypes cfengine3-font-lock-keywords)
17015 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 17016 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 17017
36b148cf
MA
170182011-07-01 Michael Albinus <michael.albinus@gmx.de>
17019
17020 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
17021
17022 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
17023
0bf4ba9a
MR
170242011-07-01 Martin Rudalics <rudalics@gmx.at>
17025
17026 * window.el (same-window-buffer-names, same-window-regexps)
17027 (same-window-p, special-display-frame-alist)
17028 (special-display-popup-frame, special-display-function)
17029 (special-display-buffer-names, special-display-regexps)
17030 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
17031 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17032 (split-window-preferred-function, split-height-threshold)
17033 (split-width-threshold, even-window-heights)
17034 (display-buffer-mark-dedicated, window-splittable-p)
17035 (split-window-sensibly, window-safely-shrinkable-p):
17036 Un-obsolete.
17037 (display-buffer): Don't spread args with function specifier
17038 because special-display-popup-frame won't like it.
17039
35837f51
PE
170402011-07-01 Paul Eggert <eggert@cs.ucla.edu>
17041
d0672f86
PE
17042 Time-stamp simplifications and fixes.
17043 These improve accuracy slightly, and future-proof the code
17044 against some potential changes to current-time format.
17045
b9444d97
PE
17046 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
17047 by using time-since and float-time.
17048
0ef923dc
PE
17049 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
17050 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
17051 + NNN microseconds".
17052
2f81380d
PE
17053 * type-break.el (type-break-time-sum): Rewrite using time-add.
17054
845b5c3e
PE
17055 * play/hanoi.el (hanoi-current-time-float): Remove.
17056 All uses replaced by float-time.
17057
ee6f1be0
PE
17058 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
17059 This yields a more-accurate answer.
17060 (rng-time-to-float): Remove; no longer needed.
17061
fe955043
PE
17062 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
17063
5777162a
PE
17064 * calendar/timeclock.el (timeclock-seconds-to-time):
17065 Defalias to seconds-to-time, since they're the same thing.
17066
3103f8b6 17067 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 17068 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
17069 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
17070
0e61a35f
SM
170712011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17072
17073 * window.el (bury-buffer): Don't iconify the only frame.
17074 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
17075 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
17076
ddd63a1e
CY
170772011-07-01 Chong Yidong <cyd@stupidchicken.com>
17078
0e61a35f
SM
17079 * eshell/em-smart.el (eshell-smart-display-navigate-list):
17080 Add mouse-yank-primary.
ddd63a1e 17081
055f4923
TZ
170822011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
17083
17084 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
17085
6a2fb145
SM
170862011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17087
17088 * emacs-lisp/find-func.el (find-library--load-name): New fun.
17089 (find-library-name): Use it to find relative load names when provided
17090 absolute file name (bug#8803).
17091
fd4983f2
LMI
170922011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17093
887d14ad
LMI
17094 * textmodes/flyspell.el (flyspell-word): Consider words that
17095 differ only in case as potential doublons (bug#5687).
17096
c53dc7fc
LMI
17097 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
17098 Remove two rather uninteresting debugging-like messages to make
17099 debbugs.el more silent.
17100
fd4983f2
LMI
17101 * comint.el (comint-password-prompt-regexp): Accept "Response" as
17102 a password-like phrase.
17103
7a71b18d 171042011-06-30 Masatake YAMATO <yamato@redhat.com>
b14c0c55
AM
17105
17106 * progmodes/cc-guess.el: New file.
17107
6a2fb145 17108 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
17109
17110 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
17111 derived from `c-basic-common-init'.
17112
17113 * progmodes/cc-mode.el (top-level): Require cc-guess.
17114 (c-basic-common-init): Use `cc-choose-style-for-mode'.
17115
1fa280a3
LM
171162011-06-30 Lawrence Mitchell <wence@gmx.li>
17117
17118 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
17119
e6597158
AM
171202011-06-30 Alan Mackenzie <acm@muc.de>
17121
1fa280a3
LM
17122 * progmodes/cc-engine.el (c-guess-continued-construct):
17123 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
17124 lock is disabled. Name this case as "CASE G".
17125
68ba37fb
KM
171262011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
17127
17128 * allout.el (allout-yank-processing): Fix injection of extra space
17129 between bullet and non-whitespace character in first topic when
17130 pasting, ensuring that the actual spacing in the pasted topic
17131 following the bullet char is preserved. This extra space was
17132 causing pasted encrypted topics to get a decrypted status even
17133 when the content was actually still encrypted. Now the decryption
17134 status from before the paste is preserved.
17135
17136 (allout-flag-region): Set all allout overlays so they evaporate
17137 when reduced to zero length (evanescent), to prevent overlay
17138 leakage.
17139
887a0b34
GM
171402011-06-30 Glenn Morris <rgm@gnu.org>
17141
94b9acce
GM
17142 * w32-fns.el (w32-charset-info-alist): Declare.
17143
1d9b46d4
GM
17144 * find-dired.el (find-grep-options): Simplify.
17145
cc232200
GM
17146 * term/ns-win.el (ns-set-resource): Declare.
17147
28e77c46
GM
17148 * ses.el (row, col): Declare dynamic variables honestly.
17149
887a0b34
GM
17150 * textmodes/reftex-parse.el (index-tags): Declare.
17151
658d8eb8
CY
171522011-06-30 Chong Yidong <cyd@stupidchicken.com>
17153
17154 * cus-edit.el (customize-push-and-save): New function.
17155
17156 * files.el (hack-local-variables-confirm): Use it.
17157
1fa280a3
LM
17158 * custom.el (load-theme): New arg NO-CONFIRM.
17159 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
17160 (custom-enabled-themes): Doc fix.
17161
17162 * cus-theme.el (customize-create-theme)
17163 (custom-theme-merge-theme): Callers to load-theme changed.
17164
bb617717
LMI
171652011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17166
d61bdd5d
LMI
17167 * thingatpt.el (thing-at-point-short-url-regexp): Require that
17168 short URLs have at least one dot in them (bug #7614).
17169
bb617717
LMI
17170 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
17171 nil, because using a pty is apparently too slow (bug #895).
17172
2f31f37a
LMI
171732011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
17174
17175 * mail/sendmail.el (sendmail-query-once): New function.
17176 (sendmail-query-once-function): New variable.
17177
3076b24e
GM
171782011-06-29 Glenn Morris <rgm@gnu.org>
17179
faf2a174
GM
17180 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
17181
3076b24e
GM
17182 * ses.el (top-level): Require cl when compiling.
17183 (ses-set-localvars): Fix error statement.
17184 Call it at compile time to silence a storm of warnings.
17185
5386012d
MR
171862011-06-29 Martin Rudalics <rudalics@gmx.at>
17187
17188 * window.el (normalize-live-buffer): Rename to
17189 window-normalize-buffer.
17190 (normalize-live-frame): Rename to window-normalize-frame.
17191 (normalize-any-window): Rename to window-normalize-any-window.
17192 (normalize-live-window): Rename to window-normalize-live-window.
17193 (make-window-atom): Rename to window-make-atom.
17194 (window-resize-reset): Rename to window--resize-reset.
17195 (window-resize-reset-1): Rename to window--resize-reset-1.
17196 (resize-mini-window): Rename to window--resize-mini-window.
17197 (resize-subwindows-skip-p): Rename to
17198 window--resize-subwindows-skip-p.
17199 (resize-subwindows-normal): Rename to
17200 window--resize-subwindows-normal.
17201 (resize-subwindows): Rename to window--resize-subwindows.
17202 (resize-other-windows): Rename to window--resize-siblings.
17203 (resize-this-window): Rename to window--resize-this-window.
17204 (resize-root-window): Rename to window--resize-root-window.
17205 (resize-root-window-vertically): Rename to
17206 window--resize-root-window-vertically.
17207 (normalize-buffer-to-display): Rename to
17208 window-normalize-buffer-to-display.
17209 (normalize-buffer-to-switch-to): Rename to
17210 window-normalize-buffer-to-switch-to.
17211 Correspondingly update all callers of the functions listed
17212 above.
17213 (display-buffer-alist, display-buffer-normalize-arguments)
17214 (display-buffer-normalize-options, display-buffer)
17215 (display-buffer-alist-set): Use "function" instead of
17216 "fun-with-args".
17217
1176868d
CY
172182011-06-28 Chong Yidong <cyd@stupidchicken.com>
17219
17220 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
17221 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
17222 debbugs.gnu.org. Mention acknowledgment email.
17223
20a7a65f
LMI
172242011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
17225
17226 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
17227 buffer multibyteness, since it shouldn't matter.
17228
5f45cca5
MR
172292011-06-28 Martin Rudalics <rudalics@gmx.at>
17230
17231 * window.el (display-buffer-in-side-window): Handle dedicated
17232 windows as in display-buffer-reuse-window.
17233 (display-buffer-normalize-alist): Use value of override
17234 specifier.
17235 (display-buffer-normalize-specifiers): Use value of
17236 other-window-means-other-frame specifier.
17237 (display-buffer-alist): Rewrite some texts in widgets.
17238 (display-buffer): Spread arguments when calling function
17239 specified by fun-with-args.
17240
ad85fe1f
DD
172412011-06-28 Deniz Dogan <deniz@dogan.se>
17242
1fa280a3
LM
17243 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17244 Unnest `let'.
da68c4c8 17245
ad85fe1f
DD
17246 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
17247 selectors (Bug#5732).
ec49bd31 17248 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 17249
a08cc025
JA
172502011-06-27 Jari Aalto <jari.aalto@cante.net>
17251
17252 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
17253 (eshell-ls-date-format): New defcustom.
17254 (eshell-ls-file): Use it.
17255
e2b551c5
SM
172562011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17257
17258 * help-fns.el (describe-variable): Fix message for terminal-local vars.
17259
8982b231
KY
172602011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
17261
17262 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
17263 (ange-ftp-make-tmp-name): New arg.
17264 (ange-ftp-file-local-copy): Use it.
17265
36c9fa27
J
172662011-06-27 Jambunathan K <kjambunathan@gmail.com>
17267
17268 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
17269 no-conversion (Bug#8870).
17270
d68443dc
MR
172712011-06-27 Martin Rudalics <rudalics@gmx.at>
17272
17273 * window.el (window-right, window-left, window-child)
17274 (window-child-count, window-last-child)
17275 (window-iso-combination-p, walk-window-tree-1)
17276 (window-atom-check-1, window-tree-1, delete-window)
17277 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
17278 new naming conventions - window-vchild, window-hchild,
17279 window-next and window-prev are now called window-top-child,
17280 window-left-child, window-next-sibling and window-prev-sibling
17281 respectively.
d615d6d2
MR
17282 (resize-window-reset): Rename to window-resize-reset.
17283 (resize-window-reset-1): Rename to window-resize-reset-1.
17284 (resize-window): Rename to window-resize.
17285 (window-min-height, window-min-width)
17286 (resize-mini-window, resize-this-window, resize-root-window)
17287 (resize-root-window-vertically, adjust-window-trailing-edge)
17288 (enlarge-window, shrink-window, maximize-window)
17289 (minimize-window, delete-window, quit-restore-window)
17290 (split-window, balance-windows, balance-windows-area-adjust)
17291 (balance-windows-area, window-state-put-2)
17292 (display-buffer-even-window-sizes, display-buffer-set-height)
17293 (display-buffer-set-width, set-window-text-height)
17294 (fit-window-to-buffer): Rename all "resize-window" prefixed
17295 calls to use the "window-resize" prefix convention.
17296 (display-buffer-alist): Fix symbol for label specifier.
17297 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
17298 corresponding specifier.
17299 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 17300
b6458526
VB
173012011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17302
17303 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
17304 convention.
17305 (ses-call-printer): Does not pass an empty string to formatter when the
17306 cell is empty to keep from barking printer Calc math-format-value.
17307
d31fd9ac
RS
173082011-06-27 Richard Stallman <rms@gnu.org>
17309
43d5bf84
RS
17310 * battery.el (battery-mode-line-limit): New variable.
17311 (battery-update): Handle it.
17312
d31fd9ac
RS
17313 * mail/rmailmm.el (rmail-mime-process-multipart):
17314 Handle truncated messages.
17315
819a6054
GM
173162011-06-27 Glenn Morris <rgm@gnu.org>
17317
17318 * progmodes/flymake.el (flymake-err-line-patterns):
17319 Allow for column numbers in the ant/javac pattern. (Bug#8866)
17320
cedc73f2
VB
173212011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17322
819a6054 17323 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
17324 (ses--clean-!, ses--clean-_): New functions.
17325 (ses-range): Add configurability of readout order, and conversion
17326 to Calc vector.
17327
5e5d49b6
VB
17328 * ses.el (ses-repair-cell-reference-all): New function.
17329 (ses-cell-symbol): Set macro as safe, so that it can be used in
17330 formulas.
17331
56e6cc31 17332 * ses.el: Update cycle detection algorithm.
90ca8b49 17333 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 17334 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
17335 (ses-set-localvars): New function.
17336 (ses-make-cell): Add property-list as a cell element.
17337 (ses-cell-property-get-fun, ses-cell-property-get)
17338 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
17339 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
17340 New functions.
90ca8b49
VB
17341 (ses-cell-property-set, ses-cell-property-pop)
17342 (ses-cell-property-get-handle): New macro.
17343 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
17344 New aliases, used for code readability.
17345 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
17346 cycle detection.
17347 (ses-self-reference-early-detection): New defcustom.
fac916bf 17348 (ses-formula-references): Robustify against self-referring cells.
90ca8b49
VB
17349 (ses-mode): Use ses-set-localvars.
17350 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
17351 before lauching the update processing.
17352 (ses-initialize-Dijkstra-attempt): New function.
17353 (ses-recalculate-cell): Update for cycle detection based on
17354 Dijkstra algorithm.
17355
2bb63e81
VB
17356 * ses.el: Fix commenting and indenting convention.
17357
c9d29fb8
SM
173582011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17359
17360 * bs.el (bs-cycle-next): Complete last change.
17361
d8e4b68b
JB
173622011-06-27 Drew Adams <drew.adams@oracle.com>
17363
17364 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
17365
40098786
LMI
173662011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17367
c9d29fb8
SM
17368 * net/network-stream.el (network-stream-open-starttls):
17369 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
17370 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
17371
40098786
LMI
17372 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
17373 to binary to possibly avoid line encoding issues on Windows (among
17374 other things).
17375
468d09d4
LMI
173762011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17377
17378 * net/network-stream.el (open-network-stream): Return an :error
17379 saying what the problem was, if possible.
17380
17381 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
17382 server.
17383
17384 * net/network-stream.el (network-stream-open-starttls): If we
17385 wanted to use STARTTLS, and the server offered it, but we weren't
17386 able to because we had no STARTTLS support, then close the connection.
17387 (open-network-stream): Return an :error element, if present.
17388
16f07dd7
CY
173892011-06-26 Chong Yidong <cyd@stupidchicken.com>
17390
88821ca0
CY
17391 * hl-line.el (hl-line-sticky-flag): Doc fix.
17392 (global-hl-line-sticky-flag): New option (Bug#8323).
17393 (global-hl-line-highlight): Obey it.
17394
16f07dd7
CY
17395 * vc/vc.el (vc-revert-show-diff): Default to t.
17396
6b5ccddf
KM
173972011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
17398
c9d29fb8
SM
17399 * allout-widgets.el (allout-widgets-post-command-business):
17400 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
17401 undecorated when an isearch is continued past, and isearch
17402 automatically collapses them. This leads to "widget leaks", where
17403 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
17404 hidden widgets can slow down cursor travel, substantially.
17405 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
17406 so we're doing without this nicety.
17407
17408 (allout-widgets-tally-string): Don't try to do a hash-table-count
17409 of allout-widgets-tally when it's nil. This eliminates spurious "Error
17410 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
17411 *Messages* when allout-widgets-maintain-tally is t.
17412
355f2e07
MR
174132011-06-26 Martin Rudalics <rudalics@gmx.at>
17414
17415 * window.el (display-buffer-normalize-argument): Rename to
17416 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
17417 LABEL argument. Respect special-display-function when popping up
17418 a new frame. Fix code searching for a window showing the buffer
17419 on another frame.
c9d29fb8
SM
17420 (display-buffer-normalize-specifiers):
17421 Call display-buffer-normalize-arguments.
355f2e07
MR
17422 (display-buffer-in-window): Don't undedicate the window if its
17423 buffer remains the same.
17424 Reported by Drew Adams <drew.adams@oracle.com>.
17425 (display-buffer-alist): Add choice for same-window macro
17426 specfier.
17427 (display-buffer): Mention special meaning of LABEL argument in
17428 doc-string. Fix quoting. Don't pop up a new frame even as
17429 fallback.
17430
7ca8fc42
JB
174312011-06-26 Juanma Barranquero <lekktu@gmail.com>
17432
17433 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
17434 avoid deleting the current window in some cases (bug#8911).
17435
bc312254
AS
174362011-06-26 Andreas Schwab <schwab@linux-m68k.org>
17437
17438 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
17439 (Bug#8934)
17440
2db18f3f
LMI
174412011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17442
c9d29fb8
SM
17443 * net/network-stream.el (network-stream-open-starttls):
17444 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
17445 (network-stream-open-tls): Ditto.
17446
6302e0d3
LL
174472011-06-26 Leo Liu <sdl.web@gmail.com>
17448
17449 * register.el (registerv): New struct.
17450 (registerv-make): New function.
c9d29fb8
SM
17451 (jump-to-register, describe-register-1, insert-register):
17452 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
17453 struct. (Bug#8415)
17454
5fdd4046
CY
174552011-06-26 Chong Yidong <cyd@stupidchicken.com>
17456
2afef60a
CY
17457 * vc/vc.el (vc-revert-show-diff): New defcustom.
17458 (vc-diff-internal): New arg specifying diff buffer.
17459 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
17460 reuse an existing *vc-diff* buffer (Bug#8927).
17461
5fdd4046
CY
17462 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
17463
e93db24a
GM
174642011-06-26 Glenn Morris <rgm@gnu.org>
17465
17466 * progmodes/f90.el (f90-critical-indent): New option.
17467 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
17468 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
17469 (f90-mode): Doc fix.
17470 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
17471 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
17472 (f90-beginning-of-block, f90-next-block, f90-indent-region)
17473 (f90-match-end): Handle block, critical.
17474
eefff499
GM
174752011-06-25 Glenn Morris <rgm@gnu.org>
17476
f6ba4cc9
GM
17477 * calendar/diary-lib.el (diary-included-files): Doc fix.
17478 (diary-include-files): New function, extracted from
17479 diary-include-other-diary-files and diary-mark-included-diary-files.
17480 (diary-include-other-diary-files, diary-mark-included-diary-files):
17481 Just call diary-include-files.
17482 (diary-mark-entries): Reset diary-included-files on first call.
17483
16712304
GM
17484 * calendar/diary-lib.el (diary-mark-entries)
17485 (diary-mark-included-diary-files):
17486 Visit included diary-files in temp buffers.
17487
5d8e0d43
GM
17488 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
17489 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
17490 (f90-start-block-re, f90-imenu-generic-expression)
17491 (f90-looking-at-program-block-start, f90-no-block-limit):
17492 Add support for submodules.
17493
ccf7a5d5
GM
17494 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
17495 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 17496
11fdef7d 174972011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
17498
17499 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
17500 buffer-file-type before setting its value, to avoid disastrous
eefff499 17501 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 17502
74f53697
JB
175032011-06-25 Juanma Barranquero <lekktu@gmail.com>
17504
17505 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
17506
17507 * ses.el (ses-unload-function):
17508 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
17509
17510 * proced.el (proced-unload-function):
17511 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
17512
18a4ce5e
AR
175132011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
17514
17515 * server.el (server-create-window-system-frame): Add parameters arg.
17516 (server-process-filter): Doc fix. Handle frame-parameters.
17517
519d22cc
JB
175182011-06-25 Juanma Barranquero <lekktu@gmail.com>
17519
17520 Fix bug#8730, bug#8781.
17521
17522 * loadhist.el (unload--set-major-mode): New function.
17523 (unload-feature): Use it.
17524
17525 * progmodes/python.el (python-after-info-look): Add autoload cookie.
17526 (python-unload-function): New function.
17527
c206f5b0
SM
175282011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
17529
17530 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
17531
f9ad64f3
GS
175322011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
17533
17534 * net/browse-url.el (browse-url-firefox-program): Add icecat to
17535 the candidates list.
17536
7d0da90e
JB
175372011-06-24 Juanma Barranquero <lekktu@gmail.com>
17538
17539 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
17540
14b4e83d
RS
175412011-06-23 Richard Stallman <rms@gnu.org>
17542
17543 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
17544 (rmail-variables): Set next-error-move-function.
17545 (rmail-what-message): Take argument POS.
17546 (rmail-next-error-move): New function.
17547
273d2baf
SM
175482011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
17549
17550 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
17551 messages for adjacent non-terminals.
17552
56c2cc9a
RS
175532011-06-23 Richard Stallman <rms@gnu.org>
17554
17555 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 17556 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
17557 (rmail-start-mail): Don't specify use of rmail-mail-return;
17558 that's done by mail-bury now.
17559 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 17560
d59eb518
MA
175612011-06-23 Michael Albinus <michael.albinus@gmx.de>
17562
17563 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
17564 SIZE is a number.
17565
02cfc6d6
MR
175662011-06-23 Martin Rudalics <rudalics@gmx.at>
17567
17568 * window.el (get-lru-window, get-mru-window)
17569 (get-largest-window): Never return a minibuffer window.
17570 (display-buffer-pop-up-window): Fix a bug that could lead to
17571 reusing the minibuffer window.
17572 (display-buffer): Pass original specifier argument to
17573 display-buffer-function instead of the normalized one.
17574 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17575
4e323265
LL
175762011-06-22 Leo Liu <sdl.web@gmail.com>
17577
17578 * minibuffer.el (completing-read-function)
1f9f395d 17579 (completing-read-default): Move from minibuf.c.
4e323265 17580
7a70468f
RS
175812011-06-22 Richard Stallman <rms@gnu.org>
17582
50718fc2
RS
17583 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
17584 to Rmail even if not started by a special Rmail command.
17585
7a70468f
RS
17586 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
17587 Copy the buffer currently showing just one message.
17588
297dde5a
RW
175892011-06-22 Roland Winkler <winkler@gnu.org>
17590
17591 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
17592 (bibtex-clean-entry): First delete the old key so that a
17593 customized algorithm for generating the new key does not get
17594 confused by the old key.
17595 (bibtex-url): Obey regexp of first step.
17596 (bibtex-search-entries): Do not use add-to-list with local
17597 list-var.
17598
97bb1093
LMI
175992011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17600
17601 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
17602 stored a user name, then query for the password first, instead of
17603 waiting for SMTP to give an error message and the trying again.
17604
1c0f1a19
JD
176052011-06-22 Lawrence Mitchell <wence@gmx.li>
17606
17607 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
17608 BUFFER in call-process.
17609
396f7c9d
LMI
176102011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17611
17612 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
17613 QUIT twice.
ddb7ffee
LMI
17614 (smtpmail-try-auth-methods): Require user name and password from
17615 auth-source.
396f7c9d 17616
8998d1b3
MR
176172011-06-22 Martin Rudalics <rudalics@gmx.at>
17618
17619 * window.el (display-buffer-default-specifiers)
17620 (display-buffer-alist): Remove entries for pop-up-frame-alist.
17621 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 17622 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
17623
17624 * frame.el (pop-up-frame-alist, pop-up-frame-function)
17625 (special-display-frame-alist, special-display-popup-frame):
17626 Remove duplicate declarations. These are now in window.el.
17627
4ea31e07
LMI
176282011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
17629
c9d29fb8
SM
17630 * mail/smtpmail.el (smtpmail-via-smtp):
17631 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
17632 server supports it. SMTP servers that support STARTTLS commonly
17633 require it.
17634
17635 * net/network-stream.el (network-stream-open-starttls): Support
17636 upgrading to STARTTLS always, even if we don't have built-in support.
fa463103 17637 (open-network-stream): Add the :always-query-capabilities keyword.
6af7a784 17638
95f41d9a
LMI
17639 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
17640 upgrades with `open-network-stream', and rely solely on
17641 auth-source for all credentials. Big changes throughout the file,
17642 but in particular:
c9d29fb8
SM
17643 (smtpmail-auth-credentials): Remove.
17644 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
17645 (smtpmail-via-smtp): Check for servers saying they want AUTH after
17646 MAIL FROM, too.
95f41d9a 17647
c9d29fb8
SM
17648 * net/network-stream.el (network-stream-open-starttls):
17649 Provide support for client certificates both for external and built-in
4ea31e07
LMI
17650 STARTTLS.
17651 (auth-source): Require.
17652 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
17653 (network-stream-certificate): Change cert-cert to cert and
17654 cert-key to key.
4ea31e07 17655
065ec2c7
MA
176562011-06-21 Michael Albinus <michael.albinus@gmx.de>
17657
17658 * net/tramp-cache.el (top): Don't load the persistency file when
17659 "emacs -Q" has been called.
17660
cd93b359
DR
176612011-06-21 Tim Harper <timcharper@gmail.com>
17662
d8e4b68b
JB
17663 * term/ns-win.el (ns-initialize-window-system):
17664 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
17665 resource to NO as it is not yet supported by the NS port.
17666
ae9c0411
JB
176672011-06-21 Juanma Barranquero <lekktu@gmail.com>
17668
17669 * misc.el (list-dynamic-libraries--refresh): Compute header here...
17670 (list-dynamic-libraries): ...not here.
17671
7f3f739f
LL
176722011-06-21 Leo Liu <sdl.web@gmail.com>
17673
17674 * subr.el (sha1): Implement sha1 using secure-hash.
17675
327c8fb1
MR
176762011-06-21 Martin Rudalics <rudalics@gmx.at>
17677
17678 * window.el (display-buffer-alist): In default value do not
17679 enforce searching a window on any but the selected frame.
17680 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
17681 (display-buffer-select-window): Remove function.
17682 (display-buffer-in-window): When a window on another frame gets
17683 reused, do not select it any more but just raise its frame if
17684 necessary (Bug#8851) and (Bug#8856).
17685 (display-buffer-normalize-options): Handle pop-up-frames related
17686 options more faithfully.
17687 (pop-to-buffer): Don't rely on `display-buffer' selecting the
17688 window if it is on another frame.
c9d29fb8
SM
17689 (display-buffer-alist, display-buffer-default-specifiers):
17690 Don't make new frame unsplittable by default.
9e9de014
MR
17691 (display-buffer-normalize-argument): Fix doc-string typo and use
17692 'same-frame-other-window instead of 'other-window when associating
17693 with display-buffer-macro-specifiers.
327c8fb1 17694
7cf3f556
VB
176952011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
17696
17697 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
17698 New functions.
17699 (5x5-mode-map, 5x5-mode-menu): Bind them.
17700 (5x5-draw-grid): Tweak the solver's rendering.
17701
60a406cf
SM
177022011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17703
17704 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
17705 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
17706
d8e4b68b 177072011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
17708
17709 * menu-bar.el: Use function variable instead of switch-to-buffer.
17710 (menu-bar-select-buffer-function): New variable.
60a406cf 17711 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 17712
478d6f95
SM
177132011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17714
17715 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
17716 variable's status.
17717
ca530739
JD
177182011-06-20 Jan Djärv <jan.h.d@swipnet.se>
17719
17720 * x-dnd.el (x-dnd-version-from-flags)
17721 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
17722 and long as number (Bug#8899).
17723 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
17724
bcd70d97
SM
177252011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17726
60a406cf 17727 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
17728 (completion-try-completion, completion-all-completions): Compute the
17729 metadata argument if it's missing; make it optional (bug#8795).
17730
60a406cf 17731 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
17732 (widget-complete): Use new :completion-function property.
17733 (widget-completions-at-point): New function.
17734 (default): Use :completion-function instead of :complete.
60a406cf
SM
17735 (widget-default-completions): Rename from widget-default-complete;
17736 Rewrite.
bcd70d97
SM
17737 (widget-string-complete, widget-file-complete, widget-color-complete):
17738 Remove functions.
17739 (file, symbol, function, variable, coding-system, color):
17740 * international/mule-cmds.el (default-input-method, charset)
17741 (language-info-custom-alist):
17742 * cus-edit.el (face): Use new property :completions.
17743
17744 * progmodes/pascal.el (pascal-completions-at-point): New function.
17745 (pascal-mode): Use it.
17746 (pascal-mode-map): Use completion-at-point.
17747 (pascal-toggle-completions): Make obsolete.
17748 (pascal-complete-word, pascal-show-completions):
17749 * progmodes/octave-mod.el (octave-complete-symbol):
17750 Redefine as obsolete alias.
17751 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
17752 Signal absence of completion info for old Octave,
17753 (inferior-octave-complete): Redefine as obsolete alias.
17754 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
17755 (meta-completions-at-point): Rename from meta-complete-symbol and
17756 adapt it for use on completion-at-point-functions.
17757 (meta-common-mode): Use it.
17758 (meta-looking-at-backward, meta-match-buffer): Remove.
17759 (meta-complete-symbol): Redefine as obsolete alias.
17760 (meta-common-mode-map): Use completion-at-point.
17761 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
17762 (makefile-mode-map): Use completion-at-point.
17763 (makefile-completions-at-point): Rename from makefile-complete and
17764 adapt it for use on completion-at-point-functions.
17765 (makefile-mode): Use it.
17766 (makefile-complete): Redefine as obsolete alias.
17767
aebf69c8
DD
177682011-06-20 Deniz Dogan <deniz@dogan.se>
17769
17770 * net/rcirc.el: Delete trailing whitespaces once and for all.
17771
bfbbb27d
DC
177722011-06-20 Daniel Colascione <dan.colascione@gmail.com>
17773
17774 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
17775
d264a46b
CY
177762011-06-19 Chong Yidong <cyd@stupidchicken.com>
17777
4ca009e5
CY
17778 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
17779
d264a46b
CY
17780 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
17781
fbf5b3ce
MR
177822011-06-19 Martin Rudalics <rudalics@gmx.at>
17783
17784 * window.el (display-buffer-other-window-means-other-frame):
17785 Call display-buffer-normalize-alist.
17786 (display-buffer-normalize-specifiers-1): Rename to
17787 display-buffer-normalize-argument. New argument other-frame.
17788 Rewrite.
17789 (display-buffer-normalize-specifiers-2): Rename to
17790 display-buffer-normalize-options.
17791 (display-buffer-normalize-alist-1): New function.
17792 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
17793 display-buffer-normalize-alist.
17794 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
17795 (display-buffer-normalize-options-inhibit): New variable.
17796 (display-buffer-normalize-specifiers): Rewrite calling
17797 display-buffer-normalize-alist,
17798 display-buffer-normalize-argument, and
17799 display-buffer-normalize-options. Don't call the latter if
17800 display-buffer-normalize-options-inhibit is non-nil.
17801 (frame-auto-delete): New option.
17802 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
17803 (window-list-no-nils, window-state-ignored-parameters)
17804 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
17805 (window-state-put-1, window-state-put-2, window-state-put):
17806 New functions.
9a028c23
MR
17807 (display-buffer-normalize-options): Move special-display-p group
17808 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 17809
6d10d800
CY
178102011-06-18 Chong Yidong <cyd@stupidchicken.com>
17811
6420d28b
CY
17812 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
17813 groups (Bug#8776).
17814 (rx-submatch-n): New function.
17815 (rx): Document it.
17816
ddb8b596
CY
17817 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
17818 (Bug#8768).
17819
17820 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
17821
77080289
CY
17822 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
17823
61dfb316
CY
17824 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
17825 anytime existing face settings are present (Bug#8889).
17826
6d10d800
CY
17827 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
17828 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
17829 Remove unused argument.
17830
be3fb2b8
MR
178312011-06-18 Martin Rudalics <rudalics@gmx.at>
17832
bcd70d97
SM
17833 * window.el (display-buffer-default-specifiers):
17834 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
17835 pop-up-window-min-width, and another reuse-window specifier
17836 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
17837 (display-buffer-normalize-specifiers-2):
17838 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
17839 pop-up-windows is unset. Add a reuse-window specifier for the
17840 case popping up a new window fails.
17841 (special-display-popup-frame): Remove double quoting.
28dec25a 17842 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 17843
1c6d8c76
SM
178442011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
17845
17846 * shell.el (shell-completion-vars): Set pcomplete-termination-string
17847 according to comint-completion-addsuffix.
17848
17849 * pcomplete.el: Convert to lexical binding and fix bug#8819.
17850 (pcomplete-suffix-list): Mark as obsolete.
17851 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
17852 pcomplete-seen in the closure.
17853 (pcomplete-comint-setup): Setup completion-at-point as well.
17854 (pcomplete--entries): New function.
17855 (pcomplete--env-regexp): New var.
17856 (pcomplete-entries): Rewrite to work with partial-completion and
17857 without relying on pcomplete-suffix-list.
17858 (pcomplete-pare-list): Remove, unused.
17859
25aef8b8
MR
178602011-06-17 Martin Rudalics <rudalics@gmx.at>
17861
17862 * window.el (display-buffer-alist): Set pop-up-window-min-height
17863 and pop-up-window-min-width in default value. Reported by
17864 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
17865 other-window-means-other-frame.
17866 (display-buffer-macro-specifiers): Comment out entry for
17867 other-window specifier.
17868 (display-buffer-other-window-means-other-frame): New function.
17869 (display-buffer-normalize-specifiers-1): New arguments
17870 buffer-name and label. Treat other-window case specially.
17871 (display-buffer-normalize-specifiers-2): Treat other-window case
17872 specially.
17873 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
17874 (display-buffer-normalize-specifiers):
17875 Call display-buffer-normalize-specifiers-3.
25aef8b8 17876
dbad4f69
MR
178772011-06-17 Martin Rudalics <rudalics@gmx.at>
17878
17879 * window.el (same-window-p): Fix two typos introduced when
17880 adding with-no-warnings.
d1067961
MR
17881 (display-buffer-normalize-specifiers-1): Don't check
17882 pop-up-frames for 'unset initialization.
17883 (display-buffer-normalize-specifiers-2): Major rewrite using
17884 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
17885 (pop-up-frames, display-buffer-reuse-frames)
17886 (display-buffer-mark-dedicated): Don't initialize to 'unset.
17887 Suggested by David Engster <deng@randomsample.de>.
17888 (even-window-heights): Initialize to 'unset.
17889 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
17890 (display-buffer-macro-specifiers): Don't pop up a new frame in the
17891 other window case.
dbad4f69 17892
9b9c9e3a
MR
178932011-06-16 Martin Rudalics <rudalics@gmx.at>
17894
bcd70d97
SM
17895 * window.el (display-buffer-normalize-specifiers-1):
17896 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 17897 second argument of display-buffer (Bug#8865).
981d5c09
MR
17898 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
17899 (switch-to-buffer-other-window-same-frame)
17900 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
17901 Adams (Bug#8875).
9c2755e9
MR
17902 (display-buffer): Don't check noninteractive when calling
17903 display-buffer-pop-up-frame.
17904 (display-buffer-pop-up-frame): Never pop up a frame in
17905 noninteractive mode (Bug#8857).
67222e1d
MR
17906 (enlarge-window, shrink-window): Don't report an error when the
17907 window can't be resized as requested (Bug#8862).
9b9c9e3a 17908
2b75be67
SM
179092011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17910
9ffdd3ba
SM
17911 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
17912
cb581a67
SM
17913 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
17914
2b75be67
SM
17915 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
17916
8c0e3589
AM
179172011-06-15 Alan Mackenzie <acm@muc.de>
17918
cb581a67
SM
17919 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
17920 for declarators, disable knr checking to speed up for normal files.
17921 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 17922
b96e6cde
LMI
179232011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17924
4bba86e6
LMI
17925 * net/network-stream.el (open-network-stream): Add the keyword
17926 :always-query-capabilities for the case where you want to force a
17927 `plain' network connection, but the protocol still requires the
17928 capabilitiy command (i.e., SMTP and EHLO).
17929
2b75be67 17930 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
17931 consistency with other `-live-p' functions.
17932
efdcdbf8
SM
179332011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17934
17935 * window.el (same-window-buffer-names, same-window-regexps)
17936 (special-display-frame-alist, special-display-popup-frame)
17937 (special-display-function, special-display-buffer-names)
17938 (special-display-regexps, pop-up-frame-alist)
17939 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
17940 (pop-up-windows, split-window-preferred-function)
17941 (split-height-threshold, split-width-threshold, even-window-heights)
17942 (display-buffer-mark-dedicated): Don't encourage the use of
17943 display-buffer-alist from Elisp code.
17944
c5cde042
DN
179452011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
17946
17947 * progmodes/python.el (python-mode): Derive from prog-mode.
17948 * progmodes/ps-mode.el (ps-mode):
17949 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 17950 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
17951 * progmodes/ld-script.el (ld-script-mode): Likewise.
17952
baa1c9ab
MR
179532011-06-15 Martin Rudalics <rudalics@gmx.at>
17954
17955 * window.el (display-buffer-alist): Trim default value to avoid
17956 popping up a new frame (Bug#8857) or reusing an arbitrary window
17957 on another frame.
17958 (display-buffer): Do not fall back on popping up a new frame in
17959 batch mode (Bug#8857).
17960
c5dd5a51
CY
179612011-06-14 Chong Yidong <cyd@stupidchicken.com>
17962
17963 * cus-theme.el (describe-theme-1): Use custom-theme-p.
17964 (custom-theme-summary): New function.
17965 (customize-themes): Use it.
17966
d647b7c4
GM
179672011-06-13 Glenn Morris <rgm@gnu.org>
17968
17969 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
17970
9481c002
MR
179712011-06-13 Martin Rudalics <rudalics@gmx.at>
17972
357f93d2
MR
17973 * help.el (help-window): Remove variable.
17974 (help-window-point-marker, temp-buffer-max-height)
17975 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
17976 (help-print-return-message): Don't set help-window.
17977 (resize-temp-buffer-window): Rewrite cod eand doc-string.
17978 (help-window-setup-finish): Remove.
17979 (help-window-display-message, help-window-setup)
17980 (with-help-window): Major rewrite based on new
17981 display-buffer-window variable.
17982
17983 * help-mode.el (help-mode-finish): Remove help-window related
17984 code.
17985
17986 * view.el (view-exits-all-viewing-windows): Remove reference to
17987 view-return-to-alist in doc-string.
17988 (view-return-to-alist): Make obsolete.
17989 (view-buffer): Call pop-to-buffer-same-window and remove
17990 undo-window code.
17991 (view-buffer-other-window): Call pop-to-buffer-other-window and
17992 simplify code. Ignore second argument.
17993 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
17994 simplify code. Ignore second argument.
17995 (view-return-to-alist-update): Make obsolete.
17996 (view-mode-enter): Rename second argument to QUIT-RESTORE.
17997 Rewrite using quit-restore window parameters.
2b75be67
SM
17998 (view-mode-exit): Rename second argument to EXIT-ONLY.
17999 Rewrite using quit-restore-window.
357f93d2
MR
18000 (View-exit, View-exit-and-edit, View-leave, View-quit)
18001 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
18002 appropriate arguments.
18003 (view-end-message): Use quit-restore window parameter.
18004
9481c002
MR
18005 * window.el (display-buffer-function): Rewrite doc-string.
18006 (display-buffer-window, display-buffer-alist): New variables.
18007 (display-buffer-split-specifiers)
18008 (display-buffer-side-specifiers)
18009 (display-buffer-macro-specifiers): New constants.
18010 (display-buffer-even-window-sizes, display-buffer-set-height)
18011 (display-buffer-set-width, display-buffer-select-window)
18012 (display-buffer-in-window, display-buffer-reuse-window)
18013 (display-buffer-split-window-1, display-buffer-split-window)
18014 (display-buffer-split-atom-window, display-buffer-pop-up-window)
18015 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
18016 (display-buffer-in-side-window, normalize-buffer-to-display)
18017 (display-buffer-normalize-specifiers-1)
18018 (display-buffer-normalize-specifiers-2)
2b75be67
SM
18019 (display-buffer-normalize-specifiers, display-buffer-frame):
18020 New functions.
9481c002
MR
18021 (display-buffer): Major rewrite.
18022 (display-buffer-other-window, display-buffer-other-frame)
18023 (pop-to-buffer, switch-to-buffer-other-window)
18024 (switch-to-buffer-other-frame): Rewrite.
18025 (display-buffer-same-window, display-buffer-same-frame)
18026 (display-buffer-same-frame-other-window)
18027 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
18028 (pop-to-buffer-other-window)
18029 (pop-to-buffer-same-frame-other-window)
18030 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
18031 (switch-to-buffer-other-window-same-frame): New functions.
18032 (same-window-p, special-display-p): Rewrite disabling warnings.
18033 Make obsolete.
18034 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
18035 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
18036 Make obsolete
18037 (same-window-buffer-names, same-window-regexps)
18038 (special-display-frame-alist, special-display-popup-frame)
18039 (special-display-function, special-display-buffer-names)
18040 (special-display-regexps, pop-up-frame-alist)
18041 (pop-up-frame-function, split-window-preferred-function)
18042 (split-height-threshold, split-width-threshold)
18043 (even-window-heights): Make obsolete.
18044
9db51aca
GM
180452011-06-12 Glenn Morris <rgm@gnu.org>
18046
18047 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 18048 Misc simplifications.
9db51aca 18049
39cffb44
MR
180502011-06-12 Martin Rudalics <rudalics@gmx.at>
18051
18052 * window.el (window-safely-shrinkable-p): Restore function which
18053 was inadvertently removed in change from 2011-06-11. Declare as
18054 obsolete.
18055
2b75be67
SM
18056 * calendar/calendar.el (calendar-generate-window):
18057 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
18058 window-safely-shrinkable-p.
18059
a8955be7
GM
180602011-06-12 Glenn Morris <rgm@gnu.org>
18061
18062 * progmodes/fortran.el (fortran-mode-syntax-table):
18063 * progmodes/f90.el (f90-mode-syntax-table):
18064 Set % to punctuation. (Bug#8820)
18065 (f90-find-tag-default): Remove, no longer needed.
18066
f0d4059d
DC
180672011-06-12 Daniel Colascione <dan.colascione@gmail.com>
18068
18069 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
18070
1100a63c
CY
180712011-06-11 Chong Yidong <cyd@stupidchicken.com>
18072
18073 * image.el (image-animated-p): Return animation delay in seconds.
18074 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
18075 (image-animate-timeout): Remove DELAY argument. Don't assume
18076 every subimage has the same delay; get it from image-animated-p.
18077 (image-animate): Caller changed.
18078
def722bf
MA
180792011-06-11 Michael Albinus <michael.albinus@gmx.de>
18080
18081 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
18082 to ignored backtrace functions.
18083
0a2bb1a9
GM
180842011-06-11 Glenn Morris <rgm@gnu.org>
18085
18086 * calendar/appt.el (appt-disp-window-function): Doc fix.
18087 (appt-check): Handle overlapping appointments. (Bug#8337)
18088
6198ccd0
MR
180892011-06-11 Martin Rudalics <rudalics@gmx.at>
18090
18091 * window.el (window-tree-1, window-tree): New functions, moving
18092 the latter to window.el.
18093 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
18094 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
18095 (bw-refresh-edges): Remove.
18096 (balance-windows-1, balance-windows-2): New functions.
18097 (balance-windows): Rewrite in terms of window tree functions,
18098 balance-windows-1 and balance-windows-2.
18099 (bw-adjust-window): Remove.
18100 (balance-windows-area-adjust): New function with functionality of
18101 bw-adjust-window but using resize-window.
2b75be67
SM
18102 (set-window-text-height): Rewrite doc-string.
18103 Use normalize-live-window and resize-window.
18104 (enlarge-window-horizontally, shrink-window-horizontally):
18105 Rename argument to DELTA.
6198ccd0
MR
18106 (window-buffer-height): New function.
18107 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
18108 Rewrite using new window resize routines.
2b75be67
SM
18109 (kill-buffer-and-window, mouse-autoselect-window-select):
18110 Use ignore-errors instead of condition-case.
6198ccd0
MR
18111 (quit-window): Call delete-frame instead of delete-windows-on
18112 for the only buffer on frame.
18113
9397e56f
MR
181142011-06-10 Martin Rudalics <rudalics@gmx.at>
18115
18116 * loadup.el (top-level): Load window before files for the sake
18117 of replace-buffer-in-windows.
18118
18119 * files.el (read-buffer-to-switch)
18120 (switch-to-buffer-other-window)
2b75be67
SM
18121 (switch-to-buffer-other-frame, display-buffer-other-frame):
18122 Move to window.el.
9397e56f
MR
18123
18124 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
18125 (previous-buffer): Move to window.el.
18126
18127 * bindings.el (unbury-buffer): Move to window.el.
18128
18129 * window.el (delete-other-windows-vertically): Move after
18130 definition of delete-other-windows.
18131 (other-window, delete-windows-on, replace-buffer-in-windows):
18132 Move here from window.c.
18133 (record-window-buffer, unrecord-window-buffer)
18134 (set-window-buffer-start-and-point, switch-to-prev-buffer)
18135 (switch-to-next-buffer): New functions.
18136 (get-next-valid-buffer, last-buffer, next-buffer): Move here
18137 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
18138 (previous-buffer): Move here from simple.el.
18139 Call switch-to-prev-buffer.
9397e56f
MR
18140 (bury-buffer): Move here from buffer.c. Switch to previous
18141 buffer when window cannot be deleted.
18142 (unbury-buffer): Move here from bindings.el.
18143 (ctl-x-map): Move binding for other-window from window.c to
18144 here.
18145 (read-buffer-to-switch, switch-to-buffer-other-window)
18146 (switch-to-buffer-other-frame): Move here from files.el.
18147 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
18148 (switch-to-buffer): Move here from buffer.c.
18149 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 18150
562dd5e9
MR
181512011-06-10 Martin Rudalics <rudalics@gmx.at>
18152
18153 * window.el (window-min-height, window-min-width): Move here
18154 from window.c. Add defcustoms and rewrite doc-strings.
18155 (resize-mini-window, resize-window): New functions.
18156 (adjust-window-trailing-edge, enlarge-window, shrink-window):
18157 Move here from window.c.
18158 (maximize-window, minimize-window): New functions.
18159 (delete-window, delete-other-windows, split-window): Move here
18160 from window.c.
18161 (window-split-min-size): New function.
18162 (split-window-keep-point): Mention split-window-above-each-other
18163 instead of split-window-vertically.
2b75be67 18164 (split-window-above-each-other, split-window-vertically):
1154d12e
JB
18165 Rename split-window-vertically to split-window-above-each-other
18166 and provide defalias for old definition.
18167 (split-window-side-by-side, split-window-horizontally):
18168 Rename split-window-horizontally to split-window-side-by-side
18169 and provide defalias for the old definition.
562dd5e9
MR
18170 (ctl-x-map): Move bindings for delete-window,
18171 delete-other-windows and enlarge-window here from window.c.
18172 Replace bindings for split-window-vertically and
18173 split-window-horizontally by bindings for
18174 split-window-above-each-other and split-window-side-by-side.
18175
18176 * cus-start.el (all): Remove entries for window-min-height and
18177 window-min-width. Add entries for window-splits and
18178 window-nest.
18179
f0da764a
GM
181802011-06-09 Glenn Morris <rgm@gnu.org>
18181
80675c21
GM
18182 * calendar/appt.el (appt-mode-line): New function.
18183 (appt-check, appt-disp-window): Use it.
18184
f0da764a
GM
18185 * files.el (hack-one-local-variable-eval-safep):
18186 Allow minor-modes with explicit +/-1 arguments.
18187
59f623b7
TZ
181882011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
18189
18190 * term/xterm.el (xterm): Add defgroup.
18191 (xterm-extra-capabilities): Add defcustom to supply known xterm
18192 capabilities, skip querying them, or query them (default).
18193 (terminal-init-xterm): Use it.
18194 (terminal-init-xterm-modify-other-keys): New function to set up
18195 modifyOtherKeys support to simplify `terminal-init-xterm'.
18196
9aab8e0d
MR
181972011-06-09 Martin Rudalics <rudalics@gmx.at>
18198
18199 * window.el (resize-window-reset, resize-window-reset-1)
18200 (resize-subwindows-skip-p, resize-subwindows-normal)
18201 (resize-subwindows, resize-other-windows, resize-this-window)
18202 (resize-root-window, resize-root-window-vertically)
18203 (window-deletable-p, window-or-subwindow-p)
18204 (frame-root-window-p): New functions.
18205
e8b08aee
GM
182062011-06-09 Glenn Morris <rgm@gnu.org>
18207
18208 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
18209 (ange-ftp-get-files): Use it.
18210
254c37a5
AK
182112011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
18212
18213 * mail/sendmail.el (mail-recover-1, mail-recover):
18214 * files.el (recover-file, recover-session):
18215 Handle dired-listing-switches not being just a single short option.
18216
35d7dbd3
GM
182172011-06-09 Glenn Morris <rgm@gnu.org>
18218
18219 * calendar/appt.el (appt-display-message, appt-disp-window):
18220 Handle lists of appointments.
18221
387522b2
MR
182222011-06-08 Martin Rudalics <rudalics@gmx.at>
18223
2b75be67
SM
18224 * window.el (one-window-p): Move down in code.
18225 Rewrite doc-string.
18226 (window-current-scroll-bars): Rewrite doc-string.
18227 Normalize live window argument.
387522b2
MR
18228 (walk-windows, get-window-with-predicate, count-windows):
18229 Rewrite doc-string. Use window-list-1.
18230 (window-in-direction-2, window-in-direction, get-mru-window):
18231 New functions.
18232
d8e4b68b 182332011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
18234
18235 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
18236 Doc fix (Bug#8713).
18237
182382011-06-08 Chong Yidong <cyd@stupidchicken.com>
18239
18240 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
18241
182422011-06-08 Juanma Barranquero <lekktu@gmail.com>
18243
18244 * loadhist.el (unload-feature-special-hooks):
18245 Add `comint-output-filter-functions'.
18246
0de12c52
IK
182472011-06-08 Ivan Kanis <gnu@kanis.fr>
18248
18249 * calendar/appt.el (appt-check): Move some initializations into the let.
18250
f3d1777e
MR
182512011-06-08 Martin Rudalics <rudalics@gmx.at>
18252
18253 * window.el (window-height): Defalias to window-total-height.
18254 (window-width): Defalias to window-body-width.
18255
18af70d0
CY
182562011-06-07 Chong Yidong <cyd@stupidchicken.com>
18257
18258 * image-mode.el (image-toggle-animation): New command.
18259 (image-mode-map): Bind it to RET.
18260 (image-mode): Update message.
18261 (image-toggle-display-image): Avoid a spurious cache flush.
18262 (image-transform-rotation): Doc fix.
18263 (image-transform-properties): Return quickly in the normal case.
18264 (image-animate-loop): Rename from image-animate-max-time.
18265
2b75be67 18266 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
18267 (create-animated-image): Remove unnecessary function.
18268 (image-animate): Rename from image-animate-start. New arg.
2b75be67 18269 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
18270 (image-animate-timer): Use car-safe.
18271 (image-animate-timeout): Rename argument.
18272
190b47e6
MR
182732011-06-07 Martin Rudalics <rudalics@gmx.at>
18274
18275 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
18276 window.c. Rename first argument to ALL-FRAMES.
18277 Rephrase doc-strings.
18278 (get-buffer-window-list): Rewrite using window-list-1.
18279 Rephrase doc-string.
a1511caf
MR
18280 (window-safe-min-height, window-safe-min-width): New constants.
18281 (window-size-ignore, window-min-size, window-min-size-1)
18282 (window-sizable, window-sizable-p, window-size-fixed-1)
18283 (window-size-fixed-p, window-min-delta-1, window-min-delta)
18284 (window-max-delta-1, window-max-delta, window-resizable)
18285 (window-resizable-p, window-total-height, window-total-width)
18286 (window-body-width): New functions.
18287 (window-full-height-p, window-full-width-p): Rewrite using
18288 window-total-size.
18289 (window-body-height): Rewrite using window-body-size.
190b47e6 18290
85cc1f11
MR
182912011-06-06 Martin Rudalics <rudalics@gmx.at>
18292
18293 * window.el (window-right, window-left, window-child)
18294 (window-child-count, window-last-child, window-any-p)
18295 (normalize-live-buffer, normalize-live-frame)
18296 (normalize-any-window, normalize-live-window)
18297 (window-iso-combination-p, window-iso-combined-p)
18298 (window-iso-combinations)
18299 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
18300 (windows-with-parameter, window-with-parameter)
18301 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
18302 (window-atom-check, window-side-check, window-check):
18303 New functions.
85cc1f11
MR
18304 (ignore-window-parameters, window-sides, window-sides-vertical)
18305 (window-sides-slots): New variables.
18306 (window-size-fixed): Move down in code. Minor doc-string fix.
18307
e7156492
AS
183082011-06-05 Andreas Schwab <schwab@linux-m68k.org>
18309
18310 * comint.el (comint-dynamic-complete-as-filename)
18311 (comint-dynamic-complete-filename): Correctly call
18312 completion-in-region.
18313
7e821d0d
DD
183142011-06-05 Deniz Dogan <deniz@dogan.se>
18315
18316 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
18317 in last change.
18318
ac09b8a1
DD
183192011-06-05 Deniz Dogan <deniz@dogan.se>
18320
18321 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
18322 (rcirc): Use it to prompt for encryption.
18323
34699b85
RW
183242011-06-05 Roland Winkler <winkler@gnu.org>
18325
18326 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
18327 (bibtex-search-entries): New command bound to C-c C-a.
18328 (bibtex-display-entries): New function.
18329
004dedd3
RW
183302011-06-05 Roland Winkler <winkler@gnu.org>
18331
18332 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
18333 (bibtex-insert-kill): After yanking insert newline if necessary.
18334 (bibtex-initialize): Call bibtex-string-files-init only once.
18335 (bibtex-mode): Do not call easy-menu-add.
18336 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
18337 (bibtex-yank): Set arg properly if nil.
18338
022fe7ce
RW
183392011-06-05 Roland Winkler <winkler@gnu.org>
18340
2b75be67
SM
18341 * textmodes/bibtex.el (bibtex-search-entry-globally):
18342 New variable.
022fe7ce
RW
18343 (bibtex-search-entry): Use it.
18344
b7c3692a
RW
183452011-06-05 Roland Winkler <winkler@gnu.org>
18346
18347 * textmodes/bibtex.el (bibtex-entry-format): New option
18348 sort-fields.
18349 (bibtex-format-entry, bibtex-reformat): Honor this option.
18350 (bibtex-parse-entry): Return fields in proper order.
18351
8eda563d
JB
183522011-06-05 Juanma Barranquero <lekktu@gmail.com>
18353
18354 * doc-view.el (doc-view-remove-if): Move computation of result out
18355 of `dolist' to silence misleading lexical-binding warning.
18356
7dbe3dbc
CY
183572011-06-04 Chong Yidong <cyd@stupidchicken.com>
18358
18359 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
18360 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
18361
0c33dd17
MA
183622011-06-04 Michael Albinus <michael.albinus@gmx.de>
18363
18364 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
18365 "SunOS 5.10".
18366
f8f91c2b
MA
183672011-06-04 Michael Albinus <michael.albinus@gmx.de>
18368
18369 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
18370 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
18371 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
18372 (tramp-parse-putty):
18373 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
18374 (tramp-completion-function-alist-ssh)
18375 (tramp-completion-function-alist-telnet)
18376 (tramp-completion-function-alist-su)
18377 (tramp-completion-function-alist-putty): Set `tramp-autoload'
18378 cookie.
18379
18380 * net/tramp-ftp.el:
18381 * net/tramp-sh.el:
18382 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
18383 load "tramp.el" `tramp-set-completion-function'.
18384
e17d9003
SM
183852011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
18386
18387 * shell.el: Require and use pcomplete.
18388 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
18389 (shell-completion-vars): Set pcomplete-default-completion-function.
18390
6c4cab03
DD
183912011-06-04 Deniz Dogan <deniz@dogan.se>
18392
18393 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
18394 `memq' (Bug#8799).
18395
ea9fafe0
SM
183962011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18397
18398 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
18399
b3e945d3
JB
184002011-06-02 Juanma Barranquero <lekktu@gmail.com>
18401
18402 * bs.el (bs--mark-unmark, bs--nth-wrapper):
18403 * mpc.el (mpc-select-extend, mpc-songpointer-context):
18404 * vc/log-view.el (log-view-beginning-of-defun):
18405 * vc/smerge-mode.el (smerge-apply-resolution-patch)
18406 (smerge-refine-forward, smerge-refine-chopup-region):
18407 Silence warning for unused `dotimes' counter variables.
18408
7d520089
SM
184092011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18410
18411 * net/tramp.el (tramp-with-progress-reporter): Rename from
18412 with-progress-reporter. Use `declare'.
18413 * net/tramp-smb.el:
18414 * net/tramp-sh.el:
18415 * net/tramp-gvfs.el: Update all uses.
18416
a1c2400f
JB
184172011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
18418
18419 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
18420 buffer isn't killed before making it current.
18421
2403c841
SM
184222011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18423
18424 Silence various byte-compiler warnings.
18425 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
18426 `access-type' and new obsolescence format.
18427 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
18428 new format.
18429 (byte-compile-check-variable): New `access-type' argument.
18430 Only warn if the access-type is obsolete.
18431 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
18432 (byte-compile-variable-set): Adjust callers.
18433 * help-fns.el (describe-variable): Adjust to new obsolescence format.
18434 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
18435 setting it as obsolete.
18436 * simple.el (minibuffer-completing-symbol):
18437 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
18438 access as obsolete.
18439 * minibuffer.el (minibuffer-completing-file-name): Don't make it
18440 obsolete yet.
18441 * international/quail.el (quail-mouse-choose-completion): Remove unused
18442 code referring to obsolete var.
18443 (quail-choose-completion-string): Remove.
18444 * server.el (server-clients-with, server-kill-buffer-query-function)
18445 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
18446 * proced.el (proced-send-signal):
18447 * emacs-lisp/lisp.el (lisp-complete-symbol):
18448 Replace completion-annotate-function with completion-extra-properties.
18449
2462470b
SM
184502011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18451
fb5b2591
SM
18452 * simple.el (goto-line): Use read-number.
18453 (overriding-map-is-bound): Remove.
18454 (saved-overriding-map): Change default.
18455 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
18456 Take the map as argument.
18457 (universal-argument, negative-argument, digit-argument): Use it.
18458 (restore-overriding-map): Adjust.
18459 (do-auto-fill): Use fill-forward-paragraph.
18460 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
18461
fd6fa53f
SM
18462 * minibuffer.el (minibuffer-inactive-mode-map): New var.
18463 (minibuffer-inactive-mode): New major mode.
18464 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
18465 the *Messages* buffer" hack.
18466 (mouse-popup-menubar): Don't burp if the event is a normal key.
18467
2462470b
SM
18468 Miscellaneous tweaks.
18469 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
18470 lexical scoping as in subr.el's dolist and dotimes.
18471 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
18472 Silence compiler warning.
18473 * thingatpt.el (forward-whitespace): Trivial coding style fix.
18474 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
18475 * international/ccl.el (ccl-compile): Trivial simplification.
18476 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
18477 * emacs-lisp/testcover.el (testcover-end): Remove spurious
18478 `printflag' argument.
18479 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
18480 Purecopy the whole obsolescence data.
18481
108bf785
LL
184822011-06-01 Leo Liu <sdl.web@gmail.com>
18483
18484 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
18485 improve doc-string as suggested by Marco Pessotto
18486 <melmothx@gmail.com>.
18487 (rcirc-print): Fix last change.
18488
30a23501
SM
184892011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18490
18491 * minibuffer.el (complete-with-action): Return nil for the metadata and
18492 boundaries of non-functional tables.
18493 (completion-table-dynamic): Return nil for the metadata.
18494 (completion-table-with-terminator): Add default case, using
18495 complete-with-action.
18496 (completion--metadata): New function.
18497 (completion-all-sorted-completions, minibuffer-completion-help): Use it
18498 to try and avoid pathological performance problems.
18499 (completion--embedded-envvar-table): Return `category' metadata.
18500
bcd54f83
LMI
185012011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
18502
18503 * subr.el (process-alive-p): New tiny convenience function.
18504
e227544d
SM
185052011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18506
18507 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
18508 content but also its previous major mode.
18509
e8296fdc
HE
185102011-05-31 Helmut Eller <eller.helmut@gmail.com>
18511
4d61f28d 18512 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
18513 *Backtrace* buffer when we exit with C-M-c.
18514
620c53a6
SM
185152011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18516
18517 * minibuffer.el: Add metadata method to completion tables.
18518 (completion-category-overrides): New defcustom.
18519 (completion-metadata, completion--field-metadata)
18520 (completion-metadata-get, completion--styles)
18521 (completion--cycle-threshold): New functions.
18522 (completion-try-completion, completion-all-completions):
18523 Add `metadata' argument to choose completion-styles.
18524 (completion--do-completion): Use metadata to choose cycling.
18525 (completion-all-sorted-completions): Use metadata for sorting.
18526 Remove :completion-cycle-penalty which is not needed any more.
18527 (completion--try-word-completion): Add `metadata' argument.
18528 (minibuffer-completion-help): Check metadata for annotation function
18529 and sorting.
18530 (completion-file-name-table): Return `category' metadata.
18531 (minibuffer-completing-file-name): Make obsolete.
18532 * simple.el (minibuffer-completing-symbol): Make obsolete.
18533 * icomplete.el (icomplete-completions): Pass new `metadata' param to
18534 completion-try-completion.
18535
1257e755
SM
185362011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18537
18538 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
18539
3767e706
LL
185402011-05-30 Leo Liu <sdl.web@gmail.com>
18541
18542 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
18543 (rcirc-print): Decode all incoming messages (bug#8744).
18544 (rcirc-decode-coding-system): Allow value nil for automatic coding
18545 system detection.
3767e706 18546
d1a5d56a
GM
185472011-06-01 Glenn Morris <rgm@gnu.org>
18548
18549 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
18550
e8cbec34
CY
185512011-05-29 Chong Yidong <cyd@stupidchicken.com>
18552
18553 * image.el (image-animate-max-time): Allow nil and t values.
18554 Default to nil.
18555 (create-animated-image): Doc fix.
18556 (image-animate-start): Remove second arg; just use
18557 image-animate-max-time.
18558 (image-animate-timeout): Doc fix. Args changed.
18559
18560 * image-mode.el (image-toggle-display-image): Ensure that the
18561 image spec passed to the animate timer is the same object as in
58179cce 18562 the buffer's display property (Bug#6981).
e8cbec34
CY
18563 (image-transform-properties): Doc fix.
18564
18565 * image.el (image-animate-max-time): Default to nil.
18566
159daf87
MR
185672011-05-29 Martin Rudalics <rudalics@gmx.at>
18568
18569 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
18570 entire buffer list (Bug#8184).
18571
d66c4c7c
CY
185722011-05-29 Chong Yidong <cyd@stupidchicken.com>
18573
18574 * image.el (imagemagick-types-inhibit)
18575 (imagemagick-register-types): Doc fix.
18576
80aec780
DD
185772011-05-29 Deniz Dogan <deniz@dogan.se>
18578
18579 * net/rcirc.el (rcirc): Use the user's stored encryption method by
18580 default.
18581
1dd3c2d9
CY
185822011-05-29 Chong Yidong <cyd@stupidchicken.com>
18583
18584 * select.el: Don't perform clipboard-manager saving in hooks;
18585 leave the hooks empty.
18586
60e56523
LL
185872011-05-28 Leo Liu <sdl.web@gmail.com>
18588
18589 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
18590 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
18591 (occur-edit-mode): New major mode (Bug#8463).
18592 (occur-after-change-function): New function.
18593 (occur-engine): Give Occur tags a read-only property.
18594
2b1e1a22
KR
185952011-05-28 Kevin Ryde <user42@zip.com.au>
18596
18597 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
18598
5d344e88
CY
185992011-05-28 Chong Yidong <cyd@stupidchicken.com>
18600
8e6ca83d
CY
18601 * bindings.el (help-echo): Make the initial non-indicator dash
18602 empty on graphical terminals (Bug#7295).
18603
5d344e88
CY
18604 * files.el (auto-mode-alist): Move config rule after the
18605 in-stripping one (Bug#8547).
18606
bfbbace7
CY
18607 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
18608
fbeba6e2
CY
18609 * startup.el (normal-splash-screen): Remove gratuitous mode-line
18610 setting (Bug#8740).
18611
60ed8c72
AA
186122011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
18613
4ac619f0
AA
18614 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
18615 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
18616 (Bug#8539).
60ed8c72 18617
23db196e
CY
186182011-05-28 Chong Yidong <cyd@stupidchicken.com>
18619
18620 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
18621
5012f24c
DK
186222011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
18623
18624 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
18625 (hs-hide-block-at-point, hs-find-block-beginning)
18626 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
18627 (Bug#8279).
18628
6a639b16
GM
186292011-05-28 Glenn Morris <rgm@gnu.org>
18630
18631 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
18632
d43eaf2c
CY
186332011-05-28 Chong Yidong <cyd@stupidchicken.com>
18634
5199bde1
CY
18635 * help-fns.el (describe-function-1): If the function is a derived
18636 major mode, print the parent mode.
18637
d43eaf2c
CY
18638 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
18639 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
18640
423428a8
SM
186412011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
18642
0ff8e1ba 18643 * minibuffer.el (completion--capf-wrapper): Check applicability before
0b381c7e 18644 returning non-nil for non-exclusive completion data.
0ff8e1ba
SM
18645 * progmodes/etags.el (tags-completion-at-point-function):
18646 * info-look.el (info-lookup-completions-at-point): Mark as
18647 non-exclusive.
18648 (info-complete): Adjust accordingly.
18649
423428a8
SM
18650 * info-look.el: Convert to lexical-binding and completion-at-point.
18651 (info-lookup-completions-at-point): New function.
18652 (info-complete): Use it and completion-in-region.
18653
b74aa22b
DA
186542011-05-28 Drew Adams <drew.adams@oracle.com>
18655
18656 * isearch.el: Let M-e start with point at the first mismatched char.
18657 (isearch-fail-pos): New function.
18658 (isearch-edit-string): Use it.
18659
66e2e71d
DK
186602011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18661
18662 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18663
b1890b0f 186642011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
eb95d01d
TC
18665
18666 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
18667 traversal functions for avl-trees.
18668 (avl-tree--stack): New struct.
18669 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
18670 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
18671 (avl-tree--do-enter): Add optional `updatefun' arg.
18672 Change return value.
eb95d01d 18673 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
18674 (avl-tree--do-delete): Add `test' and `nilflag' args.
18675 Change return value.
eb95d01d
TC
18676 (avl-tree-member): Add optional `nilflag'
18677 (avl-tree-member-p): New function.
18678 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
18679 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
18680 (avl-tree-stack-empty-p): New functions.
18681
3769ddcf
TC
18682 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
18683 avl-tree--del-balance1 and make it work both ways.
18684 (avl-tree--del-balance2): Remove.
18685 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
18686 make it work both ways.
18687 (avl-tree--enter-balance2): Remove.
18688 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
18689 New macros.
18690 (avl-tree--mapc, avl-tree-map): Add direction argument.
18691
eb95d01d 186922011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
18693
18694 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
18695
a9f737ee
CY
186962011-05-27 Chong Yidong <cyd@stupidchicken.com>
18697
18698 * select.el: Support clipboard managers with built-in function
18699 x-clipboard-manager-save, via delete-frame-functions and
18700 kill-emacs-hook.
18701 (xselect-convert-to-targets): Add MULTIPLE target to list.
18702 (xselect-convert-to-save-targets): New function.
18703
c92a1e54
KH
187042011-05-27 Kenichi Handa <handa@m17n.org>
18705
18706 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
18707 let-binding rfc2047-encode-encoded-words to nil.
18708
e145f188
GM
187092011-05-27 Glenn Morris <rgm@gnu.org>
18710
5ec8a862
GM
18711 * mail/emacsbug.el: Don't require url-util.
18712
4b29d9fb
GM
18713 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
18714
e145f188
GM
18715 * files.el (set-auto-mode):
18716 Also respect mode: entries at the end of the file. (Bug#8586)
18717
7d15102b
GM
187182011-05-26 Glenn Morris <rgm@gnu.org>
18719
98f593b8
GM
18720 * files.el (hack-local-variables-prop-line, hack-local-variables):
18721 Downcase mode names, as seems to be traditional.
27b48e63 18722 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 18723
7d15102b
GM
18724 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
18725 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
18726
51d5b4ec
JD
187272011-05-25 Julien Danjou <julien@danjou.info>
18728
18729 * textmodes/rst.el (rst-define-level-faces): Do not define face
18730 symbol if it is already defined.
18731
91513f63
VB
187322011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
18733
18734 * play/5x5.el (5x5-new-game, 5x5-randomize):
18735 Reset 5x5-solver-output to nil when a new grid is cast.
18736 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
18737 these debugging traces, as defmacro breaks the compiled code.
18738
4d90d6d0
DK
187392011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18740
18741 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18742
e1b90ef6
LL
187432011-05-24 Leo Liu <sdl.web@gmail.com>
18744
18745 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
18746 (vc-bzr-sha1): Adapt.
18747
d8e4b68b 18748 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
18749
18750 * bindings.el: Provide sha1 feature.
18751
db0406bb 187522011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
18753
18754 * mail/sendmail.el: Require `rfc2047'.
18755 (mail-insert-from-field): Do not perform RFC2047 encoding.
18756 (mail-encode-header): New function.
18757 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
18758 buffer to the return value of select-message-coding-system.
18759 Call mail-encode-header.
b8d747b9
KH
18760
18761 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
18762
db0406bb 187632011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 18764
4d90d6d0
DK
18765 * mail/supercite.el (sc-default-cite-frame):
18766 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 18767
eb8a5e9b
GM
187682011-05-24 Glenn Morris <rgm@gnu.org>
18769
f8630703
GM
18770 * progmodes/python.el (brm-menu): Declare.
18771
8831bbed
GM
18772 * emulation/viper.el (viper-set-hooks): Declare.
18773
eb8a5e9b
GM
18774 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
18775 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
18776 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
18777 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
18778 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
18779 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
18780
a2a25d24
SM
187812011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
18782
18783 Add an :exit-function for completion-at-point.
18784
18785 * minibuffer.el (completion--done): New fun.
18786 (completion--do-completion): Use it. New arg `expect-exact'.
18787 (minibuffer-complete, minibuffer-complete-word): Don't output message,
18788 since completion--do-completion does it for us now.
18789 (minibuffer-force-complete): Use completion--done and
18790 completion--replace. Handle sole-completion case with more care.
18791 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
18792 (completion-extra-properties): New var.
18793 (completion-annotate-function): Make obsolete.
18794 (minibuffer-completion-help): Adjust accordingly.
18795 Use completion-list-insert-choice-function.
18796 (completion-at-point, completion-help-at-point):
18797 Bind completion-extra-properties.
18798 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
18799 * simple.el (completion-list-insert-choice-function): New var.
18800 (completion-setup-function): Preserve it.
18801 (choose-completion): Pay attention to it, shuffle the code a bit.
18802 (choose-completion-string): New arg `insert-function'.
18803
18804 * textmodes/bibtex.el: Convert to lexical binding.
18805 (bibtex-mode-map): Use completion-at-point.
18806 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
18807 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
18808 (bibtex-complete): Define as obsolete alias.
18809 (bibtex-complete-internal): Remove.
18810 (bibtex-format-entry): Remove unused sub-group in regexp.
18811 * shell.el (shell--command-completion-data)
18812 (shell-environment-variable-completion):
18813 * pcomplete.el (pcomplete-completions-at-point):
18814 * comint.el (comint--complete-file-name-data): Use :exit-function
18815 instead of completion-table-with-terminator so it also works for
18816 choose-completion.
18817
e44e373d
SM
188182011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18819
4f91a816
SM
18820 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
18821
782fc819
SM
18822 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
18823 (bug#8710).
18824
e44e373d
SM
18825 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
18826
381987c3
KM
188272011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
18828
18829 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
18830 customization variable and implement: If non-nil, auto-fill will
18831 be inhibited while on topic's header line.
18832
b776bc70
VB
188332011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
18834
18835 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 18836 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
18837 always have a solution in grid size = 5 cases.
18838 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
18839 (5x5-solver-output, 5x5-log-buffer): New vars.
18840 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
18841 Make these variables buffer local to achieve 5x5 multi-session-ness.
18842 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
18843 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
18844 (5x5-solve-suggest): New funs.
18845 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
18846 randomize a grid so that we ensure that there is always a solution.
18847 (5x5-make-random-grid): Allow other movement than flipping.
18848
7de88b6e
KR
188492011-05-23 Kevin Ryde <user42@zip.com.au>
18850
18851 * emacs-lisp/advice.el (ad-read-advised-function):
5a5fa834 18852 Use `function-called-at-point' as the default, if it has
7de88b6e
KR
18853 advice and passes PREDICATE.
18854
b1ef1257
SM
188552011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18856
bbca48fe
SM
18857 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
18858 byte-compile-lambda if it's actually a lambda.
18859
b1ef1257
SM
18860 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
18861 Fix function quoting. Use backquote better.
18862
92a9cc65
YS
188632011-05-22 Yuanle Song <sylecn@gmail.com>
18864
18865 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
18866 matching (Bug#8516).
18867
f0fb8059
JA
188682011-01-22 Jari Aalto <jari.aalto@cante.net>
18869
18870 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
18871 different face (Bug#8178).
18872
d5b44c93
CY
188732011-05-22 Chong Yidong <cyd@stupidchicken.com>
18874
18875 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
18876 defface (Bug#8144).
18877
79106a44
SM
188782011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
18879
9c848d8a
SM
18880 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
18881 funcall as well (bug#8712). Warn when performing those conversions.
18882 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
18883
79106a44
SM
18884 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
18885
88dfa756
GM
188862011-05-22 Glenn Morris <rgm@gnu.org>
18887
18888 * files.el (hack-local-variables-prop-line): Small simplifications.
18889 (hack-local-variables, hack-local-variables-prop-line):
18890 If MODE-ONLY, return the mode, rather than just `t'.
18891
b7cf2c79
SM
188922011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
18893
18894 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
18895
3f1a8558
GM
188962011-05-21 Glenn Morris <rgm@gnu.org>
18897
7e4ccca3
GM
18898 * files.el (hack-local-variables-prop-line, hack-local-variables):
18899 If only interested in the mode, don't bother doing the other stuff.
18900
637d46ca
GM
18901 * image-mode.el (image-after-revert-hook):
18902 Redraw all frames on which the image is visible. (Bug#8567)
18903
973d955b
GM
18904 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
18905
3f1a8558
GM
18906 * wid-edit.el (widget-checklist-match-inline):
18907 Fix 2011-04-19 change. (Bug#8649)
18908
96479927
SM
189092011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
18910
1dcf791f
SM
18911 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
18912 Also allow singlespace after single-letter capitals followed by a dot.
18913
96479927
SM
18914 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
18915 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
18916
35fd0881
N
189172011-05-20 Nix <nix@esperi.org.uk>
18918
18919 * files.el (basic-save-buffer-2):
18920 Fix handling of break-hardlink-on-save with non-existent files.
18921
82745640
DD
189222011-05-19 Deniz Dogan <deniz@dogan.se>
18923
18924 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 18925 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 18926
4a720484
GM
189272011-05-19 Glenn Morris <rgm@gnu.org>
18928
d1f21341
GM
18929 * progmodes/f90.el (f90-type-def-re):
18930 Handle "type, bind(c)". (Bug#8691)
18931
4a720484
GM
18932 * emacs-lisp/autoload.el (batch-update-autoloads):
18933 Set autoload-excludes by parsing loadup.el rather than Makefiles.
18934
2fb0a219
MA
189352011-05-18 Michael Albinus <michael.albinus@gmx.de>
18936
18937 * net/tramp.el (tramp-process-actions): Set "first-password-request"
18938 property for the correct connection in case of multihops.
18939
e565dd37
GM
189402011-05-18 Glenn Morris <rgm@gnu.org>
18941
c2571358 18942 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
18943 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
18944
e565dd37
GM
18945 Rationalize calendar handling of day and month abbrev-arrays.
18946 * calendar/calendar.el (calendar-customized-p): New function.
18947 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
18948 (calendar-day-name-array, calendar-month-name-array): Doc fix.
18949 Add :set function.
18950 (calendar-abbrev-length, calendar-day-abbrev-array)
18951 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
18952 (calendar-day-abbrev-array, calendar-month-abbrev-array):
18953 Elements may no longer be nil.
18954 (calendar-day-name, calendar-month-name):
18955 Update for changed nature of abbrev arrays.
18956 * calendar/diary-lib.el (diary-name-pattern):
18957 Update for changed nature of abbrev arrays.
18958 (diary-mark-entries-1): Update calendar-make-alist calls.
18959 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
18960 * calendar/cal-html.el (cal-html-day-abbrev-array):
18961 Simply inherit from calendar-day-abbrev-array.
18962
1d99a745
SM
189632011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
18964
18965 * progmodes/grep.el (grep-mode): Disable default
18966 compilation-directory-matcher setting (bug#8684).
18967
7c1d9aa0
MA
189682011-05-17 Michael Albinus <michael.albinus@gmx.de>
18969
18970 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
18971 instead of "head" and "tail". There were problems with SunOS 5.9,
18972 and it performs better.
18973
3952e9d8
GM
189742011-05-17 Glenn Morris <rgm@gnu.org>
18975
2dd12e7f
GM
18976 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
18977
e4157b9c
GM
18978 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
18979 Replace obsolete function.
18980
8e249bbd
GM
18981 * shell.el (pcomplete-parse-arguments-function): Declare.
18982
3952e9d8
GM
18983 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
18984 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
18985 (appt-check): Doc fixes.
18986 (appt-disp-window-function, appt-delete-window-function):
18987 Remove needless special case in custom :type.
18988 (appt-display-count): Default to 0, not nil.
18989 (appt-check): Reset appt-display-count to 0, not nil.
18990
c71a0d48 189912011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 18992
c71a0d48
GM
18993 * progmodes/python.el (python-font-lock-keywords):
18994 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 18995
31d55be9
SM
189962011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
18997
18998 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
18999
3bfacb2f
KR
190002011-05-16 Kevin Ryde <user42@zip.com.au>
19001
19002 * info-look.el (makefile-automake-mode): New setups, looking in
19003 automake manual, then makefile-mode.
19004 (makefile-mode): Remove automake manual, have it just in
19005 makefile-automake-mode since there's various things different or
19006 not relevant to plain make.
19007 (makefile-mode): Remove "other-modes" non-existent automake-mode,
19008 believe a hypothetical automake-mode would go to makefile-mode,
19009 not the other way around.
19010
c8e83751
CY
190112011-05-15 Chong Yidong <cyd@stupidchicken.com>
19012
5e9e35cd
CY
19013 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
19014 hunk-end tags (Bug#8672).
19015
c8e83751
CY
19016 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
19017 vc-annotate-show-diff-revision-at-line (Bug#8671).
19018
50b23e5a
GM
190192011-05-14 Glenn Morris <rgm@gnu.org>
19020
7210a739
GM
19021 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
19022 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
19023 (change-log-font-lock-keywords): Also handle multiple author lines
19024 with leading tabs. (Bug#8644)
7210a739 19025
4691905a
GM
19026 * calendar/appt.el (appt-check): Rename some local variables.
19027 Some simplification/reordering.
19028
50b23e5a
GM
19029 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
19030 (feedmail-sendmail-f-doesnt-sell-me-out)
19031 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19032 (feedmail-debug-sit-for, feedmail-queue-express-hook)
19033 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
19034 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
19035 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
19036 (feedmail-binmail-gnulinuxish-template):
19037 Rename from feedmail-binmail-linuxish-template.
19038 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
19039 Use insert-buffer-substring.
19040
215cda7c
BC
190412011-05-14 Bill Carpenter <bill@carpenter.org>
19042
19043 * mail/feedmail.el (feedmail-patch-level): Increase.
19044 (feedmail-debug): New custom group.
19045 (feedmail-confirm-outgoing-timeout)
19046 (feedmail-sendmail-f-doesnt-sell-me-out)
19047 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19048 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
19049 (feedmail-sender-line, feedmail-from-line)
19050 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 19051 (feedmail-spray-this-address)
215cda7c
BC
19052 (feedmail-spray-address-fiddle-plex-list)
19053 (feedmail-queue-use-send-time-for-date)
19054 (feedmail-queue-use-send-time-for-message-id)
19055 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
19056 (feedmail-buffer-eating-function):
19057 Doc fixes.
19058 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
19059 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
19060 (feedmail-message-action-scroll-down): New functions.
19061 (feedmail-queue-directory, feedmail-queue-draft-directory):
19062 Use expand-file-name.
19063 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
19064 Remove C-v help entry.
19065 (feedmail-queue-buffer-file-name): New variable.
19066 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
19067 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
19068 (feedmail-message-action-send-strong, feedmail-message-action-edit)
19069 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
19070 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
19071 (feedmail-message-action-toggle-spray)
19072 (feedmail-run-the-queue-no-prompts)
19073 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
19074 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
19075 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
19076 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
19077 (feedmail-envelope-deducer, feedmail-fiddle-from)
19078 (feedmail-fiddle-sender, feedmail-default-date-generator)
19079 (feedmail-fiddle-date, feedmail-fiddle-message-id)
19080 (feedmail-fiddle-spray-address)
19081 (feedmail-fiddle-list-of-spray-fiddle-plexes)
19082 (feedmail-fiddle-list-of-fiddle-plexes)
19083 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
19084 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
19085 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
19086 Change default. Doc fix.
19087 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
19088 (feedmail-binmail-linuxish-template): New constant.
19089 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
19090 Respect feedmail-sendmail-f-doesnt-sell-me-out.
19091 (feedmail-send-it): Add debug call.
19092 Use feedmail-queue-buffer-file-name, and
19093 feedmail-send-it-immediately-wrapper.
19094 (feedmail-message-action-send): Add debug call.
19095 Use feedmail-send-it-immediately-wrapper.
19096 (feedmail-queue-express-to-queue): Add debug call.
19097 Run feedmail-queue-express-hook.
19098 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
19099 (feedmail-message-action-help-blat):
19100 Rename from feedmail-queue-send-edit-prompt-help-first.
19101 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
19102 Check line-endings. Handle errors better.
19103 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
19104 Doc fix. Add debug call.
19105 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
19106 Use feedmail-queue-send-edit-prompt-inner.
19107 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
19108 (feedmail-queue-send-edit-prompt-inner): New function, extracted
19109 from feedmail-queue-send-edit-prompt.
19110 (feedmail-queue-send-edit-prompt-help)
19111 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
19112 (feedmail-tidy-up-slug): Add debug call.
19113 Respect feedmail-queue-slug-suspect-regexp.
19114 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
19115 (feedmail-dump-message-to-queue): Add debug call.
19116 Expand queue-directory.
19117 (feedmail-dump-message-to-queue): Change message slightly.
19118 Use feedmail-say-chatter.
19119 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
19120 (feedmail-send-it-immediately-wrapper): New function.
19121 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
19122 Insert empty string rather than newline. Handle full-frame case.
19123 Use catch/throw. Use feedmail-say-chatter.
19124 (feedmail-fiddle-from): Try mail-host-address.
19125 (feedmail-default-message-id-generator): Doc fix.
19126 Bind system-time-locale. Handle missing end.
19127 (feedmail-fiddle-x-mailer): Add debug call.
19128 Handle feedmail-x-mailer-line being nil.
19129 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
19130 Add debug call. Use buffer-substring-no-properties.
19131 (feedmail-say-debug, feedmail-say-chatter): New functions.
19132 (feedmail-find-eoh): Give an explicit error.
19133
42c7e61e
UJ
191342011-05-13 Ulf Jasper <ulf.jasper@web.de>
19135
c2571358 19136 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 19137 family from helvetica to sans.
c2571358 19138 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
19139 etc/images/newsticker.
19140
c2571358 19141 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
19142 family from helvetica to sans.
19143
19144 * net/newst-plainview.el (newsticker-new-item-face)
19145 (newsticker-old-item-face, newsticker-immortal-item-face)
19146 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 19147 (newsticker-statistics-face): Change default family from
42c7e61e 19148 helvetica to sans.
c2571358 19149 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
19150 etc/images/newsticker.
19151
5d3385a0
JB
19152 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
19153 (newsticker--process-auto-mark-filter-match): Tell user about
42c7e61e
UJ
19154 auto-marking.
19155
8497a297
DV
191562011-05-13 Didier Verna <didier@xemacs.org>
19157
19158 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
19159 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
19160 TODO entries.
8497a297
DV
19161 (lisp-lambda-list-keyword-parameter-indentation)
19162 (lisp-lambda-list-keyword-parameter-alignment)
19163 (lisp-lambda-list-keyword-alignment): New customizable user options.
19164 (lisp-indent-defun-method): Improve docstring.
19165 (extended-loop-p): Fix comment.
19166 (lisp-indent-lambda-list-keywords-regexp): New variable.
19167 (lisp-indent-lambda-list): New function.
19168 (lisp-indent-259): Use it.
19169 (lisp-indent-defmethod): Support for more than one
19170 method qualifier and properly indent methods lambda-lists.
19171 (defgeneric): Provide a missing common-lisp-indent-function property.
19172
f278f87f
SM
191732011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
19174
19175 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
19176 bounds for the empty string (bug#8667).
19177
5233edd7
GM
191782011-05-13 Glenn Morris <rgm@gnu.org>
19179
5237a44f
GM
19180 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
19181
8340026c 19182 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 19183 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 19184
5233edd7 19185 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 19186 (appt-time-msg-list): Doc fix.
a5464014 19187 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 19188
92d10796
AS
191892011-05-12 Andreas Schwab <schwab@linux-m68k.org>
19190
19191 * progmodes/ld-script.el (ld-script-keywords)
19192 (ld-script-builtins): Update keywords list.
19193
914a0ae1
SM
191942011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19195
c89be45f
SM
19196 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
19197
914a0ae1
SM
19198 * shell.el (shell-completion-vars): New function.
19199 (shell-mode):
19200 * simple.el (read-shell-command): Use it.
19201 (blink-matching-open): No need for " [...]" in minibuffer-message.
19202
98dc3df3
GM
192032011-05-12 Glenn Morris <rgm@gnu.org>
19204
19205 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
19206 (appt-check): Simplify.
19207
d2fc7e3d 192082011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 19209
4d61f28d 19210 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
19211 literal "/dev/null".
19212
d2fc7e3d 192132011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
19214
19215 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
19216 Fix typo.
19217
d2fc7e3d 192182011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 19219
3f254caa
SM
19220 * progmodes/which-func.el (which-function):
19221 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
19222 which might not be defined (Bug#8260).
19223
d45885f7
GM
192242011-05-12 Glenn Morris <rgm@gnu.org>
19225
19226 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
19227 Let byte-compile-initial-macro-environment always take precedence.
19228
488086f4
SM
192292011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19230
19231 * net/rcirc.el: Add support for SSL/TLS connections.
19232 (rcirc-server-alist): New field `encryption'.
19233 (rcirc): Check `encryption' settings.
19234 (rcirc-connect): New arg `encryption'. Use open-network-stream.
19235 Merge make-local-variable into `set'.
19236 (rcirc--connection-open-p): New function.
19237 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
19238 the process is not a network process (e.g. running gnutls-cli).
19239 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
19240 Make rcirc-(en|de)code-coding-system local here.
19241 (rcirc-mode): Merge make-local-variable into `set'.
19242 (rcirc-parent-buffer): Make permanent buffer-local.
19243 (rcirc-multiline-minor-mode): Don't do it here.
19244 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
19245 there's no server buffer.
19246
7d3b9d44
GM
192472011-05-11 Glenn Morris <rgm@gnu.org>
19248
f64049c6
GM
19249 * newcomment.el (comment-kill): Prefix "unused" local.
19250
93c9df73
GM
19251 * term/w32console.el (get-screen-color): Declare.
19252
7d3b9d44
GM
19253 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
19254 Handle symbol elements of byte-compile-initial-macro-environment.
19255
9e2dd53f
LL
192562011-05-10 Leo Liu <sdl.web@gmail.com>
19257
488086f4
SM
19258 * bookmark.el (bookmark-bmenu-mode-map):
19259 Bind bookmark-bmenu-search to `/'.
8b340240 19260
9e2dd53f 19261 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
19262 (footnote-unicode-string, footnote-unicode-regexp): New variable.
19263 (Footnote-unicode): New function.
19264 (footnote-style-alist): Add unicode style to the list.
19265 (footnote-style): Doc fix.
9e2dd53f 19266
79b70037
GM
192672011-05-10 Jim Meyering <meyering@redhat.com>
19268
19269 Fix doubled-word typos.
19270 * international/quail.el (quail-insert-kbd-layout): and and -> and
19271 * kermit.el: and and -> and
19272 * net/ldap.el (ldap-search-internal): to to -> to
19273 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
19274 * progmodes/js.el (js-mode): and and -> and
19275 * textmodes/artist.el (artist-move-to-xy): at at -> at
19276 (artist-draw-region-trim-line-endings): if if -> if
19277 And Safetyc -> Safety.
19278 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
19279
b8f82dc1 192802011-05-10 Glenn Morris <rgm@gnu.org>
f1a71c6e 19281 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
19282
19283 * files.el (hack-one-local-variable-eval-safep):
19284 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
19285
4f99f44b
GM
192862011-05-10 Glenn Morris <rgm@gnu.org>
19287
19288 * calendar/diary-lib.el (diary-list-entries-hook)
19289 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
19290 (diary-nongregorian-marking-hook, diary-list-entries)
19291 (diary-include-other-diary-files, diary-mark-entries)
19292 (diary-mark-included-diary-files): Doc fixes.
19293
84f29e6b
JB
192942011-05-09 Juanma Barranquero <lekktu@gmail.com>
19295
19296 * misc.el: Require tabulated-list.el during compilation.
19297
9bedd73a
CY
192982011-05-09 Chong Yidong <cyd@stupidchicken.com>
19299
488086f4
SM
19300 * progmodes/compile.el (compilation-start):
19301 Run compilation-filter-hook for the async case too.
9bedd73a
CY
19302 (compilation-filter-hook): Doc fix.
19303
797c735c
DD
193042011-05-09 Deniz Dogan <deniz@dogan.se>
19305
19306 * wdired.el: Remove outdated installation comment. Fix usage
19307 comment.
19308
5f4b1dfe
JB
193092011-05-09 Juanma Barranquero <lekktu@gmail.com>
19310
19311 * misc.el: Implement new command `list-dynamic-libraries'.
19312 (list-dynamic-libraries--loaded-only-p): New variable.
19313 (list-dynamic-libraries--refresh): New function.
19314 (list-dynamic-libraries): New command.
19315
4c44026c
CY
193162011-05-09 Chong Yidong <cyd@stupidchicken.com>
19317
488086f4
SM
19318 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19319 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
19320 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
19321 higher priority to avoid clobbering by gnu.
19322
027f966d
CY
193232011-05-08 Chong Yidong <cyd@stupidchicken.com>
19324
19325 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
19326 if the face has existing theme settings (Bug#8454).
19327
085f5d7d
CY
193282011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
19329
488086f4
SM
19330 * progmodes/perl-mode.el (perl-imenu-generic-expression):
19331 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 19332
2a86a00c
RS
19333 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
19334 special file names `.' and `..' (Bug#8259).
19335
d9c54a06
CY
193362011-05-08 Chong Yidong <cyd@stupidchicken.com>
19337
488086f4
SM
19338 * progmodes/grep.el (grep-mode-font-lock-keywords):
19339 Remove buffer-changing entries.
d9c54a06
CY
19340 (grep-filter): New function.
19341 (grep-mode): Add it to compilation-filter-hook.
19342
19343 * progmodes/compile.el (compilation-filter-hook)
19344 (compilation-filter-start): New defvars.
19345 (compilation-filter): Call compilation-filter-hook prior to
19346 updating the process mark.
19347
c4662635
SM
193482011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
19349
19350 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
19351
b0512a1d
EZ
193522011-05-07 Eli Zaretskii <eliz@gnu.org>
19353
605c9376
EZ
19354 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
19355 mailclient-send-it even if window-system is nil. (Bug#8595)
19356
c4662635
SM
19357 * term/w32console.el (terminal-init-w32console):
19358 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
19359 background-mode. (Bug#8597)
19360
d1dc2cc2
SM
193612011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
19362
19363 Make bytecomp.el understand that defmethod defines funs (bug#8631).
19364 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
19365 New functions.
19366 (defgeneric, eieio--defmethod): Use them.
19367 (eieio-defgeneric): Remove.
19368 (defmethod): Call defgeneric in a way visible to the byte-compiler.
19369
915d1300
GM
193702011-05-07 Glenn Morris <rgm@gnu.org>
19371
a3961c3e
GM
19372 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
19373 Use let rather than let*.
19374 (timeclock-find-discrep): Remove unused local.
19375
314347b9
GM
19376 * calendar/diary-lib.el (diary-comment-start): Doc fix.
19377
915d1300
GM
19378 * calendar/appt.el (appt-time-msg-list): Doc fix.
19379
275b59b0
NF
193802011-05-06 Noah Friedman <friedman@splode.com>
19381
19382 * apropos.el (apropos-print-doc): Only use
19383 emacs-lisp-docstring-fill-column when it is bound to an integer,
19384 per that variable's documentation.
19385
6c19f744
SM
193862011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
19387
19388 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 19389 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 19390
60f884b2
GM
193912011-05-06 Glenn Morris <rgm@gnu.org>
19392
5006e634
GM
19393 * calendar/appt.el (appt-message-warning-time): Doc fix.
19394 (appt-warning-time-regexp): New option.
19395 (appt-make-list): Respect appt-message-warning-time.
19396
548d0a63
GM
19397 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
19398 New options.
19399 (diary-add-to-list): Strip comments from the displayed string.
19400 (diary-mode): Set comment-start and comment-end.
19401
60f884b2
GM
19402 * vc/diff-mode.el (smerge-refine-subst): Declare.
19403 (diff-refine-hunk): Don't require smerge-mode when compiling.
19404
989681bb
JB
194052011-05-06 Juanma Barranquero <lekktu@gmail.com>
19406
19407 * simple.el (list-processes): Return nil as the docstring says.
19408
a6bc05e1
MA
194092011-05-05 Michael Albinus <michael.albinus@gmx.de>
19410
19411 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
19412 to "".
19413 (ange-ftp-write-region, ange-ftp-insert-file-contents)
19414 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
19415 determining of binary transfer. (Bug#7383)
19416
23c22e9a
MA
194172011-05-05 Michael Albinus <michael.albinus@gmx.de>
19418
c4662635
SM
19419 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19420 Fix port computation bug. (Bug#8618)
23c22e9a 19421
0bff894f
GM
194222011-05-05 Glenn Morris <rgm@gnu.org>
19423
b8296902
GM
19424 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
19425
1f522ce8
GM
19426 * simple.el (shell-dynamic-complete-functions)
19427 (comint-dynamic-complete-functions): Declare.
19428
cf5bee67
GM
19429 * net/network-stream.el (gnutls-negotiate):
19430 * simple.el (tabulated-list-print): Fix declarations.
19431
19432 * progmodes/gud.el (syntax-symbol, syntax-point):
19433 Remove unnecessary and incorrect declarations.
19434
0bff894f 19435 * emacs-lisp/check-declare.el (check-declare-scan):
1f9f395d 19436 Handle byte-compile-initial-macro-environment in bytecomp.el.
0bff894f 19437
9869b3ae
SM
194382011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
19439
19440 Fix earlier half-done eieio-defmethod change (bug#8338).
19441 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
19442 Streamline and change calling convention.
19443 (defmethod): Adjust accordingly and simplify.
19444 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
19445 new eieio--defmethod.
19446 (slot-boundp): Minor CSE simplification.
19447
9c1d5ac5
MZ
194482011-05-05 Milan Zamazal <pdm@zamazal.org>
19449
19450 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
19451 (glasses-make-readable): Use glasses-separate-capital-groups.
19452
455c834e
JB
194532011-05-05 Juanma Barranquero <lekktu@gmail.com>
19454
19455 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
19456 (warning-series): Doc fix.
19457 (display-warning): Don't try to create the buffer if we just found it.
19458
9ed7c8cb
CY
194592011-05-04 Chong Yidong <cyd@stupidchicken.com>
19460
19461 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
19462 (autoload-find-generated-file): New function.
19463 (generate-file-autoloads): Bind generated-autoload-file to
19464 buffer-file-name.
9869b3ae
SM
19465 (update-file-autoloads, update-directory-autoloads):
19466 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
19467 output file (Bug#7989).
19468 (batch-update-autoloads): Doc fix.
19469
0898ca10
JB
194702011-05-04 Juanma Barranquero <lekktu@gmail.com>
19471
19472 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
19473
31dfb76c
GM
194742011-05-04 Glenn Morris <rgm@gnu.org>
19475
f330b642
GM
19476 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
19477 function, so it follows changes in calendar-date-style.
19478 (diary-fancy-date-matcher): New function.
19479 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
19480 (diary-fancy-font-lock-fontify-region-function):
19481 Use diary-fancy-date-pattern as a function.
19482
31dfb76c
GM
19483 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
19484 non-numbers for `year' etc pseudo-variables. (Bug#8583)
19485
48e79d6a
TZ
194862011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
19487
19488 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
19489 instead of positional arguments. Allow :keylist and :crlfiles
19490 arguments.
19491 (open-gnutls-stream): Call it.
19492
19493 * net/network-stream.el (network-stream-open-starttls): Adjust to
19494 call `gnutls-negotiate' with :process and :hostname arguments.
19495
dd5a5ee0
SM
194962011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
19497
ef80fc09
SM
19498 * minibuffer.el (completion--message): New function.
19499 (completion--do-completion, minibuffer-complete)
19500 (minibuffer-force-complete, minibuffer-complete-word): Use it.
19501 (completion--do-completion): Don't ignore completion-auto-help when in
19502 icomplete-mode.
19503
dd5a5ee0
SM
19504 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
19505 internal encoding (e.g. tibetan zero is not whitespace).
19506 (global-whitespace-mode): Prefer save-current-buffer.
19507 (whitespace-trailing-regexp): Remove useless save-match-data.
19508 (whitespace-empty-at-bob-regexp): Minor simplification.
19509
b7d22a83
CY
195102011-05-03 Chong Yidong <cyd@stupidchicken.com>
19511
19512 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
19513
5192af46
AM
195142011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
19515
19516 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 19517 Use `concat' to create string for insertion.
5192af46 19518
5767d190
SM
195192011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19520
19521 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
19522 Avoid open-line which runs post-self-insert-hook.
19523 (bibtex-fill-entry): Remove unused `end' var.
19524
bf242939
AM
195252011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
19526
5767d190
SM
19527 * textmodes/ispell.el (ispell-add-per-file-word-list):
19528 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 19529
25666126
LL
195302011-05-03 Leo Liu <sdl.web@gmail.com>
19531
19532 * isearch.el (isearch-yank-pop): New command.
5767d190 19533 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
19534 (isearch-forward): Mention it.
19535
52d3c2d0
SM
195362011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19537
1bcace58
SM
19538 * simple.el (minibuffer-complete-shell-command): Remove.
19539 (minibuffer-local-shell-command-map): Use completion-at-point.
19540 (read-shell-command): Setup completion vars here instead.
19541 (read-expression-map): Bind TAB to symbol completion.
19542
52d3c2d0
SM
19543 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
19544 error directly rather via storing it into `results'.
19545
35813471
LL
195462011-05-02 Leo Liu <sdl.web@gmail.com>
19547
19548 * vc/diff.el: Fix description.
19549
e793a940
LMI
195502011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19551
19552 * server.el (server-eval-at): New function.
19553
8de66e05
LMI
195542011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19555
19556 * net/network-stream.el (open-network-stream): Take a :nowait
19557 parameter and pass it on to `make-network-process'.
19558 (network-stream-open-plain): Ditto.
19559
dcb79f20
AS
195602011-04-30 Andreas Schwab <schwab@linux-m68k.org>
19561
19562 * faces.el (face-spec-set-match-display): Don't match toolkit
19563 options on terminal frames.
19564
14a7fbd8
SM
195652011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
19566
7eabc1be
SM
19567 * progmodes/pascal.el: Use lexical binding.
19568 (pascal-mode-map): Remove author preferences.
19569
14a7fbd8
SM
19570 * pcomplete.el (pcomplete-std-complete): Don't abuse
19571 completion-at-point.
19572
50f84510
JB
195732011-04-28 Juanma Barranquero <lekktu@gmail.com>
19574
6e087a44
JB
19575 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
19576 removing code that has been dead since 1991 or so.
19577
50f84510
JB
19578 * startup.el (command-line): When warning about "_emacs", use a
19579 delayed warning to allow the user to filter it out.
19580
0ba690bd
DD
195812011-04-28 Deniz Dogan <deniz@dogan.se>
19582
19583 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
19584 user has not joined.
19585
08abfaad
SM
195862011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19587
19588 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
19589 aren't any completions at point.
19590
638f053a
JB
195912011-04-28 Juanma Barranquero <lekktu@gmail.com>
19592
19593 * subr.el (display-delayed-warnings): New function.
19594 (delayed-warnings-hook): New variable.
19595
8fff8daa
SM
195962011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19597
08abfaad
SM
19598 * minibuffer.el (completion-at-point, completion-help-at-point):
19599 Don't presume that a given completion-at-point-function will always
19600 use the same calling convention.
19601
8fff8daa
SM
19602 * pcomplete.el (pcomplete-completions-at-point):
19603 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
19604 pcomplete-seen is non-nil.
19605 (pcomplete-comint-setup): Also recognize the new comint/shell
19606 completion functions.
19607 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
19608 pcomplete-seen is non-nil.
19609
841a1577 196102011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 19611
841a1577 19612 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 19613 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 19614 the first character in the entry. This allows for code to add its
211ec907
UJ
19615 own uid to the entry.
19616 (icalendar--convert-float-to-ical): Add export of
19617 `diary-float'-entries save for those with the optional DAY
19618 argument.
19619
2a782793
DC
196202011-04-27 Daniel Colascione <dan.colascione@gmail.com>
19621
19622 * subr.el (shell-quote-argument): Use alternate escaping strategy
19623 when we spot a variable reference in a string.
19624
0438ce91
DC
196252011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19626
19627 * cus-start.el (all): Define customization for debug-on-event.
19628
841a1577 196292011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
19630
19631 * subr.el (shell-quote-argument): Escape correctly under Windows.
19632
d090ed6c
SM
196332011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19634
19635 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
19636
bfd31217
MA
196372011-04-25 Michael Albinus <michael.albinus@gmx.de>
19638
d090ed6c
SM
19639 * net/tramp.el (tramp-process-actions): Add POS argument.
19640 Delete region between POS and (pos).
bfd31217 19641
d090ed6c
SM
19642 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19643 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
19644 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
19645
19646 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
19647 position in `tramp-process-actions' call.
19648
19649 * net/trampver.el: Update release number.
19650
e92f3bd3
SM
196512011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19652
850256b5
SM
19653 * custom.el (defcustom): Obey lexical-binding.
19654
e92f3bd3
SM
19655 Fix octave-inf completion problems reported by Alexander Klimov.
19656 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
19657 Inherit from octave-mode-syntax-table.
19658 (inferior-octave-mode): Set info-lookup-mode.
19659 (inferior-octave-completion-at-point): New function.
19660 (inferior-octave-complete): Use it and completion-in-region.
19661 (inferior-octave-dynamic-complete-functions): Use it as well, and use
19662 comint-filename-completion.
19663 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
19664 symbol elements which shouldn't be word elements.
19665 (octave-font-lock-keywords, octave-beginning-of-defun)
19666 (octave-function-header-regexp): Adjust regexps accordingly.
19667 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
19668
cd22b309
JB
196692011-04-25 Juanma Barranquero <lekktu@gmail.com>
19670
19671 * net/gnutls.el (gnutls-errorp): Declare before first use.
19672
8b492194
TZ
196732011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
19674
19675 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
19676 verify-error, and verify-hostname-error parameters. Check whether
cd22b309 19677 default trustfile exists before going to use it. Add missing
5a5fa834 19678 argument to gnutls-message-maybe call. Return value.
8b492194
TZ
19679 Reported by Claudio Bley <claudio.bley@gmail.com>.
19680 (open-gnutls-stream): Add usage example.
19681
19682 * net/network-stream.el (network-stream-open-starttls): Give host
19683 parameter to `gnutls-negotiate'.
19684 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 19685 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 19686
841a1577 196872011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 19688
cd22b309
JB
19689 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
19690 Use correct match group (bug#8438).
05842630 19691
3ba7869c
CY
196922011-04-24 Chong Yidong <cyd@stupidchicken.com>
19693
512e3ae1
CY
19694 * emacs-lisp/package.el (package-built-in-p): Fix typo.
19695 (package-menu--generate): New arg specifying packages to show.
19696 (package-menu-refresh, package-menu-execute, list-packages):
19697 Callers changed.
19698 (package-show-package-list): New function, replacing deleted
19699 package--list-packages (renamed because it is non-internal).
19700
19701 * finder.el (finder-list-matches): Use package-show-package-list
19702 instead of deleted package--list-packages.
19703
e92f3bd3
SM
19704 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
19705 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
19706 (vc-annotate-mode-map): Bind it to RET.
19707
7031be6d
UR
197082011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
19709
19710 * progmodes/etags.el (next-file): Don't use set-buffer to change
19711 buffers (Bug#8478).
19712
4ef177aa
CY
197132011-04-24 Chong Yidong <cyd@stupidchicken.com>
19714
c8d173eb
CY
19715 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
19716
4ef177aa
CY
19717 * apropos.el (apropos-label-face): Avoid variable-pitch face.
19718 (apropos-accumulator): Doc fix.
19719 (apropos-function, apropos-macro, apropos-command)
19720 (apropos-variable, apropos-face, apropos-group, apropos-widget)
19721 (apropos-plist): Add face property.
19722 (apropos-symbols-internal): Fix indentation.
19723 (apropos-print): Simplify help, and recognize apropos-multi-type.
19724 (apropos-print-doc): Use button-type-get to extract the button's
19725 face property. Fill docstring (Bug#8352).
19726
4ffd0d6b 197272011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
19728
19729 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
19730
c6c32125 19731 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 19732 (mpuz-mode-map): Use mapc.
c6c32125
JB
19733 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
19734 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
19735 Fix typos in docstrings.
19736
58d468b4
JB
19737 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
19738 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
19739
6470c3c6
JB
19740 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
19741
4ffd0d6b 197422011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
19743
19744 * minibuffer.el (completion--do-completion): Avoid the "Next char
19745 not unique" prompt if icomplete-mode is enabled (Bug#5849).
19746
3ad8bad0
CY
19747 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
19748 mouse-2 into unread-command-events, it is interpreted correctly.
19749
71d73c9c 19750 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 19751 (image-toggle-display): Doc fix.
71d73c9c 19752
841a1577 197532011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 19754
4ffd0d6b
GM
19755 * textmodes/page.el (what-page): Use line-number-at-pos to
19756 calculate line number (Bug#6825).
6e1dbaa9 19757
c2fb1b60
JB
197582011-04-22 Juanma Barranquero <lekktu@gmail.com>
19759
19760 * eshell/esh-mode.el (find-tag-interactive): Declare function.
19761 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
19762 Pass argument NO-DEFAULT to `find-tag-interactive'.
19763
e02f48d7
JB
197642011-04-22 Juanma Barranquero <lekktu@gmail.com>
19765
19766 Lexical-binding cleanup.
19767
19768 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
19769 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
19770 * progmodes/ada-prj.el (ada-prj-initialize-values)
19771 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
19772 (ada-prj-show-value):
19773 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
19774 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
19775 (antlr-invalidate-context-cache, antlr-options-menu-filter)
19776 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
19777 * progmodes/bug-reference.el (bug-reference-push-button):
19778 * progmodes/fortran.el (fortran-line-length):
19779 * progmodes/glasses.el (glasses-change):
19780 * progmodes/octave-mod.el (octave-fill-paragraph):
19781 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
19782 (python-pdbtrack-grub-for-buffer, python-sentinel):
19783 * progmodes/sql.el (sql-save-connection):
19784 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
19785 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
19786 Mark unused parameters.
19787
19788 * progmodes/compile.el (compilation--flush-directory-cache)
19789 (compilation--flush-parse, compile-internal): Mark unused parameters.
19790 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
19791 (compilation-next-error-function): Remove unused variable `timestamp'.
19792
19793 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
19794 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
19795
19796 * progmodes/dcl-mode.el (dcl-end-of-command):
19797 Remove unused variable `start'.
19798 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
19799 (dcl-option-value-basic, dcl-option-value-offset)
19800 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
19801 Mark unused parameters.
19802 (dcl-save-local-variable): Remove unused variable `val'.
19803 (mode): Declare.
19804
19805 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
19806 Mark unused parameters.
19807 (delphi-ignore-changes): Move before first use.
19808 (delphi-charset-token-at): Remove unused variable `start'.
19809 (delphi-else-start): Remove unused variable `if-count'.
19810 (delphi-comment-block-start, delphi-comment-block-end):
19811 Remove unused variable `kind'.
19812 (delphi-indent-line): Remove unused variable `new-point'.
19813
19814 * progmodes/ebrowse.el (ebrowse-files-list)
19815 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
19816 Mark unused parameters. Don't quote `lambda'.
19817 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
19818 Don't quote `lambda'.
19819 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
19820 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
19821 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
19822 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
19823 Use `ignore-errors'.
19824 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
19825 (ebrowse-view/find-file-and-search-pattern)
19826 (ebrowse-view/find-member-declaration/definition):
19827 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
19828 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
19829 Rename parameter PREFIX-ARG to PREFIX.
19830 (ebrowse-tags-read-name): Remove unused variables `start' and
19831 `member-info'.
19832 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
19833 to `tags-file'.
19834
19835 * progmodes/etags.el (local-find-tag-hook): Declare.
19836 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
19837 Mark unused parameters.
19838
19839 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
19840 (executable-interpret): Mark unused parameter.
19841
19842 * progmodes/flymake.el (flymake-process-sentinel)
19843 (flymake-after-change-function)
19844 (flymake-create-temp-with-folder-structure)
19845 (flymake-get-include-dirs-dot): Mark unused parameters.
19846 (flymake-safe-delete-directory): Remove unused variable `err'.
19847
19848 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
19849 (speedbar-timer-fn, speedbar-line-text)
19850 (speedbar-change-expand-button-char, speedbar-delete-subblock)
19851 (speedbar-center-buffer-smartly): Declare functions.
19852 (gdb-find-watch-expression): Remove unused variable `array'.
19853 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
19854 (gdb-starting): Mark unused parameters.
19855 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
19856 (gdb-table-string): Remove unused variable `res'.
19857 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
19858 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
19859 (gdb-display-buffer): Remove unused variable `cur-size'.
19860
19861 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
19862 allow lexical-binding compilation.
19863 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
19864 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
19865 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
19866 Mark unused parameters.
19867 (gud-gdb-marker-filter): Remove unused variable `match'.
19868 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
19869 lambda expressions and funcall them, instead of using `fset'.
19870
19871 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
19872 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
19873
19874 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
19875 variable `header-beg'; use `let'.
19876
19877 * progmodes/icon.el (indent-icon-exp): Remove unused variables
19878 `restart', `last-sexp' and `at-do'.
19879
19880 * progmodes/js.el (js--debug): Mark unused parameter.
19881 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
19882 (js--splice-into-items): Remove unused variable `item'.
19883 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
19884
19885 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
19886 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
19887 (makefile-complete): Remove unused variable `try'.
19888 (makefile-fill-paragraph, makefile-match-function-end):
19889 Mark unused parameters.
19890
19891 * progmodes/octave-inf.el (inferior-octave-complete):
19892 Remove unused variable `proc'.
19893 (inferior-octave-output-digest): Mark unused parameter.
19894
19895 * progmodes/perl-mode.el (perl-calculate-indent):
19896 Remove unused variable `err'.
19897
19898 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
19899 (prolog-indent-line): Mark unused parameters.
19900 (prolog-indent-line): Remove unused variable `beg'.
19901
19902 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
19903 (reporter-dont-compact-list): Declare.
19904
19905 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
19906 Remove unused variable `char'.
19907 (sh-debug): Mark unused parameter.
19908 (sh-get-indent-info): Remove unused variable `start'.
19909 (sh-calculate-indent): Remove unused variable `var'.
19910
19911 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
19912 (simula-electric-keyword): Remove unused variable `null'.
19913 (simula-search-backward, simula-search-forward): Remove unused
19914 variables `begin' and `end'.
19915
19916 * progmodes/vera-mode.el (vera-guess-basic-syntax):
19917 Remove unused variable `pos'.
19918 (vera-electric-tab, vera-comment-uncomment-region):
19919 Mark unused parameters.
19920 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
19921
7ede3b65
CY
199222011-04-22 Chong Yidong <cyd@stupidchicken.com>
19923
19924 * emacs-lisp/package.el (package--builtins, package-alist)
19925 (package-load-descriptor, package-built-in-p, package-activate)
19926 (define-package, package-installed-p)
19927 (package-compute-transaction, package-buffer-info)
19928 (package--push): Doc fix. Distinguish more clearly between
19929 version strings and version lists.
19930
121656e9
JB
199312011-04-21 Juanma Barranquero <lekktu@gmail.com>
19932
19933 Lexical-binding cleanup.
19934
19935 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
19936 (5x5-make-mutate-best):
19937 * play/fortune.el (fortune-in-buffer):
19938 * play/gomoku.el (gomoku-init-display):
19939 * play/solitaire.el (solitaire, solitaire-do-check):
19940 * play/tetris.el (tetris-default-update-speed-function):
19941 Mark unused parameters.
19942
19943 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
19944 (bubbles--shift): Remove unused variable `char-org'.
19945 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
19946 (bubbles--show-images): Remove unused variable `char'.
19947
19948 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
19949 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
19950 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
19951 (decipher-analyze-buffer): Use ?\s.
19952 (decipher-make-checkpoint): Remove unused variable `mapping'.
19953
19954 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
19955
19956 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
19957 Remove unused variable `result'; use `let'.
19958
19959 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
19960 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
19961 (gametree-children-shown-p, gametree-compute-reduced-score):
19962 Use `ignore-errors'.
19963
19964 * play/handwrite.el (ps-lpr-switches): Declare.
19965 (handwrite): Remove unused variables `pmin' and `lastp'.
19966
19967 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
19968
19969 * play/landmark.el (landmark-init-display)
19970 (landmark-update-naught-weights): Mark unused parameters.
19971 (landmark-y): Remove unused variable `noise'. Simplify.
19972 (landmark-human-plays): Remove unused variable `score'.
19973
19974 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
19975 (mpuz-try-proposal): Remove unused variable `game'.
19976
19977 * play/zone.el (life-patterns): Declare.
19978
80f499c7
JB
199792011-04-20 Juanma Barranquero <lekktu@gmail.com>
19980
19981 * vc/vc.el (ediff-vc-internal): Declare function.
19982
024ff170
SM
199832011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
19984
c0a193ea
SM
19985 * shell.el: Use lexical-binding and std completion UI.
19986 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
19987 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
19988 comint-preoutput-filter-functions rather than on
19989 comint-output-filter-functions.
19990 (shell-command-completion, shell--command-completion-data)
19991 (shell-filename-completion, shell-environment-variable-completion)
19992 (shell-c-a-p-replace-by-expanded-directory): New functions.
19993 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
19994 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
19995 (shell-dynamic-complete-environment-variable): Use them.
19996 (shell-dynamic-complete-as-environment-variable)
19997 (shell-dynamic-complete-as-command): Remove.
19998 (shell-match-partial-variable): Match past point.
19999 * comint.el: Clean up use of completion-at-point-functions.
20000 (comint-completion-at-point): New function.
20001 (comint-mode): Use it completion-at-point-functions.
20002 (comint-dynamic-complete): Make it obsolete.
20003 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
20004 (comint-c-a-p-replace-by-expanded-history): New function.
20005 (comint-dynamic-complete-functions)
20006 (comint-replace-by-expanded-history): Use it.
20007 * minibuffer.el (completion-table-with-terminator): Allow dynamic
20008 termination strings. Try harder to avoid second try-completion.
20009 (completion-in-region-mode-map): Disable bindings that don't work yet.
20010
2dbaa080
SM
20011 * comint.el: Use lexical-binding. Require CL.
20012 (comint-dynamic-complete-functions): Use comint-filename-completion.
20013 (comint-completion-addsuffix): Tweak custom type.
20014 (comint-filename-completion, comint--common-suffix)
20015 (comint--common-quoted-suffix, comint--table-subvert)
20016 (comint--complete-file-name-data): New functions.
20017 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
20018 (comint-dynamic-list-filename-completions): Use them.
20019 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 20020
2dbaa080
SM
20021 * minibuffer.el (completion-in-region-mode):
20022 Keep completion-in-region-mode--predicate global.
20023 (completion-in-region--postch):
20024 Assume completion-in-region-mode--predicate is not null.
20025
c79a6f38
SM
20026 * progmodes/flymake.el (flymake-start-syntax-check-process):
20027 Obey `dir'. Simplify.
20028
024ff170
SM
20029 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
20030 we're in VC after all.
20031
1c6c854e
CS
200322011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
20033
20034 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 20035 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
20036 (vc-version-diff): Use vc-diff-build-argument-list-internal.
20037
bed7f140
SM
200382011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
20039
332e62ab
SM
20040 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
20041 add sanity check.
20042
bed7f140
SM
20043 * obsolete/erc-hecomplete.el: Make obsolete.
20044 * obsolete/: Standardize obsolescence info in the header.
20045
f195c582
GM
200462011-04-20 Glenn Morris <rgm@gnu.org>
20047
20048 * calendar/solar.el (solar-horizontal-coordinates):
20049 Use the longitude argument rather than `calendar-longitude'.
20050 (solar-date-next-longitude): Remove unused locals.
20051
cb79b8c0
VJL
200522011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20053
20054 * whitespace.el: New version 13.2.1.
20055
200562011-04-20 felix <EmacsWiki> (tiny change)
20057
d8e4b68b 20058 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
20059 switching between major modes on a file.
20060
602ea69d
SM
200612011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
20062
20063 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
20064 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
20065 multi-line comments as well.
20066
06b60517
JB
200672011-04-19 Juanma Barranquero <lekktu@gmail.com>
20068
20069 Lexical-binding cleanup.
20070
20071 * arc-mode.el (archive-mode-revert):
20072 * cmuscheme.el (scheme-interactively-start-process):
20073 * custom.el (custom-initialize-delay):
20074 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
20075 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
20076 * emacs-lock.el (emacs-lock-clear-sentinel):
20077 * ezimage.el (defezimage):
20078 * follow.el (follow-avoid-tail-recenter):
20079 * fringe.el (set-fringe-mode-1):
20080 * generic-x.el (bat-generic-mode-compile):
20081 * help-mode.el (help-info-variable, help-do-xref)
20082 (help-mode-revert-buffer):
20083 * help.el (view-emacs-todo):
20084 * iswitchb.el (iswitchb-completion-help):
20085 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
20086 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
20087 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
20088 * locate.el (locate-update):
20089 * longlines.el (longlines-encode-region)
20090 (longlines-after-change-function):
20091 * outline.el (outline-isearch-open-invisible):
20092 * ps-def.el (declare-function, charset-dimension, char-width)
20093 (encode-char):
20094 * ps-mule.el (ps-mule-plot-string):
20095 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
20096 (recentf-edit-list-select, recentf-edit-list-validate)
20097 (recentf-open-files-action):
20098 * rect.el (delete-whitespace-rectangle-line)
20099 (rectangle-number-line-callback):
20100 * register.el (window-configuration-to-register)
20101 (frame-configuration-to-register):
20102 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
20103 * select.el (xselect-convert-to-string, xselect-convert-to-length)
20104 (xselect-convert-to-targets, xselect-convert-to-delete)
20105 (xselect-convert-to-filename, xselect-convert-to-charpos)
20106 (xselect-convert-to-lineno, xselect-convert-to-colno)
20107 (xselect-convert-to-os, xselect-convert-to-host)
20108 (xselect-convert-to-user, xselect-convert-to-class)
20109 (xselect-convert-to-name, xselect-convert-to-integer)
20110 (xselect-convert-to-atom, xselect-convert-to-identity):
20111 * subr.el (declare, ignore, process-kill-without-query)
20112 (text-clone-maintain):
20113 * terminal.el (te-get-char, te-tic-sentinel):
20114 * tool-bar.el (tool-bar-make-keymap):
20115 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
20116 * type-break.el (type-break-mode, type-break-noninteractive-query):
20117 * view.el (View-back-to-mark):
20118 * wid-browse.el (widget-browse-action, widget-browse-widget)
20119 (widget-browse-widgets, widget-browse-sexp):
20120 * widget.el (define-widget-keywords):
20121 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
20122 Mark unused parameters.
20123
20124 * align.el (align-adjust-col-for-rule): Mark unused parameter.
20125 (align-areas): Remove unused variable `look'.
20126 (align-region): Remove unused variables `real-end' and `pos-list'.
20127
20128 * apropos.el (apropos-score-doc): Remove unused variable `i'.
20129
20130 * bindings.el (mode-line-modified, mode-line-remote):
20131 Mark unused parameters.
20132 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
20133
20134 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
20135 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
20136
20137 * comint.el (comint-history-isearch-pop-state)
20138 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
20139 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
20140 (comint-substitute-in-file-name): Doc fix.
20141
20142 * completion.el (cmpl-statistics-block): Mark unused parameter.
20143 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
20144 (save-completions-to-file, load-completions-from-file):
20145 Remove unused local variable `e'.
20146
20147 * composite.el (compose-chars): Remove unused variable `len'.
20148 (lgstring-insert-glyph): Remove unused variable `g'.
20149 (compose-glyph-string): Remove unused variables `ascent',
20150 `descent', `lbearing' and `rbearing'.
20151 (compose-glyph-string-relative): Remove unused variables
20152 `lbearing', `rbearing' and `wadjust'.
20153 (compose-gstring-for-graphic): Remove unused variables `header',
20154 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
20155 (compose-gstring-for-terminal): Remove unused variables `header'
20156 and `nchars'. Use `let', not `let*'.
20157
20158 * cus-edit.el (Custom-set, Custom-save, custom-reset)
20159 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
20160 (Custom-buffer-done, custom-buffer-create-internal)
20161 (custom-browse-visibility-action, custom-browse-group-tag-action)
20162 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
20163 (widget-magic-mouse-down-action, custom-toggle-parent)
20164 (custom-add-parent-links, custom-toggle-hide-variable)
20165 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
20166 (custom-toggle-hide-face, face, hook, custom-group-link-action)
20167 (custom-face-menu-create, custom-variable-menu-create, get)
20168 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
20169 (custom-reset-standard-save-and-update): Remove unused variable `value'.
20170 (customize-apropos): Remove unused variable `tests'.
20171 (custom-group-value-create): Remove unused variable `hidden-p'.
20172 (sort-fold-case): Declare.
20173
20174 * cus-theme.el (custom-reset-standard-faces-list)
20175 (custom-reset-standard-variables-list): Declare.
20176 (customize-create-theme, custom-theme-revert, custom-theme-write)
20177 (custom-theme-choose-mode, customize-themes, custom-theme-save):
20178 Mark unused parameters.
20179
20180 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
20181
20182 * delim-col.el (delimit-columns-max): Move defvar before first use.
20183
20184 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 20185 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
20186
20187 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
20188 (auto-insert): Declare.
20189 (desktop-restore-file-buffer): Rename desktop-* parameters;
20190 mark unused ones.
20191 (desktop-create-buffer): Rename desktop-* parameters and bind them.
20192 (desktop-buffer): Rename desktop-* parameters.
20193
20194 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
20195 (dframe-reposition-frame-xemacs, dframe-help-echo)
20196 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
20197 Mark unused parameters.
20198
20199 * dired-aux.el (backup-extract-version-start, overwrite-query)
20200 (overwrite-backup-query, rename-regexp-query)
20201 (rename-non-directory-query): Declare.
20202 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
20203 (dired-add-entry): Remove unused variable `orig-file-name'.
20204 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
20205 Use parameter PRESERVE-TIME instead of accessing dynamic variable
20206 `dired-copy-preserve-time' directly.
20207 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
20208 (dired-insert-subdir-newpos): Rename unused variable `pos'.
20209
20210 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
20211 (dired-virtual-revert, dired-make-relative-symlink):
20212 Mark unused parameters.
20213 (manual-program): Declare.
20214 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
20215 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
20216 wrapped in `with-no-warnings' to avoid replacing one warning by another.
20217
20218 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
20219
20220 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
20221
20222 * echistory.el (electric-history-in-progress, Helper-return-blurb):
20223 Declare.
20224
20225 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
20226
20227 * electric.el (Electric-command-loop): Rename parameter
20228 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
20229
20230 * expand.el (expand-in-literal): Remove unused variable `here'.
20231
20232 * facemenu.el (facemenu-add-new-color):
20233 Remove unused variable `docstring'.
20234
20235 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
20236 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
20237 (face-attr-construct): Mark unused parameter. Doc fix.
20238 (read-color): Remove unused variable `hex-string'.
20239
20240 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
20241 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
20242 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
20243 (display-buffer-other-frame): Remove unused variable `old-window'.
20244 (kill-buffer-hook): Declare.
20245 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
20246 Mark unused parameters.
20247 (after-find-file): Pass 1 to `auto-save-mode', not t.
20248
20249 * files-x.el (auto-insert): Declare.
20250 (modify-file-local-variable-prop-line): Remove unused variable `val'.
20251
20252 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 20253 variable `buf'. Mark unused parameter.
06b60517
JB
20254 (find-lisp-insert-directory): Mark unused parameter.
20255
20256 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
20257 (format-encode-region): Remove unused variables `cur-buf' and `result'.
20258 (format-common-tail): Remove, unused.
20259 (format-deannotate-region): Remove unused variable `loc'.
20260 (format-annotate-region): Remove unused variable `p'.
20261 (format-annotate-single-property-change): Remove unused variables
20262 `default' and `tail'.
20263
20264 * forms.el (read-file-filter): Declare.
20265 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
20266
20267 * frame.el (frame-creation-function-alist): Mark unused parameter.
20268 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
20269
20270 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
20271 Remove unused parameters.
20272 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
20273 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
20274
20275 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
20276 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
20277 (hfy-prepare-tag-map): Mark unused parameters.
20278 (htmlfontify-buffer): Use `called-interactively-p'.
20279
20280 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
20281 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
20282 (ibuffer-do-occur): Mark unused parameters.
20283 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
20284 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
20285
20286 * ibuffer.el: Don't quote `lambda'.
20287 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
20288 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
20289 Mark unused parameters.
20290
20291 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
20292 (ido-completing-read): Mark unused parameters.
20293 (ido-copy-current-word): Mark unused parameters;
20294 remove unused variable `name'.
20295 (ido-sort-merged-list): Remove unused parameter `dirs'.
20296
20297 * ielm.el (ielm-input-sender): Mark unused parameter.
20298 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
20299 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
20300 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
20301 `ielm-string' as a dynamic variable accessible from the IELM prompt.
20302 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
20303
20304 * image-dired.el (image-dired-display-thumbs): Remove unused
20305 variables `curr-file' and `count'.
20306 (image-dired-remove-tag): Remove unused variable `start'.
20307 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
20308 variable `curr-file'
20309 (image-dired-rotate-original): Remove unused variable `temp-file'.
20310 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
20311 Remove unused variable `file'.
20312 (image-dired-gallery-generate): Remove unused variable `curr'.
20313 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
20314
20315 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
20316
20317 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
20318
20319 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
20320
20321 * isearch.el (minibuffer-history-symbol): Declare.
20322 (isearch-edit-string): Remove unused variable `err'.
20323 (isearch-message-prefix, isearch-message-suffix):
20324 Mark unused parameters.
20325
20326 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
20327
20328 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
20329
20330 * makesum.el (double-column): Remove unused variable `cnt'.
20331
20332 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
20333 (ido-ignore-item-temp-list): Declare.
20334
20335 * mouse-drag.el (mouse-drag-throw): Remove unused variables
20336 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
20337 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
20338 (mouse-drag-drag): Remove unused variables `mouse-delta' and
20339 `mouse-col-delta'.
20340
20341 * mouse-sel.el (mouse-extend-internal):
20342 Remove unused variable `orig-window-frame'.
20343
20344 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
20345 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
20346 Move declarations before first use.
20347 (pcomplete-opt): Mark unused parameters; doc fix.
20348
20349 * proced.el (proced-revert): Mark unused parameter.
20350 (proced-send-signal): Remove unused variable `err'.
20351
20352 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
20353 Rename parameter PREFIX-ARG to ARG.
20354 (ps-basic-plot-string, ps-basic-plot-whitespace):
20355 Mark unused parameters.
20356
20357 * replace.el (replace-count): Define.
20358 (occur-revert-function): Mark unused parameters.
20359 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
20360 (isearch-case-fold-search, isearch-string): Declare.
20361 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
20362 bind `case-fold-search'. Remove unused variables `beg' and `end',
20363 and simplify.
20364 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
20365 COUNT and bind `replace-count'.
20366 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
20367 to COUNT.
20368
20369 * savehist.el (print-readably, print-string-length): Declare.
20370
20371 * shadowfile.el (shadow-expand-cluster-in-file-name):
20372 Remove unused variable `cluster'.
20373 (shadow-copy-file): Remove unused variable `i'.
20374 (shadow-noquery, shadow-clusters, shadow-site-cluster)
20375 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
20376 (shadow-define-literal-group, shadow-define-regexp-group)
20377 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
20378
20379 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
20380 (shell): Use `called-interactively-p'.
20381 (shell-directory-tracker): Remove unused variable `chdir-failure'.
20382
20383 * simple.el (compilation-context-lines, comint-file-name-quote-list)
20384 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
20385 (delete-backward-char): Remove unused variable `ocol'.
20386 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
20387 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
20388 (event-apply-hyper-modifier, event-apply-shift-modifier)
20389 (event-apply-control-modifier, event-apply-meta-modifier):
20390 Mark unused parameters.
20391 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
20392 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
20393
20394 * speedbar.el (speedbar-ignored-directory-expressions)
20395 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
20396 (speedbar-find-file, speedbar-dir-follow)
20397 (speedbar-directory-buttons-follow, speedbar-tag-find)
20398 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
20399 (speedbar-buffers-line-directory, speedbar-buffer-click):
20400 Mark unused parameters.
20401 (speedbar-tag-file): Remove unused variable `mode'.
20402 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
20403
20404 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
20405
20406 * talk.el (talk): Remove unused variable `display'.
20407
20408 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
20409 (tar-write-region-annotate): Mark unused parameter.
20410
20411 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
20412 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
20413 Declare them, wrapped in `with-no-warnings' to avoid replacing one
20414 warning by another.
20415
20416 * time-stamp.el (time-stamp-string-preprocess):
20417 Remove unused variable `require-padding'.
20418
20419 * tree-widget.el (widget-glyph-enable): Declare.
20420 (tree-widget-action): Mark unused parameter.
20421
20422 * w32-fns.el (x-get-selection): Mark unused parameter.
20423 (autoload-make-program, generated-autoload-file): Declare.
20424
20425 * wdired.el (wdired-revert): Mark unused parameters.
20426 (wdired-xcase-word): Remove unused variable `err'.
20427
20428 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
20429 (whitespace-help-scroll): Remove unused variable `data-help'.
20430
20431 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
20432 (widget-image-insert, widget-after-change, default)
20433 (widget-default-format-handler, widget-default-notify)
20434 (widget-default-prompt-value, widget-info-link-action)
20435 (widget-url-link-action, widget-function-link-action)
20436 (widget-variable-link-action, widget-file-link-action)
20437 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
20438 (widget-field-prompt-internal, widget-field-action, widget-field-match)
20439 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
20440 (widget-insert-button-action, widget-delete-button-action, visibility)
20441 (widget-documentation-link-action, widget-documentation-string-action)
20442 (widget-const-prompt-value, widget-regexp-match, symbol)
20443 (widget-coding-system-prompt-value)
20444 (widget-key-sequence-value-to-external, sexp)
20445 (widget-sexp-value-to-internal, character, vector, cons)
20446 (widget-choice-prompt-value, widget-boolean-prompt-value)
20447 (widget-color--choose-action): Mark unused parameters.
20448 (widget-item-match-inline, widget-choice-match-inline)
20449 (widget-checklist-match, widget-checklist-match-inline)
20450 (widget-group-match): Rename parameter VALUES to VALS.
20451 (widget-field-value-set): Remove unused variable `size'.
20452 (widget-color-action): Remove unused variables `value' and `start'.
20453
20454 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 20455 variable `dir'. Doc fix.
06b60517
JB
20456 (windmove-find-other-window): Don't pass it.
20457
20458 * window.el (count-windows): Mark unused parameter.
20459 (bw-adjust-window): Remove unused variable `err'.
20460
20461 * woman.el (woman-file-name): Remove unused variable `default'.
20462 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
20463 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
20464 (global-font-lock-mode): Declare.
20465 (woman-decode-region): Mark unused parameter.
20466 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
20467
20468 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
20469 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
20470 (x-dnd-handle-moz-url): Remove unused variable `title'.
20471 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
20472
20473 * xml.el (xml-parse-tag, xml-parse-attlist):
20474 Remove unused variable `pos'.
20475
bc4f7f3d
GM
204762011-04-19 Glenn Morris <rgm@gnu.org>
20477
20478 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
20479 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
20480 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
20481 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
20482 * calendar/cal-html.el (cal-html-insert-minical):
20483 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
20484 (calendar-mark-date-pattern):
20485 Prefix "unused" locals.
20486
20487 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
20488 optional argument `style'.
20489
20490 * calendar/appt.el (appt-make-list):
20491 * calendar/cal-china.el (calendar-chinese-date-string):
20492 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
20493 (diary-hebrew-yahrzeit):
20494 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
20495 * calendar/calendar.el (calendar-generate-window):
20496 * calendar/time-date.el (time-to-days):
20497 Remove unused local variables.
20498
16a43933
CY
204992011-04-18 Chong Yidong <cyd@stupidchicken.com>
20500
20501 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
20502 glyphless-char-display table.
20503 (tabulated-list-glyphless-char-display): New var.
20504
7eed1860
SS
205052011-04-18 Sam Steingold <sds@gnu.org>
20506
20507 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
20508 to acknowledgments.
20509
4d2d1ccd
GM
205102011-04-17 Glenn Morris <rgm@gnu.org>
20511
20512 * calendar/diary-lib.el (diary-sexp-entry):
20513 * calendar/holidays.el (holiday-sexp):
20514 Set debug-on-error rather than the removed stack-trace-on-error.
20515
239da61d
GM
205162011-04-16 Glenn Morris <rgm@gnu.org>
20517
20518 * progmodes/f90.el: Use lexical-binding.
20519 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
20520
8b05752a
SM
205212011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20522
daca8ba5
SM
20523 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
20524 (mail-mode): Setup mailalias completion here instead.
20525 * mail/mailalias.el: Use lexical-binding.
20526 (pattern, mailalias-done): Declare dynamic.
20527 (mail-completion-at-point-function): New function, from mail-complete.
20528 (mail-complete): Use it.
20529 (mail-completion-expand): New function.
20530 (mail-get-names): Use it.
20531 (mail-directory, mail-directory-process, mail-directory-stream):
20532 Don't use `pattern' for lexically bound arg.
20533
6f542485
SM
20534 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
20535
037e7c3f
SM
20536 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
20537 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
20538 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
20539
8b05752a
SM
20540 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
20541 (byte-save-window-excursion, byte-temp-output-buffer-setup)
20542 (byte-interactive-p): Define them again, for use when inlining
20543 old code.
20544
49093f60
JB
205452011-04-15 Juanma Barranquero <lekktu@gmail.com>
20546
20547 * loadup.el: Use `string-to-number', not `string-to-int'.
20548
b5b8e7de
SM
205492011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20550
20551 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
20552 gud-gdb-complete-command.
20553 (gud-gdb-completions): New function, from gud-gdb-complete-command.
20554 (gud-gdb-completion-at-point): New function.
20555 (gud-gdb-completions): Remove.
20556
f42efeb5
MA
205572011-04-14 Michael Albinus <michael.albinus@gmx.de>
20558
49093f60
JB
20559 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
20560 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
20561 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
20562 whether `executable-find' is bound.
f42efeb5
MA
20563
20564 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
20565
e240cc21
SM
205662011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
20567
20568 * minibuffer.el (completion-in-region-mode-predicate)
20569 (completion-in-region-mode--predicate): New vars.
20570 (completion-in-region, completion-in-region--postch)
20571 (completion-in-region-mode): Use them.
20572 (completion--capf-wrapper): Also return the hook function.
20573 (completion-at-point, completion-help-at-point):
20574 Adjust and provide a predicate.
c2bd2ab0
SM
20575
20576 Preserve arg names for advice of subr and lexical functions (bug#8457).
20577 * help-fns.el (help-function-arglist): Consolidate the subr and
20578 new-byte-code cases. Add argument `preserve-names' to extract names
20579 from the docstring when needed.
20580 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
20581 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
20582 (ad-arglist): Use help-function-arglist's new arg.
20583 (ad-definition-type): Use cond.
20584
c183f693
JB
205852011-04-13 Juanma Barranquero <lekktu@gmail.com>
20586
06641a47
JB
20587 * autorevert.el (auto-revert-handler):
20588 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
20589 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
20590 Don't quote lambda.
20591
c183f693
JB
20592 * image-mode.el (image-transform-set-scale):
20593 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
20594
1e3b6001
G
205952011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20596
20597 * net/network-stream.el (network-stream-open-starttls): Only do
e9fce1ac 20598 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
1e3b6001
G
20599 Upgrades via gnutls-cli are too slow to be done opportunistically.
20600
2d6af8dd
JB
206012011-04-12 Juanma Barranquero <lekktu@gmail.com>
20602
20603 * dframe.el (dframe-current-frame): Remove spurious quote.
20604
c0749a51
GM
206052011-04-12 Glenn Morris <rgm@gnu.org>
20606
088d0d61
GM
20607 * calendar/cal-tex.el (cal-tex-end-document):
20608 Try to automatically use latin1 input if needed.
20609
c0749a51
GM
20610 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
20611 Don't try to cons a mark onto an empty element.
20612
5c90fde0
LL
206132011-04-11 Leo Liu <sdl.web@gmail.com>
20614
20615 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
20616 buffers.
20617 (ido-kill-buffer-at-head): Support killing virtual buffers.
20618
369e974d
CY
206192011-04-10 Chong Yidong <cyd@stupidchicken.com>
20620
20621 * minibuffer.el (completion-show-inline-help): New var.
20622 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
20623 (minibuffer-force-complete, minibuffer-complete-word):
20624 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
20625
20626 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
20627 to avoid interference from inline help (Bug#5849).
20628
37f1c930
LL
206292011-04-10 Leo Liu <sdl.web@gmail.com>
20630
099c39a4
JB
20631 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
20632 Fix typo.
37f1c930 20633
a32d4040
CY
206342011-04-09 Chong Yidong <cyd@stupidchicken.com>
20635
20636 * image-mode.el (image-toggle-display-image): Signal an error if
20637 not in Image mode.
20638 (image-transform-mode, image-transform-resize)
20639 (image-transform-set-rotation): Doc fix.
daca8ba5 20640 (image-transform-set-resize): Delete.
a32d4040
CY
20641 (image-transform-set-scale, image-transform-fit-to-height)
20642 (image-transform-fit-to-width): Handle image-toggle-display-image
20643 and image-transform-resize directly.
20644
099c39a4 206452011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
20646
20647 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
20648 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
20649 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
20650 (doc-view-mode-map): Add bindings for the new functions.
20651
099c39a4 206522011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 20653
4d61f28d 20654 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
20655 Fix typo in docstring.
20656
3726838a
EZ
206572011-04-08 Eli Zaretskii <eliz@gnu.org>
20658
04f33f1e
EZ
20659 * files.el (file-size-human-readable): Produce one digit after
20660 decimal, like "ls -lh" does.
20661
20662 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
20663 the file size representation.
20664
3726838a
EZ
20665 * simple.el (list-processes): If async subprocesses are not
20666 available, error out with a clear error message.
20667
cbb59342
CY
206682011-04-08 Chong Yidong <cyd@stupidchicken.com>
20669
20670 * help.el (help-form-show): New function, to be called from C.
20671 Put help-form output in a buffer named differently than *Help*.
20672
e3971c44
EZ
206732011-04-08 Eli Zaretskii <eliz@gnu.org>
20674
20675 * files.el (file-size-human-readable): New function.
20676
20677 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
20678 computing the representation inline. Don't require `cl'.
20679
12544bbe
GM
206802011-04-08 Glenn Morris <rgm@gnu.org>
20681
a1de6c6a
GM
20682 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
20683
3c4671f4
GM
20684 * net/browse-url.el (browse-url-firefox):
20685 Test system-type, not system-configuration.
20686
b605679c
GM
20687 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
20688 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
20689 Use log-edit-empty-buffer-p. (Bug#7598)
20690
56442f0c
GM
20691 * net/rlogin.el (rlogin-process-connection-type): Simplify.
20692 (rlogin-mode-map): Initialize in the defvar.
20693 (rlogin): Use ignore-errors.
20694
12544bbe
GM
20695 * replace.el (occur-mode-map): Some fixes for menu items.
20696
eb237b0f
AH
206972011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
20698
20699 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
20700
7d668f2c
CY
207012011-04-06 Chong Yidong <cyd@stupidchicken.com>
20702
e67a13ab
CY
20703 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
20704 issuing unused warnings.
20705
20706 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
20707 macro directly.
20708
7d668f2c
CY
20709 * simple.el: Lisp reimplement of list-processes. Based on an
20710 earlier reimplementation by Leo Liu, but using tabulated-list.el.
20711 (process-menu-mode): New major mode.
20712 (list-processes--refresh, list-processes):
20713 (process-menu-visit-buffer): New functions.
20714
20715 * files.el (save-buffers-kill-emacs): Don't assume any return
20716 value of list-processes, which is undocumented anyway.
20717
a83ec3c9
CY
207182011-04-06 Chong Yidong <cyd@stupidchicken.com>
20719
20720 * emacs-lisp/tabulated-list.el: New file.
20721
e91a96fe
CY
20722 * emacs-lisp/package.el: Use Tabulated List mode.
20723 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
20724 (package-menu-mode): Derive from tabulated-list-mode. Set up the
20725 table format using Tabulated List mode variables.
20726 (package--push): New macro, replacing package-list-maybe-add.
20727 (package-menu--generate): Use package--push. Renamed from
20728 package--generate-package-list.
20729 (package-menu-refresh, list-packages): Use it.
daca8ba5 20730 (package-menu--print-info): Rename from package-print-package.
e91a96fe 20731 Return insertion data instead of inserting it directly.
099c39a4
JB
20732 (package-menu-describe-package, package-menu-execute):
20733 Use tabulated-list-get-id.
e91a96fe
CY
20734 (package-menu-mark-delete, package-menu-mark-install)
20735 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
20736 (package-menu-mark-obsolete-for-deletion):
20737 Use tabulated-list-put-tag.
e91a96fe
CY
20738 (package--list-packages, package-menu-revert)
20739 (package-menu-get-package, package-menu-get-version)
20740 (package-menu-sort-by-column): Functions deleted.
20741 (package-menu-package-list, package-menu-sort-key): Vars deleted.
20742 (package-menu--status-predicate, package-menu--version-predicate)
20743 (package-menu--name-predicate)
20744 (package-menu--description-predicate): Handle arguments in the
20745 Tabulated List format.
20746 (package-list-packages-no-fetch): Call list-packages.
20747
3e214b50
JB
207482011-04-06 Juanma Barranquero <lekktu@gmail.com>
20749
20750 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 20751 (after-find-file): Don't bind it.
3e214b50
JB
20752 (revert-buffer-in-progress-p): New variable.
20753 (revert-buffer): Bind it.
20754 Pass nil for `after-find-file-from-revert-buffer'.
20755
20756 * saveplace.el (save-place-find-file-hook): Use new variable
20757 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
20758
3f0f1700
GM
207592011-04-06 Glenn Morris <rgm@gnu.org>
20760
c0274801
GM
20761 * Makefile.in (AUTOGEN_VCS): New variable.
20762 (autoloads): Use $AUTOGEN_VCS.
20763
3f0f1700
GM
20764 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
20765 * calendar/calendar.el (calendar-mode-map):
20766 Check for toolkit scroll bars. (Bug#8305)
20767
41ea9e48
CY
207682011-04-05 Chong Yidong <cyd@stupidchicken.com>
20769
20770 * minibuffer.el (completion-in-region--postch)
20771 (completion-in-region-mode): Remove unnecessary messages.
20772
6194c800
JB
207732011-04-05 Juanma Barranquero <lekktu@gmail.com>
20774
33256f14
JB
20775 * font-lock.el (font-lock-refresh-defaults):
20776 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
20777 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
20778
6194c800
JB
20779 * info.el (Info-directory-list, Info-read-node-name-2)
20780 (Info-split-parameter-string): Doc fixes.
20781 (Info-virtual-nodes): Reflow docstring.
20782 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
20783 (Info-apropos-toc-nodes, info-finder, Info-get-token)
20784 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
20785 Fix typos in docstrings.
20786 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
20787 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
20788 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
20789 (Info-restore-desktop-buffer): Mark unused parameters.
20790 (Info-directory-find-file, Info-directory-find-node)
20791 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
20792 (Info-virtual-index-find-node, Info-apropos-find-file)
20793 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 20794 Mark unused parameters; fix typos in docstrings.
6194c800
JB
20795 (Info-virtual-index): Remove unused local variable `nodename'.
20796
b87a8200 207972011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 20798
b87a8200
DD
20799 * net/rcirc.el: Update my e-mail address.
20800 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 20801
3b2ff876
CY
208022011-04-05 Chong Yidong <cyd@stupidchicken.com>
20803
20804 * startup.el (command-line): Save the cursor's theme-face
20805 directly, instead of using face-override-spec.
20806
20807 * custom.el (load-theme): Minor optimization in assigning faces.
20808
8d17e7ca
JB
208092011-04-04 Juanma Barranquero <lekktu@gmail.com>
20810
20811 * help-fns.el (describe-variable): Complete all variables having
20812 documentation, including keywords.
20813 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
20814
2fbc1934
JB
208152011-04-04 Juanma Barranquero <lekktu@gmail.com>
20816
20817 Convert to lexical-binding.
20818
20819 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
20820 (bs--get-marked-string, bs--get-modified-string)
20821 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
20822 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
20823 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
20824
20825 * ehelp.el (electric-help-execute-extended)
20826 (electric-help-ctrl-x-prefix):
20827 * hexl.el (hexl-revert-buffer-function):
20828 * linum.el (linum-after-change, linum-after-scroll):
20829 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
20830
20831 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
20832
74f50695
DU
208332011-04-04 Daiki Ueno <ueno@unixuser.org>
20834
20835 * epa-dired.el:
20836 * epa-mail.el:
20837 * epa-hook.el:
20838 * epa-file.el:
20839 * epa.el:
20840 * epg.el: Use lexical binding.
20841
c11325f7
CY
208422011-04-03 Chong Yidong <cyd@stupidchicken.com>
20843
0d9e9a12
CY
20844 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
20845
c11325f7 20846 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
20847 dictionary case for flyspell-mark-duplications-exceptions.
20848 Use regexp matching for languages.
c11325f7
CY
20849 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
20850 default dictionary (Bug#7926).
20851
da91b5f2
CY
208522011-04-02 Chong Yidong <cyd@stupidchicken.com>
20853
099c39a4
JB
20854 * emacs-lisp/package.el (package--with-work-buffer):
20855 Recognize https URLs.
da91b5f2 20856
099c39a4
JB
20857 * net/network-stream.el: Move from gnus/proto-stream.el.
20858 Change prefix to network-stream throughout.
da91b5f2
CY
20859 (open-protocol-stream): Merge into open-network-stream, leaving
20860 open-protocol-stream as an alias. Handle nil BUFFER args.
20861
20862 * subr.el (open-network-stream): Move to net/network-stream.el.
20863
afa8e9f6
GM
208642011-04-02 Glenn Morris <rgm@gnu.org>
20865
1d2e369d
GM
20866 * find-dired.el (find-exec-terminator): New option.
20867 (find-ls-option): Test for -ls support.
20868 (find-ls-subdir-switches): Test for -b in find-ls-option.
20869 (find-dired, find-grep-dired): Doc fixes.
20870 (find-dired): Use find-exec-terminator.
20871
8abb7da8 20872 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
20873 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
20874 (find-name-arg): Remove purecopy.
8abb7da8 20875
f3ca7378
GM
20876 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
20877 (grep-compute-defaults): Check for `-exec COMMAND +' support.
20878 Set grep-find-use-xargs, grep-find-command, and grep-find-template
20879 accordingly. Don't add the null-device if not needed.
20880
afa8e9f6
GM
20881 * files.el (save-some-buffers): Doc fix.
20882
35eae264
EZ
208832011-04-02 Eli Zaretskii <eliz@gnu.org>
20884
20885 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
20886
26b51db5
JB
208872011-04-01 Juanma Barranquero <lekktu@gmail.com>
20888
20889 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
20890 Use `dolist' rather than `mapcar'.
20891
7200d79c
SM
208922011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
20893
03408648 20894 Add lexical binding.
7200d79c 20895
03408648
SM
20896 * subr.el (apply-partially): Use new closures rather than CL.
20897 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
20898 (dolist, dotimes): Use slightly different expansion for lexical code.
20899 (functionp): Move to C.
20900 (letrec): New macro.
20901 (with-wrapper-hook): Use it and apply-partially instead of CL.
20902 (eval-after-load): Preserve lexical-binding.
20903 (save-window-excursion, with-output-to-temp-buffer): Turn them
20904 into macros.
7200d79c 20905
03408648
SM
20906 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
20907
20908 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
20909 than the arglist.
20910 (help-add-fundoc-usage): Don't add `Not documented'.
20911 (help-function-arglist): Handle closures, subroutines, and new
20912 byte-code-functions.
20913 (help-make-usage): Remove leading underscores.
20914 (describe-function-1): Handle closures.
20915 (describe-variable): Use special-variable-p for completion.
20916
20917 * files.el (lexical-binding): Declare safe.
f488fb65 20918
03408648
SM
20919 * emacs-lisp/pcase.el: Don't use destructuring-bind.
20920 (pcase--memoize): Rename from pcase-memoize. Change weakness.
20921 (pcase): Add `let' pattern.
20922 Change memoization so it actually works.
20923 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
20924 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
20925 <let>: New case.
f488fb65 20926
03408648
SM
20927 * emacs-lisp/macroexp.el: Use lexical binding.
20928 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
20929 Don't convert ' to #' without checking that it's indeed quoting
20930 a lambda.
20931
20932 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 20933 Use eval-sexp-add-defvars.
03408648
SM
20934 (eval-sexp-add-defvars): New fun.
20935
20936 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
20937
20938 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
20939 Don't autoload.
20940 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
20941 than the internal `byte-compile-lambda'.
20942 (defmethod): Don't hide code under quotes.
20943 (eieio-defmethod): New `code' argument.
20944
20945 * emacs-lisp/eieio-comp.el: Remove.
20946
20947 * emacs-lisp/edebug.el (edebug-eval-defun)
20948 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
20949 (edebug-toggle): Avoid `eval'.
20950
20951 * emacs-lisp/disass.el (disassemble-internal): Handle new
20952 `closure' objects.
20953 (disassemble-1): Handle new byte codes.
20954
20955 * emacs-lisp/cl.el (pushnew): Silence warning.
20956
20957 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
20958 (cl-byte-compile-throw): Remove.
20959 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
20960
20961 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
20962 closures.
20963
20964 * emacs-lisp/cconv.el: New file.
20965
20966 * emacs-lisp/bytecomp.el: Use lexical binding instead of
20967 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
20968 (byte-compile-initial-macro-environment):
20969 Handle declare-function here.
20970 (byte-compile--lexical-environment): New var.
20971 (byte-stack-ref, byte-stack-set, byte-discardN)
20972 (byte-discardN-preserve-tos): New lap codes.
20973 (byte-interactive-p): Don't use any more.
20974 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
20975 New macros.
20976 (byte-compile-lapcode): Use them and handle new lap codes.
20977 (byte-compile-obsolete): Remove.
20978 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
20979 (byte-compile-arglist-warn): Check late def of inlinable funs.
20980 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
20981 since they should have been expanded by now.
20982 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
20983 (byte-compile-from-buffer): Remove unused second arg.
20984 (byte-compile-preprocess): New function.
20985 (byte-compile-toplevel-file-form): New function to distinguish
20986 file-form calls from outside from file-form calls from hunk-handlers.
20987 (byte-compile-file-form): Simplify.
20988 (byte-compile-file-form-defsubst): Remove.
20989 (byte-compile-file-form-defmumble): Simplify now that
20990 byte-compile-lambda always returns a byte-code-function.
20991 (byte-compile): Preprocess.
20992 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
20993 Remove, not used any more.
20994 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
20995 (byte-compile-make-args-desc): New funs.
20996 (byte-compile-lambda): Handle lexical functions. Always return
20997 a byte-code-function.
20998 (byte-compile-reserved-constants): New var, to make up room for
20999 closed-over variables.
21000 (byte-compile-constants-vector): Obey it.
21001 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
21002 (byte-compile-macroexpand-declare-function): New function.
21003 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
21004 byte-code-functions.
21005 (byte-compile-form): Check obsolescence here.
21006 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
21007 (byte-compile-variable-ref): Remove.
21008 (byte-compile-dynamic-variable-op): New fun.
21009 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
21010 (byte-compile-variable-set): New funs.
21011 (byte-compile-discard): Add 2 args.
21012 (byte-compile-stack-ref, byte-compile-stack-set)
21013 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
21014 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
21015 macroexpand-all instead.
21016 (byte-compile-quote-form): Remove.
21017 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
21018 (byte-compile-bind, byte-compile-unbind): New funs.
21019 (byte-compile-let): Handle let* and lexical binding.
21020 (byte-compile-let*): Remove.
21021 (byte-compile-catch, byte-compile-unwind-protect)
21022 (byte-compile-track-mouse, byte-compile-condition-case):
21023 Handle a new :fun-body form, used for lexical scoping.
21024 (byte-compile-save-window-excursion)
21025 (byte-compile-with-output-to-temp-buffer): Remove.
21026 (byte-compile-defun): Simplify.
21027 (byte-compile-stack-adjustment): New fun.
21028 (byte-compile-out): Use it.
21029 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
21030
21031 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
21032 handler any more.
21033
21034 * emacs-lisp/byte-opt.el: Use lexical binding.
21035 (byte-inline-lapcode): Remove (to bytecomp).
21036 (byte-compile-inline-expand): Pay attention to inlining to/from
21037 lexically bound code.
21038 (byte-compile-unfold-lambda): Don't handle byte-code-functions
21039 any more.
21040 (byte-optimize-form-code-walker): Don't handle save-window-excursion
21041 any more and don't call compiler-macros.
21042 (byte-compile-splice-in-already-compiled-code): Remove.
21043 (byte-code): Don't inline any more.
21044 (disassemble-offset): Receive `bytes' as argument rather than via
21045 dynamic scoping.
21046 (byte-compile-tag-number): Declare before first use.
21047 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
21048 `return' even if make-spliceable.
21049 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
21050 obsolete interactive-p.
21051 (byte-optimize-lapcode): Optimize new lap-codes.
21052 Don't trip up on new form of `byte-constant' lap code.
21053
21054 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
21055
21056 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
21057
21058 * custom.el (custom-initialize-default, custom-declare-variable):
21059 Use `defvar'.
21060
21061 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
21062 New variables.
21063 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
21064 (COMPILE_FIRST): Add macroexp and cconv.
21065 * makefile.w32-in: Mirror changes in Makefile.in.
21066
21067 * vc/cvs-status.el:
21068 * vc/diff-mode.el:
21069 * vc/log-edit.el:
21070 * vc/log-view.el:
21071 * vc/smerge-mode.el:
21072 * textmodes/bibtex-style.el:
090bd7cb 21073 * textmodes/css-mode.el:
03408648
SM
21074 * startup.el:
21075 * uniquify.el:
da91b5f2
CY
21076 * minibuffer.el:
21077 * newcomment.el:
21078 * reveal.el:
21079 * server.el:
21080 * mpc.el:
21081 * emacs-lisp/smie.el:
21082 * doc-view.el:
21083 * dired.el:
03408648
SM
21084 * abbrev.el: Use lexical binding.
21085
0f0c1f27
EZ
210862011-04-01 Eli Zaretskii <eliz@gnu.org>
21087
21088 * info.el (info-display-manual): New function.
21089
c82b2579
SM
210902011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
21091
21092 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
21093
221ddf68
TH
210942011-03-31 Tassilo Horn <tassilo@member.fsf.org>
21095
21096 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 21097 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 21098
cba6e77e
GM
210992011-03-31 Glenn Morris <rgm@gnu.org>
21100
e040639f
GM
21101 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
21102
cba6e77e
GM
21103 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
21104
6d0f1c9e
CS
211052011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
21106
21107 * progmodes/python.el (python-default-interpreter)
21108 (python-python-command-args, python-jython-command-args)
21109 (python-which-shell, python-which-args, python-which-bufname)
21110 (python-file-queue, python-comint-output-filter-function)
21111 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
21112 variables and functions.
21113
3e2d70fd
SM
211142011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21115
21116 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
21117 (completion-in-region-mode): New minor mode.
21118 (completion-in-region): Use it.
21119 (completion-in-region--data, completion-in-region-mode-map): New vars.
21120 (completion-in-region--postch): New function.
21121 (completion--capf-misbehave-funs, completion--capf-safe-funs):
21122 New vars.
21123 (completion--capf-wrapper): New function.
21124 (completion-at-point): Use it to track well-behavedness of
21125 hook functions.
21126 (completion-help-at-point): New command.
21127
f3e4086c
JM
211282011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
21129
21130 * vc/add-log.el (add-change-log-entry): Don't use whitespace
21131 syntax class to search for whitespace on a single line
21132 (Message-ID: <4D938140.4030905@redhat.com>).
21133
eb7ffc14
LL
211342011-03-30 Leo Liu <sdl.web@gmail.com>
21135
21136 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
21137 New commands.
21138 (edit-abbrevs-map): Bind them here.
21139 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
21140
d806ab68
KM
211412011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
21142
21143 * allout.el (allout-hide-by-annotation, allout-flag-region):
21144 Reduce possibility of overlay leakage by making them volatile.
21145
21146 * allout-widgets.el (allout-widgets-tally): Define as nil so the
21147 hash is not shared between buffers. Mode initialization is
21148 responsible for giving it a useful starting value.
21149 (allout-item-span): Reduce possibility of overlay leakage by
21150 making them volatile.
21151 (allout-widgets-count-buttons-in-region): Add diagnostic function
21152 for tracking down button overlay leaks.
21153
ea622834
LL
211542011-03-29 Leo Liu <sdl.web@gmail.com>
21155
21156 * ido.el (ido-read-internal): Use the default history var
21157 minibuffer-history if no HISTORY is specified.
21158
b62f8267
G
211592011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
21160
03408648
SM
21161 * net/imap.el (imap-shell-open, imap-process-connection-type):
21162 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
21163 Kerberos, SSL, other subprocesses.
21164
947b6566
LL
211652011-03-28 Leo Liu <sdl.web@gmail.com>
21166
21167 * abbrev.el (abbrev-table-empty-p): New function.
21168 (prepare-abbrev-list-buffer): Place empty abbrev tables after
21169 nonempty ones. (Bug#5937)
21170
5ffb62aa
JD
211712011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21172
21173 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
21174
7a097943
LL
211752011-03-27 Leo Liu <sdl.web@gmail.com>
21176
21177 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
21178 for foreground and background colors.
21179 (ansi-color-make-color-map): Adapt.
21180
c5b40130
LL
211812011-03-25 Leo Liu <sdl.web@gmail.com>
21182
1f48f7d2
LL
21183 * midnight.el (midnight-time-float): Remove. Note it calculates
21184 the microsecond component incorrectly and seconds-to-time does the
21185 same job.
625897ec 21186 Remove redundant (require 'timer).
1f48f7d2 21187
c5b40130
LL
21188 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
21189 (ido-completions): Remove unused arguments. (Bug#8329)
21190
d86d2721
SM
211912011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
21192
21193 * minibuffer.el (completion--flush-all-sorted-completions):
21194 Remove itself from hook.
21195 (completion-at-point): Let the functions perform the completion
21196 immediately and return nil or t.
21197 * comint.el (comint-dynamic-complete-functions): Now identical to
21198 completion-at-point-functions.
21199 (comint-dynamic-list-input-ring): Remove unused var `index'.
21200 (comint--match-partial-filename, comint--unquote&expand-filename):
21201 New funs, split from comint-match-partial-filename.
21202 (comint-dynamic-complete): Use completion-at-point.
21203 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
21204
e8974c48
DA
212052011-03-24 Drew Adams <drew.adams@oracle.com>
21206
21207 * thingatpt.el: Support `defun'.
21208
def71b5e
LL
212092011-03-23 Leo Liu <sdl.web@gmail.com>
21210
cb5af48e
LL
21211 * abbrevlist.el: Move to obsolete/abbrevlist.el.
21212
def71b5e
LL
21213 * help-mode.el (help-mode-finish): Tweak regexp.
21214
927c53e7
GM
212152011-03-23 Glenn Morris <rgm@gnu.org>
21216
18d05bed
GM
21217 * eshell/esh-opt.el (eshell-eval-using-options):
21218 Do not bind unused local variable `eshell-option-stub'.
21219
927c53e7
GM
21220 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
21221
9d0da923
JB
212222011-03-22 Juanma Barranquero <lekktu@gmail.com>
21223
21224 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
21225 keymap variable in `with-no-warnings' to avoid a warning when the
21226 keymap has been already `defconst'ed.
21227
4b978a67
LL
212282011-03-22 Leo Liu <sdl.web@gmail.com>
21229
21230 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
21231 encode all chars in abbrevs; otherwise use emacs-mule or
21232 utf-8-emacs. (Bug#8308)
21233
5fd62452
JB
212342011-03-22 Juanma Barranquero <lekktu@gmail.com>
21235
0b1596c6
JB
21236 * simple.el (backward-delete-char-untabify):
21237 Avoid warning about using `delete-backward-char'.
21238
5fd62452
JB
21239 * image.el (image-type-file-name-regexps): Make it variable.
21240 `imagemagick-register-types' modifies it, and the user may want
21241 to add new extensions for known image types.
21242 (imagemagick-register-types): Throw error if not using ImageMagick.
21243
0b4e93f1
LL
212442011-03-22 Leo Liu <sdl.web@gmail.com>
21245
21246 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
21247 located before rcirc-prompt-end-marker.
21248 (rcirc-complete): Error if point is not after rcirc prompt.
21249 Handle the case when table is nil.
9882e214 21250 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 21251
fccee4ab
CY
212522011-03-22 Chong Yidong <cyd@stupidchicken.com>
21253
21254 * custom.el (custom--inhibit-theme-enable): Make it affect only
21255 custom-theme-set-variables and custom-theme-set-faces.
21256 (provide-theme): Ignore custom--inhibit-theme-enable.
21257 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
21258 (custom-enabling-themes): Delete variable.
d86d2721
SM
21259 (enable-theme): Accept only loaded themes as arguments.
21260 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
21261 (custom-enabled-themes): Forbid themes from setting this.
21262 Eliminate use of custom-enabling-themes.
21263 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 21264
af896da6
LL
212652011-03-21 Leo Liu <sdl.web@gmail.com>
21266
21267 * ido.el (ido-read-internal): Add ido-selected to history instead
21268 of user input.
21269
78f64af0
SM
212702011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
21271
21272 * subr.el (deferred-action-list, deferred-action-function):
21273 Mark obsolete.
21274
b16ac1ec
LL
212752011-03-21 Leo Liu <sdl.web@gmail.com>
21276
810f7698
LL
21277 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
21278 change on 2011-02-13 (bug#8309).
21279
b16ac1ec
LL
21280 * minibuffer.el (read-file-name-function): Change default value.
21281 (read-file-name--defaults): Rename from read-file-name-defaults.
21282 (read-file-name-default): Rename from read-file-name.
21283 (read-file-name): Call read-file-name-function.
21284
4e05e67e
GM
212852011-03-21 Glenn Morris <rgm@gnu.org>
21286
21287 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
21288 Doc fixes.
21289
4359915b
CY
212902011-03-21 Chong Yidong <cyd@stupidchicken.com>
21291
21292 * cus-theme.el: Add missing provide statement.
21293 (customize-create-theme): Extract theme value correctly.
21294 (custom-theme-visit-theme): Autoload.
21295 (customize-create-theme): Prompt before inserting default faces.
21296
1fe275ee
JB
212972011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
21298
21299 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
21300 units and musical notes.
21301
cd394be1 213022011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
21303
21304 * ido.el (ido-read-internal): Use completing-read-default.
21305 (ido-completing-read): Fix compatibility with completing-read.
21306
7d476bde
CO
213072011-03-20 Christian Ohler <ohler@gnu.org>
21308
21309 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
21310 (ert-delete-all-tests): Use `called-interactively-p' rather than
21311 `interactive-p'.
21312 (ert--make-xrefs-region): Respect END.
21313
fe0fb33e
CY
213142011-03-19 Chong Yidong <cyd@stupidchicken.com>
21315
ff854b0b
CY
21316 * dired-aux.el (dired-create-directory): Signal an error if the
21317 directory already exists (Bug#8246).
21318
fe0fb33e
CY
21319 * facemenu.el (list-colors-display): Call list-faces-display
21320 inside with-help-window.
21321 (list-colors-print): Use display property to align the final
21322 column, instead of checking window-width.
21323
576bce32
EZ
213242011-03-19 Eli Zaretskii <eliz@gnu.org>
21325
4d61f28d 21326 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
21327 windows-nt systems.
21328 (emerge-protect-metachars): Quote correctly for ms-dos and
21329 windows-nt systems.
21330
89c41d68 213312011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
21332
21333 * info.el (info-initialize): Replace all uses of `:' with
21334 path-separator for compatibility with non-Unix systems.
21335 Cache quoting of path-separator. (Bug#8258)
21336
b14e3e21 213372011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
21338
21339 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
21340 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
21341 (mouse-avoidance-mode): Fix typos in docstrings.
21342
4525ce3e
CY
213432011-03-19 Chong Yidong <cyd@stupidchicken.com>
21344
21345 * startup.el (package-subdirectory-regexp): Move from package.el.
21346 Omit \\` and \\', and let callers add them.
21347
21348 * emacs-lisp/package.el (package-strip-version)
21349 (package-load-all-descriptors): Add \\` and \\' to
21350 package-subdirectory-regexp before using it.
21351 (package-untar-buffer): New arg DIR; ensure that file untars only
21352 into this expected directory. Remove superfluous delete-region.
21353 (package-unpack): Caller changed.
21354 (package-tar-file-info): Use package-subdirectory-regexp.
21355
a904a09a 213562011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 21357
a904a09a
SM
21358 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
21359 diff-mode-shared-map (bug#8284).
21360 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
21361
213622011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
21363
21364 * calendar/time-date.el (format-seconds): Use assoc instead of
21365 assoc-string, since assoc-string doesn't exist in XEmacs.
21366
171fc304
JB
213672011-03-17 Juanma Barranquero <lekktu@gmail.com>
21368
21369 * custom.el (custom-known-themes): Reflow docstring.
21370 (custom-theme-load-path): Fix typo in docstring.
21371 (load-theme): Fix typo in error message.
21372 (custom-available-themes, custom-variable-theme-value):
21373 Use `let', not `let*'.
21374
d71990a1
JB
213752011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
21376
21377 * calc/README: Mention inclusion of musical notes.
21378
21379 * calc/calc-units.el (calc-lu-quant): Rename from
21380 `calc-logunits-quantity'.
21381 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
21382 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
21383 (calc-db): Rename from `calc-dblevel'.
21384 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
21385 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
21386 (calc-np): Rename from `calc-nplevel'.
21387 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
21388 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
21389 (calc-lu-plus): Rename from `calc-logunits-add'.
21390 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
21391 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
21392 (calc-lu-minus): Rename from `calc-logunits-sub'.
21393 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
21394 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
21395 (calc-lu-times): Rename from `calc-logunits-mul'.
21396 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
21397 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
21398 (calc-lu-divide): Rename from `calc-logunits-div'.
21399 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
21400 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
21401
21402 * calc/calc-ext.el (calc-init-extensions): Update the names of the
21403 functions being autoloaded.
21404
21405 * calc/calc.el (calc-lu-power-reference): Rename from
21406 `calc-logunits-power-reference'.
21407 (calc-lu-field-reference): Rename from
21408 `calc-logunits-field-reference'.
21409
7a71b18d
GM
21410 * calc/calc-help.el (calc-l-prefix-help):
21411 Mention musical note functions.
d71990a1 21412
40c2934b
SM
214132011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
21414
21415 * minibuffer.el (completion-all-sorted-completions):
21416 Use :completion-cycle-penalty text property if present.
21417
b0911414
KM
214182011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
21419
21420 * allout.el (allout-yank-processing): Adjust for new rebulleting
21421 regime so bullet being yanked is used without prompting the user
21422 for a choice.
21423
8a05b668
JB
214242011-03-16 Juanma Barranquero <lekktu@gmail.com>
21425
21426 * startup.el (command-line): Warn the user that _emacs is deprecated.
21427
5ba5fb81
JB
214282011-03-16 Juanma Barranquero <lekktu@gmail.com>
21429
21430 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
21431 (delphi-verbose, delphi-comment-face, delphi-string-face)
21432 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
21433 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
21434 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
21435 (delphi-new-comment-line, delphi-font-lock-defaults)
21436 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
21437 Fix typos in docstrings.
21438
2dab465b
KM
214392011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
21440
5ba5fb81 21441 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
21442 Invert the roles of character and string values for INSTEAD, so a
21443 string is used for the more common case of a defaulting prompt.
21444
0adf5618
SM
214452011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21446
21447 * progmodes/ruby-mode.el (ruby-backward-sexp):
21448 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
21449 * play/gamegrid.el (gamegrid-make-face):
21450 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
21451 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
21452 * notifications.el (notifications-notify):
21453 * net/xesam.el (xesam-search-engines):
21454 * net/quickurl.el (quickurl-list-insert):
21455 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
21456
d72700e5
CY
214572011-03-15 Chong Yidong <cyd@stupidchicken.com>
21458
21459 * startup.el (command-line): Update package subdirectory regexp.
21460
49c5410a
SM
214612011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21462
c6eee9aa
SM
21463 * allout.el (allout-abbreviate-flattened-numbering)
21464 (allout-mode-deactivate-hook): Fix up obsolescence "date".
21465
49c5410a
SM
21466 * subr.el (read-char-choice): Only show the cursor after the prompt,
21467 not after the answer.
21468
047b2bb9
KR
214692011-03-15 Kevin Ryde <user42@zip.com.au>
21470
21471 * help-fns.el (variable-at-point): Skip leading quotes, if any
21472 (bug#8253).
21473
0a57d256
SM
214742011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21475
21476 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
21477 warning message.
21478
77c992bc
MA
214792011-03-14 Michael Albinus <michael.albinus@gmx.de>
21480
21481 * shell.el (shell): When called interactively, offer to change the
21482 shell file name on remote hosts.
21483
eebc475d
TZ
214842011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
21485
21486 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
21487 integration for LDAP parameters. The host, base, user or binddn,
21488 and secret tokens can be specified in a netrc file, for instance.
21489 This is optional because an `auth-source' parameter must be
21490 specified in the search attributes.
21491
9d05d1ba
JB
214922011-03-13 Juanma Barranquero <lekktu@gmail.com>
21493
21494 * help.el (describe-mode): Link to the mode's definition (bug#8185).
21495
09d9db2c
GM
214962011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21497
21498 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
21499 into declaration. Remove redundant and harmful binding.
21500
215012011-03-12 Eli Zaretskii <eliz@gnu.org>
21502
21503 * files.el (file-ownership-preserved-p): Pass `integer' as an
21504 explicit 2nd argument to `file-attributes'. If the file's owner
21505 is the Administrators group on Windows, and the current user is
21506 Administrator, consider that a match.
21507
21508 * server.el (server-ensure-safe-dir): Consider server directory
21509 safe on MS-Windows if its owner is the Administrators group while
21510 the current Emacs user is Administrator. Use `=' to compare
21511 numerical UIDs, since they could be integers or floats.
21512
219bd536
JB
215132011-03-12 Juanma Barranquero <lekktu@gmail.com>
21514
21515 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
21516
f3afd36b
MA
215172011-03-12 Michael Albinus <michael.albinus@gmx.de>
21518
21519 Sync with Tramp 2.2.1.
21520
21521 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
21522
21523 * net/trampver.el: Update release number.
21524
3aaaa6f1
SM
215252011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21526
94642599
SM
21527 * progmodes/compile.el (compilation--previous-directory): Fix up
21528 various nil/dead-marker mismatches (bug#8014).
21529 (compilation-directory-properties, compilation-error-properties):
21530 Don't call it at a position past the one we're about to change.
21531
3aaaa6f1
SM
21532 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
21533 Disable obsolescence warnings in the file that declares it.
21534
14239447
KM
215352011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
21536
099c39a4
JB
21537 * allout-widgets.el (allout-widgets-tally):
21538 Initialize allout-widgets-tally as a hash table rather than nil to
21539 prevent mode-line redisplay warnings. Also, clarify the module
21540 description and fix a comment typo.
14239447 21541
135e287c
JB
215422011-03-11 Juanma Barranquero <lekktu@gmail.com>
21543
21544 * help-fns.el (describe-variable): Don't complete keywords.
21545 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
21546
ffbf300e
CY
215472011-03-10 Chong Yidong <cyd@stupidchicken.com>
21548
ba08b241
CY
21549 * emacs-lisp/package.el (package-version-join): Impose a standard
21550 string representation for pre/alpha/beta version lists.
21551 (package-unpack-single): Standardize the directory name by passing
21552 it through package-version-join.
21553 (package-strip-rcs-id): Accept any version string that does not
21554 signal an error in version-to-list.
ffbf300e 21555
f346fd6b
MA
215562011-03-10 Michael Albinus <michael.albinus@gmx.de>
21557
21558 * simple.el (delete-trailing-whitespace): Return nil for the
21559 benefit of `write-file-functions'.
21560
ccb55d27
GM
215612011-03-10 Glenn Morris <rgm@gnu.org>
21562
5ceaac0c
GM
21563 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
21564
02da65ff
GM
21565 * vc/vc-git.el (vc-git-program): New option.
21566 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
21567 (vc-git--call): Use it.
21568
b2f603cc
GM
21569 * eshell/esh-util.el (eshell-condition-case): Doc fix.
21570
5772caab
GM
21571 * cus-edit.el (Custom-newline): If no button at point, look
21572 for a subgroup button at start-of-line. (Bug#2298)
21573
ccb55d27
GM
21574 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
21575
ec6ecaed
JD
215762011-03-10 Julien Danjou <julien@danjou.info>
21577
21578 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
21579 `cursor-type' is nil.
21580
9d5aa01d
JB
215812011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
21582
21583 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
21584
b6a5875b
KM
215852011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
21586
7a71b18d 21587 * allout.el: Change so yank of distinctive-bullet items
b6a5875b
KM
21588 preserves the existing header prefix, rebulleting it if necessary,
21589 rather than replacing it. This is necessary for proper operation
21590 of cooperative addons like allout-widgets.
1154d12e
JB
21591 (allout-make-topic-prefix, allout-rebullet-heading):
21592 Change SOLICIT arg to INSTEAD, and interpret additionally a string
21593 value as alternate bullet to be used, instead of prompting the user
21594 for a bullet character.
b6a5875b 21595
ee545c35
MA
215962011-03-09 Michael Albinus <michael.albinus@gmx.de>
21597
d86d2721
SM
21598 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
21599 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
21600 `tramp-default-port'.
21601
c47971d7
DD
216022011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
21603
21604 * net/rcirc.el (rcirc-handler-001): Remove useless
21605 with-rcirc-process-buffer.
21606 (rcirc-check-auth-status): Swap arguments to string-match.
21607
13522cb4
GM
216082011-03-09 Glenn Morris <rgm@gnu.org>
21609
0be6f4f1
GM
21610 * shell.el (shell-mode):
21611 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
21612
13522cb4
GM
21613 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
21614 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
21615
515de2e3
CY
216162011-03-08 Chong Yidong <cyd@stupidchicken.com>
21617
21618 * emacs-lisp/package.el (package-refresh-contents)
21619 (package-menu-execute): Use condition-case-no-debug.
21620
b511b994
MA
216212011-03-08 Michael Albinus <michael.albinus@gmx.de>
21622
21623 * simple.el (shell-command-to-string): Use `process-file'.
21624
21625 * emacs-lisp/package.el (package-tar-file-info): Handle also
21626 remote files.
21627
d86d2721
SM
21628 * emacs-lisp/package-x.el (package-upload-buffer-internal):
21629 Use `equal' for upload base check.
b511b994 21630
25bbfb31
AM
216312011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
21632
21633 * textmodes/texinfo.el (texinfo-environments):
21634 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
21635
be996521
GM
216362011-03-08 Glenn Morris <rgm@gnu.org>
21637
e9c8529f
GM
21638 * cus-start.el (cursor-in-non-selected-windows):
21639 Fix :set quoting oddness. (Bug#8192)
21640
be996521
GM
21641 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
21642 in some setf expressions. (Bug#2159)
21643
2bb5649e
CY
216442011-03-08 Chong Yidong <cyd@stupidchicken.com>
21645
21646 * custom.el (custom-available-themes): Return themes in
21647 alphabetical order.
21648
33383987 21649See ChangeLog.15 for earlier changes.
e3d51b27
MR
21650
21651;; Local Variables:
21652;; coding: utf-8
e3d51b27
MR
21653;; End:
21654
acaf905b 21655 Copyright (C) 2011-2012 Free Software Foundation, Inc.
e3d51b27
MR
21656
21657 This file is part of GNU Emacs.
21658
21659 GNU Emacs is free software: you can redistribute it and/or modify
21660 it under the terms of the GNU General Public License as published by
21661 the Free Software Foundation, either version 3 of the License, or
21662 (at your option) any later version.
21663
21664 GNU Emacs is distributed in the hope that it will be useful,
21665 but WITHOUT ANY WARRANTY; without even the implied warranty of
21666 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21667 GNU General Public License for more details.
21668
21669 You should have received a copy of the GNU General Public License
21670 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.