Spelling fixes.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
c803b2b7
JD
12011-12-18 Jan Djärv <jan.h.d@swipnet.se>
2
3 * term/ns-win.el (ns-get-selection-internal)
4 (ns-store-selection-internal): Declare.
5 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal): Declare
6 as obsolete.
7 (ns-get-pasteboard, ns-paste-secondary): Use
8 ns-get-selection-internal.
9 (ns-set-pasteboard, ns-copy-including-secondary): Use
10 ns-store-selection-internal.
11
9cff91f8 122011-12-17 Chong Yidong <cyd@gnu.org>
99a289d9
CY
13
14 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
9cff91f8 15 (vc-deduce-fileset): Doc fix.
99a289d9 16
f16c898a
AS
172011-12-16 Andreas Schwab <schwab@linux-m68k.org>
18
19 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
20
763237c4
SS
212011-12-13 Sam Steingold <sds@gnu.org>
22
23 * man.el (Man-getpage-in-background): When running under a
24 window-system, ignore $MANWIDTH and $COLUMNS.
25
5fc1c122
KH
262011-12-15 Kenichi Handa <handa@m17n.org>
27
28 * language/ethio-util.el: Change coding tag to utf-8-emacs.
29 (setup-ethiopic-environment-internal): Comment out key-binding for
30 ethio-toggle-punctuation.
31
13d49cbb
AM
322011-12-13 Alan Mackenzie <acm@muc.de>
33
898169a2
AM
34 Add the switch statement to AWK Mode.
35
36 * progmodes/cc-awk (awk-font-lock-keywords): Add "switch", "case",
37 "default" to the keywords regexp.
38
39 * progmodes/cc-langs (c-label-kwds): Let AWK take the same
40 expression as the rest.
41 (c-nonlabel-token-key): Allow string literals for AWK. Refactor
42 for the other modes.
43
13d49cbb
AM
44 Large brace-block initialisation makes CC Mode slow: Fix.
45 Tidy up and accelerate c-in-literal, etc. by using the
46 c-parse-state
47 routines. Limit backward searching in c-font-lock-enclosing.decl.
48
49 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
50 pp-state and literal type in addition to the limits.
51 (c-state-safe-place): New defun, extracted from
52 c-state-literal-at.
53 (c-state-literal-at): Use the above new defun.
54 (c-slow-in-literal, c-fast-in-literal): Removed.
55 (c-in-literal, c-literal-limits): Amended to use
56 c-state-pp-to-literal.
57
58 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
59 being in a literal. Add a limit for backward searching.
60
61 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
62 c-slow-in-literal.
63
15e0efc7
SM
642011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
65
66 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
67
454592a6
MR
682011-12-13 Martin Rudalics <rudalics@gmx.at>
69
70 * window.el (delete-other-windows): Use correct frame in call to
71 window-with-parameter.
72
87393f26
DP
732011-12-12 Daniel Pfeiffer <occitan@t-online.de>
74
75 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
76 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
77 (makefile-gmake-statements, makefile-makepp-statements):
78 Use it and add new makepp keywords.
79 (makefile-makepp-font-lock-keywords): Add new patterns.
80 (makefile-match-function-end): Match new [...] and [[...]].
81
11636b22
JB
822011-12-11 Juanma Barranquero <lekktu@gmail.com>
83
84 * ses.el (ses-call-printer-return, ses-cell-property-get)
85 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
86 (ses-create-cell-variable, ses-reset-header-string)
87 (ses-cell-set-formula, ses-repair-cell-reference-all)
88 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
89 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
90 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
91 (ses-aset-with-undo, ses-load, ses-truncate-cell)
92 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
93 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
94 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
95 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
96 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
97 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
98 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
99 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
100
cf018193
VB
1012011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
102
103 * ses.el: The overall change is to add cell renaming, that is
104 setting fancy names for cell symbols other than name matching
105 "\\`[A-Z]+[0-9]+\\'" regexp .
106 (ses-create-cell-variable): New defun.
107 (ses-relocate-formula): Relocate formulas only for cells the
108 symbols of which are not renamed, i.e. symbols whose names do not
109 match regexp "\\`[A-Z]+[0-9]+\\'".
110 (ses-relocate-all): Relocate values only for cells the symbols of
111 which are not renamed.
112 (ses-load): Create cells variables as the (ses-cell ...) are read,
113 in order to check row col consistency with cell symbol name only
114 for cells that are not renamed.
115 (ses-replace-name-in-formula): New defun.
116 (ses-rename-cell): New defun.
117
ee957461
CY
1182011-12-11 Chong Yidong <cyd@gnu.org>
119
120 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
121 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
122
9a9e9ef0
MR
1232011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
124
125 * window.el (other-window): Fix docstring.
126
92a8eba5
EZ
1272011-12-10 Eli Zaretskii <eliz@gnu.org>
128
129 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
130 `from' or `to' address before taking its substring. Fixes
131 incorrect display in Rmail summary buffer whereby an RFC2047
132 encoded name is chopped in the middle of the encoded string, and
133 thus displayed encoded.
134
e152e577
JB
1352011-12-10 Juanma Barranquero <lekktu@gmail.com>
136
137 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
138
e5d84bfe
EZ
1392011-12-10 Eli Zaretskii <eliz@gnu.org>
140
141 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
142 to use texinfo-update-node and commands that call it if the
143 Texinfo file uses @node lines without next/prev/up pointers.
b8830d28 144 Correct outdated description about texinfo-master-menu.
e5d84bfe
EZ
145 (texinfo-all-menus-update, texinfo-master-menu)
146 (texinfo-update-node, texinfo-every-node-update)
147 (texinfo-multiple-files-update): Doc fix. Warn against updating
148 all the @node lines.
149 (texinfo-master-menu): Only call texinfo-update-node if the prefix
b8830d28
EZ
150 argument is numeric. Explain better in the doc string what the
151 function really does.
152 (texinfo-insert-master-menu-list): Improve the error message
153 displayed if there's no menu in the Top node.
154 (Bug#2975) See also this thread:
e5d84bfe
EZ
155 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
156
1d84e9bb
MG
1572011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
158
159 * speedbar.el (speedbar-supported-extension-expressions):
160 Add .adb and .ads, commonly used for Ada source code (bug#10256).
161
382c953b
JB
1622011-12-09 Juanma Barranquero <lekktu@gmail.com>
163
164 * printing.el (pr-mode-alist):
165 * simple.el (filter-buffer-substring-functions)
166 (completion-list-insert-choice-function):
167 * window.el (window-with-parameter, window-atom-root)
168 (window-sides-slots, window-size-fixed, window-min-delta)
169 (window-max-delta, window--resize-mini-window)
170 (window--resize-child-windows-normal, window-tree)
171 (delete-other-windows, quit-window, split-window)
172 (display-buffer-record-window, special-display-buffer-names)
173 (special-display-regexps, special-display-popup-frame)
174 (same-window-p, split-window-sensibly)
175 (display-buffer-overriding-action, display-buffer-alist)
176 (display-buffer-base-action, display-buffer, switch-to-buffer)
177 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
178 (fit-window-to-buffer, recenter-positions)
179 (mouse-autoselect-window-state, mouse-autoselect-window-select):
180 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
181 and remove unneeded backslashes in docstrings.
182
39c9faef
SM
1832011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
184
98449af8
SM
185 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
186
39c9faef
SM
187 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
188 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
189 end in ".mk".
190 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
191 when reading the makefile (bug#10116).
192
86ed9fdc
SM
1932011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
194
195 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
196 (bug#10116).
197
5580f89d
GM
1982011-12-06 Glenn Morris <rgm@gnu.org>
199
200 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
201
28d3917c
CY
2022011-12-06 Chong Yidong <cyd@gnu.org>
203
204 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
205
a98edce9
JB
2062011-12-06 Juanma Barranquero <lekktu@gmail.com>
207
208 * textmodes/table.el (table-shorten-cell): Fix typo.
209
e65adfac
CG
2102011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
211
212 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
213
71cc0b74
EZ
2142011-12-05 Eli Zaretskii <eliz@gnu.org>
215
216 * descr-text.el (describe-char): Fix display of strong
217 right-to-left characters and directional embeddings and overrides.
218
219 * simple.el (what-cursor-position): Fix display of codepoints of
220 strong right-to-left characters.
221
315bc30d
CY
2222011-12-05 Chong Yidong <cyd@gnu.org>
223
224 * faces.el (read-color): Doc fix.
225
58a70b94
GM
2262011-12-05 Glenn Morris <rgm@gnu.org>
227
228 * align.el (align--set-marker): Add doc-string.
229 Don't try to move something that is not a marker. (Bug#10216)
230
5158face
GM
2312011-12-04 Glenn Morris <rgm@gnu.org>
232
233 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
234 overly zealous deletion of trailing whitespace.
235
520fca41
JB
2362011-12-04 Juanma Barranquero <lekktu@gmail.com>
237
238 * server.el (server-delete-client): On Windows, do not try to delete
239 the only terminal.
240 (server-process-filter): On Windows, treat requests for a tty frame as
241 if they were for a GUI frame if the running server is in GUI mode.
242
5e605a2e
GM
2432011-12-03 Glenn Morris <rgm@gnu.org>
244
245 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
246
5c3fe83f
SM
2472011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
248
6f5e57e7
SM
249 * electric.el: Streamline electric-indent's hook.
250 (electric-indent-chars): Revert to simple list.
251 (electric-indent-functions): New var.
252 (electric-indent-post-self-insert-function): Use it.
253
5c3fe83f
SM
254 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
255 there's no inferior buffer (bug#10196).
256 (prolog-consult-compile): Don't use toggle-read-only.
257
6bdac736
MA
2582011-12-02 Michael Albinus <michael.albinus@gmx.de>
259
260 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
261 interrupt. (Bug#10187)
262
6131ba7f
SM
2632011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
264
99c79fee
SM
265 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
266 (bug#9160).
267
6131ba7f
SM
268 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
269 (bug#10191).
270
cb0a02ea
JL
2712011-12-02 Juri Linkov <juri@jurta.org>
272
273 * info.el (Info-search): Display "end of manual" when Isearch
274 reaches the end of single-file Info manual. (Bug#9918)
275
66e0570c
EZ
2762011-12-02 Eli Zaretskii <eliz@gnu.org>
277
278 * isearch.el (isearch-message-prefix): Run the input method part
279 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
280
02b16839
JL
2812011-12-02 Juri Linkov <juri@jurta.org>
282
283 * isearch.el (isearch-occur): Use `word-search-regexp' for
284 `isearch-word'.
285 (isearch-search-and-update): Add condition for `isearch-word' and
286 call `word-search-regexp'. (Bug#10145)
287
0b950688
GM
2882011-12-01 Glenn Morris <rgm@gnu.org>
289
290 * eshell/em-hist.el (eshell-hist-initialize):
291 Handle eshell-history-size nil and HISTSIZE set or unset.
e8087a76 292 (eshell-history-file-name, eshell-history-size): Fix custom type.
0b950688 293
9505c3c7
SM
2942011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
295
296 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
297
1bbe96b2 2982011-12-01 Michael McNamara <mac@mail.brushroad.com>
6288f0ca 299
a1beca85
SM
300 * progmodes/verilog-mode.el (verilog-pretty-expr):
301 Rework verilog-pretty-expr to handle new assignment operators in system
6288f0ca
WS
302 verilog, such as += *= and the like.
303 (verilog-assignment-operator-re): Regular expression to find the
304 assigment operator in a verilog assignment.
305 (verilog-assignment-operation-re): Regular expression to find an
306 assignment statement for pretty-expr.
307 (verilog-in-attribute-p): Query returns true if point is in an
308 attribute context; used to skip these for expression line up from
309 pretty-expr.
310 (verilog-in-parameter-p): Query returns true if point is in an
311 parameter definition context; used to skip these for expression
312 line up from pretty-expr.
313 (verilog-in-parenthesis-p): Query returns true if point is in a
314 parenthetical expression, specifically ( ) but not [ ] or { };
315 used by pretty-expr.
316 (verilog-just-one-space): If there is no space, don't add one.
317 (verilog-get-lineup-indent-2): Specifically skip just attribute
318 contexts for expression lineup, rather than skipping all
319 parenthetical expressions.
320 (verilog-calculate-indent): Fix comment, and fix indent.
321 (verilog-do-indent): Indent declarations in lists (suggested by
322 Joachim Lechner).
323 (verilog-mode-abbrev-table): Populate abbrev mode with the various
324 skeleton items.
325 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
326 by Alain Mellan).
327
1bbe96b2 3282011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6288f0ca
WS
329
330 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
331 parameters with embedded comments. Reported by Ray Stevens.
332 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
333 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
334 Reported by Tim Holt.
335 (verilog-auto): Fix AUTOing a upper module then AUTOing module
336 instantiated by upper module causing wrong expansion until AUTOed a
337 second time. Reported by K C Buckenmaier.
338 (verilog-diff-auto): Fix showing .* as a difference when
339 `verilog-auto-star-save' off. Reported by Dan Dever.
340 (verilog-auto-reset, verilog-read-always-signals)
341 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
342 temporary signals in reset list if
343 verilog-auto-reset-blocking-in-non is nil, and match assignment
a1beca85
SM
344 style to each signal's assignment type, bug381.
345 Reported by Thomas Esposito.
6288f0ca
WS
346 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
347 (verilog-uvm-statement-re): Support UVM indentation and
348 highlighting, with old OVM keywords only.
a1beca85
SM
349 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
350 Support AUTOTIEOFF creating non-wire data types. Suggested by Jonathan
6288f0ca
WS
351 Greenlaw.
352 (verilog-auto-insert-lisp, verilog-delete-to-paren)
353 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
354 (verilog-inject-sense, verilog-read-inst-pins)
a1beca85
SM
355 (verilog-read-sub-decls, verilog-read-sub-decls-line):
356 Fix mismatching parenthesis inside commented out code when deleting
382c953b 357 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6288f0ca
WS
358 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
359 non-numeric vector width. Reported by Alex Reed.
360 (verilog-auto-ascii-enum): Add "onehot" option to work around not
382c953b 361 detecting signals with parameter widths. Reported by Alex Reed.
a1beca85
SM
362 (verilog-auto-delete-trailing-whitespace):
363 With `verilog-auto-delete-trailing-whitespace' remove trailing
6288f0ca
WS
364 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
365 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
366 Fix verilog-scan-cache corruption when running user AUTO expansion
367 hooks that call indentation routines.
368 (verilog-simplify-range-expression): Fix typo ignoring lower case
369 identifiers.
370 (verilog-delete-auto): Fix delete-autos to also remove user created
371 automatics, as long as they start with AUTO.
372 (verilog-batch-diff-auto, verilog-diff-auto)
373 (verilog-diff-function): Add `verilog-diff-auto' and bind to
374 "C-c?" to report differences in AUTO expansion, ignoring spaces.
375 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
376 (verilog-in-paren-quick, verilog-re-search-backward-quick)
a1beca85
SM
377 (verilog-re-search-forward-quick, verilog-syntax-ppss):
378 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6288f0ca
WS
379 is disabled and its cache will get corrupt, causing AUTOS not to
380 expand. Instead use only -quick functions.
381 (verilog-scan-region): Fix scanning over escaped quotes.
382 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
383 (verilog-re-search-backward-quick)
384 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
385 related functions now ignore strings, to fix misparsing of strings
386 with magic comments embedded in them.
a1beca85
SM
387 (verilog-read-auto-template):
388 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
389 Reported by Brad Dobbie.
390 (verilog-read-auto-template):
391 Fix 'verilog-auto-inst-template-numbers' with comments.
6288f0ca 392 Reported by Brad Dobbie.
6288f0ca
WS
393 (verilog-auto-inst, verilog-auto-inst-param)
394 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
395 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
396 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
a1beca85
SM
397 debugging templates without merge conflicts, bug357.
398 Reported by Brad Dobbie.
399 (verilog-read-auto-template):
400 Fix verilog-auto-inst-template-numbers with multiple templates.
6288f0ca
WS
401 Reported by Brad Dobbie.
402 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
403 abbrevs so user won't be asked to save.
404 (verilog-read-auto-lisp-present): Fix to start at beginning of
405 buffer in case called outside of verilog-auto.
406 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
407 to "X-2". Reported by Matthew Myers.
408 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
409 all inputs from module templates. Reported by Leith Johnson.
410 (verilog-module-inside-filename-p): Fix locating programs as with
411 modules.
412 (verilog-auto-inst-port): Fix vl-width expressions when using
413 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
414 (verilog-decls-get-regs, verilog-decls-get-signals,
415 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
416 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
417 verilog-read-decls): Combine reg and wire structures into one var
418 structure to represent SystemVerilog concepts.
419 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
420 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
a1beca85
SM
421 (verilog-auto-wire-type, verilog-insert-definition):
422 Add verilog-auto-wire-type and AUTOLOGIC to support using
6288f0ca
WS
423 SystemVerilog "logic" keyword instead of "wire"/"reg".
424 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
425 to declares outputs that also have assignments (presumably in an
a1beca85
SM
426 ifdef or generate if so there's not a driver conflict).
427 Reported by Matthew Myers.
428 (verilog-auto-declare-nettype, verilog-insert-definition):
429 Add verilog-auto-declare-nettype to fix declarations using
6288f0ca
WS
430 `default_nettype none. Reported by Julian Gorfajn.
431 (verilog-read-always-signals-recurse, verilog-read-decls)
432 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
433 malformed end statement, bug325. Reported by Joshua Wise and
434 Andrew Drake.
435 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
436 (verilog-inst-comment-re): Fix not deleting Interfaced comment
437 when expanding .* in interfaces, bug320. Reported by Pierre-David
438 Pfister.
439 (verilog-read-module-name): Fix import statements between module
440 name and open parenthesis, bug317. Reported by Pierre-David
441 Pfister.
442 (verilog-simplify-range-expression): Fix simplification of
443 multiplications inside AUTOWIRE connections, bug303.
444 (verilog-auto-inst-port): Support parameter expansion in
445 multidimensional arrays.
446 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
447 after "assert property". Reported by Julian Gorfajn.
448 (verilog-simplify-range-expression): Fix "couldn't merge" errors
449 with multiplication, bug303.
450 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
451 Reported by Jan Frode Lonnum.
452
1bbe96b2
GM
4532011-11-30 Juanma Barranquero <lekktu@gmail.com>
454
455 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
456 (hfy-shell-file-name, hfy-shell):
457 * international/fontset.el (x-decompose-font-name): Fix typos.
458
4592011-11-29 Ken Brown <kbrown@cornell.edu>
460
461 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
462 (gdb-version): Remove defvar.
463 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
464 (gdb-gud-context-command, gdb-non-stop-handler)
465 (gdb-current-context-command, gdb-stopped): Use it.
466 (gdb-init-1): Enable pretty printing here.
6131ba7f
SM
467 (gdb-non-stop-handler): Don't enable pretty-printing here.
468 Check to see if the target supports non-stop mode; if not, turn off
1bbe96b2
GM
469 non-stop mode. Use the following.
470 (gdb-check-target-async): New defun.
471 (gud-watch, gdb-stopped): Fix whitespace.
472 (gdb-get-source-file): Don't try to display the source file if
473 `gdb-main-file' is nil.
474
4752011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
476
477 * align.el: Try to generate fewer markers (bug#10047).
478 (align--set-marker): New macro.
479 (align-region): Use it.
480
c935221f
SM
4812011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
482
483 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
484
e70b5064
CY
4852011-11-29 Chong Yidong <cyd@gnu.org>
486
487 * indent.el (indent-for-tab-command, indent-according-to-mode):
488 Doc fix.
489 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
490
f3af92b7
MA
4912011-11-29 Michael Albinus <michael.albinus@gmx.de>
492
493 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
494 aware of remote file names. (Bug#10124)
495
ed472be9
CY
4962011-11-29 Chong Yidong <cyd@gnu.org>
497
498 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
499
24510c22
SM
5002011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
501
502 * files.el (find-file): Don't use force-same-window (bug#10144).
503 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
504 use pop-to-buffer if the selected window can't be used.
505 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
506
c60c3703
EZ
5072011-11-28 Eli Zaretskii <eliz@gnu.org>
508
509 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
510 special-mode-map.
511
e95def75
CY
5122011-11-28 Chong Yidong <cyd@gnu.org>
513
514 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
515
c3f1c606
NR
5162011-11-27 Nick Roberts <nickrob@snap.net.nz>
517
518 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
519 gdb-get-source-file-list on gdb-create-source-file-list.
520
00db469c
EZ
5212011-11-26 Eli Zaretskii <eliz@gnu.org>
522
523 * whitespace.el (whitespace-newline): Use a different foreground
524 color for 16-color light-background displays.
525
4ad3bc2a
CY
5262011-11-24 Chong Yidong <cyd@gnu.org>
527
528 * window.el (display-buffer--special-action): Doc fix.
529
e9fce1ac
JB
5302011-11-25 Juanma Barranquero <lekktu@gmail.com>
531
532 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
533 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
534 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
535 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
536 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
537 (avl-tree-stack-first):
538 * emacs-lisp/cconv.el (cconv--analyse-use):
539 * net/gnutls.el (gnutls-negotiate): Fix typos.
540
cb825e5d
GM
5412011-11-24 Glenn Morris <rgm@gnu.org>
542
3adbe224
GM
543 * lpr.el (lpr-windows-system, lpr-lp-system):
544 * mail/binhex.el (binhex-begin-line):
545 * progmodes/grep.el (grep-history, grep-find-history):
546 * textmodes/flyspell.el:
547 * vc/pcvs-defs.el (cvs-global-menu):
548 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
549 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
550 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
551
321decc8
GM
552 * net/tls.el: Fix case of "GnuTLS".
553
420b63ad
GM
554 * paths.el (rmail-file-name): Format doc-string for make-docfile.
555
cb825e5d
GM
556 * version.el (emacs-build-system): Give it a doc-string.
557
a0649f08
JL
5582011-11-24 Juri Linkov <juri@jurta.org>
559
560 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
561
c0bc0fd4
GM
5622011-11-24 Glenn Morris <rgm@gnu.org>
563
564 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
565 if called on a non-mime message just toggle the headers. (Bug#8006)
566
20db1522
JB
5672011-11-24 Juanma Barranquero <lekktu@gmail.com>
568
569 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
570 (allout-lead-with-comment-string, allout-structure-deleted-hook)
571 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
572 (allout-rebullet-heading, allout-open-sibtopic)
573 (allout-toggle-current-subtree-encryption)
574 (allout-toggle-subtree-encryption, allout-encrypt-string)
575 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
576 (allout-distinctive-bullets-string, allout-auto-activation):
577 * window.el (window-normalize-buffer-to-display):
578 * progmodes/verilog-mode.el (verilog-batch-indent):
579 * textmodes/bibtex.el (bibtex-field-braces-opt)
580 (bibtex-field-strings-opt):
581 * vc/cvs-status.el (cvs-tree-merge):
582 Fix typos.
583
7262a87c
MA
5842011-11-23 Michael Albinus <michael.albinus@gmx.de>
585
586 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
587 `non-essential' to t, in order to avoid remote connections.
588
283430a1
EZ
5892011-11-23 Eli Zaretskii <eliz@gnu.org>
590
a1beca85
SM
591 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
592 On MS-DOS and MS-Windows, compare with loaddefs.el
283430a1
EZ
593 case-insensitively.
594
d2992a38
ML
5952011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
596
597 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
598
50419064
GM
5992011-11-23 Glenn Morris <rgm@gnu.org>
600
da94eca1
GM
601 * paths.el (rmail-file-name): Reformat the doc-string so that it
602 is picked up.
603
9aac4de2
GM
604 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
605 (rmail-auto-file): Ignore case in the "special" field names,
606 as mail-fetch-field does for all others.
607
8038d2d2
GM
608 * mail/rmail.el (rmail-forward):
609 * mail/rmailkwd.el (rmail-set-label):
610 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
611 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
612
f3fe222a
GM
613 * mail/rmail.el (rmail-current-message): Doc fix.
614
50419064
GM
615 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
616
28109f49
SM
6172011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
618
619 * server.el (server-eval-and-print): Allow C-g (bug#6585).
620
394c65f1
GM
6212011-11-22 Glenn Morris <rgm@gnu.org>
622
623 * mail/rmailmm.el (test-rmail-mime-handler)
624 (test-rmail-mime-bulk-handler)
625 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
626
f2a0aa3a
JL
6272011-11-21 Juri Linkov <juri@jurta.org>
628
629 * calc/calc.el (calc-read-key-sequence): Let-bind `input-method-function'
630 to nil. (Bug#10018)
631
9c34a344
LMI
6322011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
633
634 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
635 Tell the caller that the next line needs recomputation, even
636 though it doesn't start a sexp (bug#10094).
637
f04a3be9
SM
6382011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
639
640 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
641
7978747f
SM
6422011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
643
f04a3be9
SM
644 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
645 Use force-same-window.
7978747f 646
fe7a3057
JB
6472011-11-20 Juanma Barranquero <lekktu@gmail.com>
648
649 * descr-text.el (describe-char-unicode-data):
650 * json.el (json-string-escape):
651 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
652 (Footnote-unicode, Footnote-style-p):
653 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
654
24901d61
CY
6552011-11-20 Chong Yidong <cyd@gnu.org>
656
657 * window.el (replace-buffer-in-windows): Restore interactive spec.
658
bac7ff22
SM
6592011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
660
24f3d7b9
SM
661 * electric.el (electric-indent-mode): Fix last change (too optimistic).
662
bac7ff22
SM
663 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
664 (byte-compile-global-not-obsolete-vars): New var.
665 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
666 Use it.
667 (byte-compile-warn-obsolete): Align text with the one in *Help*.
668
cd1181db
JB
6692011-11-20 Juanma Barranquero <lekktu@gmail.com>
670
671 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
672 * progmodes/pascal.el (electric-pascal-equal):
673 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
674 * xml.el (xml-substitute-special): Fix typos.
675
7fb18e9e
GM
6762011-11-20 Glenn Morris <rgm@gnu.org>
677
678 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
679 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
680 Doc fixes.
681 (rmail-decode-mime-charset): Mark as obsolete.
682
683 * mail/rmailsum.el (rmail-message-regexp-p-1):
684 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
685 Before using mime functions, check they are set. (Bug#10077)
686
d5a6b3ba
JL
6872011-11-19 Juri Linkov <juri@jurta.org>
688
689 * info.el (Info-finder-find-node): Use `package--builtins' instead
690 of `package-alist'. Use node names formed by the pattern "Keyword "
691 and the keyword name.
692
e981b61f
AS
6932011-11-19 Andreas Schwab <schwab@linux-m68k.org>
694
695 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for
696 bash.
697
3ffbc301
JL
6982011-11-19 Juri Linkov <juri@jurta.org>
699
700 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
701 that calls `revert-buffer' on all Info buffers. (Bug#9915)
702 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
703 `old-history', `old-history-forward'. Add let-binding
704 `window-selected'. Remove calls to `kill-buffer',
705 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
706 before calling `Info-find-node', so `Info-find-node-2' will reread
707 the Info file. Restore window positions only when `window-selected'
708 is non-nil.
709
30c62133
JL
7102011-11-19 Juri Linkov <juri@jurta.org>
711
712 * isearch.el (isearch-lazy-highlight-new-loop):
713 Remove condition `(not isearch-error)'. (Bug#9918)
714
715 * misearch.el (multi-isearch-search-fun): Add condition
716 `(not bound)' to ignore lazy-highlighting search.
717 Add the search-failed message "end of multi" when the end of
718 multi-sequence is reached. Uncapitalize the search-failed
719 message "Repeat for next buffer".
720
721 * info.el (Info-search): Add the search-failed message
722 "end of the manual" when the end of the manual is reached
723 in Isearch mode.
724
645ca9cf
JL
7252011-11-19 Juri Linkov <juri@jurta.org>
726
727 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
728 Use non-destructive `remove' instead of `delete' because
729 `Info-history-list' stored to `Info-isearch-initial-history-list' in
730 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
731
df754f66
JL
7322011-11-19 Juri Linkov <juri@jurta.org>
733
734 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
735 to nil instead of binding `search-ring' and `regexp-search-ring'.
736 (Bug#9185)
737
0e23d96a
EZ
7382011-11-19 Eli Zaretskii <eliz@gnu.org>
739
740 * simple.el (line-move): Force movement by logical lines for any
741 hscrolled window, not only when auto-hscroll-mode is on.
742 (line-move-visual): Update doc string to that effect. (Bug#10076)
743
8a6ccb66
AS
7442011-11-19 Andreas Schwab <schwab@linux-m68k.org>
745
746 * language/european.el (macintosh): Define as alias for mac-roman.
747
49ae5b39
EZ
7482011-11-19 Eli Zaretskii <eliz@gnu.org>
749
750 * mail/rmailmm.el (rmail-mime-display-header)
751 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
752 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
753 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
754 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
755 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
756 of a raw aref.
757 (rmail-mime-entity-segment): To get past the tagline, move forward
758 2 more lines, to account for the 2 empty lines that precede and
759 follow the line with the buttons.
760 (rmail-mime-update-tagline): Move one more line, to get past the
761 empty line that follows the buttons in the tagline. (Bug#9520)
762
c56cad4a
MR
7632011-11-19 Martin Rudalics <rudalics@gmx.at>
764
765 * window.el (window-max-delta-1, window-min-delta-1)
766 (window-min-size-1, window-state-get-1, window-state-put-1)
767 (window-state-put-2): Use "window--" prefix.
768
cbe71af3
SM
7692011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
770
2ad52c60
SM
771 * emacs-lisp/smie.el: Improve warnings and conflict detection.
772 (smie-warning-count): New var.
773 (smie-set-prec2tab): Use it.
774 (smie-bnf->prec2): Improve warnings. Add docstring.
775 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
776 (smie-bnf--set-class): New function.
777 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
778 corner case.
779
6944dbc1
SM
780 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
781 (compilation-error-properties, compilation-move-to-column):
782 Handle compilation-first-column while in the target buffer.
783
c400c4d7
SM
784 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
785 Don't hardcode point-min==1.
786
6dbe3e96
SM
787 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
788 (eshell-rewrite-for-command): Remove workaround.
789 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
790 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
791 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
792
cbe71af3
SM
793 * files-x.el (modify-file-local-variable): Obey commenting conventions.
794
a8e1496d
GM
7952011-11-17 Glenn Morris <rgm@gnu.org>
796
797 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
798 Ignore buffer-local generated-autoload-file if it is the same
799 as the global value. (Bug#10049)
800
df85d315
JB
8012011-11-17 Juanma Barranquero <lekktu@gmail.com>
802
803 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
804 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
805 (reftex-toc-previous-heading, reftex-toc-max-level)
806 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
807 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
808 (reftex-toc-do-promote, reftex-toc-promote-prepare)
809 (reftex-toc-promote-action, reftex-toc-extract-section-number)
810 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
811 (reftex-toc-rename-label, reftex-toc-visit-location)
812 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
813 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
814 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
815 leaving "*toc*" only for references to the buffer.
816
a0c2d0ae
MR
8172011-11-17 Martin Rudalics <rudalics@gmx.at>
818
819 * window.el (window-resize, delete-window, split-window):
820 Replace window-splits by window-combination-resize.
821 * cus-start.el (window-splits): Replace by
822 window-combination-resize.
823
35c0bac8
GM
8242011-11-17 Glenn Morris <rgm@gnu.org>
825
826 * progmodes/sh-script.el (sh-font-lock-keywords-var):
827 Make bash entry derive from sh entry, not shell entry.
828
d0c8fc8a
MA
8292011-11-16 Michael Albinus <michael.albinus@gmx.de>
830
d0c8fc8a
MA
831 * net/tramp-cache.el (tramp-flush-file-property): Flush also
832 properties of linked files. (Bug#9879)
833
7262a87c
MA
834 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
835 local file name.
836
7877f373
JB
8372011-11-16 Juanma Barranquero <lekktu@gmail.com>
838
839 * menu-bar.el (menu-bar-file-menu):
840 * printing.el (pr-ps-utility):
841 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
842 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
843 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
844 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
845 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
846 (icalendar--convert-cyclic-to-ical)
847 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
848 (icalendar--convert-ical-to-diary)
849 (icalendar--convert-recurring-to-diary)
850 (icalendar--convert-non-recurring-all-day-to-diary)
851 (icalendar-import-format-sample):
852 * progmodes/idlw-shell.el (idlwave-shell-mode):
853 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
854 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
855 (vhdl-ps-print-init): Fix typos.
856
10649b82
KM
8572011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
858
9d0cfcd6
GM
859 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
860 FSF and collapse date sequence, obscure author/maintainer email address
861 better, remove extra version line, track relocation of author's webpage.
10649b82 862
9d0cfcd6
GM
863 * progmodes/python.el (python-pdbtrack-input-prompt)
864 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
865 regular python pdb prompts. Adjustments shamelessly taken exactly as
866 suggested in EmacsWiki page (tiny change):
867 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8642c216 868
58179cce
JB
8692011-11-16 Juanma Barranquero <lekktu@gmail.com>
870
871 * expand.el (expand-pos, expand-index, expand-point):
872 Remove redundant info from docstring.
873 (expand-add-abbrevs): Doc fix.
874 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
875 (expand-sample-perl-mode-expand-list): Fix typos.
876
877 * net/dbus.el (dbus-event-member-name):
878 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
879 * term/pc-win.el (msdos-create-frame-with-faces):
880 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
881
b6f67890
MR
8822011-11-16 Martin Rudalics <rudalics@gmx.at>
883
884 * window.el (split-window, window-state-get-1)
885 (window-state-put-1, window-state-put-2): Rename occurrences of
886 window-nest to window-combination-limit.
887 * cus-start.el (window-nest): Rename to
888 window-combination-limit.
889
ce7ddba0
CY
8902011-11-16 Chong Yidong <cyd@gnu.org>
891
892 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
893 regexp (Bug#10033).
894
3ae704f4
SM
8952011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
896
897 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
898 `completing-read' will remove *Completions* and will preserve
899 current-buffer for us.
900 (tmm-add-prompt): Users of *Completions* will always (re)set its
901 major mode.
902 (tmm-old-comp-map): Remove.
903
6ad1cdde
GM
9042011-11-16 Glenn Morris <rgm@gnu.org>
905
906 * mail/rmailedit.el: Require rmailmm when compiling.
907 (rmail-old-mime-state): New declaration.
908 (rmail-edit-current-message): If editing a mime message,
909 edit the "raw" message from the mbox buffer.
910 (rmail-cease-edit): Handle mime messages. (Bug#9840)
911
d20faa20
GM
9122011-11-15 Glenn Morris <rgm@gnu.org>
913
914 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
915 which wasn't being used. Add optional arg to force given state.
916 (rmail-mime): Add optional arg to force given state.
917
c7015153
JB
9182011-11-15 Juanma Barranquero <lekktu@gmail.com>
919
920 * allout.el (allout-encryption-plaintext-sanitization-regexps):
921 * frame.el (display-mm-dimensions-alist):
922 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
923 (outline-move-subtree-down):
924 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
925 (newsticker--treeview-do-get-node):
926 * net/quickurl.el (quickurl-list-buffer-name):
927 * progmodes/dcl-mode.el (dcl-mode):
928 * progmodes/gdb-mi.el (gdb-mapcar*):
929 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
930
45261b50
GM
9312011-11-15 Glenn Morris <rgm@gnu.org>
932
933 * mail/rmail.el (rmail-file-coding-system): It's only ever used
934 in a boolean sense, so just make it a boolean, and fix the doc.
935 (rmail-show-mime-function, rmail-mime-feature)
936 (rmail-require-mime-maybe): Doc fixes.
937 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
938
939 * mail/rmailmm.el (rmail-show-mime): Doc fix.
940
0d26e0b6
JB
9412011-11-15 Juanma Barranquero <lekktu@gmail.com>
942
943 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
944 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
945 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
946 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
947
447f30f6
GM
9482011-11-15 Glenn Morris <rgm@gnu.org>
949
672b871d
GM
950 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
951 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
952 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
953 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
954 (rmail-mime, rmail-show-mime): Doc fixes.
955
f6aa5bb1
GM
956 * term/ns-win.el (mode-line-frame-identification):
957 Leave it alone. (Bug#10051)
958
947cd66b
GM
959 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
960
447f30f6
GM
961 * mail/rmailout.el (rmail-output-to-rmail-buffer):
962 Handle empty buffers. (Bug#9978)
963
0b381c7e
JB
9642011-11-14 Juanma Barranquero <lekktu@gmail.com>
965
966 * international/mule.el (define-charset):
967 * mail/rmailmm.el (rmail-mime-find-header-encoding):
968 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
969 * progmodes/verilog-mode.el (verilog-backward-token):
970 * textmodes/ispell.el (lookup-words):
971 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
972
71e027ac
GM
9732011-11-14 Glenn Morris <rgm@gnu.org>
974
56632ce4
GM
975 * progmodes/executable.el
976 (executable-make-buffer-file-executable-if-script-p):
977 Handle file-modes returning nil.
978
40500957
GM
979 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
980 message - not necessary, and causes problems. (Bug#9831)
981
071c2340
GM
982 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
983
d3cfca60
GM
984 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
985
71e027ac
GM
986 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
987 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
988 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
989
89d61221
MR
9902011-11-12 Martin Rudalics <rudalics@gmx.at>
991
992 * window.el (window-resize, delete-window): Use window-splits
993 variable instead of function.
994 (window-state-get-1, window-state-put-2, window-state-put):
995 Don't deal with windows' splits status.
996
98282f6f
GM
9972011-11-12 Glenn Morris <rgm@gnu.org>
998
999 * apropos.el (apropos-do-all, apropos-library, apropos-value)
1000 (apropos-documentation): Doc fixes.
1001
40a8bdf6
JB
10022011-11-11 Juanma Barranquero <lekktu@gmail.com>
1003
1004 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
1005 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
1006
65bd19ff
SM
10072011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
1008
1009 * electric.el (electric-indent-post-self-insert-function): Make it
1010 possible for a char to only indent in some circumstances.
1011 (electric-indent-mode): Simplify.
1012
54f9154c
MR
10132011-11-11 Martin Rudalics <rudalics@gmx.at>
1014
1015 * window.el (windows-with-parameter): Remove unused function.
1016 (windows-at-side): Rename to window-at-side-list.
1017 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
1018 (window-side-check, window-size-ignore, window-size-fixed-1)
1019 (window-in-direction-2): Prefix with "window--".
1020 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 1021
68cbc58b
GM
10222011-11-11 Glenn Morris <rgm@gnu.org>
1023
1024 * subr.el (eval-after-load): If FILE is already loaded,
1025 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
1026
b2621720
GM
10272011-11-10 Glenn Morris <rgm@gnu.org>
1028
9a4de110
GM
1029 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
1030 Call svn via vc-svn-command rather than vc-do-command.
1031 (vc-svn-command): Add --non-interactive. (Bug#9993)
1032 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
1033
b2621720
GM
1034 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
1035 Add toggle-read-only. (Bug#7292)
1036 * files.el (toggle-read-only): Mention that it should only
1037 be used interactively. (Bug#10006)
1038
1dce7193
SM
10392011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1040
d9ac1a1e
SM
1041 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1042 Adjust regexp for OCaml warnings.
1043
0c325082
SM
1044 * electric.el (electric-pair-post-self-insert-function): Let user
1045 turn it off buffer-locally (bug#9932).
1046
90132c14
SM
1047 * progmodes/python.el (python-beginning-of-statement):
1048 Rewrite (bug#2703).
1049
1dce7193
SM
1050 * progmodes/compile.el: Better handle TABs (bug#9749).
1051 (compilation-internal-error-properties)
1052 (compilation-next-error-function): Obey the target buffer's
1053 compilation-error-screen-columns.
1054
c4e7c63a
JB
10552011-11-09 Juanma Barranquero <lekktu@gmail.com>
1056
1057 * progmodes/meta-mode.el: Remove obsolete comments.
1058 (meta-right-comment-regexp, meta-ignore-comment-regexp):
1059 Fix typos in docstrings.
1060
2cffd681
MR
10612011-11-09 Martin Rudalics <rudalics@gmx.at>
1062
1063 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 1064 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
1065 (window--resizable): New function. Make all callers of
1066 window-resizable call window--resizable instead.
1067 (window-resizable): Rewrite in terms of window--resizable.
1068
0edcba87
GM
10692011-11-08 Glenn Morris <rgm@gnu.org>
1070
1071 * progmodes/delphi.el (delphi-mode-syntax-table):
1072 Let define-derived-mode define a proper syntax table. (Bug#9994)
1073
4b0d61e3
SM
10742011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1075
1076 * window.el: Stay away from defsubst.
1077 (window-list-no-nils): Remove.
1078 (window-state-get-1, window-state-get): Use backquote instead.
1079
fcbcac2e 10802011-11-08 thierry <thierry.volpiatto@gmail.com>
1081
4b0d61e3 1082 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 1083 Fix incorrect use of default argument in `completing-read'.
1084
e1c2c6f2
MR
10852011-11-08 Martin Rudalics <rudalics@gmx.at>
1086
1087 * window.el (display-buffer-function, special-display-function):
1088 Mention display-buffer-record-window but do not mention
1089 help-setup parameter in doc-strings.
b3f4a882 1090 (window-min-delta): Fix doc-string typo.
e1c2c6f2 1091
105216ed
CY
10922011-11-08 Chong Yidong <cyd@gnu.org>
1093
1094 * window.el (window-total-height, window-total-width): Doc fix.
1095 (window-body-size): Move from C.
1096 (window-body-height, window-body-width): Move to C.
1097
0a9f9ab5
SM
10982011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1099
1100 * window.el: Make special-display like display-buffer-alist (bug#9532).
1101 (display-buffer--special-action): New function, morphed
1102 from display-buffer--special.
1103 (display-buffer): Use it to handle special-display-buffers at higher
1104 priority (just after display-buffer-alist).
1105 (display-buffer-fallback-action, display-buffer--other-frame-action)
1106 (pop-to-buffer-same-window): Remove display-buffer--special.
1107
a769dd15
GM
11082011-11-07 Glenn Morris <rgm@gnu.org>
1109
1110 * calendar/cal-menu.el (cal-menu-set-date-title):
1111 Do nothing if not in a calendar. (Bug#9976)
1112
05a61ee3
SM
11132011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
1114
1115 * files.el (find-file): Always use selected-window.
1116
be7f5545
MR
11172011-11-07 Martin Rudalics <rudalics@gmx.at>
1118
1119 * window.el (window-combinations): Make WINDOW argument
1120 mandatory. Rewrite doc-string.
1121 (walk-window-subtree, window-atom-check, window-min-delta)
1122 (window-max-delta, window--resize-this-window)
1123 (window--resize-root-window-vertically, window-tree)
1124 (balance-windows, window-state-put): Rewrite doc-strings as to
1125 not mention the term "subwindow".
1126 (window--resize-subwindows-skip-p): Rename to
1127 window--resize-child-windows-skip-p.
1128 (window--resize-subwindows-normal): Rename to
1129 window--resize-child-windows-normal.
1130 (window--resize-subwindows): Rename to
1131 window--resize-child-windows.
1132 (window-or-subwindow-p): Rename to window--in-subtree-p.
1133
3c6702ef
ML
11342011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
1135
1136 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
1137 Ensure that mbox format messages end in two newlines (Bug#9974).
1138
49745b39
CY
11392011-11-06 Chong Yidong <cyd@gnu.org>
1140
1141 * window.el (window-combination-p): Function deleted; its
1142 side-effect is not used in any existing code.
1143 (window-combinations, window-combined-p): Call window-*-child
1144 directly.
1145
24300f5f
CY
11462011-11-05 Chong Yidong <cyd@gnu.org>
1147
1148 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
1149 (window-size-ignore, window-state-get): Callers changed.
1150 (window-normalize-window): Rename from window-normalize-any-window.
1151 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 1152 (window-normalize-live-window): Delete.
447f16b8
CY
1153 (window-combination-p, window-combined-p, window-combinations)
1154 (walk-window-subtree, window-atom-root, window-min-size)
1155 (window-sizable, window-sizable-p, window-size-fixed-p)
1156 (window-min-delta, window-max-delta, window-resizable)
1157 (window-resizable-p, window-full-height-p, window-full-width-p)
1158 (window-current-scroll-bars, window-point-1, set-window-point-1)
1159 (window-at-side-p, window-in-direction, window-resize)
1160 (adjust-window-trailing-edge, maximize-window, minimize-window)
1161 (window-deletable-p, delete-window, delete-other-windows)
1162 (record-window-buffer, unrecord-window-buffer)
1163 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
1164 (quit-window, split-window, window-state-put)
1165 (set-window-text-height, fit-window-to-buffer)
1166 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 1167
89bd5ee1
EZ
11682011-11-04 Eli Zaretskii <eliz@gnu.org>
1169
53479029
EZ
1170 * mail/rmail.el (rmail-simplified-subject): Decode subject with
1171 rfc2047-decode-string.
1172 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
1173 warnings.
1174
89bd5ee1
EZ
1175 * window.el (window-body-height, window-body-width): Mention in
1176 the doc string that the return values are in frame's canonical
1177 units. (Bug#9949)
1178
bd17fdee
AM
11792011-11-03 Alan Mackenzie <acm@muc.de>
1180
1181 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
1182 change in cc-engine.el.
1183
acc825c5
SM
11842011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
1185
1186 * window.el (switch-to-buffer): Use `force-same-window' interactively.
1187
1885e5b8
MR
11882011-11-02 Martin Rudalics <rudalics@gmx.at>
1189
1190 * window.el (quit-window): Call unrecord-window-buffer after
1191 showing another buffer in the window. (Bug#9937)
acc825c5 1192 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 1193
ebe06da9
JB
11942011-11-02 Juanma Barranquero <lekktu@gmail.com>
1195
1196 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
1197 Accept status with more than 9 shelves. (Bug#9935)
1198 Reported by Colin D Bennett <colin@gibibit.com>.
1199
4ee88440
MR
12002011-11-01 Martin Rudalics <rudalics@gmx.at>
1201
1202 * help.el (with-help-window): Don't reference
1203 temp-buffer-show-specifiers in doc-string.
1204
08e1d82c
AS
12052011-10-31 Andreas Schwab <schwab@linux-m68k.org>
1206
1207 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
1208 menu-item.
1209
84bd6e9e
VJL
12102011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1211
1212 * whitespace.el: New version 13.2.2.
1213 (whitespace-newline-mode): Disable properly. Reported by Sarah
1214 <EmacsWiki>.
1215
dba0634a
UJ
12162011-10-30 Ulf Jasper <ulf.jasper@web.de>
1217
1218 * net/newst-treeview.el: Remove "Time-stamp".
1219 (newsticker--group-manage-orphan-feeds): Do not call
1220 newsticker--treeview-tree-update.
db22a3c2
JB
1221 (newsticker-treeview-update, newsticker-treeview):
1222 Call newsticker--treeview-tree-update if necessary.
dba0634a 1223
3d8daefe
MR
12242011-10-30 Martin Rudalics <rudalics@gmx.at>
1225
1226 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
1227 (window-iso-combinations): Remove "iso-" infix.
1228 Suggested by Chong Yidong.
3d8daefe
MR
1229 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
1230 (window-max-delta-1, window-resize, window--resize-siblings)
1231 (window--resize-this-window, adjust-window-trailing-edge)
1232 (split-window, balance-windows-1)
1233 (shrink-window-if-larger-than-buffer):
1234 * calendar/calendar.el (calendar-generate-window):
db22a3c2 1235 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 1236
1bc4c3ae
SM
12372011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
1238
1239 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
1240 in place (bug#9907).
1241 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
1242 (eshell-rewrite-if-command, eshell-rewrite-for-command)
1243 (eshell-structure-basic-command, eshell-rewrite-while-command)
1244 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
1245 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
1246 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
1247 (eshell-do-pipelines-synchronously, eshell-eval-command):
1248 Use backquotes and prefer setq to set.
1249 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
1250 (eshell-macrop): Use functionp.
c1e2f5fa 1251 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 1252
30b65d9c
CY
12532011-10-30 Chong Yidong <cyd@gnu.org>
1254
1255 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
1256 instead of set-mark (Bug#9810).
1257
2d197ffb
CY
12582011-10-30 Chong Yidong <cyd@gnu.org>
1259
1260 * window.el (split-window-below, split-window-right): Rename from
1261 split-window-above-each-other and split-window-side-by-side
1262 respectively. All callers changed.
1263 (split-window-sensibly, split-window-sensibly): Use them.
1264 (split-window-keep-point): Doc fix.
1265
1266 * isearch.el: Add isearch-scroll property to split-window-below
1267 and split-window-right.
1268
1269 * follow.el (follow-mode):
1270 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
1271 * progmodes/ada-xref.el (ada-gdb-application):
1272 * emulation/vip.el (vip-buffer-in-two-windows):
1273 * image-dired.el (image-dired-dired-with-window-configuration):
1274 * dired-x.el (dired-do-find-marked-files):
1275 * dired.el (dired-pop-to-buffer):
1276 * bs.el (bs--show-with-configuration):
1277 * vc/emerge.el (emerge-setup-windows):
1278 * textmodes/two-column.el (2C-two-columns):
1279 * textmodes/reftex-toc.el (reftex-toc):
1280 * progmodes/gdb-mi.el (gdb-setup-windows):
1281 * progmodes/fortran.el (fortran-window-create):
1282 * net/newst-treeview.el (newsticker--treeview-window-init):
1283 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
1284 * emulation/tpu-edt.el (tpu-gold-map):
1285 * emulation/crisp.el (crisp-mode-map):
1286 * calendar/calendar.el (calendar-basic-setup): Callers changed.
1287
38bb2ca8
CY
12882011-10-29 Chong Yidong <cyd@gnu.org>
1289
aa4de341
CY
1290 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
1291
e1eb5385
CY
1292 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
1293
5d2ece3c
CY
1294 * textmodes/flyspell.el (flyspell-word): Fix char offset for
1295 forged Ispell output (Bug#7904).
1296
38bb2ca8
CY
1297 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
1298
d0af9f77
SM
12992011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1300
1301 * doc-view.el: Avoid ugly errors about not finding nil.
1302 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
1303 (doc-view-dvipdf-program, doc-view-unoconv-program)
1304 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
1305 Avoid nil or absolute file name as default value.
1306 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
1307
52bedd34
AM
13082011-10-28 Alan Mackenzie <acm@muc.de>
1309
db22a3c2 1310 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 1311
7e43cfa5
AM
13122011-10-28 Alan Mackenzie <acm@muc.de>
1313
1314 Amend the handling of c-beginning/end-of-defun in nested declaration
1315 scopes.
1316
52bedd34
AM
1317 * progmodes/cc-vars.el (c-defun-tactic): Move here from
1318 cc-langs.el. Change it to a defcustom.
7e43cfa5 1319
52bedd34
AM
1320 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
1321 cc-vars.el.
7e43cfa5 1322
d0af9f77
SM
1323 * progmodes/cc-engine.el (c-beginning-of-statement-1):
1324 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 1325
52bedd34 1326 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 1327 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
1328 (c-widen-to-enclosing-decl-scope): New function.
1329 (c-while-widening-to-decl-block): New macro.
1330 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
1331 outward for defun boundaries, and correspondingly change symbol
1332 `respect-enclosure' to `go-outward'.
1333 (c-declaration-limits): Change algorithm to report only the "innermost"
1334 defun's boundaries.
1335
1a2ce9ee
DD
13362011-10-28 Deniz Dogan <deniz@dogan.se>
1337
1338 * net/rcirc.el (rcirc-mode): Use hard newlines.
1339
bc97a826
AM
13402011-10-28 Alan Mackenzie <acm@muc.de>
1341
1342 Amend to indent and fontify macros "which include their own semicolon"
1343 correctly, using the "virtual semicolon" mechanism.
1344
52bedd34 1345 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 1346
d0af9f77 1347 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7877f373 1348 Recode to scan one line at a time rather than having \n and \r
58179cce 1349 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
bc97a826 1350 (c-forward-label): Amend for virtual semicolons.
58179cce 1351 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
bc97a826 1352
52bedd34
AM
1353 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
1354 of the new C macros.
bc97a826 1355
52bedd34 1356 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
1357 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
1358 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
1359 (c-opt-cpp-macro-define): Make into a full language variable.
1360 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
1361 AWK Mode (including \n, \r) removed, no longer needed.
1362
d0af9f77
SM
1363 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
1364 Invoke c-make-macro-with-semi-re.
bc97a826 1365
52bedd34
AM
1366 * progmodes/cc-vars.el (c-macro-with-semi-re):
1367 (c-macro-names-with-semicolon): New variables.
58179cce 1368 (c-make-macro-with-semi-re): New function.
bc97a826 1369
7a6c0941
SM
13702011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1371
1372 * vc/log-edit.el: Fill empty field rather than adding new one.
1373 (log-edit-add-field): New function.
1374 (log-edit-insert-changelog): Use it.
1375
b0c4cdcf
ML
13762011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
1377
1378 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
1379
ee1f1da9
SM
13802011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1381
1382 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
1383 (gdb--check-interpreter): New function.
1384 (gdb): Use it.
1385
51bc5f8b
GM
13862011-10-27 Glenn Morris <rgm@gnu.org>
1387
416a2c45
GM
1388 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
1389 (least-positive-float, least-negative-float)
1390 (least-positive-normalized-float, least-negative-normalized-float)
1391 (float-epsilon, float-negative-epsilon):
1392 Remove unnecessary declarations.
1393
1394 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
1395 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
1396 (least-positive-float, least-negative-float)
1397 (least-positive-normalized-float, least-negative-normalized-float)
1398 (float-epsilon, float-negative-epsilon): Add doc-strings,
1399 based on those in cl.texi.
1400
51bc5f8b
GM
1401 * files.el (set-visited-file-name): If the major-mode changed,
1402 reload the local variables. (Bug#9796)
1403
15de15c6
CY
14042011-10-27 Chong Yidong <cyd@gnu.org>
1405
1406 * subr.el (change-major-mode-after-body-hook): New hook.
1407 (run-mode-hooks): Run it.
1408
ee1f1da9
SM
1409 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1410 Use change-major-mode-before-body-hook.
15de15c6
CY
1411
1412 * simple.el (fundamental-mode):
1413 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
1414 change introducing fundamental-mode-hook.
1415
5430d399
JB
14162011-10-26 Juanma Barranquero <lekktu@gmail.com>
1417
acc825c5 1418 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 1419
ad74a69e
MA
14202011-10-26 Michael Albinus <michael.albinus@gmx.de>
1421
1422 * ido.el (ido-file-name-all-completions-1): Do not require
c7015153 1423 tramp.el explicitly. (Bug#7583)
ad74a69e 1424
71d4c2a5
SM
14252011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1426
1427 * progmodes/octave-mod.el:
1428 * progmodes/octave-inf.el: Update maintainer.
1429
b1f6fa26
CY
14302011-10-26 Chong Yidong <cyd@gnu.org>
1431
1432 * subr.el (with-wrapper-hook): Rewrite doc.
1433
3f04efd6
MA
14342011-10-25 Michael Albinus <michael.albinus@gmx.de>
1435
1436 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 1437 filenames "/method:foo:". (Bug#9793)
3f04efd6 1438
410488d3
SM
14392011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1440
1441 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
1442 (bug#9865).
1443
c1ebb47e
GM
14442011-10-24 Glenn Morris <rgm@gnu.org>
1445
1446 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
1447
7f5c46c7
MA
14482011-10-24 Michael Albinus <michael.albinus@gmx.de>
1449
1450 * notifications.el: Add the requirement of a running D-Bus session
1451 bus to the Commentary.
1452
db2440b6
JL
14532011-10-24 Juri Linkov <juri@jurta.org>
1454
1455 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
1456 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
1457 (Bug#9364)
1458
feecf435
JL
14592011-10-24 Juri Linkov <juri@jurta.org>
1460
1461 * info.el (Info-following-node-name-re): Add newline to the list
1462 of allowed characters for leading space. (Bug#9824)
1463
a3839de2
SM
14642011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1465
acc825c5
SM
1466 * progmodes/octave-inf.el (inferior-octave-mode-map):
1467 Fix C-c C-h binding.
a3839de2
SM
1468 * progmodes/octave-mod.el (octave-help): Remove.
1469
09388e76
MA
14702011-10-23 Michael Albinus <michael.albinus@gmx.de>
1471
1472 Sync with Tramp 2.2.3.
1473
1474 * net/tramp-cache.el (top): Pacify byte-compiler using
1475 `init-file-user' and `site-run-file'.
1476
1477 * net/trampver.el: Update release number.
1478
86c60681
CY
14792011-10-23 Chong Yidong <cyd@gnu.org>
1480
1481 * files.el (toggle-read-only): Remove obsolete comment about
1482 version control.
1483
1484 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
1485 for toggle-read-only. Note that this hasn't called vc-next-action
1486 since 2008-05-02, though it wasn't documented at the time.
1487
a3839de2
SM
1488 * vc/ediff-init.el (ediff-toggle-read-only-function):
1489 Use toggle-read-only.
86c60681 1490
cd5495ff
AM
14912011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
1492
1493 Fix bug #9560, sporadic wrong indentation; improve instrumentation
1494 of c-parse-state.
1495
00b77525 1496 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 1497 correct faulty logical expression.
cd5495ff
AM
1498 (c-parse-state-state, c-record-parse-state-state):
1499 (c-replay-parse-state-state): New defvar/defuns.
1500 (c-debug-parse-state): Use new functions.
1501
42ee24ed
MR
15022011-10-22 Martin Rudalics <rudalics@gmx.at>
1503
1504 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 1505 last fix. Use window-in-direction correctly.
42ee24ed 1506
a7dee7e7
CY
15072011-10-21 Chong Yidong <cyd@gnu.org>
1508
1509 * progmodes/idlwave.el (idlwave-mode):
1510 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
1511 require-final-newline; that's done in prog-mode.
1512 Suggested by Stefan Monnier.
a7dee7e7 1513
e07b9a6d
MR
15142011-10-21 Martin Rudalics <rudalics@gmx.at>
1515
1516 * mouse.el (mouse-drag-window-above)
1517 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
1518 (mouse-drag-mode-line-1, mouse-drag-header-line)
1519 (mouse-drag-vertical-line-rightward-window): Remove.
1520 (mouse-drag-line): New function.
1521 (mouse-drag-mode-line, mouse-drag-header-line)
1522 (mouse-drag-vertical-line): Call mouse-drag-line.
1523 * window.el (window-at-side-p, windows-at-side): New functions.
1524
7e1361d9
UM
15252011-10-21 Ulrich Mueller <ulm@gentoo.org>
1526
1527 * tar-mode.el (tar-grind-file-mode):
1528 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
1529
30fcaf3a
CY
15302011-10-21 Chong Yidong <cyd@gnu.org>
1531
1532 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
1533 * progmodes/vera-mode.el (vera-mode):
1534 Use mode-require-final-newline.
30fcaf3a 1535
516eddb0
GM
15362011-10-20 Glenn Morris <rgm@gnu.org>
1537
db22a3c2 1538 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 1539
10d5f513
CS
15402011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
1541
1542 * emulation/cua-base.el (cua-set-mark): Fix case of string.
1543
ac6c8639
CY
15442011-10-20 Chong Yidong <cyd@gnu.org>
1545
1546 * emulation/cua-base.el (cua-mode):
1547 * mail/footnote.el (footnote-mode):
1548 * mail/mailabbrev.el (mail-abbrevs-mode):
1549 * net/xesam.el (xesam-minor-mode):
1550 * progmodes/bug-reference.el (bug-reference-mode):
1551 * progmodes/cap-words.el (capitalized-words-mode):
1552 * progmodes/compile.el (compilation-minor-mode)
1553 (compilation-shell-minor-mode):
1554 * progmodes/gud.el (gud-tooltip-mode):
1555 * progmodes/hideif.el (hide-ifdef-mode):
1556 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
1557 * progmodes/subword.el (subword-mode):
1558 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
1559 * progmodes/which-func.el (which-function-mode):
1560 * term/tvi970.el (tvi970-set-keypad-mode):
1561 * term/vt100.el (vt100-wide-mode):
1562 * textmodes/flyspell.el (flyspell-mode):
1563 * textmodes/ispell.el (ispell-minor-mode):
1564 * textmodes/nroff-mode.el (nroff-electric-mode):
1565 * textmodes/paragraphs.el (use-hard-newlines):
1566 * textmodes/refill.el (refill-mode):
1567 * textmodes/reftex.el (reftex-mode):
1568 * textmodes/rst.el (rst-minor-mode):
1569 * textmodes/sgml-mode.el (html-autoview-mode)
1570 (sgml-electric-tag-pair-mode):
1571 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
1572 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
1573 * emulation/crisp.el (crisp-mode):
1574 * emacs-lisp/eldoc.el (eldoc-mode):
1575 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
1576 minor mode behavior.
1577
aa42ab43
JL
15782011-10-19 Juri Linkov <juri@jurta.org>
1579
1580 * descr-text.el (describe-char): Add #x2010 and #x2011 to
1581 the list of hard-coded chars with escape-glyph face.
1582
89400f1d
SM
15832011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1584
1585 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
1586
305c07f6
MA
15872011-10-19 Michael Albinus <michael.albinus@gmx.de>
1588
1589 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
1590 running process.
1591
13754b54
GM
15922011-10-19 Glenn Morris <rgm@gnu.org>
1593
1594 * vc/vc-bzr.el (vc-bzr-after-dir-status):
1595 Ignore ignored files. (Bug#9726)
1596
06e21633
CY
15972011-10-19 Chong Yidong <cyd@gnu.org>
1598
1599 Doc fix for minor modes, stating that an omitted argument enables
1600 the mode unconditionally when called from Lisp.
1601
1602 * abbrev.el (abbrev-mode):
1603 * allout.el (allout-mode):
1604 * autoinsert.el (auto-insert-mode):
1605 * autoarg.el (autoarg-mode, autoarg-kp-mode):
1606 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
1607 (global-auto-revert-mode):
1608 * battery.el (display-battery-mode):
1609 * composite.el (global-auto-composition-mode)
1610 (auto-composition-mode):
1611 * delsel.el (delete-selection-mode):
1612 * desktop.el (desktop-save-mode):
1613 * dired-x.el (dired-omit-mode):
1614 * dirtrack.el (dirtrack-mode):
1615 * doc-view.el (doc-view-minor-mode):
1616 * double.el (double-mode):
1617 * electric.el (electric-indent-mode, electric-pair-mode):
1618 * emacs-lock.el (emacs-lock-mode):
1619 * epa-hook.el (auto-encryption-mode):
1620 * follow.el (follow-mode):
1621 * font-core.el (font-lock-mode):
1622 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
1623 * help.el (temp-buffer-resize-mode):
1624 * hilit-chg.el (highlight-changes-mode)
1625 (highlight-changes-visible-mode):
1626 * hi-lock.el (hi-lock-mode):
1627 * hl-line.el (hl-line-mode, global-hl-line-mode):
1628 * icomplete.el (icomplete-mode):
1629 * ido.el (ido-everywhere):
1630 * image-file.el (auto-image-file-mode):
1631 * image-mode.el (image-minor-mode):
1632 * iswitchb.el (iswitchb-mode):
1633 * jka-cmpr-hook.el (auto-compression-mode):
1634 * linum.el (linum-mode):
1635 * longlines.el (longlines-mode):
1636 * master.el (master-mode):
1637 * mb-depth.el (minibuffer-depth-indicate-mode):
1638 * menu-bar.el (menu-bar-mode):
1639 * minibuf-eldef.el (minibuffer-electric-default-mode):
1640 * mouse-sel.el (mouse-sel-mode):
1641 * msb.el (msb-mode):
1642 * mwheel.el (mouse-wheel-mode):
1643 * outline.el (outline-minor-mode):
1644 * paren.el (show-paren-mode):
1645 * recentf.el (recentf-mode):
1646 * reveal.el (reveal-mode, global-reveal-mode):
1647 * rfn-eshadow.el (file-name-shadow-mode):
1648 * ruler-mode.el (ruler-mode):
1649 * savehist.el (savehist-mode):
1650 * scroll-all.el (scroll-all-mode):
1651 * scroll-bar.el (scroll-bar-mode):
1652 * server.el (server-mode):
1653 * shell.el (shell-dirtrack-mode):
1654 * simple.el (auto-fill-mode, transient-mark-mode)
1655 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
1656 (line-number-mode, column-number-mode, size-indication-mode)
1657 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
1658 * strokes.el (strokes-mode):
1659 * time.el (display-time-mode):
1660 * t-mouse.el (gpm-mouse-mode):
1661 * tool-bar.el (tool-bar-mode):
1662 * tooltip.el (tooltip-mode):
1663 * type-break.el (type-break-mode-line-message-mode)
1664 (type-break-query-mode):
1665 * view.el (view-mode):
1666 * whitespace.el (whitespace-mode, whitespace-newline-mode)
1667 (global-whitespace-mode, global-whitespace-newline-mode):
1668 * xt-mouse.el (xterm-mouse-mode): Doc fix.
1669
a3839de2
SM
1670 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1671 Fix autogenerated docstring.
06e21633 1672
5214e501
JL
16732011-10-19 Juri Linkov <juri@jurta.org>
1674
1675 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
1676 by checking environment variables "DESKTOP_SESSION" and
1677 "XDG_CURRENT_DESKTOP". (Bug#9779)
1678
195f8db9
JL
16792011-10-19 Juri Linkov <juri@jurta.org>
1680
1681 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
1682 (browse-url-chromium-program, browse-url-chromium-arguments):
1683 New defcustoms.
1684 (browse-url-default-browser): Check for `browse-url-chromium' and
1685 call `browse-url-chromium-program'.
1686 (browse-url-chromium): New command. (Bug#9779)
1687
343a34ff
JB
16882011-10-18 Juanma Barranquero <lekktu@gmail.com>
1689
1690 * facemenu.el (list-colors-duplicates): On Windows, detect more
1691 duplicates by assuming that only colors matching "^System" are
1692 special "system colors". (Bug#9722)
1693
6978a151
SM
16942011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1695
1696 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
1697 to distinguish the author from the committer.
1698
6a80b297
MA
16992011-10-18 Michael Albinus <michael.albinus@gmx.de>
1700
1701 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
1702
b31a5677
JK
17032011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
1704
1705 * international/mule.el (sgml-html-meta-auto-coding-function):
1706 Add support for detecting encoding in HTML5 specified only as
1707 <meta charset="UTF-8">. Implementation just makes http-equiv and
1708 content-type parts from HTML4 encoding string optional. (Bug#9716)
1709
80c6d77f
GM
17102011-10-18 Glenn Morris <rgm@gnu.org>
1711
1712 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
1713
08b0fee8
CY
17142011-10-18 Chong Yidong <cyd@gnu.org>
1715
1716 * faces.el (cursor): Doc fix.
1717
67e729a5
CY
17182011-10-17 Chong Yidong <cyd@gnu.org>
1719
1720 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
1721
343a34ff 17222011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
1723
1724 * dirtrack.el (dirtrack): Support shell buffers with path
1725 prefixes, e.g. tramp-based remote shells. (Bug#9647)
1726
0bc06380
TZ
17272011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
1728
1729 * json.el: Bump version to 1.3 and note change in History.
1730 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
1731
8b79f3e0
SM
17322011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
1733
5a7c536b
SM
1734 * comint.el (comint-insert-input, comint-send-input)
1735 (comint-get-old-input-default, comint-backward-matching-input)
1736 (comint-next-prompt): Use nil instead of `input' for field property of
1737 past user input (bug#114).
1738
96a8a0df
SM
1739 * minibuffer.el (completion--replace): Inherit surrounding properties
1740 (bug#114).
1741 (minibuffer-complete-and-exit): Use it.
1742
8b79f3e0
SM
1743 * comint.el (comint--table-subvert): Quote the all-completions output
1744 (bug#9160).
1745
b8f7ff0d
MR
17462011-10-17 Martin Rudalics <rudalics@gmx.at>
1747
8b79f3e0 1748 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 1749
b8f7ff0d 1750 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 1751 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
1752 entries and separate them from frame entries.
1753
c235b555
GM
17542011-10-15 Glenn Morris <rgm@gnu.org>
1755
1756 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
1757 Doc fixes.
1758
6bbfa6e1
CY
17592011-10-15 Chong Yidong <cyd@stupidchicken.com>
1760
8b79f3e0
SM
1761 * net/network-stream.el (network-stream-open-starttls):
1762 Improve detection of failure due to lack of TLS support.
ec5c990d 1763
6bbfa6e1
CY
1764 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
1765 putting the input text in front and in bold.
1766
98488977
SM
17672011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
1768
3d1337be
SM
1769 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
1770
ee0b45e4
SM
1771 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
1772 empty buffer.
1773
98488977
SM
1774 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
1775 unread-command-events rather than pushing yet-another event.
1776
186f4720
EZ
17772011-10-14 Eli Zaretskii <eliz@gnu.org>
1778
1779 * mail/sendmail.el (sendmail-query-once): Improve the wording of
1780 the explanation of the possible choices. Make the options passed
1781 to completing-read shorter.
1782
8b7a997c
AM
17832011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1784
1785 * textmodes/flyspell.el (flyspell-large-region): Make sure
1786 extended character mode is used if defined (Bug#1339).
1787
12587bbb
EZ
17882011-10-13 Eli Zaretskii <eliz@gnu.org>
1789
1790 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
1791 character info for LRE, LRO, RLE, and RLO characters by appending
1792 an invisible PDF.
12587bbb 1793
bad41229
SM
17942011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
1795
1796 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
1797 even in case of error; add debug spec; simplify data flow.
1798 (with-timeout-handler): Remove.
1799
28dbc92f
MA
18002011-10-12 Michael Albinus <michael.albinus@gmx.de>
1801
1802 Fix Bug#6019, Bug#9315.
1803
1804 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
1805 complete `buffer-file-name', the local file name part could look
1806 remotely (for example on VMS).
1807
1808 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
1809 `tramp-run-real-handler'.
1810 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
1811 already quoted by '"'.
1812
1813 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
1814 Let `file-name-handler-alist' be nil, the local file name part
1815 could look remotely (for example on VMS).
1816
e1b0b23a
SM
18172011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1818
1819 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
1820 from here...
1821 (flyspell-post-command-hook): ...to here.
1822
a120bde9
SM
18232011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1824
1825 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
1826 if not needed.
1827 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
1828 using completion. Protect against "slow" callers.
1829 Remove the "message hack".
1830
7ce7717b
JL
18312011-10-11 Juri Linkov <juri@jurta.org>
1832
1833 * isearch.el (isearch-lazy-highlight-word): New variable.
1834 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
1835 Use it. (Bug#9727)
1836
c02ee9d6
GM
18372011-10-11 Glenn Morris <rgm@gnu.org>
1838
1839 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
1840 like f90-previous-statement does.
1841
93e616fd 18422011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1843
1f190e73 1844 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
1845 only in interactive use, to avoid error.
1846
af7b6078
SM
18472011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1848
1849 * minibuffer.el (completion-file-name-table): Fix last change,
1850 i.e. ignore normal errors but not the other ones.
1851
0563dae9
MR
18522011-10-10 Martin Rudalics <rudalics@gmx.at>
1853
1854 * window.el (special-display-buffer-names)
1855 (special-display-regexps): Remove some remnants of earlier
1856 changes from doc-strings.
366ca7f3
MR
1857 (quit-windows-on): New function.
1858
1859 * vc/vc.el (vc-revert, vc-rollback):
1860 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
1861 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 1862 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 1863
49677495
MR
18642011-10-09 Martin Rudalics <rudalics@gmx.at>
1865
1866 * window.el (frame-auto-hide-function): Add version tag.
1867 (Bug#9699)
1868
56f2d1e1
MA
18692011-10-09 Michael Albinus <michael.albinus@gmx.de>
1870
1871 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
1872 condition.
1873
112a6592
LL
18742011-10-09 Leo Liu <sdl.web@gmail.com>
1875
1876 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
1877 (Bug#9701)
1878
0812589b
GM
18792011-10-08 Glenn Morris <rgm@gnu.org>
1880
1881 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
1882 before the first code statement zero indent. (Bug#9690)
1883
b2b0776e
CY
18842011-10-08 Chong Yidong <cyd@stupidchicken.com>
1885
1886 * simple.el (count-words-region): Always count in the region.
1887 Report the number of lines and characters too.
1888 (count-words): New command, which counts in the buffer if the
1889 region is inactive, as count-words-region used to.
1890 (count-words--message): New function. Handle plurals.
1891 (count-lines-region): Make it an alias for count-words-region.
1892
1893 * bindings.el (esc-map): Replace count-lines-region with
1894 count-words-region.
1895
c557cd6b
MR
18962011-10-08 Martin Rudalics <rudalics@gmx.at>
1897
1898 * window.el (window--delete): Delete dedicated frame
1899 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 1900 (switch-to-buffer): Fix doc-string typo.
c557cd6b 1901
61a57ef4 19022011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1903
1904 * lisp/eshell/eshell.el (eshell-command): Avoid using hooks.
1905
c3833279
CY
19062011-10-07 Chong Yidong <cyd@stupidchicken.com>
1907
1908 * bindings.el ([M-left],[M-right]): Bind to left-word and
1909 right-word respectively.
1910
21ce8245
GM
19112011-10-07 Glenn Morris <rgm@gnu.org>
1912
1913 * cus-start.el (debug-on-quit): Fix custom type.
1914
6d823bb2
LMI
19152011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
1916
0181e193
LMI
1917 * subr.el (define-key-after): Clarify that the function is not
1918 useful for non-menu keymaps.
1919
6d823bb2
LMI
1920 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
1921
8e3459ce 19222011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1923
21ce8245 1924 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 1925 in current minibuffer (Fix bug with recursive minibuffers).
1926
a1c2d21e
CY
19272011-10-06 Chong Yidong <cyd@stupidchicken.com>
1928
1929 * progmodes/gdb-mi.el (gdb): Doc fix.
1930
5a4cf282
MR
19312011-10-05 Martin Rudalics <rudalics@gmx.at>
1932
1933 * window.el (frame-auto-hide-function): New option replacing
1934 frame-auto-delete. Suggested by Stefan Monnier.
1935 (window--delete): Call frame-auto-hide-function instead of
1936 investigating frame-auto-delete.
c96111ea
MR
1937 (window-point-1, set-window-point-1): New functions.
1938 (window-in-direction, record-window-buffer, window-state-get-1)
1939 (display-buffer-record-window): Use window-point-1 instead of
1940 window-point.
1941 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 1942
9854542e
SM
19432011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1944
1945 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
1946
8943cfb0
GM
19472011-10-05 Glenn Morris <rgm@gnu.org>
1948
1949 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
1950 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
1951
647ab967
LL
19522011-10-05 Leo Liu <sdl.web@gmail.com>
1953
1954 * subr.el (read-char-choice): Fix argument to buffer-live-p which
1955 works with buffer object.
1956
3ddfbced
SM
19572011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1958
1959 * mpc.el (mpc-tool-bar-map): Add labels.
1960
bdfa5dd2
GM
19612011-10-04 Glenn Morris <rgm@gnu.org>
1962
1963 * calendar/holidays.el (calendar-check-holidays): Doc fix.
1964
0e2070b5
MR
19652011-10-04 Martin Rudalics <rudalics@gmx.at>
1966
1967 * window.el (window--delete): New function.
1968 (frame-auto-delete): Resuscitate option.
1969 (bury-buffer, replace-buffer-in-windows)
1970 (quit-window): Rewrite using window--delete.
1971 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1972 Pass display-buffer-mark-dedicated to window--display-buffer-2
1973 (Bug#9639).
1974
3dc61a09
SM
19752011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1976
915a9b64
SM
1977 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
1978 returns a list (bug#9554). Add remote file name completion.
1979 * comint.el (comint--table-subvert): Curry and get quote&unquote
1980 functions as arguments.
1981 (comint--complete-file-name-data): Adjust call accordingly.
1982 * pcomplete.el (pcomplete--table-subvert): Remove.
1983 (pcomplete-completions-at-point): Use comint--table-subvert instead.
1984
3dc61a09
SM
1985 * minibuffer.el (completion-table-case-fold): Use currying.
1986 (completion--styles-type, completion--cycling-threshold-type):
1987 New constants.
1988 (completion-styles, completion-category-overrides)
1989 (completion-cycle-threshold): Use them.
1990 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
1991 completion-table-case-fold.
1992
8ea0a993
SB
19932011-10-03 Stephen Berman <stephen.berman@gmx.net>
1994
1995 * minibuffer.el (completion-category-overrides): Fix type of styles
1996 and add more user friendly tags (bug#9660).
1997
8c24b7f6
SM
19982011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1999
2000 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
2001 (mule-input-method-string): New widget.
2002 (default-input-method, language-info-custom-alist): Use it.
2003
428fe61a
SM
20042011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
2005
32c1fffd
SM
2006 * pcomplete.el: Require comint.
2007 (pcomplete--common-suffix): Remove.
2008 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
2009 (pcomplete--table-subvert): Sync with comint--table-subvert.
2010 (pcomplete--entries): Use comint-completion-file-name-table.
2011 * comint.el (comint-unquote-filename): Simplify.
2012 (comint-completion-file-name-table): New function (bug#9616).
2013 (comint--complete-file-name-data): Use it.
2014
428fe61a
SM
2015 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
2016 (pcmpl-gnu-tar-buffer): Remove.
2017 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
2018 around. Make sure pcomplete-suffix-list is only changed temporarily.
2019 Don't look inside the tar's file if it's too large.
428fe61a 2020
04c52e2f
CY
20212011-10-01 Chong Yidong <cyd@stupidchicken.com>
2022
ce3cefcc
CY
2023 * cus-edit.el (custom-mode-map):
2024 * epa.el (epa-key-list-mode-map):
2025 * man.el (Man-mode-map):
2026 * startup.el (splash-screen-keymap):
2027 * simple.el (special-mode-map): Use scroll-up-command and
2028 scroll-down-command.
2029
2030 * progmodes/idlw-help.el (idlwave-help-mode-map):
2031 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
2032 * net/newst-plainview.el (newsticker-mode-map):
2033 * emulation/ws-mode.el (wordstar-mode-map):
2034 * emulation/vi.el (vi-com-map):
2035 * calc/calc-graph.el (calc-graph-show-dumb):
2036 * term/sun.el (terminal-init-sun):
2037 * term/ns-win.el (global-map):
2038 * progmodes/grep.el (grep-mode-map):
2039 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
2040 * mail/rmail.el (rmail-mode-map):
2041 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
2042
04c52e2f
CY
2043 * custom.el (custom-safe-themes, load-theme): Treat value of t for
2044 custom-safe-themes as special.
2045
79adf8c8
JD
20462011-10-01 Julien Danjou <julien@danjou.info>
2047
2048 * notifications.el (notifications-notify): Fix docstring.
2049
63bd50d3
PS
20502011-10-01 Per Starbäck <per@starback.se>
2051
2052 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
2053
199e4c7e
MR
20542011-09-30 Martin Rudalics <rudalics@gmx.at>
2055
2056 * startup.el (command-line-1): Fix last fix by inserting
2057 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 2058 (Bug#9605) and (Bug#9636)
199e4c7e 2059
fe5f08dd
EZ
20602011-09-29 Eli Zaretskii <eliz@gnu.org>
2061
2062 * simple.el (line-move): If auto-hscroll-mode is disabled and the
2063 window is hscrolled, move by logical lines. (Bug#9607)
2064 (line-move-visual): Update the doc string to the above effect.
2065
b5516bbd
MR
20662011-09-29 Martin Rudalics <rudalics@gmx.at>
2067
ccee00c0
MR
2068 * window.el (display-buffer-record-window): When WINDOW is the
2069 selected window use `point' instead of `window-point'. (Bug#9626)
2070
b5516bbd
MR
2071 * startup.el (command-line-1): Use insert-before-markers when
2072 inserting initial-scratch-message. (Bug#9605)
ccee00c0 2073
b5516bbd
MR
2074 * help.el (help-window): Remove variable.
2075
52aa0014
GM
20762011-09-29 Glenn Morris <rgm@gnu.org>
2077
2078 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
2079
df9a7357
JB
20802011-09-29 Juanma Barranquero <lekktu@gmail.com>
2081
2082 * descr-text.el (describe-char-categories): Accept category
2083 descriptions more than one line long.
2084
a8406c20
SM
20852011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2086
88d9610c
SM
2087 * simple.el (delete-trailing-whitespace): Fix last change.
2088
a5daf810
SM
2089 * progmodes/perl-mode.el (perl-syntax-propertize-function):
2090 Don't confuse "y => 3" as the beginning of a `y' operation.
2091
a8406c20
SM
2092 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
2093 object has more than 4 slots (bug#9613).
2094
a239d4e9
JB
20952011-09-28 Juanma Barranquero <lekktu@gmail.com>
2096
2097 * subr.el (with-output-to-temp-buffer):
2098 * net/quickurl.el (quickurl, quickurl-browse-url):
2099 Fix typos in docstrings.
2100
693fbdb6
EZ
21012011-09-27 Eli Zaretskii <eliz@gnu.org>
2102
2103 * minibuffer.el (completion-styles)
2104 (completion-category-overrides): Cross reference each other in doc
2105 strings.
2106
8b457e28
GM
21072011-09-27 Glenn Morris <rgm@gnu.org>
2108
2109 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
2110 to split-string. (Bug#9606)
2111
85a16208
LMI
21122011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2113
2114 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
2115 (bug#9615).
2116
502f9ebd
CY
21172011-09-27 Chong Yidong <cyd@stupidchicken.com>
2118
2119 * emacs-lisp/package.el (list-packages): Fix echo area message.
2120
7690bdea
LL
21212011-09-27 Leo Liu <sdl.web@gmail.com>
2122
2123 * ido.el (ido-read-internal): Accept cons cell HIST arg.
2124
e2ee6f30
MA
21252011-09-25 Michael Albinus <michael.albinus@gmx.de>
2126
2127 * net/dbus.el (dbus-unregister-object): Don't release services for
2128 registered signals. (Bug#9581)
2129
f3f98342
TZ
21302011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
2131
2132 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
2133 function that picks between cfengine 2 and 3 support
2134 automatically. Update docs accordingly.
2135
dd7aa8dd
KH
21362011-09-22 Kenichi Handa <handa@m17n.org>
2137
2138 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
2139 ZERO.
2140 (indian-itrans-v5-table-for-tamil): New variable.
2141 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
2142
3f2b07f8
KM
21432011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
2144
2145 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
2146 that's true if the current command involved collapsing of text.
2147 It's reset to false at the beginning of the next command.
2148 (allout-post-command-business): Move the cursor to the beginning
2149 of entry if the cursor is hidden and collapsing activity just
2150 happened.
2151
371d6a61
CY
21522011-09-24 Chong Yidong <cyd@stupidchicken.com>
2153
2154 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
2155 tracking (Bug#9541).
2156
2ac2721a
UJ
21572011-09-24 Ulf Jasper <ulf.jasper@web.de>
2158
2159 * net/newst-reader.el (newsticker-html-renderer)
2160 (newsticker-show-news): Automatically
343a34ff
JB
2161 load html rendering package if newsticker-html-renderer is set.
2162 Fixes "Warning: defvar ignored because w3m-fill-column is
2ac2721a
UJ
2163 let-bound" and the error "Symbol's value as variable is void:
2164 w3m-fill-column".
2165
fac7ae53
MA
21662011-09-24 Michael Albinus <michael.albinus@gmx.de>
2167
2168 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
2169 Release services only if they are defined. (Bug#9581)
2170
e08b633b
RS
21712011-09-23 Richard Stallman <rms@gnu.org>
2172
e488d29c
RS
2173 * textmodes/paragraphs.el (forward-sentence): For backwards case,
2174 distinguish start of paragraph from start of its text.
2175
19c38752
RS
2176 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
2177
e08b633b
RS
2178 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
2179 (rmail-generate-viewer-buffer): Put that hook on view buffer.
2180 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
2181
0a39f27e
AS
21822011-09-23 Andreas Schwab <schwab@linux-m68k.org>
2183
2184 * international/mule-diag.el (mule-diag): Insert a newline after
2185 each fontset description.
2186
db4e950d
SM
21872011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
2188
2189 * simple.el (delete-trailing-whitespace):
2190 Document last change; simplify.
2191
eca3f3ea
PW
21922011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
2193
d68e189a
PW
2194 * simple.el (delete-trailing-whitespace): Also delete
2195 extra newlines at the end of the buffer.
2196
eca3f3ea
PW
2197 * textmodes/picture.el: Make motion commands obey shift-select-mode.
2198 (picture-newline): Use forward-line so as to ignore fields.
2199
01c157cc
SM
22002011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
2201
2202 * subr.el (with-wrapper-hook): Fix edebug spec.
2203
022de23e
LMI
22042011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
2205
2206 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
2207 (bug#4538).
2208
91683089
MA
22092011-09-23 Michael Albinus <michael.albinus@gmx.de>
2210
eca3f3ea
PW
2211 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
2212 Fix nasty bug using wrong cached values.
91683089 2213
5bdd6fa4
AM
22142011-09-23 Alan Mackenzie <acm@muc.de>
2215
2216 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
2217
97adfb97
CY
22182011-09-23 Chong Yidong <cyd@stupidchicken.com>
2219
2220 * window.el (pop-to-buffer): Ensure right window is selected if we
2221 chose another frame.
2222
d4ef2b50
EZ
22232011-09-22 Eli Zaretskii <eliz@gnu.org>
2224
2225 * simple.el (what-cursor-position): Use get-char-property-change
2226 and next-single-char-property-change, to be able to show display
2227 properties that come from overlays as well as text properties.
2228
72258fe5
CY
22292011-09-22 Chong Yidong <cyd@stupidchicken.com>
2230
2231 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
2232
2233 * cmuscheme.el (run-scheme, switch-to-scheme):
2234 * cus-edit.el (customize-group, custom-buffer-create)
2235 (customize-browse):
2236 * info.el (info):
2237 * shell.el (shell):
2238 * mail/sendmail.el (mail):
2239 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
2240
8f098516
RS
22412011-09-22 Richard Stallman <rms@gnu.org>
2242
2243 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
2244 move back only to line beg, don't move back over blank lines.
2245
e74f1bb6
MA
22462011-09-22 Michael Albinus <michael.albinus@gmx.de>
2247
2248 * files.el (copy-directory): Set directory attributes only in case
2249 they could be retrieved from the source directory. (Bug#9565)
2250
bfeef8b6
DK
22512011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
2252
2253 * progmodes/hideshow.el (hs-looking-at-block-start-p)
2254 (hs-find-block-beginning, hs-hide-level-recursive):
2255 Ignore strings as well as comments. (Bug#9502)
2256
7e423bb8
AS
22572011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
2258
2259 * progmodes/sql.el (sql-comint-postgres):
2260 Convert port number to a string. (Bug#9566)
2261
b4d72fcf
MR
22622011-09-22 Martin Rudalics <rudalics@gmx.at>
2263
2264 * window.el (quit-window): Undedicate window when switching to
2265 previous buffer. Reported by Thierry Volpiatto
2266 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
2267 (special-display-popup-frame): When popping up a new frame reset
2268 its previous buffers to nil. Simplify code.
b4d72fcf 2269
a7b88dc6
MA
22702011-09-21 Michael Albinus <michael.albinus@gmx.de>
2271
2272 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
2273 and process filter, as done also in `shell-command'.
2274
cf4eacfd
MR
22752011-09-21 Martin Rudalics <rudalics@gmx.at>
2276
eca3f3ea
PW
2277 * window.el (set-window-buffer-start-and-point):
2278 Call set-window-start with NOFORCE argument t. Suggested by Thierry
cf4eacfd
MR
2279 Volpiatto <thierry.volpiatto@gmail.com>.
2280 (quit-window): Reword doc-string. Handle new format of
2281 quit-restore parameter. Don't delete window if it has a
2282 previous buffer we can show instead of the present one.
2283 (display-buffer-record-window): Rewrite using a new format for
2284 the quit-restore window parameter
2285 (special-display-popup-frame, display-buffer-same-window)
2286 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2287 (display-buffer-pop-up-window, display-buffer-use-some-window):
2288 Adapt symbol passed to display-buffer-record-window.
2289 * help.el (help-window-setup): Handle new format of quit-restore
2290 parameter.
2291
8d28cb95
SM
22922011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
2293
94ab793f
SM
2294 * faces.el (face-list): Fix docstring (bug#9564).
2295
8d28cb95
SM
2296 * window.el (display-buffer--action-function-custom-type):
2297 Don't include internal functions in the Custom interface.
2298
3820edeb
JL
22992011-09-20 Juri Linkov <juri@jurta.org>
2300
2301 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
2302 (Info-forward-node, Info-backward-node, Info-next-preorder)
2303 (Info-last-preorder): Use it. (Bug#9528)
2304
5147931d
JL
23052011-09-20 Juri Linkov <juri@jurta.org>
2306
2307 * info.el (Info-last-preorder): Visit last menu item only when
2308 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
2309
cf499a1a
JD
23102011-09-20 Julien Danjou <julien@danjou.info>
2311
2312 * password-cache.el (password-cache-remove): Remove entries even if the
2313 value is nil, so that password with a nil value (negative caching) is
2314 possible to invalidate.
2315
f84e2fe2
LM
23162011-09-20 Lawrence Mitchell <wence@gmx.li>
2317
2318 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
2319 all whitespace around breakpoint. (Bug#9553)
2320 (f90-find-breakpoint): Only break at whitespace inside a comment.
2321
78054a46
SM
23222011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2323
2324 * minibuffer.el (completion-file-name-table): Keep track of errors.
2325 (completion-table-with-predicate): Handle the case where pred1 is nil.
2326 * pcomplete.el (pcomplete-completions-at-point): Simplify.
2327
345083b2
SM
23282011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2329
e24e27be
SM
2330 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
2331 (debugger-return-value): Signal an error if the debugging context does
2332 not await any return value.
2333
345083b2
SM
2334 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
2335 * image-mode.el (image-toggle-display-text)
2336 (image-toggle-display-image): Stay away from evil `intangible'.
2337
08d355e3
LL
23382011-09-19 Leo Liu <sdl.web@gmail.com>
2339
2340 * replace.el (occur-revert-arguments): Make it permanent-local.
2341 (occur-mode): Don't call font-lock-defontify.
2342
f01da43f
CY
23432011-09-19 Chong Yidong <cyd@stupidchicken.com>
2344
2345 * net/ldap.el (ldap-search-internal): Don't push empty search
2346 result (Bug#9508).
2347
b6072fa6
SM
23482011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2349
2350 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
2351
443d6696
MA
23522011-09-19 Michael Albinus <michael.albinus@gmx.de>
2353
2354 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
2355 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
2356
7cc6e154
JL
23572011-09-18 Juri Linkov <juri@jurta.org>
2358
2359 * buff-menu.el (Buffer-menu-mode-map):
2360 * dired.el (dired-mode-map):
2361 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
2362 (lisp-interaction-mode-map):
2363 * emacs-lisp/package.el (package-menu-mode-map):
2364 * epa.el (epa-key-list-mode-map):
2365 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
2366 (menu-bar-options-menu):
2367 * outline.el (outline-mode-menu-bar-map):
2368 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
2369 * vc/vc-dir.el (vc-dir-menu-map):
2370 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
2371 Capitalize non-function content words in menu item strings.
2372
2373 * dired.el (dired-mode-map): Add menu item for
2374 `image-dired-dired-toggle-marked-thumbs'.
2375
80302a81
JL
23762011-09-18 Juri Linkov <juri@jurta.org>
2377
2378 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
2379 to `isearch-case-fold-search' and restore its original value
2380 after the `isearch-mode' call.
2381
46c5cf66
JL
23822011-09-18 Juri Linkov <juri@jurta.org>
2383
2384 * progmodes/grep.el (grep-process-setup): Don't check code for 1
2385 because `zgrep' returns 1 for successful matches (bug#9226).
2386
d18b513b
JL
23872011-09-18 Juri Linkov <juri@jurta.org>
2388
2389 * info.el (Info-extract-menu-node-name): Check the second match
2390 for empty string (second test-case of bug#9528).
2391 (Info-last-preorder): Let-bind `Info-history' to nil to not add
2392 intermediate nodes to the history (first test-case of bug#9528).
2393
72753f87
JL
23942011-09-18 Juri Linkov <juri@jurta.org>
2395
2396 * info.el (Info-mode-syntax-table): New variable.
2397 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table'. (Bug#3312)
2398
c9384295
JL
23992011-09-18 Juri Linkov <juri@jurta.org>
2400
2401 * info.el (Info-file-supports-index-cookies): Increment
2402 line-beginning-position's arg from 3 to 4 because makeinfo outputs
2403 one more line for long file names (bug#4142).
2404
d473dce8
CY
24052011-09-18 Chong Yidong <cyd@stupidchicken.com>
2406
2407 * newcomment.el (comment-normalize-vars): If prompting for
2408 comment-start, set comment-start-skip too (Bug#8424).
2409
2176854d
JB
24102011-09-18 Johan Bockgård <bojohan@gnu.org>
2411
2412 * icomplete.el: Fix previous fix of Bug#5849.
2413 (icomplete-mode): Don't set completion-show-inline-help.
2414 (icomplete-minibuffer-setup): Set completion-show-inline-help
2415 locally during icompletion.
2416
3aace4e4
CY
24172011-09-18 Chong Yidong <cyd@stupidchicken.com>
2418
c940224f
CY
2419 * woman.el (woman2-process-escapes): Don't delete unrecognized
2420 escapes (Bug#7843).
2421
3aace4e4
CY
2422 * files.el (inhibit-first-line-modes-regexps): Add image files.
2423 (hack-local-variables-prop-line): Return nil for malformed
2424 prop-lines (Bug#9044).
2425
710dec63
MA
24262011-09-18 Michael Albinus <michael.albinus@gmx.de>
2427
2428 * net/tramp.el (top): Don't require 'shell.
2429 (tramp-methods): Fix docstring.
2430 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
2431 Return complete remote file name. Handle "smb" case.
2432 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
2433 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
2434
2435 * net/tramp-compat.el (top): Require 'shell.
2436
2437 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
2438 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
2439 `tramp-current-host'.
2440 (tramp-get-remote-tmpdir): Remove.
2441
2442 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
2443 `tramp-tmpdir' entries.
2444 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
2445 (tramp-smb-handle-file-attributes): Ignore errors.
2446 (tramp-smb-wait-for-output): Check also for process end.
2447
5d5ac8ec
LMI
24482011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
2449
2450 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
2451 when sending QUIT (bug#9312).
2452
8c0f49f0
CY
24532011-09-17 Chong Yidong <cyd@stupidchicken.com>
2454
2455 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
2456 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
2457 occur-mode-display-occurrence.
2458 (occur-edit-mode): Add usage message.
2459 (occur-cease-edit): New command.
2460 (occur-after-change-function): Use text properties to find the
2461 position of the prefix text.
2462 (occur-engine): Set stickiness of prefix text properties.
2463
8f1383f7
GM
24642011-09-17 Glenn Morris <rgm@gnu.org>
2465
2466 * progmodes/etags.el (complete-tag):
2467 Fix call to completion-in-region. (Bug#9526)
2468
744ba0e3
JL
24692011-09-17 Juri Linkov <juri@jurta.org>
2470
2471 * textmodes/ispell.el (ispell-word): Add to the error message
2472 the word, ispell program name and current dictionary (bug#9121).
2473 (ispell-tex-arg-end): Capitalize "error" in the error message.
2474
d9bbf400
AS
24752011-09-17 Andreas Schwab <schwab@linux-m68k.org>
2476
2477 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
2478 check. (Bug#4251)
2479
8da11505
JL
24802011-09-17 Juri Linkov <juri@jurta.org>
2481
2482 * window.el (window-safe-min-height, window-safe-min-width):
2483 Fix typos (followup to bug#9522).
2484
a91adc7e
SJ
24852011-09-17 Sven Joachim <svenjoac@gmx.de>
2486
2487 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
2488
064f328a
EZ
24892011-09-16 Eli Zaretskii <eliz@gnu.org>
2490
2491 * simple.el (line-move): If goal-column is set, move by logical
2492 lines, not by display lines. (Bug#971)
2493 (next-line, previous-line, goal-column, line-move-visual): Doc fix
2494 to reflect the above change.
2495
e69df516
SM
24962011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
2497
2498 * image.el (imagemagick-register-types): Use regexp-opt.
2499
cbb0f9ab
CY
25002011-09-15 Chong Yidong <cyd@stupidchicken.com>
2501
2502 * window.el (display-buffer-base-action): Rename from
2503 display-buffer-default-action. Make default value empty.
2504 (display-buffer-overriding-action): Convert to defvar.
2505 (display-buffer-fallback-action): New var.
2506
25322144
CY
25072011-09-15 Chong Yidong <cyd@stupidchicken.com>
2508
2509 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
2510 declaration.
2511 (package--add-to-archive-contents): If there is a duplicate entry
2512 with an older version, remove it.
2513 (package-menu-mark-delete, package-menu-mark-install)
2514 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
2515 (package-menu-mark-obsolete-for-deletion):
2516 Use package-menu-get-status instead of a regexp search.
25322144
CY
2517 (package-menu-get-status): Use tabulated-list-entry.
2518 (package-menu-mark-upgrades): New command.
d770725a 2519 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
2520 (package-menu-execute): Do installation before deletion.
2521 (package-menu-refresh, package-menu-execute): Use derived-mode-p
2522 instead of checking major-mode.
2523 (package-menu--find-upgrades): New function.
2524
7520339c
LMI
25252011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2526
2527 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
2528 passwords in the log buffer.
65a046c4
LMI
2529 (smtpmail-process-filter): Update the process marker so that the
2530 "broken by peer" status message is inserted in the right place.
7520339c 2531
d3c30954
SM
25322011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2533
3fe48822
SM
2534 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
2535 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
2536 bibtex-completion-at-point-function.
2537 (bibtex-completion-at-point-function): Use them.
2538
1b8b3954
SM
2539 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
2540
d3c30954
SM
2541 * mpc.el (mpc-constraints-tag-lookup): New function.
2542 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
2543 also to browser "album|playlist".
2544
72779976
JL
25452011-09-14 Juri Linkov <juri@jurta.org>
2546
2547 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
2548 (isearch-edit-string): Use length of `isearch-string' when
2549 `isearch-fail-pos' returns nil.
2550 (isearch-message): Remove duplicate code and call
2551 `isearch-fail-pos' with arg `t'.
2552
a0bf2bcd
CY
25532011-09-14 Chong Yidong <cyd@stupidchicken.com>
2554
17bb0a2d
CY
2555 * replace.el (occur-mode-goto-occurrence): Don't force using other
2556 window (Bug#9499).
2557
a0bf2bcd
CY
2558 * dired-aux.el (dired-do-chmod): Don't provide initial input.
2559
f678e0b6
MR
25602011-09-14 Martin Rudalics <rudalics@gmx.at>
2561
2562 * window.el (display-buffer-window): Remove.
2563 (display-buffer-record-window): Use help-setup window parameter
2564 instead of variable display-buffer-window.
2565 (display-buffer-function, special-display-buffer-names)
2566 (special-display-function): Mention help-setup parameter instead
2567 of display-buffer-window in doc-string.
d3c30954
SM
2568 * help.el (help-window-setup): New argument help-window.
2569 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
2570 Reword some messages.
2571 (with-help-window): Pass window used for displaying the buffer
2572 to help-window-setup. Don't set display-buffer-window.
2573
8e39b2e8
GM
25742011-09-13 Glenn Morris <rgm@gnu.org>
2575
2576 * emacs-lisp/debug.el (debugger-make-xrefs):
2577 Preserve point. (Bug#9462)
2578
85e9c04b
CY
25792011-09-13 Chong Yidong <cyd@stupidchicken.com>
2580
2581 * window.el (window-deletable-p): Use next-frame.
2582
1b36ed6a
MR
25832011-09-13 Martin Rudalics <rudalics@gmx.at>
2584
2585 * window.el (window-auto-delete): Remove.
2586 (window-deletable-p): Remove argument FORCE. Don't deal with
e4769531 2587 dedication and previous buffers.
1b36ed6a
MR
2588 (switch-to-prev-buffer): Don't delete window.
2589 (delete-windows-on): Delete a window's frame if and only if the
2590 window is dedicated.
2591 (replace-buffer-in-windows): Delete buffer's window or frame if
2592 and only if window is dedicated.
2593 (quit-window): Handle quit-restore as before last change.
4d61f28d 2594 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 2595
ef8ef9fb
CY
25962011-09-13 Chong Yidong <cyd@stupidchicken.com>
2597
2598 * window.el (window-deletable-p): Never delete the last frame on a
2599 given terminal.
2600
b2cba41e
GM
26012011-09-13 Glenn Morris <rgm@gnu.org>
2602
2603 * help.el (describe-key-briefly): Copy previous standard-output change.
2604
51553db6 26052011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
2606
2607 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
2608
b7556719
GM
26092011-09-13 Glenn Morris <rgm@gnu.org>
2610
2611 * emacs-lisp/lisp-mode.el (lisp-indent-function):
2612 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
2613
64b51947
CY
26142011-09-12 Chong Yidong <cyd@stupidchicken.com>
2615
2616 * dired-aux.el (dired-mark-read-string): Don't return default
2617 value on empty input (Bug#9361).
2618 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
2619 Omit initial minibuffer contents.
2620 (dired-do-chmod): Signal an error on empty input.
2621 (dired-mark-read-string): Don't return default on empty input.
2622
2623 * files.el (file-modes-symbolic-to-number): Doc fix.
2624
393a301e
SM
26252011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2626
2627 * international/mule-cmds.el (ucs-completions): Remove.
2628 (read-char-by-name): Use complete-with-action instead; add metadata.
2629
fa5660f9
CY
26302011-09-11 Chong Yidong <cyd@stupidchicken.com>
2631
2632 * window.el (display-buffer--action-function-custom-type)
2633 (display-buffer--action-custom-type): New vars.
2634 (display-buffer-alist, display-buffer-default-action)
2635 (display-buffer-overriding-action): Add defcustom types.
2636
4a592f66
CY
2637 * frame.el (delete-other-frames): Doc fix (Bug#276).
2638
73d56dbd
LMI
26392011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2640
2641 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
2642
37ac18a3
CY
26432011-09-11 Chong Yidong <cyd@stupidchicken.com>
2644
2645 Change modes that used same-window-* vars to use switch-to-buffer.
2646
2647 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
2648 Use switch-to-buffer.
2649
2650 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
2651 (customize-browse, custom-buffer-create-other-window):
2652 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
2653
2654 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
2655 (Info-prev, Info-up, Info-speedbar-goto-node)
2656 (info-display-manual): Use switch-to-buffer.
2657 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
2658
2659 * mail/sendmail.el (mail): Use switch-to-buffer.
2660 (mail-recover): Use switch-to-buffer-other-window.
2661
2662 * cmuscheme.el (run-scheme, switch-to-scheme):
2663 * ielm.el (ielm):
2664 * shell.el (shell):
2665 * net/rlogin.el (rlogin):
2666 * net/telnet.el (telnet, rsh):
2667 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
2668
10195bd6
AS
26692011-09-11 Andreas Schwab <schwab@linux-m68k.org>
2670
2671 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
2672
b322f63a
LMI
26732011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2674
39d7fed6
LMI
2675 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
2676 so don't mention it (bug#9301).
ba5a81f1 2677 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 2678
ee0e9f11
LMI
2679 * faces.el (face-spec-set-match-display): Make `(type graphic)'
2680 match `x', `w32' and `ns', like the manual says (bug#9029).
2681
0b1c89c1 2682 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
2683 (process-kill-buffer-query-function): Mention the buffer name in
2684 the query.
0b1c89c1 2685
77549ea8
LMI
2686 * image-mode.el (image-next-line): The line parameter is mandatory
2687 (bug#9258).
2688
803ef892
LMI
2689 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
2690 which can be useful (bug#9301).
2691
12980837
LMI
2692 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
2693
91054f8f
LMI
2694 * subr.el (match-string): Mention that the current buffer should
2695 be the same as the search was done in (bug#9282).
2696
b322f63a
LMI
2697 * facemenu.el: Disable the remove-* commands if the mark isn't
2698 active (bug#9162).
2699
3199b96f
CY
27002011-09-10 Chong Yidong <cyd@stupidchicken.com>
2701
2702 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
2703 of display-buffer.
2704 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
2705
2706 * replace.el (occur-mode-goto-occurrence)
2707 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
2708 and display-buffer.
2709
2710 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
2711 display-buffer.
2712
2713 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
2714 special-display and same-window variables.
2715 (mail-other-window): Use switch-to-buffer-other-window.
2716 (mail-other-frame): USe switch-to-buffer-other-frame.
2717
393a301e
SM
2718 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
2719 Use display-buffer-other-frame.
3199b96f
CY
2720 (gdb-display-gdb-buffer): Use pop-to-buffer.
2721
2722 * progmodes/gud.el (gud-goto-info): Use info-other-window.
2723
2724 * progmodes/python.el: Don't set same-window-buffer-names.
2725
2726 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
2727
2728 * window.el (display-buffer-alist): Add *Python*.
2729
8319e0bf
CY
27302011-09-10 Chong Yidong <cyd@stupidchicken.com>
2731
2732 * window.el (display-buffer-alist): Add entry for buffers
2733 previously handled same-window-*.
2734 (display-buffer-alist, display-buffer-default-action)
2735 (display-buffer-overriding-action): Mark as risky.
2736 (display-buffer-alist): Document action function changes.
2737 (display-buffer--same-window-action)
2738 (display-buffer--other-frame-action): New variables.
2739 (switch-to-buffer, display-buffer-other-frame): Use them.
2740 (display-buffer): Rename reuse-frame entry to reusable-frames.
2741 (display-buffer-reuse-selected-window): Function deleted.
2742 (display-buffer-reuse-window): Handle reusable-frames alist entry.
2743 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
2744 (display-buffer-special): New function.
2745 (display-buffer--maybe-pop-up-frame-or-window): Rename from
2746 display-buffer-reuse-or-pop-window. Split off special-display
2747 part into display-buffer-special.
2748 (display-buffer-use-some-window): Don't perform any special
2749 pop-up-frames handling.
2750 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 2751 (display-buffer--maybe-same-window): Rename from
0d3ff375 2752 display-buffer-maybe-same-window.
8319e0bf 2753
919a69aa
CY
2754 * info.el: Don't set same-window-regexps.
2755 (info-setup): New function.
2756 (info-other-window, info): Call it.
2757
2758 * cus-edit.el: Don't set same-window-regexps.
2759 (customize-group): New argument.
2760 (customize-group-other-window): Use it.
2761 (customize-face, customize-face-other-window): Likewise.
2762 (custom-buffer-create-other-window): Use pop-to-buffer directly.
2763
8319e0bf
CY
2764 * net/rlogin.el:
2765 * net/telnet.el:
2766 * progmodes/gud.el: Don't set same-window-regexps.
2767
2768 * cmuscheme.el:
2769 * ielm.el:
2770 * shell.el:
2771 * mail/sendmail.el:
2772 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
2773
25173000
JL
27742011-09-10 Juri Linkov <juri@jurta.org>
2775
2776 * isearch.el (isearch-edit-string): Remove obsolete mention of
2777 `C-w' (`isearch-yank-word-or-char') from docstring.
2778 (isearch-query-replace): Fix typo in docstring (bug#9466).
2779
056e44ef
JL
27802011-09-10 Juri Linkov <juri@jurta.org>
2781
2782 * paren.el (show-paren-function): Don't show escaped parens.
2783 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
2784
c3760c17
EZ
27852011-09-10 Eli Zaretskii <eliz@gnu.org>
2786
2787 * mail/sendmail.el (mml-to-mime, mml-attach-file)
2788 (mm-default-file-encoding): Remove autoload forms, they are
2789 replaced with autoload cookies in mml.el and mm-encode.el.
2790 (mail-add-attachment): New command.
2791 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
2792 (mail-mode): Mention mail-insert-file and mail-add-attachment in
2793 the doc string.
2794 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
2795
fece895e
RT
27962011-09-10 Reuben Thomas <rrt@sc3d.org>
2797
e69df516
SM
2798 * simple.el (count-words-region): Use buffer if there's no region
2799 (bug#9429).
fece895e 2800
5e68ce4a
JL
28012011-09-09 Juri Linkov <juri@jurta.org>
2802
2803 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
2804 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
2805 (wdired-isearch-filter-read-only): New function. (Bug#6362)
2806
0a6b9622
AM
28072011-09-09 Alan Mackenzie <acm@muc.de>
2808
2809 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
2810 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
2811
14a29deb
EZ
28122011-09-09 Eli Zaretskii <eliz@gnu.org>
2813
2814 Fix for Savannah bug#9392.
2815 * simple.el (mail-encode-mml): New defvar.
2816
2817 * mail/rmail.el (mail-encode-mml): Add a defvar.
2818 (rmail-enable-mime-composing): Default to t.
2819 (rmail-forward): Use MIME method of forwarding only if both
2820 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
2821 Set mail-encode-mml non-nil if the MIME method was used.
2822
2823 * mail/sendmail.el (mml-to-mime): Add autoload form.
2824 (mail-encode-mml): Add a defvar.
2825 (mail-mode): Make mail-encode-mml buffer-local and initialize it
2826 to nil.
2827 (mail-send): If mail-encode-mml is non-nil, run the outgoing
2828 message through mml-to-mime, and reset mail-encode-mml to nil.
2829
28c45130
GM
28302011-09-09 Glenn Morris <rgm@gnu.org>
2831
2832 * woman.el (woman-if-body): When processing an .el block,
2833 do not delete the next .el block as well. (Bug#9447)
69f4b618 2834 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 2835
9b1c252e
MR
28362011-09-08 Martin Rudalics <rudalics@gmx.at>
2837
2838 * window.el (window-deletable-p): Make sure window is live before
2839 invoking window-prev-buffers.
2840
567457e3
LL
28412011-09-08 Leo Liu <sdl.web@gmail.com>
2842
2843 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
2844
97f05794
JL
28452011-09-08 Juri Linkov <juri@jurta.org>
2846
2847 * progmodes/compile.el (compilation-environment): Make it
2848 a defcustom (bug#8340).
2849
8b0874b5
MR
28502011-09-08 Martin Rudalics <rudalics@gmx.at>
2851
2852 * window.el (frame-auto-delete): Rename to window-auto-delete.
2853 Make it control auto-deletion of windows and/or frames.
2854 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 2855 for deleting window/frame. (Bug#9419)
8b0874b5
MR
2856 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
2857 Rewrite handling of case when window/frame can be deleted.
2858 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 2859 argument t. (Bug#9456)
8b0874b5 2860
4feb6e73
CY
28612011-09-07 Chong Yidong <cyd@stupidchicken.com>
2862
2863 * help-mode.el (help-mode): Restore autoload.
2864
91ab9c13
JL
28652011-09-07 Juri Linkov <juri@jurta.org>
2866
2867 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
2868 `compilation-environment'. Set buffer-local
2869 `compilation-environment' to `thisenv' later after (funcall mode).
2870 (Bug#8340)
2871
2872 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
2873 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
2874 instead of replacing its value. (Bug#8340)
2875
0527e251
JL
28762011-09-07 Juri Linkov <juri@jurta.org>
2877
2878 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
2879 based on text properties put by `grep-filter' instead of matching
2880 escape sequences.
2881 (grep-mode): Set buffer-local `compilation-error-screen-columns'
2882 to the value of `grep-error-screen-columns' (bug#9438).
2883
249f792c
JL
28842011-09-07 Juri Linkov <juri@jurta.org>
2885
2886 * simple.el (next-error-highlight, next-error-highlight-no-select):
2887 Doc fix (bug#9432).
2888
ff7271b9
OT
28892011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
2890
2891 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
2892 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
2893
183fc730
LL
28942011-09-07 Leo Liu <sdl.web@gmail.com>
2895
2896 * net/rcirc.el (rcirc-mode): Conditionally initialize
2897 rcirc-input-ring.
2898
77694924
SM
28992011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2900
2901 * emacs-lisp/find-func.el (find-function-C-source): Only set
2902 find-function-C-source-directory after checking that we found a source
2903 file there (bug#9440).
2904
d809b8eb
AM
29052011-09-06 Alan Mackenzie <acm@muc.de>
2906
2907 * isearch.el (isearch-other-meta-char): Wherever a key list is
2908 unread, "unread" the prefix arg, too. This fixes bug #8901.
2909
453de99f
OG
29102011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
2911
2912 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
2913
90439906
JL
29142011-09-05 Juri Linkov <juri@jurta.org>
2915
2916 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
2917
f62bd846
JL
29182011-09-05 Juri Linkov <juri@jurta.org>
2919
2920 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
2921 keeping point where processing of grep matches begins, and
2922 continue to delete remaining escape sequences from the same point.
2923 (grep-filter): Make leading zero optional in "0?1;31m" because
2924 git-grep emits "\033[1;31m" escape sequences unlike expected
2925 "\033[01;31m" as GNU Grep does (bug#9408).
2926 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
2927
045820ec
JL
29282011-09-05 Juri Linkov <juri@jurta.org>
2929
2930 * subr.el (y-or-n-p): Capitalize "yes".
2931
f5e29b9b
MA
29322011-09-04 Michael Albinus <michael.albinus@gmx.de>
2933
2934 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
2935 `tramp-cache-unload-hook' where appropriate.
2936 (tramp-methods): Rename `tramp-remote-sh' to
2937 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
2938 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
2939
2940 * net/tramp-sh.el (top): Don't require 'shell.
2941 (tramp-methods): Add `tramp-remote-shell' and
2942 `tramp-remote-shell-args' entries.
2943 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
2944 (tramp-sh-handle-shell-command): Remove.
2945 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
2946 Use `tramp-remote-shell'.
2947
2784c434
CY
29482011-09-03 Chong Yidong <cyd@stupidchicken.com>
2949
393a301e 2950 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
2951 (sendmail-query-once): Save directly to send-mail-function.
2952 Update message-send-mail-function too.
2953
2954 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
2955
464cdf56
CS
29562011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
2957
2958 * progmodes/python.el (python-mode-map): Use correct function to
2959 start python interpreter from menu-bar (as reported by Geert
2960 Kloosterman).
2961 (inferior-python-mode-map): Fix typo.
393a301e 2962 (python-shell-map): Remove.
464cdf56 2963
d37e5c87
DD
29642011-09-03 Deniz Dogan <deniz@dogan.se>
2965
2966 * net/rcirc.el (rcirc-print): Simplify code for
2967 rcirc-scroll-show-maximum-output. There is no need to walk
2968 through all windows to find the right one.
2969
f3ada0ee
CS
29702011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
2971
2972 * help.el (help-return-method): Doc fix.
2973
1f3c99ca
MR
29742011-09-03 Martin Rudalics <rudalics@gmx.at>
2975
2976 * window.el (window-deletable-p): Don't return a non-nil value
2977 when there's a buffer that was shown in the window before.
2978 (Bug#9419)
393a301e
SM
2979 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
2980 Set window's previous buffers to nil.
1f3c99ca 2981
a3cf097f
EZ
29822011-09-03 Eli Zaretskii <eliz@gnu.org>
2983
2984 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
2985 newline before and after the tag line, so it doesn't interfere
2986 with determining the paragraph direction of bidirectional text.
2987
3d03de90
LL
29882011-09-03 Leo Liu <sdl.web@gmail.com>
2989
2990 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
2991
c3313451
CY
29922011-09-02 Chong Yidong <cyd@stupidchicken.com>
2993
393a301e 2994 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
2995 (pop-to-buffer): Change interactive spec. Pass second argument
2996 directly to display-buffer.
2997 (display-buffer): Fix interactive spec. Use functionp to
2998 distinguish between a function and a list of functions.
2999
3000 * abbrev.el (edit-abbrevs):
3001 * arc-mode.el (archive-extract):
3002 * autoinsert.el (auto-insert):
3003 * bookmark.el (bookmark-bmenu-list):
3004 * files.el (find-file):
3005 * view.el (view-buffer):
3006 * progmodes/compile.el (compilation-goto-locus):
3007 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
3008
89894cd8
CY
30092011-09-02 Chong Yidong <cyd@stupidchicken.com>
3010
3011 * window.el (display-buffer-alist): Doc fix.
3012 (display-buffer): Add docstring. Don't treat
3013 display-buffer-default specially.
3014 (display-buffer-reuse-selected-window)
3015 (display-buffer-same-window, display-buffer-maybe-same-window)
3016 (display-buffer-reuse-window, display-buffer-pop-up-frame)
3017 (display-buffer-pop-up-window)
3018 (display-buffer-reuse-or-pop-window)
3019 (display-buffer-use-some-window): New functions.
3020 (display-buffer-default-action): Use them.
393a301e 3021 (display-buffer-default): Delete.
89894cd8
CY
3022 (pop-to-buffer-1): Fix choice of actions.
3023
ae0bc9fb
SM
30242011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
3025
3026 * minibuffer.el (completion--insert-strings): Don't get confused by
3027 completion entries that end with an LF char.
3028
e9d90883
EZ
30292011-09-01 Eli Zaretskii <eliz@gnu.org>
3030
3031 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
3032
437014c8
CY
30332011-09-01 Chong Yidong <cyd@stupidchicken.com>
3034
3035 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
3036 (display-buffer-same-window, display-buffer-other-window):
3037 New functions.
437014c8
CY
3038 (pop-to-buffer-1): New function. Use the above.
3039 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 3040 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
3041
3042 * view.el (view-buffer-other-window, view-buffer-other-frame):
3043 Just use pop-to-buffer.
3044
a5e063d5
TV
30452011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3046
3047 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
3048
793d32bb
WH
30492011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
3050
3051 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
3052
d65e4c15
RS
30532011-08-31 Richard Stallman <rms@gnu.org>
3054
3055 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
3056 of the separation of rmail-view-buffer from rmail-buffer.
3057 If you say no to "replace original", the decrypt is in the
3058 view buffer. If you say yes, the decrypt goes into the
3059 rmail buffer also.
3060
f818cd2a
MR
30612011-08-31 Martin Rudalics <rudalics@gmx.at>
3062
3063 * window.el (display-buffer-window): Rewrite doc-string.
3064 (display-buffer-record-window): New function.
3065 (display-buffer-macro-specifiers)
3066 (display-buffer-even-window-sizes, display-buffer-set-height)
3067 (display-buffer-set-width, display-buffer-in-window)
3068 (display-buffer-reuse-window, display-buffer-split-specifiers)
3069 (display-buffer-side-specifiers, display-buffer-split-window-1)
3070 (display-buffer-split-window, display-buffer-split-atom-window)
3071 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
3072 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
3073 (display-buffer-other-window-means-other-frame)
3074 (display-buffer-normalize-special)
3075 (display-buffer-normalize-default)
3076 (display-buffer-normalize-argument)
3077 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
3078 (display-buffer-normalize-specifiers, display-buffer-frame)
3079 (display-buffer-same-window, display-buffer-same-frame)
3080 (display-buffer-other-window)
3081 (display-buffer-same-frame-other-window)
3082 (display-buffer-other-frame, pop-to-buffer-same-window)
3083 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
3084 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
3085 (switch-to-buffer-same-frame)
3086 (switch-to-buffer-other-window-same-frame)
3087 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
3088 (display-buffer-alist-set-1, display-buffer-alist-set-2)
3089 (display-buffer-alist-set): Remove.
3090 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
3091 (special-display-regexps, special-display-function):
3092 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
3093 parameter.
3094 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
3095 (special-display-frame-alist, special-display-popup-frame)
3096 (same-window-buffer-names, same-window-regexps, same-window-p)
3097 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
3098 (split-window-preferred-function, split-height-threshold)
3099 (split-width-threshold, window-splittable-p)
3100 (split-window-sensibly, window--try-to-split-window)
3101 (window--frame-usable-p, even-window-heights)
3102 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
3103 (window--display-buffer-2, display-buffer-other-frame):
3104 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
3105 (display-buffer-default, display-buffer-assq-regexp): New functions.
3106 (display-buffer-alist): Rewrite doc-string.
3107 (display-buffer-default-action)
3108 (display-buffer-overriding-action): New variables.
3109 (display-buffer, switch-to-buffer): Rewrite.
3110 (pop-to-buffer): Restore Emacs 23 behavior but use
3111 window-normalize-buffer-to-display.
3112 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
3113 Restore Emacs 23 behavior but use
3114 window-normalize-buffer-to-switch-to.
3115 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
3116 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
3117 Rewrite using Emacs 23 options.
f818cd2a 3118
5bc3b51d
MA
31192011-08-31 Michael Albinus <michael.albinus@gmx.de>
3120
3121 * net/tramp.el (tramp-root-regexp): Remove.
3122 (tramp-completion-file-name-regexp-unified)
3123 (tramp-completion-file-name-regexp-separate)
3124 (tramp-completion-file-name-regexp-url): Don't use leading volume
3125 letter on win32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
3126 (tramp-drop-volume-letter): Simplify definition.
3127 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 3128
b1a4f8e1
SM
31292011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
3130
3131 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
3132 (bug#9356).
3133
5664fa7b
RT
31342011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
3135
b1a4f8e1 3136 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 3137
9a45d6c3
JL
31382011-08-29 Juri Linkov <juri@jurta.org>
3139
3140 * isearch.el (isearch-done): Don't display message "Mark saved"
3141 when arg `edit' is non-nil to prevent its flicker in the echo area.
3142
fb87e0fb
CY
31432011-08-28 Chong Yidong <cyd@stupidchicken.com>
3144
3145 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
3146 obsolete packages for deletion.
3147
09ac1c2a
CS
31482011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
3149
3150 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 3151 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
3152 view-mode from help-mode.
3153 (help-xref-override-view-map): Remove.
3154 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
3155 view-mode is not used anymore.
3156
7a1ff57f
CY
31572011-08-28 Chong Yidong <cyd@stupidchicken.com>
3158
3159 * server.el (server-port): Doc fix.
3160
b9696605
CY
3161 * cus-theme.el (custom-theme-choose-mode): Inherit from
3162 special-mode (Bug#9124).
3163 (custom-theme-choose-mode-map): Add special-mode to parent.
3164
ef8cdf8c
AM
31652011-08-28 Alan Mackenzie <acm@muc.de>
3166
3167 * progmodes/cc-fonts.el
3168 (c-make-font-lock-BO-decl-search-function): New function.
3169 (c-basic-matchers-after - "Fontify the clauses after various
3170 keywords"): Extract the three keyword lists for the 3 erroneous
3171 constructs from the list of four, and use the new function above
3172 in place of an old one.
3173
27de4e20
DD
31742011-08-28 Deniz Dogan <deniz@dogan.se>
3175
3176 * net/rcirc.el (rcirc-insert-prev-input)
3177 (rcirc-insert-next-input): Remove unused argument.
3178
356a3681
SM
31792011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3180
3181 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
3182
3fc9b218
AM
31832011-08-27 Alan Mackenzie <acm@muc.de>
3184
3185 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
3186 handle function pointer parameters properly.
3187
538a061c
MR
31882011-08-27 Martin Rudalics <rudalics@gmx.at>
3189
3190 * window.el (display-buffer-reuse-window): Fix case where
3191 selected window was reused with non-nil OTHER-WINDOW argument.
3192 (Bug#9381)
3193
35b1c40c
DD
31942011-08-27 Deniz Dogan <deniz@dogan.se>
3195
3196 * net/rcirc.el (rcirc-check-auth-status): Adding support for
3197 oftc's NickServ messages.
3198
2f6a3e79
GM
31992011-08-27 Glenn Morris <rgm@gnu.org>
3200
3201 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
3202
7254299e
CY
32032011-08-26 Chong Yidong <cyd@stupidchicken.com>
3204
3205 * emacs-lisp/package.el (package-install): Call package-initialize
3206 if called interactively.
3207
f8ccf167
LL
32082011-08-26 Leo Liu <sdl.web@gmail.com>
3209
3210 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
3211
3e8cd5ce
JL
32122011-08-25 Juri Linkov <juri@jurta.org>
3213
3214 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
3215 `search-whitespace-regexp' (bug#9364).
3216
93eb7113
JL
32172011-08-25 Juri Linkov <juri@jurta.org>
3218
3219 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
3220 `regexp-search-ring' to their global values to protect from
3221 updating by `read-from-minibuffer' (bug#9185).
3222
f65d1611
JL
32232011-08-25 Juri Linkov <juri@jurta.org>
3224
3225 * textmodes/ispell.el (ispell-command-loop): Add newline
3226 at the end of the "Use option `i'..." line.
3227
f1cf7a31
JL
32282011-08-25 Juri Linkov <juri@jurta.org>
3229
3230 * battery.el (display-battery-mode): If `battery-status-function'
3231 or `battery-mode-line-format' is nil, display the message and set
3232 `display-battery-mode' to nil (bug#9363).
3233
0c95fcf7
EZ
32342011-08-25 Eli Zaretskii <eliz@gnu.org>
3235
3236 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
3237 bidi-string-mark-left-to-right; they are unnecessary now.
3238
a2ebe600
DD
32392011-08-25 Deniz Dogan <deniz@dogan.se>
3240
3241 * net/quickurl.el: Documentation typo fixes.
3242
e4ed06f1
CY
32432011-08-25 Chong Yidong <cyd@stupidchicken.com>
3244
3245 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
3246
e5f1c99e
GM
32472011-08-25 Glenn Morris <rgm@gnu.org>
3248
b2948976
GM
3249 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
3250
e5f1c99e
GM
3251 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
3252 (smtpmail-via-smtp): Handle nil response from smtp.
3253
f22f4808
JL
32542011-08-24 Juri Linkov <juri@jurta.org>
3255
3256 * proced.el (proced-marked): Inherit from `error' instead of
3257 `font-lock-warning-face'.
3258
3259 * ibuffer.el (ibuffer-marked-face): Change default face from
3260 `font-lock-warning-face' to `warning'.
3261 (ibuffer-deletion-face): Change default face from
3262 `font-lock-type-face' to `error'.
3263
3264 * battery.el (battery-update): Use the face `error' instead of
3265 `font-lock-warning-face' (bug#6117).
3266
6a93965e
JL
32672011-08-24 Juri Linkov <juri@jurta.org>
3268
3269 * faces.el (success): Change face color from "Green3" to
3270 "ForestGreen" on light background (bug#9353).
3271
1ed43b09
CY
32722011-08-24 Chong Yidong <cyd@stupidchicken.com>
3273
5664fa7b
RT
3274 * window.el (quit-window): Rename from quit-restore-window.
3275 Use same arglist as old quit-window.
1ed43b09
CY
3276 (frame-auto-delete): Doc fix.
3277
3278 * view.el (view-mode-exit): Use quit-window.
3279
11dcdbb2
JL
32802011-08-24 Juri Linkov <juri@jurta.org>
3281
3282 * isearch.el (isearch-ring-adjust1): Start visiting previous
3283 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
3284 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
3285 for empty search string (when the last search string is reused
3286 automatically) to adjust the isearch ring to the last element and
3287 prepare the correct index for further M-p commands (bug#9185).
3288
de62b4df
KH
32892011-08-24 Kenichi Handa <handa@m17n.org>
3290
3291 * international/ucs-normalize.el: If decomposition property of
3292 CHAR is the default one (i.e. a list of CHAR itself), treat it as
3293 nil.
3294 (nfd, nfkd): Likewise.
3295
963b492b
SM
32962011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
3297
3298 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
3299 from process filters aren't reliably transmitted to the surrounding
3300 accept-process-output.
3301 (mpc-proc-check): New function.
3302 (mpc-proc-sync): Use it (bug#8293)
3303
93b6b5e1
SM
33042011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
3305
3306 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
3307 Add compatibility functions (bug#9313).
3308
bca633fb
EZ
33092011-08-23 Eli Zaretskii <eliz@gnu.org>
3310
b177498a
EZ
3311 * cus-start.el (all): Add entry for bidi-paragraph-direction.
3312
bca633fb
EZ
3313 * international/uni-bidi.el: Regenerated.
3314
0902a04e
KH
33152011-08-23 Kenichi Handa <handa@m17n.org>
3316
3317 * international/charprop.el:
3318 * international/uni-bidi.el:
3319 * international/uni-category.el:
3320 * international/uni-combining.el:
3321 * international/uni-comment.el:
3322 * international/uni-decimal.el:
3323 * international/uni-decomposition.el:
3324 * international/uni-digit.el:
3325 * international/uni-lowercase.el:
3326 * international/uni-mirrored.el:
3327 * international/uni-name.el:
3328 * international/uni-numeric.el:
3329 * international/uni-old-name.el:
3330 * international/uni-titlecase.el:
3331 * international/uni-uppercase.el: Regenerate.
3332
3bbf23bc
MR
33332011-08-23 Martin Rudalics <rudalics@gmx.at>
3334
3335 * help.el (help-window-setup): Fix message displayed when other
3336 window is reused. (Bug#9341)
3337
b3fd59bd
SM
33382011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
3339
1802e444
SM
3340 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
3341 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
3342
b3fd59bd
SM
3343 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
3344 Mark obsolete.
3345 * shell.el (shell-parse-pcomplete-arguments): New function.
3346 (shell-completion-vars): Use it instead (bug#9160).
3347
4eb61348
SM
33482011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
3349
867cab74
SM
3350 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
3351 strings and comments (bug#9333).
3352
4eb61348
SM
3353 * emacs-lisp/debug.el (debug-arglist): New function.
3354 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
3355 (debug-on-entry-1): Handle interpreted closures (bug#9120).
3356
262a1439
JL
33572011-08-22 Juri Linkov <juri@jurta.org>
3358
56ee679c
JL
3359 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3360 Revert regexp that highlights output switches to its old
3361 pre-2010-10-28 value and remove one `?' from it (bug#9319).
3362
262a1439
JL
3363 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
3364 to check for empty output (bug#9226).
3365
f13f86fb
CY
33662011-08-22 Chong Yidong <cyd@stupidchicken.com>
3367
3368 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
3369 symbol-constituent as the default, as that stops font-lock from
3370 working properly (Bug#8843).
3371
c65c9622
LMI
33722011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3373
3374 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
3375 `coding-system-for-*' around the process open call to avoid
3376 auth-source side effects.
e7f2c178 3377 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
3378 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
3379 probe hangs.
c65c9622 3380
23a8a5ab
CY
33812011-08-21 Chong Yidong <cyd@stupidchicken.com>
3382
ff98b2dd
CY
3383 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
3384
23a8a5ab
CY
3385 * emacs-lisp/find-func.el (find-function-noselect): New arg
3386 lisp-only.
3387
3388 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
3389 signal an error for built-in functions (Bug#6664).
3390
f5e3c598
LMI
33912011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3392
3393 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
3394 (smtpmail-try-auth-methods): Use it.
3395
a3f2468a
CY
33962011-08-21 Chong Yidong <cyd@stupidchicken.com>
3397
2c34e8da
CY
3398 * font-lock.el (font-lock-fontify-region)
3399 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
3400 (font-lock-default-unfontify-buffer)
3401 (font-lock-default-fontify-region)
3402 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
3403
b3fd59bd
SM
3404 * progmodes/compile.el (compilation-error-properties):
3405 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
3406 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
3407 `ant' regexp.
ee31aabc 3408
a3f2468a
CY
3409 * net/browse-url.el (browse-url-firefox): Don't call
3410 browse-url-firefox-sentinel unless using -remote (Bug#9328).
3411
8e999f70
GM
34122011-08-20 Glenn Morris <rgm@gnu.org>
3413
c21a496a
GM
3414 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
3415
59ee0542
GM
3416 * tutorial.el (tutorial--default-keys): Update some default bindings.
3417
8e999f70
GM
3418 * files.el (hack-local-variables): Fully ignore case for "mode:".
3419
e3715033
AM
34202011-08-20 Alan Mackenzie <acm@muc.de>
3421
3422 Resolve invalid use of a regexp in regexp-opt.
3423
4d61f28d
JB
3424 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
3425 detection for a java annotation.
e3715033 3426
4d61f28d 3427 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
3428 detection for a java annotation.
3429
4d61f28d
JB
3430 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
3431 handling for java.
e3715033
AM
3432 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
3433
04ed2e9c
CY
34342011-08-20 Chong Yidong <cyd@stupidchicken.com>
3435
3436 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
3437 (Bug#9274).
3438
826cee64
AM
34392011-08-20 Alan Mackenzie <acm@muc.de>
3440
58179cce 3441 Fontify CPP expressions correctly when starting in the middle of
826cee64
AM
3442 such a construct. Mainly for when jit-lock etc. starts a chunk
3443 here.
3444
58179cce 3445 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
826cee64 3446 variable.
58179cce 3447 (c-make-font-lock-search-form): New function, extracted from
826cee64
AM
3448 c-make-font-lock-search-function.
3449 (c-make-font-lock-search-function): Use the above function.
3450 (c-make-font-lock-context-search-function): New function.
3451 (c-cpp-matchers): Enhance the preprocessor expression case with
3452 the above function
3453 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
3454 which takes an expression.
3455
3456 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
3457
13009bd8
MR
34582011-08-20 Martin Rudalics <rudalics@gmx.at>
3459
3460 * window.el (display-buffer-reuse-window)
3461 (display-buffer-pop-up-window): Don't reuse or split a side
3462 window.
3463
9234ff7f
GM
34642011-08-19 Glenn Morris <rgm@gnu.org>
3465
3466 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 3467 Downcase "Mode:". (Bug#9331)
9234ff7f 3468
f635daa1
CY
34692011-08-18 Chong Yidong <cyd@stupidchicken.com>
3470
3471 * international/characters.el: Add L and R categories.
3472
3473 * subr.el (bidi-string-mark-left-to-right): Rename from
3474 string-mark-left-to-right. Use category search.
3475
3476 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
3477
bc987f8b
JL
34782011-08-18 Juri Linkov <juri@jurta.org>
3479
3480 * faces.el (error, warning, success): New faces with definitions
3481 copied from old default values of `font-lock-warning-face',
3482 `compilation-warning', `compilation-info' (bug#6117).
3483
3484 * font-lock.el (font-lock-warning-face): Inherit from `error'.
3485
3486 * progmodes/compile.el (compilation-error): Inherit from `error'.
3487 (compilation-warning): Inherit from `warning'.
3488 (compilation-info): Inherit from `success'.
3489
3490 * dired.el (dired-marked): Inherit from `warning'.
3491 (dired-flagged): Inherit from `error'.
3492
57173b96
LMI
34932011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3494
3e79eb87
LMI
3495 * mail/smtpmail.el (auth-source): Require to avoid problems with
3496 binding variables (bug#9298). Also clean up some unused
3497 autoloads.
3498
b3fd59bd
SM
3499 * net/network-stream.el (network-stream-open-starttls):
3500 Support using starttls.el without using gnutls-cli.
57173b96 3501
02b404de
JL
35022011-08-17 Juri Linkov <juri@jurta.org>
3503
3504 * progmodes/grep.el (rgrep): Handle the case when
3505 `grep-find-command' is a cons cell (bug#9278).
3506
8c9177f2
MR
35072011-08-17 Martin Rudalics <rudalics@gmx.at>
3508
3509 * window.el (display-buffer-pop-up-frame): Run frame creation
3510 function with BUFFER current (as special-display-popup-frame
3511 does). Reported by Drew Adams.
3512
3644a0ab
DU
35132011-08-17 Daiki Ueno <ueno@unixuser.org>
3514
3515 * epa-mail.el: Simplify GnuPG group expansion using
3516 epg-expand-group.
3517 (epa-mail-group-alist, epa-mail-group-modtime)
3518 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
3519 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
3520 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
3521 Remove.
3522
5e617bc2 35232011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
3524
3525 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
3526
9c4aeabf
AM
35272011-08-16 Alan Mackenzie <acm@muc.de>
3528
3529 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
3530 Correct, to avoid the inside of macros.
3531
3a99bf64
RS
35322011-08-16 Richard Stallman <rms@gnu.org>
3533
04963aa8
RS
3534 * epa-mail.el: Handle GnuPG group definitions.
3535 (epa-mail-group-alist, epa-mail-group-modtime)
3536 (epa-mail-gnupg-conf-file): New variables.
3537 (epa-mail-parse-groups, epa-mail-sync-groups)
3538 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
3539 (epa-mail-expand-recipients): New functions.
3540 (epa-mail-encrypt): Call epa-mail-expand-recipients.
3541
177549d0
RS
3542 * mail/rmail.el (rmail-epa-decrypt): New command.
3543
fe38beef
RS
3544 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
3545 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
3546 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
3547 (epa-decrypt-armor-in-region): Make error message clearer.
3548
934eacb9
SM
35492011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3550
3551 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
3552 and "a2b" to "ab" for `prefix'.
3553
d024fb4e
CY
35542011-08-14 Chong Yidong <cyd@stupidchicken.com>
3555
3556 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
3557 filter groups.
de148fee
CY
3558 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
3559 Fourquet (Bug#8804).
d024fb4e 3560
62f1ca49
JB
35612011-08-12 Juanma Barranquero <lekktu@gmail.com>
3562
3563 * startup.el (argi): Declare as global variable (bug#9275).
3564
9ccaaa4b
CY
35652011-08-12 Chong Yidong <cyd@stupidchicken.com>
3566
3567 * subr.el (string-mark-left-to-right): Search the entire string
3568 for RTL script, not just the terminating character. Doc fix.
3569
a3dae87a
SM
35702011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3571
6cd18349
SM
3572 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
3573 New function.
3574 (js--regexp-literal, js-syntax-propertize-function): Remove.
3575 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
3576 (js-mode-map): Don't rebind electric keys.
3577 (js-insert-and-indent): Remove.
3578 (js-mode): Setup electric-layout and electric-indent instead.
3579
a3dae87a
SM
3580 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
3581
9d5cb631
DU
35822011-08-12 Daiki Ueno <ueno@unixuser.org>
3583
3584 * epa.el (epa-progress-callback-function): Fix the logic of
3585 displaying progress.
3586 * epa-file.el (epa-file-insert-file-contents): Make progress
3587 display more user-friendly.
3588 (epa-file-write-region): Ditto.
3589
3e26a4a2
CY
35902011-08-10 Chong Yidong <cyd@stupidchicken.com>
3591
3592 * subr.el (string-mark-left-to-right): New function.
3593
3594 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
3595 Use string-mark-left-to-right.
3596 (list-buffers-noselect): Caller changed.
3597
a3dae87a
SM
3598 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
3599 Use string-mark-left-to-right.
3e26a4a2
CY
3600 (tabulated-list-print): Recenter after moving point.
3601
ac8cf6e6
JL
36022011-08-10 Juri Linkov <juri@jurta.org>
3603
3604 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
3605 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
3606 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
3607
8d96c9a4
CY
36082011-08-09 Chong Yidong <cyd@stupidchicken.com>
3609
3610 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
3611 (Bug#7554).
3612
7be1c708 36132011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
3614
3615 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
3616 character. (Bug#6594)
3617
37e11a63
CY
36182011-08-08 Chong Yidong <cyd@stupidchicken.com>
3619
839dde57
CY
3620 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
3621 (image-dired--with-db-file): New macro.
3622 (image-dired-write-tags, image-dired-remove-tag)
3623 (image-dired-create-gallery-lists, image-dired-write-comments)
3624 (image-dired-get-comment, image-dired-mark-tagged-files)
3625 (image-dired-list-tags, image-dired-gallery-generate): Use it.
3626 (image-dired-gallery-generate): Use insert-file-contents.
3627
37e11a63
CY
3628 * time.el (display-time-world-list, display-time-world-display):
3629 * time-stamp.el (time-stamp-string):
3630 * vc/add-log.el (add-change-log-entry): Use setenv instead of
3631 set-time-zone-rule (Bug#7337).
3632
0b4946c4
DU
36332011-08-08 Daiki Ueno <ueno@unixuser.org>
3634
3635 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
3636 (epg-error-to-string, epg-errors-to-string): New function.
3637 (epg-wait-for-completion): Reverse errors list.
3638 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
3639 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
3640 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
3641 (epg-sign-keys, epg-generate-key-from-file)
3642 (epg-generate-key-from-string): Format errors by using
3643 epg-errors-to-string (bug#9255).
3644 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
3645
75bfc667
JL
36462011-08-07 Juri Linkov <juri@jurta.org>
3647
3648 * faces.el (list-faces-display): Remove extra angle bracket
3649 from `help-mode-map'.
3650
3651 * info.el (Info-history-toc-nodes): Doc fix.
3652
3653 * longlines.el (longlines-mode): Doc fix.
3654
673e08bb
SM
36552011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
3656
4640dd88
SM
3657 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
3658 of statements and in a few more cases (bug#9183).
3659
673e08bb
SM
3660 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
3661 New functions.
3662 (cl-transform-lambda): Use them (bug#9239).
3663
89b3f019
MR
36642011-08-05 Martin Rudalics <rudalics@gmx.at>
3665
3666 * window.el (display-buffer-same-window)
3667 (display-buffer-same-frame, display-buffer-other-window)
3668 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
3669 (pop-to-buffer-other-window)
3670 (pop-to-buffer-same-frame-other-window)
3671 (pop-to-buffer-other-frame): Make them defuns.
3672 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
3673
640c8776
SM
36742011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3675
3676 * subr.el (make-composed-keymap): Move from C. Change calling
3677 convention, and improve docstring to bring attention to a subtle point.
3678 * minibuffer.el (completing-read-default): Adjust accordingly.
3679
63648a95
MA
36802011-08-03 Michael Albinus <michael.albinus@gmx.de>
3681
3682 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
3683 (tramp-open-shell): Use `tramp-shell-quote-argument'.
3684
3685 * net/trampver.el: Update release number.
3686
b796c9b7
SM
36872011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3688
3689 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
3690 "in" (bug#9190).
3691
2239d7d5
LMI
36922011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
3693
e07dd7c3
LMI
3694 * mail/sendmail.el (sendmail-query-once): Restore the current
3695 buffer after querying (bug#9074).
3696
0e6a2bd7
LMI
3697 * dired.el (dired-flagged): Use different faces for marked and
3698 flagged files (bug#6117).
3699
ce887515
LMI
3700 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
3701 (bug#4433).
3702
92f2affc
LMI
3703 * ido.el (ido-mode): Switch off the message if called
3704 non-interactively.
3705
57d5aff0
LMI
3706 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
3707 before 587, since it appears that that's more likely to work for
3708 more people.
3709
98cd6c18 3710 * cus-edit.el (custom-file): When running under emacs -q, always
e1dbe924 3711 refuse to save the customizations, even if the .emacs file doesn't
98cd6c18
LMI
3712 exist.
3713
b96dec83
LMI
3714 * info.el: Remove the `Info-beginning-of-buffer' function
3715 (bug#8325).
3716
b796c9b7
SM
3717 * net/network-stream.el (network-stream-open-starttls):
3718 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 3719
d90e2ea0
MR
37202011-08-01 Martin Rudalics <rudalics@gmx.at>
3721
3722 * window.el (display-buffer-in-window): Don't set dedicated status
3723 of window here (Bug#9215).
3724 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
3725 (display-buffer-pop-up-side-window)
b796c9b7 3726 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 3727
cca09170
SM
37282011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3729
3730 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
3731 before binding generated-autoload-file.
3732
027b979c
DD
37332011-08-01 Deniz Dogan <deniz@dogan.se>
3734
3735 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
3736
3c7ee4f3
MA
37372011-07-30 Michael Albinus <michael.albinus@gmx.de>
3738
3739 Sync with Tramp 2.2.2.
3740
3741 * net/trampver.el: Update release number.
3742
2cc8e51a
JL
37432011-07-30 Juri Linkov <juri@jurta.org>
3744
3745 * dired-aux.el (dired-touch-initial): Remove function.
3746 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
3747 current time, and `default' to the last modification time of the
3748 current marked file (bug#6887).
3749
a514d856
JM
37502011-07-28 Jose E. Marchesi <jemarch@gnu.org>
3751
3752 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 3753 numeric argument to read-number (bug#9163).
a514d856 3754
8a7eddd7
MA
37552011-07-27 Michael Albinus <michael.albinus@gmx.de>
3756
3757 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
3758 connection process, it could be nil.
3759
1ddd96f5
LL
37602011-07-27 Leo Liu <sdl.web@gmail.com>
3761
3762 Simplify url handling in rcirc-mode.
3763
3764 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
3765 (rcirc-browse-url-at-mouse): Remove.
3766 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
3767
b248a85d
AM
37682011-07-26 Alan Mackenzie <acm@muc.de>
3769
3770 Fontify bitfield declarations properly.
3771
3772 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
3773 (c-symbol-chars): Now exported as a lang variable.
3774 (c-not-primitive-type-keywords): New lang variable.
3775
3776 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
3777 QT keyword "more" to prevent "more slots: ...." being spuriously
58179cce 3778 parsed as a bitfield declaration.
b248a85d 3779
b796c9b7
SM
3780 * progmodes/cc-engine.el (c-beginning-of-statement-1):
3781 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
3782 (c-punctuation-in): New function.
3783 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
3784 declarations properly.
3785
68575ab0
UJ
37862011-07-26 Ulf Jasper <ulf.jasper@web.de>
3787
3788 * calendar/icalendar.el (icalendar--all-events): Take care of
3789 multiple vcalendars in a single file.
b796c9b7 3790 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 3791
0f0a88b9
DD
37922011-07-25 Deniz Dogan <deniz@dogan.se>
3793
3794 * image.el (insert-image): Clarifying docstring.
3795
0b3f36df
MA
37962011-07-24 Michael Albinus <michael.albinus@gmx.de>
3797
3798 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
3799 `tramp-send-command-and-check' if there is no error.
3800 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
3801
a9901f61
AM
38022011-07-22 Alan Mackenzie <acm@muc.de>
3803
3804 Prevent cc-langs.elc being loaded at run time.
3805
3806 * progmodes/cc-mode.el: Remove two autoload forms which loaded
3807 cc-langs.
3808
4d61f28d 3809 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
3810 "(require 'cc-langs)". Quote a form so it will evaluate at
3811 (cc-mode's) compilation time.
3812
11d074b2
MA
38132011-07-22 Michael Albinus <michael.albinus@gmx.de>
3814
3815 * net/tramp.el (tramp-file-name-handler): Avoid recursive
3816 loading. (Bug#9114)
3817
938b94c8
MR
38182011-07-21 Martin Rudalics <rudalics@gmx.at>
3819
3820 * window.el (display-buffer-pop-up-window)
3821 (display-buffer-pop-up-side-window)
3822 (display-buffer-in-side-window): Call display-buffer-set-height
3823 and display-buffer-set-width after setting the new window's
b796c9b7 3824 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 3825
bfa4f190
SS
38262011-07-20 Sam Steingold <sds@gnu.org>
3827
3828 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
3829 (etags-tags-included-tables): Call `convert-standard-filename' on
3830 the file names contained in TAGS so that windows Emacs can handle
3831 TAGS files created by cygwin ctags.
3832
8ca42262
LMI
38332011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
3834
3835 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
3836 which apparently didn't work.
3837
5db2afd2 38382011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 3839
5db2afd2
RW
3840 * proced.el (proced-send-signal): For *Marked Processes* buffer
3841 put point at beginning of buffer.
3842
92e15d10
SB
38432011-07-19 Stephen Berman <stephen.berman@gmx.net>
3844
3845 * proced.el (proced-format): Make header lines align with the text
3846 (bug#1779).
3847
1bfd59e5
LMI
38482011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3849
3850 * view.el (view-buffer): Allow running in `special' modes if we're
3851 visiting a file (bug#8615).
3852
f5aae37c
MR
38532011-07-19 Martin Rudalics <rudalics@gmx.at>
3854
3855 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
3856 (display-buffer-alist-set-1, display-buffer-alist-set-2):
3857 New functions.
f5aae37c
MR
3858 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
3859 more accurately.
3860
bf2c1571
AM
38612011-07-18 Alan Mackenzie <acm@muc.de>
3862
3863 Fontify declarators properly when, e.g., a jit-lock chunk begins
3864 inside a declaration.
3865
3866 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
3867
b796c9b7
SM
3868 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
3869 New function.
bf2c1571
AM
3870 (c-complex-decl-matchers): Insert reference to
3871 c-font-lock-enclosing-decls.
3872
3873 * progmodes/cc-engine.el (c-backward-single-comment):
3874 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
3875 to nil around calls to (forward-comment -1).
3876
4e190b80
LMI
38772011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3878
12dc863d
LMI
3879 * image.el (put-image): Doc typo fix.
3880
a762e966
LMI
3881 * progmodes/etags.el (tags-search): Doc typo fix.
3882
4e190b80
LMI
3883 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
3884 password if we get errors 550 to 554.
3885
f019fb21
LMI
38862011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
3887
b796c9b7 3888 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 3889
81746738
LMI
3890 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
3891 indentation character (bug#6380).
3892
3ee3a1b5
LMI
3893 * files.el (buffer-offer-save): Made permanently local (bug#6241).
3894
c82f64de
LMI
3895 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
3896 to clarify what the problem is (bug#4291).
3897
f019fb21
LMI
3898 * simple.el (current-kill): Clarify what
3899 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
3900 (auto-fill-mode): Document `auto-fill-function' in relation to
3901 `auto-fill-mode' (bug#2470).
f019fb21 3902
0794775d
LM
39032011-07-16 Lawrence Mitchell <wence@gmx.li>
3904
3905 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
3906 method if slot is read-only (bug#9035).
3907
be39b8cc
MR
39082011-07-16 Martin Rudalics <rudalics@gmx.at>
3909
b796c9b7 3910 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 3911 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
3912 selected before, see discussion of (Bug#8615), (Bug#6954).
3913 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 3914
6ccf7859
GM
39152011-07-15 Glenn Morris <rgm@gnu.org>
3916
3917 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 3918 Respect help-form.
6ccf7859 3919
87e86684
LM
39202011-07-09 Lawrence Mitchell <wence@gmx.li>
3921
3922 * net/gnutls.el (gnutls-min-prime-bits): New variable.
3923 (gnutls-negotiate): Use it.
3924
d6066239
LMI
39252011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
3926
b796c9b7
SM
3927 * net/gnutls.el (gnutls-negotiate):
3928 Upcase `gnutls-algorithm-priority'.
d6066239 3929
bd23ebc0
GM
39302011-07-15 Glenn Morris <rgm@gnu.org>
3931
c65bca65
GM
3932 * jka-compr.el (jka-compr-verbose): Move from here...
3933 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
3934 Add missing :version tag.
3935 * info.el: No need to require jka-compr when compiling.
bd23ebc0 3936
478615cc
LMI
39372011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
3938
7b41decb
LMI
3939 * net/gnutls.el (gnutls-algorithm-priority): New variable.
3940 (gnutls-negotiate): Use it.
3941
dbc44fcd
LMI
3942 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
3943
06789f97
LMI
3944 * info.el (Info-beginning-of-buffer): New command.
3945 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
3946 announcing `b' as the key (bug#8325).
ab896c37 3947 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 3948
c39da690
LMI
3949 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
3950
3aa5f34b
LMI
3951 * international/mule-cmds.el
3952 (describe-specified-language-support): Make the error message
3953 clearer (bug#8905).
3954
4bf0979f
LMI
3955 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
3956
478615cc
LMI
3957 * isearch.el (isearch-barrier): Add a doc string, since it's
3958 mentioned in a function doc string (bug#8678).
3959
75c68aa1
MR
39602011-07-15 Martin Rudalics <rudalics@gmx.at>
3961
3962 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
3963 buffer argument (Bug#9083) and self-identifying label argument.
3964
a7c33da2
GM
39652011-07-15 Glenn Morris <rgm@gnu.org>
3966
3967 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
3968
2f5c6024
LMI
39692011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3970
3971 * man.el (Man-fontify-manpage): Fix message when formatting the
3972 man page (bug#7929).
3973
0bb23927 39742011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
3975
3976 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
3977 argument LRM; if non-nil, append an invisible LRM character to the
3978 buffer name.
3979 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
3980 last argument non-nil, when formatting buffer names.
0bb23927
EZ
3981 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
3982 paragraph direction.
cce4b0a7 3983
621ef9ab
LMI
39842011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3985
d1583c48
LMI
3986 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
3987 the man page name (bug#7929).
3988
6a57fb5f
LMI
3989 * image.el (put-image): Mention the `put-image' overlay property
3990 (bug#7834).
3991
d7956b14
LMI
3992 * scroll-bar.el (set-scroll-bar-mode): Mention that
3993 `scroll-bar-mode' lists the values (bug#7772).
3994
5b2d4a66
LMI
3995 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
3996 command (bug#7729).
3997
7509a874
LMI
3998 * rect.el (apply-on-rectangle): Return the point after the last
3999 operation.
4000 (string-rectangle): Go to the point after the last operation
4001 (bug#7522).
4002
4fe74b19
LMI
4003 * printing.el (pr-toggle-region): Clarify the documentation
4004 slightly (bug#7493).
4005
b796c9b7
SM
4006 * time.el (display-time-update):
4007 Allow `display-time-mail-function' to return nil (bug#7158).
4008 Fix suggested by Detlev Zundel.
ab283561 4009
fc233c9d
LMI
4010 * vc/diff.el (diff): Clarify the order the file names are read
4011 (bug#7111).
4012
43f5740b
LMI
4013 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
4014 the doc string (bug#7015).
4015
f2182a76
LMI
4016 * font-lock.el (font-lock-maximum-decoration): Mention what
4017 numeric levels mean (bug#6935).
4018
621ef9ab
LMI
4019 * startup.el (initial-buffer-choice): Don't mention the `none'
4020 selection, which is against policy.
4021
adc47434
MR
40222011-07-14 Martin Rudalics <rudalics@gmx.at>
4023
b796c9b7
SM
4024 * window.el (display-buffer-normalize-special):
4025 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 4026
7e5bfb8f
EZ
40272011-07-14 Eli Zaretskii <eliz@gnu.org>
4028
4029 * subr.el (version<, version<=, version=): Mention "-CVS" and
4030 "-12345" alpha version numbers.
4031
27fa387a
CY
40322011-07-14 Chong Yidong <cyd@stupidchicken.com>
4033
4034 * bindings.el: Add advertised binding for set-mark-command
4035 (Bug#5772).
4036
8bdfa064
CY
40372011-07-14 Chong Yidong <cyd@stupidchicken.com>
4038
4039 * bindings.el (mode-line-other-buffer):
4040 * bookmark.el (bookmark-bmenu-2-window):
4041 * bs.el (bs-cycle-next, bs-cycle-previous):
4042 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
4043 switch-to-buffer.
4044
4045 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 4046 Delete.
8bdfa064 4047
5eba16a3
JB
40482011-07-14 Juanma Barranquero <lekktu@gmail.com>
4049
4050 * follow.el (follow-debug-message, follow-redisplay):
4051 * jka-cmpr-hook.el (with-auto-compression-mode):
4052 Fix typos in docstrings.
4053
15853710
LMI
40542011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4055
a28e4607
LMI
4056 * subr.el (with-silent-modifications): Clarify somewhat what the
4057 macro inhibits (bug#6525).
4058
15853710
LMI
4059 * simple.el (eval-expression): Note what it does if called
4060 interactively (bug#6495).
4061
bee0fcef
CY
40622011-07-13 Chong Yidong <cyd@stupidchicken.com>
4063
b796c9b7
SM
4064 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
4065 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
4066
4067 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4068 Remove switch-to-buffer.
4069
58274504
LMI
40702011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4071
bd2fcc8d
LMI
4072 * files.el (make-directory): Clarify that an error will be raised
4073 if there's an error (bug#6397).
4074
0f04b32c
LMI
4075 * startup.el (initial-buffer-choice): Add `none' as a choice
4076 (bug#6234).
4077
465c5fc8
LMI
4078 * subr.el (add-hook): Clarify section about buffer-local hooks
4079 (bug#6218).
4080
58274504
LMI
4081 * dired.el (dired-flagged): Clarify doc string (bug#6117).
4082
bead9a43
JB
40832011-07-13 Juanma Barranquero <lekktu@gmail.com>
4084
4085 * tabify.el (untabify): Preserve the current column so that point
4086 doesn't move (bug#6032).
4087
3af98a7b
LMI
40882011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4089
b796c9b7
SM
4090 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
4091 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 4092
6240145a
GM
40932011-07-13 Glenn Morris <rgm@gnu.org>
4094
4095 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
4096 (dired-insert-directory): Give a message the first time
4097 if ls is found not to support --dired.
4098
1d8c2ccc
LMI
40992011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4100
4101 * simple.el (toggle-truncate-lines): Clarify what is toggled
4102 (bug#5580). Text by Drew Adams.
4103
5fc4038e
CY
41042011-07-13 Chong Yidong <cyd@stupidchicken.com>
4105
4106 * simple.el (blink-matching-open): Make the error message from the
4107 last change less verbose.
4108
bf6012e5
DN
41092011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
4110
4111 * font-lock.el (font-lock-comment-face): Use the high contrast
4112 "yellow" color for font-lock-comment-face on low color terminals
4113 using a dark background color (bug#4221).
4114
343c3b5a
LMI
41152011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4116
7e9505c5
LMI
4117 * dired.el (dired-insert-set-properties): Make the doc string
4118 reflect what it does now (bug#5325).
4119
c26fdcf5
LMI
4120 * simple.el (blink-matching-open): Say that we were unable to find
4121 the match within the limit, if we're limited (bug#5122).
4122
bb388cc5
LMI
4123 * international/mule-cmds.el (prefer-coding-system): Add an
4124 example (bug#4869).
4125
343c3b5a
LMI
4126 * progmodes/etags.el (tags-search): Document `file-list-form'
4127 (bug#4731).
4128
2a517d45
LM
41292011-07-13 Lawrence Mitchell <wence@gmx.li>
4130
4131 * net/browse-url.el (browse-url-default-browser)
4132 (browse-url-browser-function): Make the default browser choice a
4133 bit more logical (bug#4300). Also clean up the doc string.
4134
b6c78ef2
JB
41352011-07-13 Juanma Barranquero <lekktu@gmail.com>
4136
4137 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
4138 binary endings (bug#4440).
4139
1c4dd947
LMI
41402011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4141
a2014063
LMI
4142 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
4143 which can be pretty annoying (bug#8971).
4144
9c9c2d88
LMI
4145 * jka-compr.el (jka-compr-verbose): New variable, and use
4146 throughout (bug#8971).
4147
1c4dd947
LMI
4148 * info.el (Info-find-file): Fall back on the installation
4149 directory if we can't find the info node anywhere else.
4150
a1c9f41b
SO
41512011-07-13 Sergei Organov <osv@javad.com> (tiny change)
4152
4153 * vc/vc.el (vc-revert-file):
4154 Don't set file time-stamp in the past. (Bug#5181)
4155
536f3d36
LMI
41562011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4157
7152b011
LMI
4158 * files.el (after-find-file): Give a better error message when
4159 trying to find a symlink that points to a file that doesn't exist
4160 (bug#4398).
4161
536f3d36
LMI
4162 * progmodes/cc-vars.el: Remove (probably) misleading comment
4163 (bug#4396).
4164
460c0fba
JB
41652011-07-12 Johan Bockgård <bojohan@gnu.org>
4166
4167 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
4168
7a6bda45
CY
41692011-07-12 Chong Yidong <cyd@stupidchicken.com>
4170
4171 * mouse-sel.el: Hack restoring functionality, while keeping
4172 compatibility with 2010-07-03 changes to mouse selection.
4173 (mouse-sel-primary-overlay): New var.
4174 (mouse-sel-selection-alist): Use it.
4175 (mouse-sel-mode): Doc fix; remove points that are default features
4176 of mouse.el.
4177
c79598ef
JB
41782011-07-12 Johan Bockgård <bojohan@gnu.org>
4179
4180 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4181 Fix previous fix (bug#2490).
4182
ff8be6ef
RW
41832011-07-12 Roland Winkler <winkler@gnu.org>
4184
b796c9b7
SM
4185 * textmodes/bibtex.el (bibtex-initialize):
4186 Use pop-to-buffer-same-window.
ff8be6ef
RW
4187 (bibtex-search-entries): Fix interactive call.
4188
296ba3ee
LMI
41892011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4190
f5242a02 4191 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
4192 Fontise bytecomp Error lines more correctly (bug#2490).
4193 Fix suggested by Johan Bockgård.
f5242a02 4194
296ba3ee
LMI
4195 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
4196
4197 * dired-x.el (dired-guess-default): Use `delete-dups'.
4198
f69fd0d2
CY
41992011-07-12 Chong Yidong <cyd@stupidchicken.com>
4200
4201 * dired.el (dired-mark-prompt):
4202 * dired-aux.el (dired-read-shell-command): Doc fix.
4203
eab5dc07
LMI
42042011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4205
b796c9b7
SM
4206 * mail/sendmail.el (sendmail-query-once):
4207 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
4208 emacs -Q.
4209
4210 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
4211
eab5dc07
LMI
4212 * cus-edit.el (custom-file): Take an optional no-error variable.
4213 (customize-save-variable): Set the variable, and give a warning if
4214 running under "emacs -q".
4215
a1e65d42
JB
42162011-07-11 Juanma Barranquero <lekktu@gmail.com>
4217
4218 * loadhist.el (unload-feature-special-hooks):
4219 Add `auto-coding-functions', `fill-nobreak-predicate' and
4220 `find-directory-functions' (bug#5327).
4221
1d52da10
LMI
42222011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4223
be958f1d
LMI
4224 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
4225
5bedb26c
LMI
4226 * cus-edit.el (custom-guess-name-alist): -alist variables should
4227 use the `alist' type (bug#3120). Suggested by Drew Adams.
4228
1d52da10
LMI
4229 * printing.el: Add documentation to all the `pr-toggle-' commands.
4230
481a51b6
LL
42312011-07-11 Leo <sdl.web@gmail.com> (tiny change)
4232
4233 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
4234 backends where it makes sense (bug#2623).
4235
dcc88d8a
LMI
42362011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4237
c3de9feb
LMI
4238 * dired-x.el (dired-guess-default): Remove duplicate shell command
4239 entries (bug#2028).
8a93078b 4240 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 4241 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 4242
dcc88d8a
LMI
4243 * subr.el (remove-duplicates): New conveniency function.
4244
505e3645
LMI
42452011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4246
4247 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
4248 (bug#1526).
4249
42502011-07-10 Martin Rudalics <rudalics@gmx.at>
4251
4252 * window.el (display-buffer-normalize-default): Don't invert
4253 meaning of even-window-heights. Reported by Eli Zaretskii
4254 <eliz@gnu.org>.
4255
455e4fa1
BR
42562011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
4257
4258 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
4259
8e0bc3e9
CY
42602011-07-10 Chong Yidong <cyd@stupidchicken.com>
4261
4262 * window.el (display-buffer): Fix arguments to
4263 display-buffer-reuse-window in last change.
4264
fa7c3228
CY
4265 * faces.el (link): Use a less saturated blue on light backgrounds.
4266
4267 * startup.el (fancy-startup-text, fancy-about-text)
4268 (fancy-startup-tail): Use font-lock faces, for background safety.
4269
c0a7f300
BN
42702011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
4271
b796c9b7
SM
4272 * emulation/viper-cmd.el (viper-change-state-to-vi):
4273 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 4274
4dc2a129
MR
42752011-07-09 Martin Rudalics <rudalics@gmx.at>
4276
4277 * window.el (display-buffer-default-specifiers): Remove.
4278 (display-buffer-macro-specifiers): Remove default specifiers.
4279 (display-buffer-alist): Default to nil.
b796c9b7 4280 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
4281 (display-buffer-pop-up-window): Allow splitting internal
4282 windows. Check whether a live window was created.
4283 (display-buffer-other-window-means-other-frame)
4284 (display-buffer-normalize-arguments): Rename to
4285 display-buffer-normalize-argument and rewrite. Set the
4286 other-window specifier.
4287 (display-buffer-normalize-special): New function.
4288 (display-buffer-normalize-options): Rename to
4289 display-buffer-normalize-default and rewrite.
4290 (display-buffer-normalize-options-inhibit): Remove.
4291 (display-buffer-normalize-specifiers): Rewrite.
4292 (display-buffer): Process other-window specifier and call
4293 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
4294 more faithfully.
b796c9b7 4295 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 4296 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
4297 (display-buffer-in-window, display-buffer-alist-set):
4298 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
4299 <tassilo@member.fsf.org>.
4300
2d43b8c9
LL
43012011-07-09 Leo Liu <sdl.web@gmail.com>
4302
4303 * register.el (insert-register): Restore accidental change on
4304 2011-06-26. (Bug#9028)
4305
7f9b7c53
GM
43062011-07-09 Glenn Morris <rgm@gnu.org>
4307
4308 * subr.el (remq): Handle the empty list. (Bug#9024)
4309
f042cfd8
AS
43102011-07-08 Andreas Schwab <schwab@linux-m68k.org>
4311
4312 * mail/sendmail.el (send-mail-function): No longer delay custom
4313 initialization.
4314 * custom.el (custom-initialize-delay): Doc fix.
4315
856b2f11
SM
43162011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4317
4318 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
4319
afae1d68
MA
43202011-07-08 Michael Albinus <michael.albinus@gmx.de>
4321
4322 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
4323 human-friendly prompt.
4324
0757af94
SM
43252011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4326
4327 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
4328 provided by a particular plugin.
4329
d760b731
LMI
43302011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4331
4332 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
4333 save customizations (with "emacs -Q"), just set the variable
4334 instead of erroring out.
4335
4336 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
4337
cd79ce90
JL
43382011-07-08 Juri Linkov <juri@jurta.org>
4339
4340 * arc-mode.el (archive-zip-expunge, archive-zip-update)
4341 (archive-zip-update-case): Use 7z if found by `executable-find'.
4342 The order of searching the available programs is the same as in
4343 `archive-zip-extract' (bug#8968).
4344
14cc04aa
CY
43452011-07-07 Chong Yidong <cyd@stupidchicken.com>
4346
4347 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
4348 (menu-bar-options-menu): Tweak descriptions.
4349
0a1848ec
LMI
43502011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4351
4352 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
4353 menu items into verb phrases (bug#1421). Also refill to fit under
4354 80 columns.
4355
f5bd0689
CY
43562011-07-07 Chong Yidong <cyd@stupidchicken.com>
4357
538e85c6
CY
4358 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
4359 (Info-read-node-name): Doc fix (Bug#1084).
4360
f5bd0689
CY
4361 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
4362 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
4363 (end-of-sexp, beginning-of-sexp)
4364 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
4365 (forward-symbol, forward-same-syntax, word-at-point)
4366 (sentence-at-point): Doc fix (Bug#1144).
4367
56ec5115
LMI
43682011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4369
f3f8e37f
LMI
4370 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
4371 should cover it (bug#1281).
4372
0757af94 4373 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 4374
e9fce1ac 4375 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12b9eb35
LMI
4376 negotiation fails, then possibly try again with a non-encrypted
4377 connection (bug#9017).
4378
56ec5115
LMI
4379 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
4380 be used.
4381
c2f9aec8
RS
43822011-07-07 Richard Stallman <rms@gnu.org>
4383
4384 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
4385 property, and handle its changed format.
4386 Look for the correct line number.
4387 Use file's line contents (but not past first =) to find
4388 correct line in message.
4389
ef7b981d 43902011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
4391
4392 * international/characters.el (build-unicode-category-table):
4393 Delete it.
0757af94 4394 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 4395
0757af94 4396 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
4397 to src/chartab.c.
4398 (get-char-code-property): Call unicode-property-table-internal to
4399 load a file. Call get-unicode-property-internal where necessary.
4400 (put-char-code-property): Call unicode-property-table-internal to
4401 load a file. Call put-unicode-property-internal where necessary.
4402 put-unicode-property-internal where necessary.
0757af94
SM
4403 (char-code-property-description):
4404 Call unicode-property-table-internal to load a file.
c805dec0
KH
4405
4406 * international/charprop.el:
4407 * international/uni-bidi.el:
4408 * international/uni-category.el:
4409 * international/uni-combining.el:
4410 * international/uni-comment.el:
4411 * international/uni-decimal.el:
4412 * international/uni-decomposition.el:
4413 * international/uni-digit.el:
4414 * international/uni-lowercase.el:
4415 * international/uni-mirrored.el:
4416 * international/uni-name.el:
4417 * international/uni-numeric.el:
4418 * international/uni-old-name.el:
4419 * international/uni-titlecase.el:
4420 * international/uni-uppercase.el: Regenerate.
4421
4422 * loadup.el: Load international/charprop.el before
4423 international/characters.
4424
e14b388a
CY
44252011-07-07 Chong Yidong <cyd@stupidchicken.com>
4426
4427 * window.el (next-buffer, previous-buffer): Signal an error if
4428 called from a minibuffer window.
4429
4430 * bindings.el: Revert 2011-07-04 change.
4431
354cf0ba
RS
44322011-07-06 Richard Stallman <rms@gnu.org>
4433
4434 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
4435 (rmail-mime-insert-bulk, rmail-mime-insert-text):
4436 Treat markers like ints.
4437 (rmail-mime-entity): Doc fix.
4438
a48868a7
LMI
44392011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
4440
4906cd3d
LMI
4441 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
4442 defcustom again for backwards compatibility.
4443
e0457abe
LMI
4444 * simple.el (shell-command-on-region): Fill.
4445
d67f7e1f
LMI
4446 * dired-aux.el (dired-kill-line): Add a doc string.
4447
fe204702
LMI
4448 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
4449 to "\\sw\\|\\s_" (bug#358).
4450
a48868a7
LMI
4451 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
4452 (dired-unmark-backward): Ditto.
4453 (dired-flag-backup-files): Ditto.
4454
4455 * dired-x.el (dired-mark-sexp): Ditto.
4456
aa8a705c
RS
44572011-07-06 Richard Stallman <rms@gnu.org>
4458
4459 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
4460 (rmail-mime-entity): New arg TRUNCATED.
4461 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
4462 New functions.
4463 (rmail-mime-save): Warn if entity is truncated.
4464 (rmail-mime-toggle-hidden): Likewise, for showing.
4465 (rmail-mime-process-multipart): Record when an entity is truncated.
4466
a9a936b9
RS
4467 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
4468 if ENTITY is a string.
4469
1f2b92cb
LMI
44702011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
4471
f4f73198 4472 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
4473 of faces when `M-C-x'-ing their definitions (bug#8378).
4474 Also clean up the code slightly.
f4f73198 4475
12b16734 4476 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
da6062e6 4477 because that makes the colors go away.
12b16734 4478
f0691d22
LMI
4479 * mail/sendmail.el (send-mail-function): Change the default to
4480 `sendmail-query-once'.
9e87df06 4481 (sendmail-query-once): Add an autoload cookie.
f0691d22 4482
1f2b92cb
LMI
4483 * net/network-stream.el (network-stream-open-starttls): Try using
4484 a plain connection even if the server offered STARTTLS, and we
4485 kinda wanted to use it, if Emacs doesn't have any STARTTLS
4486 capability. This should make smtpmail.el work in slightly more
4487 configurations.
4488
1cdd2a1b
MA
44892011-07-06 Michael Albinus <michael.albinus@gmx.de>
4490
4491 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
4492 New defun.
4493 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
4494
fbcc67e2
MM
44952011-07-06 Michael R. Mauger <mmaug@yahoo.com>
4496
4497 * progmodes/sql.el: Version 3.0
0757af94 4498 (sql-product-alist): Add product :completion-object,
fbcc67e2 4499 :completion-column, and :statement attributes.
0757af94 4500 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 4501 (sql-mode-syntax-table): Mark all punctuation.
0757af94 4502 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
4503 ansi keywords.
4504 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 4505 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
4506 (sql-oracle-show-reserved-words): New function for development.
4507 (sql-product-font-lock): Simplify for source code buffers.
4508 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
4509 New functions.
4510 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
4511 (sql-mode-map): Add statement movement functions.
4512 (sql-ansi-statement-starters, sql-oracle-statement-starters):
4513 New variable.
fbcc67e2
MM
4514 (sql-statement-regexp, sql-beginning-of-statement)
4515 (sql-end-of-statement, sql-signum): New functions.
0757af94 4516 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
4517 (sql-show-sqli-buffer): Bug fix.
4518 (sql-interactive-mode): Store connection data as buffer local.
0757af94 4519 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
4520 with sql-interactive-mode.
4521 (sql-save-connection): Save buffer local settings.
0757af94 4522 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
4523 (sql-product-interactive): Bug fix.
4524 (sql-preoutput-hold): New variable.
4525 (sql-interactive-remove-continuation-prompt): Bug fixes.
4526 (sql-debug-redirect): New variable.
4527 (sql-str-literal): New function.
4528 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 4529 Redesign.
fbcc67e2
MM
4530 (sql-oracle-save-settings, sql-oracle-restore-settings)
4531 (sql-oracle-list-all, sql-oracle-list-table): New functions.
4532 (sql-completion-object, sql-completion-column)
4533 (sql-completion-sqlbuf): New variables.
4534 (sql-build-completions-1, sql-build-completions)
4535 (sql-try-completion): New functions.
4536 (sql-read-table-name): Use them.
4537 (sql-contains-names): New buffer local variable.
4538 (sql-list-all, sql-list-table): Use it.
4539 (sql-oracle-completion-types): New variable.
4540 (sql-oracle-completion-object, sql-sqlite-completion-object)
4541 (sql-postgres-completion-object): New functions.
4542
d4eaeab1
GM
45432011-07-06 Glenn Morris <rgm@gnu.org>
4544
4545 * window.el (pop-to-buffer): Doc fix.
4546
322b7dab 45472011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
4548
4549 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
4550
322b7dab 45512011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 4552
322b7dab 4553 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 4554
322b7dab 4555 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 4556
605dd5bf
CY
45572011-07-05 Chong Yidong <cyd@stupidchicken.com>
4558
4559 * button.el (button): Inherit from link face. Suggested by Dan
4560 Nicolaescu.
4561
7dbfa719
SM
45622011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4563
3db614b0
SM
4564 * progmodes/gdb-mi.el: Fit in 80 columns.
4565 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
4566 switch-to-buffer.
4567
7dbfa719
SM
4568 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
4569 if imenu is simply not configured (bug#8941).
4570
919d884a
KM
45712011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
4572
4573 * allout.el (allout-post-undo-hook): New allout outline-change
4574 event hook to signal undo activity.
4575 (allout-post-command-business): Run allout-post-undo-hook if an
4576 undo just occurred.
7dbfa719
SM
4577 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
4578 * allout-widgets.el (allout-widgets-after-undo-function):
4579 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
4580 in the vicinity of an undo.
4581 (allout-widgets-mode): Include allout-widgets-after-undo-function
4582 on the new allout-post-undo-hook.
4583
450a0f09
SM
45842011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4585
4586 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
4587 Let define-derived-mode define it.
4588 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
4589 cycles of abbrev-table inheritance (bug#8998).
4590
2de69e00
RW
45912011-07-05 Roland Winkler <winkler@gnu.org>
4592
4593 * textmodes/bibtex.el: Add support for biblatex.
4594 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
4595 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
4596 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
4597 (bibtex-entry-alist, bibtex-field-alist): New variables.
4598 (bibtex-entry-field-alist): Obsolete alias for
4599 bibtex-BibTeX-entry-alist.
4600 (bibtex-entry-alist, bibtex-field-alist): New widgets.
4601 (bibtex-set-dialect): New command.
4602 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
4603 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
4604 Bind via bibtex-set-dialect.
2de69e00
RW
4605 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
4606 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
4607 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
4608 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
4609 Define via bibtex-set-dialect.
450a0f09
SM
4610 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
4611 Obey bibtex-no-opt-remove-re.
2de69e00
RW
4612 (bibtex-vec-push, bibtex-vec-incr): New functions.
4613 (bibtex-format-entry, bibtex-field-list)
4614 (bibtex-print-help-message, bibtex-validate)
4615 (bibtex-search-entries): Use new format of bibtex-entry-alist.
4616
2dcdbdd9
SM
46172011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4618
4619 * progmodes/compile.el (compilation-goto-locus):
4620 * net/tramp-cmds.el (tramp-append-tramp-buffers):
4621 * bs.el (bs-cycle-next, bs-cycle-previous):
4622 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
4623 * bindings.el (mode-line-other-buffer):
4624 * autoinsert.el (auto-insert):
4625 * arc-mode.el (archive-extract):
4626 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
4627
b27640fe
JB
46282011-07-05 Juanma Barranquero <lekktu@gmail.com>
4629
4630 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
4631 Fix check of `emacs-lock-unlockable-modes'.
4632 Coerce true values of `emacs-lock--try-unlocking' to t.
4633
53bbe3ad
JB
46342011-07-05 Juanma Barranquero <lekktu@gmail.com>
4635
4636 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
4637 * emacs-lock.el: New file.
4638
1d3cdbc7
JD
46392011-07-05 Julien Danjou <julien@danjou.info>
4640
4641 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
4642 than `boundp' to check if face is set.
4643
9173deec
JB
46442011-07-05 Juanma Barranquero <lekktu@gmail.com>
4645
4646 * register.el (registerv-make):
4647 * window.el (window-min-height): Fix typos in docstrings.
4648
869795d6
JD
46492011-07-05 Jan Djärv <jan.h.d@swipnet.se>
4650
9173deec 4651 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
4652 Update doc string.
4653
b768cdcd
JB
46542011-07-04 Juanma Barranquero <lekktu@gmail.com>
4655
4656 * server.el (server-execute): Catch quit and call
4657 `server-return-error' to pass the error back to emacsclient and
4658 close the connection (bug#8942).
4659
13aa217b
KM
46602011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
4661
4662 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
4663 insecure exception for current topic. Also note that auto-saves
4664 are handled differently.
4665
4666 (allout-auto-save-temporarily-disabled), (allout-just-did-undo):
4667 State variables for tracking auto-save inhibition situation.
4668
4669 (allout-write-contents-hook-handler): Rename from
4670 'allout-write-file-hook-handler', and describe how it depends on
4671 write-contents-functions sensitivity to non-nil value to prevent
4672 file write.
4673
4674 (allout-auto-save-hook-handler): Remove. auto-save does not check
4675 this in individual buffers, only in the starting buffer, so this
4676 is not the right way for us to inhibit auto-save in a buffer
4677 according to its condition.
4678
4679 (allout-mode): Use new allout-write-contents-hook-handler, and
4680 only with write-contents-functions. Remove auto-save provisions -
4681 they're implemented elsewhere.
4682
4683 (allout-before-change-handler): If undo is in progress, note that
4684 for attention of allout-post-command-business.
4685
4686 (allout-post-command-business): If the command we're following was
4687 an undo, check for change in the status of encrypted items and
4688 adjust auto-save inhibitions accordingly.
4689
4690 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
4691 according to whether there are or aren't any plain-text topics
4692 pending encryption.
4693
2dcdbdd9
SM
4694 (allout-inhibit-auto-save-info-for-decryption):
4695 Adjust buffer-saved-size and some allout state to inhibit auto-saves if
13aa217b
KM
4696 there are plain-text topics pending encryption.
4697
4698 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
4699 buffer-saved-size and some allout state to not inhibit auto-saves
4700 if there are no longer any plain-text topics pending encryption.
4701
0757af94
SM
4702 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
4703 No longer provide for exemption of the current topic.
13aa217b 4704
ac89b32c
JL
47052011-07-04 Juri Linkov <juri@jurta.org>
4706
4707 Add 7z operations to delete and save changed members (bug#8968).
4708 * arc-mode.el (archive-7z-expunge, archive-7z-update):
4709 New defcustoms.
4710 (archive-7z-write-file-member): New function.
4711 (archive-7z-summarize): Fix the number of dashes in the
4712 listing output.
4713
8fa39615
SM
47142011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
4715
4716 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
4717 (bug#8958).
4718
2f11b3f1
CY
47192011-07-04 Chong Yidong <cyd@stupidchicken.com>
4720
d66fef2b
CY
4721 * bindings.el: Ignore next-buffer and previous-buffer in
4722 minibuffer-local-map.
4723
2f11b3f1
CY
4724 * font-lock.el (font-lock-builtin-face): Change light background
4725 color to dark slate blue (Bug#6693).
4726
f932a347
WD
47272011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
4728
4729 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
4730
c8af70e1
SM
47312011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
4732
4733 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
4734 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4735 Add switch-to-buffer.
4736
f158badc
LMI
47372011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4738
4739 * isearch.el (isearch-search-fun-function): Clarify further the
4740 meaning of the function returned.
4741
6d95bd46
MA
47422011-07-04 Michael Albinus <michael.albinus@gmx.de>
4743
4744 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
4745
4746 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
4747 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
4748 Use it.
4749 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
4750 `tramp-default-remote-path' does not exist.
4751 (tramp-send-command-and-read): New optional argument NOERROR.
4752 (tramp-open-connection-setup-interactive-shell)
4753 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
4754 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
4755 (tramp-process-sentinel): Flush also process' connection property.
4756 (tramp-sh-handle-start-file-process): Do not set process
4757 sentinel. It is done now ...
4758 (tramp-maybe-open-connection): ... here. (Bug#8929)
4759
909e6b67
MK
47602011-07-04 MON KEY <monkey@sandpframing.com>
4761
4762 * play/animate.el (animate-string): Doc fixes and allow changing
4763 the buffer name (bug#5417).
4764
47652011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4766
c8af70e1 4767 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 4768
f34755dc
PE
47692011-07-04 Paul Eggert <eggert@cs.ucla.edu>
4770
396cec72
PE
4771 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
4772 This is simpler and helps future-proof the code.
4773 (timer-until): Use time-subtract and float-time.
08235028 4774 (timer--time-less-p): Use time-less-p.
f34755dc 4775
56e6cc31
JB
47762011-07-04 Juanma Barranquero <lekktu@gmail.com>
4777
3abb79e5
JB
4778 * type-break.el (timep): Use the value of `float-time' to avoid a
4779 byte-compiler warning.
4780
56e6cc31
JB
4781 * server.el (server-eval-and-print): Return any result, even nil.
4782
7b9430b4
PE
47832011-07-03 Paul Eggert <eggert@cs.ucla.edu>
4784
4785 * type-break.el: Accept time formats that the builtins accept.
4786 (timep, type-break-time-difference): Accept any format that
4787 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
4788 This is simpler and helps future-proof the code.
4789 (type-break-time-difference): Round rather than ignoring
4790 subseconds components.
4791
3034e9e7
LMI
47922011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4793
4794 * info.el (Info-apropos-matches): Make non-interactive, since it
4795 doesn't seem to do anything useful as a command (bug#8829).
4796
1485f4c0
CY
47972011-07-03 Chong Yidong <cyd@stupidchicken.com>
4798
4799 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 4800 Move from faces.el.
1485f4c0
CY
4801 (frame-default-terminal-background): New function.
4802
4803 * custom.el (custom-push-theme): Don't record faces in `changed'
4804 theme; this doesn't work correctly for per-frame face settings.
4805 (disable-theme): Use face-set-after-frame-default to reset faces.
4806 (custom--frame-color-default): New function.
4807
9fa3dd45
LMI
48082011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4809
c8af70e1 4810 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
4811 (bug#8769).
4812
6cbbc20c
KR
48132011-03-29 Kevin Ryde <user42@zip.com.au>
4814
4815 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4816 `perl-Test2' extend to match possible "fail #N" rep count
4817 (bug#8377).
4818
c7f98048
LMI
48192011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4820
65676592
LMI
4821 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
4822 `smtpmail-via-smtp' now returns the error instead of nil.
4823
c7f98048
LMI
4824 * isearch.el (isearch-search-fun-function): Clarify the doc string
4825 (bug#8101).
4826
56e6cc31 48272011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
4828
4829 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
4830 unnecessary spaces (bug#8987).
4831
2b216704
LMI
48322011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4833
4834 * net/network-stream.el (open-network-stream): Use the
4835 :end-of-capability command thoughout.
4836
48372011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
4838
4839 * net/network-stream.el (open-network-stream): Add the
4840 :end-of-capability command parameter, used by pop3.el.
4841
36adf6ce
LMI
48422011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4843
1ca0da0e
LMI
4844 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
4845
fc00f69c
LMI
4846 * fringe.el (fringe-query-style): Remove redundant text " (type ?
4847 for list)" (bug#6475).
4848
28fd8759 4849 * files.el (file-expand-wildcards): Ignore non-readable
8350f087 4850 sub-directories while trying to find matches instead of signaling
28fd8759
LMI
4851 an error (bug#6297).
4852
0dd8b6da
LMI
4853 * man.el (Man-reference-regexp): Allow matching possible
4854 word-wrapped references (bug#6289).
4855
ce1438d6
LMI
4856 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
4857 for consistency with the other vc buffers (bug#6197).
4858 (vc-checkin): Ditto.
4859
4860 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
4861
36adf6ce
LMI
4862 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
4863
e83cc1f7
LMI
48642011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4865
8a20ca4c
LMI
4866 * custom.el (defcustom): Clarify that :set is only used in the
4867 Customize user interface (bug#6089).
4868
83319045
LMI
4869 * progmodes/flymake.el (flymake-mode): If the buffer isn't
4870 associated with a file, refuse to run instead of erroring out
4871 (bug#6084).
4872
a8392169
LMI
4873 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
4874 the doc string, since it appears that using `fill-column' always
4875 controls the width (bug#7845).
4876
e83cc1f7
LMI
4877 * simple.el (shell-command-on-region): Say where the error output
4878 went if `shell-command-default-error-buffer' is set (bug#6857).
4879
e47ca23b
KM
48802011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
4881
4882 * allout.el (allout-yank-processing): Adjust cursor position for
4883 backwards-deleted space.
4884
4885 (allout-rebullet-heading): Register changes with
4886 allout-exposure-changed-hook, so the modified topic is properly
4887 decorated.
4888
5cf56143
LMI
48892011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4890
08549772
LMI
4891 * minibuffer.el (completion-in-region): Document PREDICATE
4892 (bug#7136).
4893
48e96771
LMI
4894 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
4895 of keyword/argument pairs (bug#6904).
4896
c8af70e1
SM
4897 * replace.el (multi-occur):
4898 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 4899
e17d05e2
LMI
49002011-07-02 Drew Adams <drew.adams@oracle.com>
4901
4902 * dired.el (dired-mark-if): Make the message about whether it's
4903 marking or unmarking clearer (bug#8523).
4904
063b0e45
LMI
49052011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4906
4907 * disp-table.el (display-table-print-array): New function.
4908 (describe-display-table): Use it to print the vectors more pretty
4909 (Bug#8859).
4910
28545e04
MR
49112011-07-02 Martin Rudalics <rudalics@gmx.at>
4912
4913 * window.el (window-state-get-1): Don't assign clone numbers.
4914 Add clone-of item to list of window parameters.
4915 (window-state-put-2): Don't process clone numbers.
4916 (display-buffer-alist): Fix doc-string.
4917
3349e122
SM
49182011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
4919
4920 * subr.el (remq): Don't allocate if it's not needed.
4921 (keymap--menu-item-binding, keymap--menu-item-with-binding)
4922 (keymap--merge-bindings): New functions.
4923 (keymap-canonicalize): Use them to refine the canonicalization.
4924 * minibuffer.el (minibuffer-local-completion-map)
4925 (minibuffer-local-must-match-map): Move initialization from C.
4926 (minibuffer-local-filename-completion-map): Move initialization from C;
4927 don't inherit from anything here.
4928 (minibuffer-local-filename-must-match-map): Make obsolete.
4929 (completing-read-default): Use make-composed-keymap to combine
4930 minibuffer-local-filename-completion-map with either
4931 minibuffer-local-must-match-map or
4932 minibuffer-local-filename-completion-map.
4933
d224ac83
GM
49342011-07-01 Glenn Morris <rgm@gnu.org>
4935
3de63bf8
GM
4936 * type-break.el (type-break-time-sum): Use dolist.
4937
d224ac83
GM
4938 * textmodes/flyspell.el (flyspell-word-search-backward):
4939 Replace CL function.
4940
1a1e3f32
SM
49412011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4942
fe3f64d5
SM
4943 * mouse.el (mouse--strip-first-event): New function.
4944 (function-key-map): Use it to map fringe clicks to normal clicks
4945 by default.
4946
eb604e34
SM
4947 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
4948 (vc-bzr-revision-completion-table): Add support for annotate and date.
4949
1a1e3f32
SM
4950 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
4951 inherit from parent.
4952
5bd35902
LMI
49532011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
4954
ace6c69c 4955 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 4956 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 4957
191e2bed
LMI
4958 * dired.el (dired-mode): Fix up the doc string as suggested by
4959 Drew Adams (bug#8817).
4960
5bd35902
LMI
4961 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
4962 cookie, since the manual says that it should be possible to add
4963 this function to `find-file-hook' (bug#8709).
4964
eee8207a
TZ
49652011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
4966
4967 * progmodes/cfengine.el: Moved all cfengine3.el functionality
4968 here. Noted Ted Zlatanov as the maintainer.
4969 (cfengine-common-settings, cfengine-common-syntax): New functions
4970 to set up common things between `cfengine-mode' and
4971 `cfengine3-mode'.
4972 (cfengine3-mode): New mode.
4973 (cfengine3-defuns cfengine3-defuns-regex
4974 (cfengine3-class-selector-regex cfengine3-category-regex)
4975 (cfengine3-vartypes cfengine3-font-lock-keywords)
4976 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 4977 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 4978
36b148cf
MA
49792011-07-01 Michael Albinus <michael.albinus@gmx.de>
4980
4981 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
4982
4983 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
4984
0bf4ba9a
MR
49852011-07-01 Martin Rudalics <rudalics@gmx.at>
4986
4987 * window.el (same-window-buffer-names, same-window-regexps)
4988 (same-window-p, special-display-frame-alist)
4989 (special-display-popup-frame, special-display-function)
4990 (special-display-buffer-names, special-display-regexps)
4991 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
4992 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
4993 (split-window-preferred-function, split-height-threshold)
4994 (split-width-threshold, even-window-heights)
4995 (display-buffer-mark-dedicated, window-splittable-p)
4996 (split-window-sensibly, window-safely-shrinkable-p):
4997 Un-obsolete.
4998 (display-buffer): Don't spread args with function specifier
4999 because special-display-popup-frame won't like it.
5000
35837f51
PE
50012011-07-01 Paul Eggert <eggert@cs.ucla.edu>
5002
d0672f86
PE
5003 Time-stamp simplifications and fixes.
5004 These improve accuracy slightly, and future-proof the code
5005 against some potential changes to current-time format.
5006
b9444d97
PE
5007 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
5008 by using time-since and float-time.
5009
0ef923dc
PE
5010 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
5011 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
5012 + NNN microseconds".
5013
2f81380d
PE
5014 * type-break.el (type-break-time-sum): Rewrite using time-add.
5015
845b5c3e
PE
5016 * play/hanoi.el (hanoi-current-time-float): Remove.
5017 All uses replaced by float-time.
5018
ee6f1be0
PE
5019 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
5020 This yields a more-accurate answer.
5021 (rng-time-to-float): Remove; no longer needed.
5022
fe955043
PE
5023 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
5024
5777162a
PE
5025 * calendar/timeclock.el (timeclock-seconds-to-time):
5026 Defalias to seconds-to-time, since they're the same thing.
5027
3103f8b6 5028 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 5029 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
5030 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
5031
0e61a35f
SM
50322011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
5033
5034 * window.el (bury-buffer): Don't iconify the only frame.
5035 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
5036 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
5037
ddd63a1e
CY
50382011-07-01 Chong Yidong <cyd@stupidchicken.com>
5039
0e61a35f
SM
5040 * eshell/em-smart.el (eshell-smart-display-navigate-list):
5041 Add mouse-yank-primary.
ddd63a1e 5042
055f4923
TZ
50432011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
5044
5045 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
5046
6a2fb145
SM
50472011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
5048
5049 * emacs-lisp/find-func.el (find-library--load-name): New fun.
5050 (find-library-name): Use it to find relative load names when provided
5051 absolute file name (bug#8803).
5052
fd4983f2
LMI
50532011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
5054
887d14ad
LMI
5055 * textmodes/flyspell.el (flyspell-word): Consider words that
5056 differ only in case as potential doublons (bug#5687).
5057
c53dc7fc
LMI
5058 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
5059 Remove two rather uninteresting debugging-like messages to make
5060 debbugs.el more silent.
5061
fd4983f2
LMI
5062 * comint.el (comint-password-prompt-regexp): Accept "Response" as
5063 a password-like phrase.
5064
b14c0c55
AM
50652011-06-30 Mastake YAMATO <yamato@redhat.com>
5066
5067 * progmodes/cc-guess.el: New file.
5068
6a2fb145 5069 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
5070
5071 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
5072 derived from `c-basic-common-init'.
5073
5074 * progmodes/cc-mode.el (top-level): Require cc-guess.
5075 (c-basic-common-init): Use `cc-choose-style-for-mode'.
5076
1fa280a3
LM
50772011-06-30 Lawrence Mitchell <wence@gmx.li>
5078
5079 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
5080
e6597158
AM
50812011-06-30 Alan Mackenzie <acm@muc.de>
5082
1fa280a3
LM
5083 * progmodes/cc-engine.el (c-guess-continued-construct):
5084 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
5085 lock is disabled. Name this case as "CASE G".
5086
68ba37fb
KM
50872011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
5088
5089 * allout.el (allout-yank-processing): Fix injection of extra space
5090 between bullet and non-whitespace character in first topic when
5091 pasting, ensuring that the actual spacing in the pasted topic
5092 following the bullet char is preserved. This extra space was
5093 causing pasted encrypted topics to get a decrypted status even
5094 when the content was actually still encrypted. Now the decryption
5095 status from before the paste is preserved.
5096
5097 (allout-flag-region): Set all allout overlays so they evaporate
5098 when reduced to zero length (evanescent), to prevent overlay
5099 leakage.
5100
887a0b34
GM
51012011-06-30 Glenn Morris <rgm@gnu.org>
5102
94b9acce
GM
5103 * w32-fns.el (w32-charset-info-alist): Declare.
5104
1d9b46d4
GM
5105 * find-dired.el (find-grep-options): Simplify.
5106
cc232200
GM
5107 * term/ns-win.el (ns-set-resource): Declare.
5108
28e77c46
GM
5109 * ses.el (row, col): Declare dynamic variables honestly.
5110
887a0b34
GM
5111 * textmodes/reftex-parse.el (index-tags): Declare.
5112
658d8eb8
CY
51132011-06-30 Chong Yidong <cyd@stupidchicken.com>
5114
5115 * cus-edit.el (customize-push-and-save): New function.
5116
5117 * files.el (hack-local-variables-confirm): Use it.
5118
1fa280a3
LM
5119 * custom.el (load-theme): New arg NO-CONFIRM.
5120 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
5121 (custom-enabled-themes): Doc fix.
5122
5123 * cus-theme.el (customize-create-theme)
5124 (custom-theme-merge-theme): Callers to load-theme changed.
5125
bb617717
LMI
51262011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
5127
d61bdd5d
LMI
5128 * thingatpt.el (thing-at-point-short-url-regexp): Require that
5129 short URLs have at least one dot in them (bug #7614).
5130
bb617717
LMI
5131 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
5132 nil, because using a pty is apparently too slow (bug #895).
5133
2f31f37a
LMI
51342011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
5135
5136 * mail/sendmail.el (sendmail-query-once): New function.
5137 (sendmail-query-once-function): New variable.
5138
3076b24e
GM
51392011-06-29 Glenn Morris <rgm@gnu.org>
5140
faf2a174
GM
5141 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
5142
3076b24e
GM
5143 * ses.el (top-level): Require cl when compiling.
5144 (ses-set-localvars): Fix error statement.
5145 Call it at compile time to silence a storm of warnings.
5146
5386012d
MR
51472011-06-29 Martin Rudalics <rudalics@gmx.at>
5148
5149 * window.el (normalize-live-buffer): Rename to
5150 window-normalize-buffer.
5151 (normalize-live-frame): Rename to window-normalize-frame.
5152 (normalize-any-window): Rename to window-normalize-any-window.
5153 (normalize-live-window): Rename to window-normalize-live-window.
5154 (make-window-atom): Rename to window-make-atom.
5155 (window-resize-reset): Rename to window--resize-reset.
5156 (window-resize-reset-1): Rename to window--resize-reset-1.
5157 (resize-mini-window): Rename to window--resize-mini-window.
5158 (resize-subwindows-skip-p): Rename to
5159 window--resize-subwindows-skip-p.
5160 (resize-subwindows-normal): Rename to
5161 window--resize-subwindows-normal.
5162 (resize-subwindows): Rename to window--resize-subwindows.
5163 (resize-other-windows): Rename to window--resize-siblings.
5164 (resize-this-window): Rename to window--resize-this-window.
5165 (resize-root-window): Rename to window--resize-root-window.
5166 (resize-root-window-vertically): Rename to
5167 window--resize-root-window-vertically.
5168 (normalize-buffer-to-display): Rename to
5169 window-normalize-buffer-to-display.
5170 (normalize-buffer-to-switch-to): Rename to
5171 window-normalize-buffer-to-switch-to.
5172 Correspondingly update all callers of the functions listed
5173 above.
5174 (display-buffer-alist, display-buffer-normalize-arguments)
5175 (display-buffer-normalize-options, display-buffer)
5176 (display-buffer-alist-set): Use "function" instead of
5177 "fun-with-args".
5178
1176868d
CY
51792011-06-28 Chong Yidong <cyd@stupidchicken.com>
5180
5181 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
5182 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
5183 debbugs.gnu.org. Mention acknowledgment email.
5184
20a7a65f
LMI
51852011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
5186
5187 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
5188 buffer multibyteness, since it shouldn't matter.
5189
5f45cca5
MR
51902011-06-28 Martin Rudalics <rudalics@gmx.at>
5191
5192 * window.el (display-buffer-in-side-window): Handle dedicated
5193 windows as in display-buffer-reuse-window.
5194 (display-buffer-normalize-alist): Use value of override
5195 specifier.
5196 (display-buffer-normalize-specifiers): Use value of
5197 other-window-means-other-frame specifier.
5198 (display-buffer-alist): Rewrite some texts in widgets.
5199 (display-buffer): Spread arguments when calling function
5200 specified by fun-with-args.
5201
ad85fe1f
DD
52022011-06-28 Deniz Dogan <deniz@dogan.se>
5203
1fa280a3
LM
5204 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
5205 Unnest `let'.
da68c4c8 5206
ad85fe1f
DD
5207 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
5208 selectors (Bug#5732).
ec49bd31 5209 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 5210
a08cc025
JA
52112011-06-27 Jari Aalto <jari.aalto@cante.net>
5212
5213 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
5214 (eshell-ls-date-format): New defcustom.
5215 (eshell-ls-file): Use it.
5216
e2b551c5
SM
52172011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5218
5219 * help-fns.el (describe-variable): Fix message for terminal-local vars.
5220
8982b231
KY
52212011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
5222
5223 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
5224 (ange-ftp-make-tmp-name): New arg.
5225 (ange-ftp-file-local-copy): Use it.
5226
36c9fa27
J
52272011-06-27 Jambunathan K <kjambunathan@gmail.com>
5228
5229 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
5230 no-conversion (Bug#8870).
5231
d68443dc
MR
52322011-06-27 Martin Rudalics <rudalics@gmx.at>
5233
5234 * window.el (window-right, window-left, window-child)
5235 (window-child-count, window-last-child)
5236 (window-iso-combination-p, walk-window-tree-1)
5237 (window-atom-check-1, window-tree-1, delete-window)
5238 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
5239 new naming conventions - window-vchild, window-hchild,
5240 window-next and window-prev are now called window-top-child,
5241 window-left-child, window-next-sibling and window-prev-sibling
5242 respectively.
d615d6d2
MR
5243 (resize-window-reset): Rename to window-resize-reset.
5244 (resize-window-reset-1): Rename to window-resize-reset-1.
5245 (resize-window): Rename to window-resize.
5246 (window-min-height, window-min-width)
5247 (resize-mini-window, resize-this-window, resize-root-window)
5248 (resize-root-window-vertically, adjust-window-trailing-edge)
5249 (enlarge-window, shrink-window, maximize-window)
5250 (minimize-window, delete-window, quit-restore-window)
5251 (split-window, balance-windows, balance-windows-area-adjust)
5252 (balance-windows-area, window-state-put-2)
5253 (display-buffer-even-window-sizes, display-buffer-set-height)
5254 (display-buffer-set-width, set-window-text-height)
5255 (fit-window-to-buffer): Rename all "resize-window" prefixed
5256 calls to use the "window-resize" prefix convention.
5257 (display-buffer-alist): Fix symbol for label specifier.
5258 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
5259 corresponding specifier.
5260 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 5261
b6458526
VB
52622011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
5263
5264 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
5265 convention.
5266 (ses-call-printer): Does not pass an empty string to formatter when the
5267 cell is empty to keep from barking printer Calc math-format-value.
5268
d31fd9ac
RS
52692011-06-27 Richard Stallman <rms@gnu.org>
5270
43d5bf84
RS
5271 * battery.el (battery-mode-line-limit): New variable.
5272 (battery-update): Handle it.
5273
d31fd9ac
RS
5274 * mail/rmailmm.el (rmail-mime-process-multipart):
5275 Handle truncated messages.
5276
819a6054
GM
52772011-06-27 Glenn Morris <rgm@gnu.org>
5278
5279 * progmodes/flymake.el (flymake-err-line-patterns):
5280 Allow for column numbers in the ant/javac pattern. (Bug#8866)
5281
cedc73f2
VB
52822011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
5283
819a6054 5284 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
5285 (ses--clean-!, ses--clean-_): New functions.
5286 (ses-range): Add configurability of readout order, and conversion
5287 to Calc vector.
5288
5e5d49b6
VB
5289 * ses.el (ses-repair-cell-reference-all): New function.
5290 (ses-cell-symbol): Set macro as safe, so that it can be used in
5291 formulas.
5292
56e6cc31 5293 * ses.el: Update cycle detection algorithm.
90ca8b49 5294 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 5295 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
5296 (ses-set-localvars): New function.
5297 (ses-make-cell): Add property-list as a cell element.
5298 (ses-cell-property-get-fun, ses-cell-property-get)
5299 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
5300 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
5301 New functions.
90ca8b49
VB
5302 (ses-cell-property-set, ses-cell-property-pop)
5303 (ses-cell-property-get-handle): New macro.
5304 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
5305 New aliases, used for code readability.
5306 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
5307 cycle detection.
5308 (ses-self-reference-early-detection): New defcustom.
fac916bf 5309 (ses-formula-references): Robustify against self-referring cells.
90ca8b49
VB
5310 (ses-mode): Use ses-set-localvars.
5311 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
5312 before lauching the update processing.
5313 (ses-initialize-Dijkstra-attempt): New function.
5314 (ses-recalculate-cell): Update for cycle detection based on
5315 Dijkstra algorithm.
5316
2bb63e81
VB
5317 * ses.el: Fix commenting and indenting convention.
5318
c9d29fb8
SM
53192011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5320
5321 * bs.el (bs-cycle-next): Complete last change.
5322
d8e4b68b
JB
53232011-06-27 Drew Adams <drew.adams@oracle.com>
5324
5325 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
5326
40098786
LMI
53272011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
5328
c9d29fb8
SM
5329 * net/network-stream.el (network-stream-open-starttls):
5330 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
5331 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
5332
40098786
LMI
5333 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
5334 to binary to possibly avoid line encoding issues on Windows (among
5335 other things).
5336
468d09d4
LMI
53372011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5338
5339 * net/network-stream.el (open-network-stream): Return an :error
5340 saying what the problem was, if possible.
5341
5342 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
5343 server.
5344
5345 * net/network-stream.el (network-stream-open-starttls): If we
5346 wanted to use STARTTLS, and the server offered it, but we weren't
5347 able to because we had no STARTTLS support, then close the connection.
5348 (open-network-stream): Return an :error element, if present.
5349
16f07dd7
CY
53502011-06-26 Chong Yidong <cyd@stupidchicken.com>
5351
88821ca0
CY
5352 * hl-line.el (hl-line-sticky-flag): Doc fix.
5353 (global-hl-line-sticky-flag): New option (Bug#8323).
5354 (global-hl-line-highlight): Obey it.
5355
16f07dd7
CY
5356 * vc/vc.el (vc-revert-show-diff): Default to t.
5357
6b5ccddf
KM
53582011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
5359
c9d29fb8
SM
5360 * allout-widgets.el (allout-widgets-post-command-business):
5361 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
5362 undecorated when an isearch is continued past, and isearch
5363 automatically collapses them. This leads to "widget leaks", where
5364 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
5365 hidden widgets can slow down cursor travel, substantially.
5366 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
5367 so we're doing without this nicety.
5368
5369 (allout-widgets-tally-string): Don't try to do a hash-table-count
5370 of allout-widgets-tally when it's nil. This eliminates spurious "Error
5371 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
5372 *Messages* when allout-widgets-maintain-tally is t.
5373
355f2e07
MR
53742011-06-26 Martin Rudalics <rudalics@gmx.at>
5375
5376 * window.el (display-buffer-normalize-argument): Rename to
5377 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
5378 LABEL argument. Respect special-display-function when popping up
5379 a new frame. Fix code searching for a window showing the buffer
5380 on another frame.
c9d29fb8
SM
5381 (display-buffer-normalize-specifiers):
5382 Call display-buffer-normalize-arguments.
355f2e07
MR
5383 (display-buffer-in-window): Don't undedicate the window if its
5384 buffer remains the same.
5385 Reported by Drew Adams <drew.adams@oracle.com>.
5386 (display-buffer-alist): Add choice for same-window macro
5387 specfier.
5388 (display-buffer): Mention special meaning of LABEL argument in
5389 doc-string. Fix quoting. Don't pop up a new frame even as
5390 fallback.
5391
7ca8fc42
JB
53922011-06-26 Juanma Barranquero <lekktu@gmail.com>
5393
5394 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
5395 avoid deleting the current window in some cases (bug#8911).
5396
bc312254
AS
53972011-06-26 Andreas Schwab <schwab@linux-m68k.org>
5398
5399 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
5400 (Bug#8934)
5401
2db18f3f
LMI
54022011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5403
c9d29fb8
SM
5404 * net/network-stream.el (network-stream-open-starttls):
5405 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
5406 (network-stream-open-tls): Ditto.
5407
6302e0d3
LL
54082011-06-26 Leo Liu <sdl.web@gmail.com>
5409
5410 * register.el (registerv): New struct.
5411 (registerv-make): New function.
c9d29fb8
SM
5412 (jump-to-register, describe-register-1, insert-register):
5413 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
5414 struct. (Bug#8415)
5415
5fdd4046
CY
54162011-06-26 Chong Yidong <cyd@stupidchicken.com>
5417
2afef60a
CY
5418 * vc/vc.el (vc-revert-show-diff): New defcustom.
5419 (vc-diff-internal): New arg specifying diff buffer.
5420 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
5421 reuse an existing *vc-diff* buffer (Bug#8927).
5422
5fdd4046
CY
5423 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
5424
e93db24a
GM
54252011-06-26 Glenn Morris <rgm@gnu.org>
5426
5427 * progmodes/f90.el (f90-critical-indent): New option.
5428 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
5429 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
5430 (f90-mode): Doc fix.
5431 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
5432 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
5433 (f90-beginning-of-block, f90-next-block, f90-indent-region)
5434 (f90-match-end): Handle block, critical.
5435
eefff499
GM
54362011-06-25 Glenn Morris <rgm@gnu.org>
5437
f6ba4cc9
GM
5438 * calendar/diary-lib.el (diary-included-files): Doc fix.
5439 (diary-include-files): New function, extracted from
5440 diary-include-other-diary-files and diary-mark-included-diary-files.
5441 (diary-include-other-diary-files, diary-mark-included-diary-files):
5442 Just call diary-include-files.
5443 (diary-mark-entries): Reset diary-included-files on first call.
5444
16712304
GM
5445 * calendar/diary-lib.el (diary-mark-entries)
5446 (diary-mark-included-diary-files):
5447 Visit included diary-files in temp buffers.
5448
5d8e0d43
GM
5449 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
5450 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
5451 (f90-start-block-re, f90-imenu-generic-expression)
5452 (f90-looking-at-program-block-start, f90-no-block-limit):
5453 Add support for submodules.
5454
ccf7a5d5
GM
5455 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
5456 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 5457
11fdef7d 54582011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
5459
5460 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
5461 buffer-file-type before setting its value, to avoid disastrous
eefff499 5462 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 5463
74f53697
JB
54642011-06-25 Juanma Barranquero <lekktu@gmail.com>
5465
5466 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
5467
5468 * ses.el (ses-unload-function):
5469 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
5470
5471 * proced.el (proced-unload-function):
5472 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
5473
18a4ce5e
AR
54742011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
5475
5476 * server.el (server-create-window-system-frame): Add parameters arg.
5477 (server-process-filter): Doc fix. Handle frame-parameters.
5478
519d22cc
JB
54792011-06-25 Juanma Barranquero <lekktu@gmail.com>
5480
5481 Fix bug#8730, bug#8781.
5482
5483 * loadhist.el (unload--set-major-mode): New function.
5484 (unload-feature): Use it.
5485
5486 * progmodes/python.el (python-after-info-look): Add autoload cookie.
5487 (python-unload-function): New function.
5488
c206f5b0
SM
54892011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5490
5491 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
5492
f9ad64f3
GS
54932011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
5494
5495 * net/browse-url.el (browse-url-firefox-program): Add icecat to
5496 the candidates list.
5497
7d0da90e
JB
54982011-06-24 Juanma Barranquero <lekktu@gmail.com>
5499
5500 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
5501
14b4e83d
RS
55022011-06-23 Richard Stallman <rms@gnu.org>
5503
5504 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
5505 (rmail-variables): Set next-error-move-function.
5506 (rmail-what-message): Take argument POS.
5507 (rmail-next-error-move): New function.
5508
273d2baf
SM
55092011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5510
5511 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
5512 messages for adjacent non-terminals.
5513
56c2cc9a
RS
55142011-06-23 Richard Stallman <rms@gnu.org>
5515
5516 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 5517 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
5518 (rmail-start-mail): Don't specify use of rmail-mail-return;
5519 that's done by mail-bury now.
5520 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 5521
d59eb518
MA
55222011-06-23 Michael Albinus <michael.albinus@gmx.de>
5523
5524 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
5525 SIZE is a number.
5526
02cfc6d6
MR
55272011-06-23 Martin Rudalics <rudalics@gmx.at>
5528
5529 * window.el (get-lru-window, get-mru-window)
5530 (get-largest-window): Never return a minibuffer window.
5531 (display-buffer-pop-up-window): Fix a bug that could lead to
5532 reusing the minibuffer window.
5533 (display-buffer): Pass original specifier argument to
5534 display-buffer-function instead of the normalized one.
5535 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
5536
4e323265
LL
55372011-06-22 Leo Liu <sdl.web@gmail.com>
5538
5539 * minibuffer.el (completing-read-function)
5540 (completing-read-default): Move from minibuf.c
5541
7a70468f
RS
55422011-06-22 Richard Stallman <rms@gnu.org>
5543
50718fc2
RS
5544 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
5545 to Rmail even if not started by a special Rmail command.
5546
7a70468f
RS
5547 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
5548 Copy the buffer currently showing just one message.
5549
297dde5a
RW
55502011-06-22 Roland Winkler <winkler@gnu.org>
5551
5552 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
5553 (bibtex-clean-entry): First delete the old key so that a
5554 customized algorithm for generating the new key does not get
5555 confused by the old key.
5556 (bibtex-url): Obey regexp of first step.
5557 (bibtex-search-entries): Do not use add-to-list with local
5558 list-var.
5559
97bb1093
LMI
55602011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5561
5562 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
5563 stored a user name, then query for the password first, instead of
5564 waiting for SMTP to give an error message and the trying again.
5565
1c0f1a19
JD
55662011-06-22 Lawrence Mitchell <wence@gmx.li>
5567
5568 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
5569 BUFFER in call-process.
5570
396f7c9d
LMI
55712011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5572
5573 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
5574 QUIT twice.
ddb7ffee
LMI
5575 (smtpmail-try-auth-methods): Require user name and password from
5576 auth-source.
396f7c9d 5577
8998d1b3
MR
55782011-06-22 Martin Rudalics <rudalics@gmx.at>
5579
5580 * window.el (display-buffer-default-specifiers)
5581 (display-buffer-alist): Remove entries for pop-up-frame-alist.
5582 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 5583 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
5584
5585 * frame.el (pop-up-frame-alist, pop-up-frame-function)
5586 (special-display-frame-alist, special-display-popup-frame):
5587 Remove duplicate declarations. These are now in window.el.
5588
4ea31e07
LMI
55892011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5590
c9d29fb8
SM
5591 * mail/smtpmail.el (smtpmail-via-smtp):
5592 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
5593 server supports it. SMTP servers that support STARTTLS commonly
5594 require it.
5595
5596 * net/network-stream.el (network-stream-open-starttls): Support
5597 upgrading to STARTTLS always, even if we don't have built-in support.
fa463103 5598 (open-network-stream): Add the :always-query-capabilities keyword.
6af7a784 5599
95f41d9a
LMI
5600 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
5601 upgrades with `open-network-stream', and rely solely on
5602 auth-source for all credentials. Big changes throughout the file,
5603 but in particular:
c9d29fb8
SM
5604 (smtpmail-auth-credentials): Remove.
5605 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
5606 (smtpmail-via-smtp): Check for servers saying they want AUTH after
5607 MAIL FROM, too.
95f41d9a 5608
c9d29fb8
SM
5609 * net/network-stream.el (network-stream-open-starttls):
5610 Provide support for client certificates both for external and built-in
4ea31e07
LMI
5611 STARTTLS.
5612 (auth-source): Require.
5613 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
5614 (network-stream-certificate): Change cert-cert to cert and
5615 cert-key to key.
4ea31e07 5616
065ec2c7
MA
56172011-06-21 Michael Albinus <michael.albinus@gmx.de>
5618
5619 * net/tramp-cache.el (top): Don't load the persistency file when
5620 "emacs -Q" has been called.
5621
cd93b359
DR
56222011-06-21 Tim Harper <timcharper@gmail.com>
5623
d8e4b68b
JB
5624 * term/ns-win.el (ns-initialize-window-system):
5625 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
5626 resource to NO as it is not yet supported by the NS port.
5627
ae9c0411
JB
56282011-06-21 Juanma Barranquero <lekktu@gmail.com>
5629
5630 * misc.el (list-dynamic-libraries--refresh): Compute header here...
5631 (list-dynamic-libraries): ...not here.
5632
7f3f739f
LL
56332011-06-21 Leo Liu <sdl.web@gmail.com>
5634
5635 * subr.el (sha1): Implement sha1 using secure-hash.
5636
327c8fb1
MR
56372011-06-21 Martin Rudalics <rudalics@gmx.at>
5638
5639 * window.el (display-buffer-alist): In default value do not
5640 enforce searching a window on any but the selected frame.
5641 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
5642 (display-buffer-select-window): Remove function.
5643 (display-buffer-in-window): When a window on another frame gets
5644 reused, do not select it any more but just raise its frame if
5645 necessary (Bug#8851) and (Bug#8856).
5646 (display-buffer-normalize-options): Handle pop-up-frames related
5647 options more faithfully.
5648 (pop-to-buffer): Don't rely on `display-buffer' selecting the
5649 window if it is on another frame.
c9d29fb8
SM
5650 (display-buffer-alist, display-buffer-default-specifiers):
5651 Don't make new frame unsplittable by default.
9e9de014
MR
5652 (display-buffer-normalize-argument): Fix doc-string typo and use
5653 'same-frame-other-window instead of 'other-window when associating
5654 with display-buffer-macro-specifiers.
327c8fb1 5655
7cf3f556
VB
56562011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
5657
5658 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
5659 New functions.
5660 (5x5-mode-map, 5x5-mode-menu): Bind them.
5661 (5x5-draw-grid): Tweak the solver's rendering.
5662
60a406cf
SM
56632011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5664
5665 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
5666 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
5667
d8e4b68b 56682011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
5669
5670 * menu-bar.el: Use function variable instead of switch-to-buffer.
5671 (menu-bar-select-buffer-function): New variable.
60a406cf 5672 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 5673
478d6f95
SM
56742011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5675
5676 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
5677 variable's status.
5678
ca530739
JD
56792011-06-20 Jan Djärv <jan.h.d@swipnet.se>
5680
5681 * x-dnd.el (x-dnd-version-from-flags)
5682 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
5683 and long as number (Bug#8899).
5684 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
5685
bcd70d97
SM
56862011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5687
60a406cf 5688 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
5689 (completion-try-completion, completion-all-completions): Compute the
5690 metadata argument if it's missing; make it optional (bug#8795).
5691
60a406cf 5692 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
5693 (widget-complete): Use new :completion-function property.
5694 (widget-completions-at-point): New function.
5695 (default): Use :completion-function instead of :complete.
60a406cf
SM
5696 (widget-default-completions): Rename from widget-default-complete;
5697 Rewrite.
bcd70d97
SM
5698 (widget-string-complete, widget-file-complete, widget-color-complete):
5699 Remove functions.
5700 (file, symbol, function, variable, coding-system, color):
5701 * international/mule-cmds.el (default-input-method, charset)
5702 (language-info-custom-alist):
5703 * cus-edit.el (face): Use new property :completions.
5704
5705 * progmodes/pascal.el (pascal-completions-at-point): New function.
5706 (pascal-mode): Use it.
5707 (pascal-mode-map): Use completion-at-point.
5708 (pascal-toggle-completions): Make obsolete.
5709 (pascal-complete-word, pascal-show-completions):
5710 * progmodes/octave-mod.el (octave-complete-symbol):
5711 Redefine as obsolete alias.
5712 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
5713 Signal absence of completion info for old Octave,
5714 (inferior-octave-complete): Redefine as obsolete alias.
5715 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
5716 (meta-completions-at-point): Rename from meta-complete-symbol and
5717 adapt it for use on completion-at-point-functions.
5718 (meta-common-mode): Use it.
5719 (meta-looking-at-backward, meta-match-buffer): Remove.
5720 (meta-complete-symbol): Redefine as obsolete alias.
5721 (meta-common-mode-map): Use completion-at-point.
5722 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
5723 (makefile-mode-map): Use completion-at-point.
5724 (makefile-completions-at-point): Rename from makefile-complete and
5725 adapt it for use on completion-at-point-functions.
5726 (makefile-mode): Use it.
5727 (makefile-complete): Redefine as obsolete alias.
5728
aebf69c8
DD
57292011-06-20 Deniz Dogan <deniz@dogan.se>
5730
5731 * net/rcirc.el: Delete trailing whitespaces once and for all.
5732
bfbbb27d
DC
57332011-06-20 Daniel Colascione <dan.colascione@gmail.com>
5734
5735 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
5736
d264a46b
CY
57372011-06-19 Chong Yidong <cyd@stupidchicken.com>
5738
4ca009e5
CY
5739 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
5740
d264a46b
CY
5741 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
5742
fbf5b3ce
MR
57432011-06-19 Martin Rudalics <rudalics@gmx.at>
5744
5745 * window.el (display-buffer-other-window-means-other-frame):
5746 Call display-buffer-normalize-alist.
5747 (display-buffer-normalize-specifiers-1): Rename to
5748 display-buffer-normalize-argument. New argument other-frame.
5749 Rewrite.
5750 (display-buffer-normalize-specifiers-2): Rename to
5751 display-buffer-normalize-options.
5752 (display-buffer-normalize-alist-1): New function.
5753 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
5754 display-buffer-normalize-alist.
5755 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
5756 (display-buffer-normalize-options-inhibit): New variable.
5757 (display-buffer-normalize-specifiers): Rewrite calling
5758 display-buffer-normalize-alist,
5759 display-buffer-normalize-argument, and
5760 display-buffer-normalize-options. Don't call the latter if
5761 display-buffer-normalize-options-inhibit is non-nil.
5762 (frame-auto-delete): New option.
5763 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
5764 (window-list-no-nils, window-state-ignored-parameters)
5765 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
5766 (window-state-put-1, window-state-put-2, window-state-put):
5767 New functions.
9a028c23
MR
5768 (display-buffer-normalize-options): Move special-display-p group
5769 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 5770
6d10d800
CY
57712011-06-18 Chong Yidong <cyd@stupidchicken.com>
5772
6420d28b
CY
5773 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
5774 groups (Bug#8776).
5775 (rx-submatch-n): New function.
5776 (rx): Document it.
5777
ddb8b596
CY
5778 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
5779 (Bug#8768).
5780
5781 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
5782
77080289
CY
5783 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
5784
61dfb316
CY
5785 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
5786 anytime existing face settings are present (Bug#8889).
5787
6d10d800
CY
5788 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
5789 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
5790 Remove unused argument.
5791
be3fb2b8
MR
57922011-06-18 Martin Rudalics <rudalics@gmx.at>
5793
bcd70d97
SM
5794 * window.el (display-buffer-default-specifiers):
5795 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
5796 pop-up-window-min-width, and another reuse-window specifier
5797 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
5798 (display-buffer-normalize-specifiers-2):
5799 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
5800 pop-up-windows is unset. Add a reuse-window specifier for the
5801 case popping up a new window fails.
5802 (special-display-popup-frame): Remove double quoting.
28dec25a 5803 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 5804
1c6d8c76
SM
58052011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5806
5807 * shell.el (shell-completion-vars): Set pcomplete-termination-string
5808 according to comint-completion-addsuffix.
5809
5810 * pcomplete.el: Convert to lexical binding and fix bug#8819.
5811 (pcomplete-suffix-list): Mark as obsolete.
5812 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
5813 pcomplete-seen in the closure.
5814 (pcomplete-comint-setup): Setup completion-at-point as well.
5815 (pcomplete--entries): New function.
5816 (pcomplete--env-regexp): New var.
5817 (pcomplete-entries): Rewrite to work with partial-completion and
5818 without relying on pcomplete-suffix-list.
5819 (pcomplete-pare-list): Remove, unused.
5820
25aef8b8
MR
58212011-06-17 Martin Rudalics <rudalics@gmx.at>
5822
5823 * window.el (display-buffer-alist): Set pop-up-window-min-height
5824 and pop-up-window-min-width in default value. Reported by
5825 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
5826 other-window-means-other-frame.
5827 (display-buffer-macro-specifiers): Comment out entry for
5828 other-window specifier.
5829 (display-buffer-other-window-means-other-frame): New function.
5830 (display-buffer-normalize-specifiers-1): New arguments
5831 buffer-name and label. Treat other-window case specially.
5832 (display-buffer-normalize-specifiers-2): Treat other-window case
5833 specially.
5834 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
5835 (display-buffer-normalize-specifiers):
5836 Call display-buffer-normalize-specifiers-3.
25aef8b8 5837
dbad4f69
MR
58382011-06-17 Martin Rudalics <rudalics@gmx.at>
5839
5840 * window.el (same-window-p): Fix two typos introduced when
5841 adding with-no-warnings.
d1067961
MR
5842 (display-buffer-normalize-specifiers-1): Don't check
5843 pop-up-frames for 'unset initialization.
5844 (display-buffer-normalize-specifiers-2): Major rewrite using
5845 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
5846 (pop-up-frames, display-buffer-reuse-frames)
5847 (display-buffer-mark-dedicated): Don't initialize to 'unset.
5848 Suggested by David Engster <deng@randomsample.de>.
5849 (even-window-heights): Initialize to 'unset.
5850 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
5851 (display-buffer-macro-specifiers): Don't pop up a new frame in the
5852 other window case.
dbad4f69 5853
9b9c9e3a
MR
58542011-06-16 Martin Rudalics <rudalics@gmx.at>
5855
bcd70d97
SM
5856 * window.el (display-buffer-normalize-specifiers-1):
5857 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 5858 second argument of display-buffer (Bug#8865).
981d5c09
MR
5859 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
5860 (switch-to-buffer-other-window-same-frame)
5861 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
5862 Adams (Bug#8875).
9c2755e9
MR
5863 (display-buffer): Don't check noninteractive when calling
5864 display-buffer-pop-up-frame.
5865 (display-buffer-pop-up-frame): Never pop up a frame in
5866 noninteractive mode (Bug#8857).
67222e1d
MR
5867 (enlarge-window, shrink-window): Don't report an error when the
5868 window can't be resized as requested (Bug#8862).
9b9c9e3a 5869
2b75be67
SM
58702011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5871
9ffdd3ba
SM
5872 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
5873
cb581a67
SM
5874 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
5875
2b75be67
SM
5876 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
5877
8c0e3589
AM
58782011-06-15 Alan Mackenzie <acm@muc.de>
5879
cb581a67
SM
5880 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
5881 for declarators, disable knr checking to speed up for normal files.
5882 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 5883
b96e6cde
LMI
58842011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
5885
4bba86e6
LMI
5886 * net/network-stream.el (open-network-stream): Add the keyword
5887 :always-query-capabilities for the case where you want to force a
5888 `plain' network connection, but the protocol still requires the
5889 capabilitiy command (i.e., SMTP and EHLO).
5890
2b75be67 5891 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
5892 consistency with other `-live-p' functions.
5893
efdcdbf8
SM
58942011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5895
5896 * window.el (same-window-buffer-names, same-window-regexps)
5897 (special-display-frame-alist, special-display-popup-frame)
5898 (special-display-function, special-display-buffer-names)
5899 (special-display-regexps, pop-up-frame-alist)
5900 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
5901 (pop-up-windows, split-window-preferred-function)
5902 (split-height-threshold, split-width-threshold, even-window-heights)
5903 (display-buffer-mark-dedicated): Don't encourage the use of
5904 display-buffer-alist from Elisp code.
5905
c5cde042
DN
59062011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
5907
5908 * progmodes/python.el (python-mode): Derive from prog-mode.
5909 * progmodes/ps-mode.el (ps-mode):
5910 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 5911 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
5912 * progmodes/ld-script.el (ld-script-mode): Likewise.
5913
baa1c9ab
MR
59142011-06-15 Martin Rudalics <rudalics@gmx.at>
5915
5916 * window.el (display-buffer-alist): Trim default value to avoid
5917 popping up a new frame (Bug#8857) or reusing an arbitrary window
5918 on another frame.
5919 (display-buffer): Do not fall back on popping up a new frame in
5920 batch mode (Bug#8857).
5921
c5dd5a51
CY
59222011-06-14 Chong Yidong <cyd@stupidchicken.com>
5923
5924 * cus-theme.el (describe-theme-1): Use custom-theme-p.
5925 (custom-theme-summary): New function.
5926 (customize-themes): Use it.
5927
d647b7c4
GM
59282011-06-13 Glenn Morris <rgm@gnu.org>
5929
5930 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
5931
9481c002
MR
59322011-06-13 Martin Rudalics <rudalics@gmx.at>
5933
357f93d2
MR
5934 * help.el (help-window): Remove variable.
5935 (help-window-point-marker, temp-buffer-max-height)
5936 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
5937 (help-print-return-message): Don't set help-window.
5938 (resize-temp-buffer-window): Rewrite cod eand doc-string.
5939 (help-window-setup-finish): Remove.
5940 (help-window-display-message, help-window-setup)
5941 (with-help-window): Major rewrite based on new
5942 display-buffer-window variable.
5943
5944 * help-mode.el (help-mode-finish): Remove help-window related
5945 code.
5946
5947 * view.el (view-exits-all-viewing-windows): Remove reference to
5948 view-return-to-alist in doc-string.
5949 (view-return-to-alist): Make obsolete.
5950 (view-buffer): Call pop-to-buffer-same-window and remove
5951 undo-window code.
5952 (view-buffer-other-window): Call pop-to-buffer-other-window and
5953 simplify code. Ignore second argument.
5954 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
5955 simplify code. Ignore second argument.
5956 (view-return-to-alist-update): Make obsolete.
5957 (view-mode-enter): Rename second argument to QUIT-RESTORE.
5958 Rewrite using quit-restore window parameters.
2b75be67
SM
5959 (view-mode-exit): Rename second argument to EXIT-ONLY.
5960 Rewrite using quit-restore-window.
357f93d2
MR
5961 (View-exit, View-exit-and-edit, View-leave, View-quit)
5962 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
5963 appropriate arguments.
5964 (view-end-message): Use quit-restore window parameter.
5965
9481c002
MR
5966 * window.el (display-buffer-function): Rewrite doc-string.
5967 (display-buffer-window, display-buffer-alist): New variables.
5968 (display-buffer-split-specifiers)
5969 (display-buffer-side-specifiers)
5970 (display-buffer-macro-specifiers): New constants.
5971 (display-buffer-even-window-sizes, display-buffer-set-height)
5972 (display-buffer-set-width, display-buffer-select-window)
5973 (display-buffer-in-window, display-buffer-reuse-window)
5974 (display-buffer-split-window-1, display-buffer-split-window)
5975 (display-buffer-split-atom-window, display-buffer-pop-up-window)
5976 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
5977 (display-buffer-in-side-window, normalize-buffer-to-display)
5978 (display-buffer-normalize-specifiers-1)
5979 (display-buffer-normalize-specifiers-2)
2b75be67
SM
5980 (display-buffer-normalize-specifiers, display-buffer-frame):
5981 New functions.
9481c002
MR
5982 (display-buffer): Major rewrite.
5983 (display-buffer-other-window, display-buffer-other-frame)
5984 (pop-to-buffer, switch-to-buffer-other-window)
5985 (switch-to-buffer-other-frame): Rewrite.
5986 (display-buffer-same-window, display-buffer-same-frame)
5987 (display-buffer-same-frame-other-window)
5988 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
5989 (pop-to-buffer-other-window)
5990 (pop-to-buffer-same-frame-other-window)
5991 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
5992 (switch-to-buffer-other-window-same-frame): New functions.
5993 (same-window-p, special-display-p): Rewrite disabling warnings.
5994 Make obsolete.
5995 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
5996 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
5997 Make obsolete
5998 (same-window-buffer-names, same-window-regexps)
5999 (special-display-frame-alist, special-display-popup-frame)
6000 (special-display-function, special-display-buffer-names)
6001 (special-display-regexps, pop-up-frame-alist)
6002 (pop-up-frame-function, split-window-preferred-function)
6003 (split-height-threshold, split-width-threshold)
6004 (even-window-heights): Make obsolete.
6005
9db51aca
GM
60062011-06-12 Glenn Morris <rgm@gnu.org>
6007
6008 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 6009 Misc simplifications.
9db51aca 6010
39cffb44
MR
60112011-06-12 Martin Rudalics <rudalics@gmx.at>
6012
6013 * window.el (window-safely-shrinkable-p): Restore function which
6014 was inadvertently removed in change from 2011-06-11. Declare as
6015 obsolete.
6016
2b75be67
SM
6017 * calendar/calendar.el (calendar-generate-window):
6018 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
6019 window-safely-shrinkable-p.
6020
a8955be7
GM
60212011-06-12 Glenn Morris <rgm@gnu.org>
6022
6023 * progmodes/fortran.el (fortran-mode-syntax-table):
6024 * progmodes/f90.el (f90-mode-syntax-table):
6025 Set % to punctuation. (Bug#8820)
6026 (f90-find-tag-default): Remove, no longer needed.
6027
f0d4059d
DC
60282011-06-12 Daniel Colascione <dan.colascione@gmail.com>
6029
6030 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
6031
1100a63c
CY
60322011-06-11 Chong Yidong <cyd@stupidchicken.com>
6033
6034 * image.el (image-animated-p): Return animation delay in seconds.
6035 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
6036 (image-animate-timeout): Remove DELAY argument. Don't assume
6037 every subimage has the same delay; get it from image-animated-p.
6038 (image-animate): Caller changed.
6039
def722bf
MA
60402011-06-11 Michael Albinus <michael.albinus@gmx.de>
6041
6042 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
6043 to ignored backtrace functions.
6044
0a2bb1a9
GM
60452011-06-11 Glenn Morris <rgm@gnu.org>
6046
6047 * calendar/appt.el (appt-disp-window-function): Doc fix.
6048 (appt-check): Handle overlapping appointments. (Bug#8337)
6049
6198ccd0
MR
60502011-06-11 Martin Rudalics <rudalics@gmx.at>
6051
6052 * window.el (window-tree-1, window-tree): New functions, moving
6053 the latter to window.el.
6054 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
6055 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
6056 (bw-refresh-edges): Remove.
6057 (balance-windows-1, balance-windows-2): New functions.
6058 (balance-windows): Rewrite in terms of window tree functions,
6059 balance-windows-1 and balance-windows-2.
6060 (bw-adjust-window): Remove.
6061 (balance-windows-area-adjust): New function with functionality of
6062 bw-adjust-window but using resize-window.
2b75be67
SM
6063 (set-window-text-height): Rewrite doc-string.
6064 Use normalize-live-window and resize-window.
6065 (enlarge-window-horizontally, shrink-window-horizontally):
6066 Rename argument to DELTA.
6198ccd0
MR
6067 (window-buffer-height): New function.
6068 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
6069 Rewrite using new window resize routines.
2b75be67
SM
6070 (kill-buffer-and-window, mouse-autoselect-window-select):
6071 Use ignore-errors instead of condition-case.
6198ccd0
MR
6072 (quit-window): Call delete-frame instead of delete-windows-on
6073 for the only buffer on frame.
6074
9397e56f
MR
60752011-06-10 Martin Rudalics <rudalics@gmx.at>
6076
6077 * loadup.el (top-level): Load window before files for the sake
6078 of replace-buffer-in-windows.
6079
6080 * files.el (read-buffer-to-switch)
6081 (switch-to-buffer-other-window)
2b75be67
SM
6082 (switch-to-buffer-other-frame, display-buffer-other-frame):
6083 Move to window.el.
9397e56f
MR
6084
6085 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
6086 (previous-buffer): Move to window.el.
6087
6088 * bindings.el (unbury-buffer): Move to window.el.
6089
6090 * window.el (delete-other-windows-vertically): Move after
6091 definition of delete-other-windows.
6092 (other-window, delete-windows-on, replace-buffer-in-windows):
6093 Move here from window.c.
6094 (record-window-buffer, unrecord-window-buffer)
6095 (set-window-buffer-start-and-point, switch-to-prev-buffer)
6096 (switch-to-next-buffer): New functions.
6097 (get-next-valid-buffer, last-buffer, next-buffer): Move here
6098 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
6099 (previous-buffer): Move here from simple.el.
6100 Call switch-to-prev-buffer.
9397e56f
MR
6101 (bury-buffer): Move here from buffer.c. Switch to previous
6102 buffer when window cannot be deleted.
6103 (unbury-buffer): Move here from bindings.el.
6104 (ctl-x-map): Move binding for other-window from window.c to
6105 here.
6106 (read-buffer-to-switch, switch-to-buffer-other-window)
6107 (switch-to-buffer-other-frame): Move here from files.el.
6108 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
6109 (switch-to-buffer): Move here from buffer.c.
6110 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 6111
562dd5e9
MR
61122011-06-10 Martin Rudalics <rudalics@gmx.at>
6113
6114 * window.el (window-min-height, window-min-width): Move here
6115 from window.c. Add defcustoms and rewrite doc-strings.
6116 (resize-mini-window, resize-window): New functions.
6117 (adjust-window-trailing-edge, enlarge-window, shrink-window):
6118 Move here from window.c.
6119 (maximize-window, minimize-window): New functions.
6120 (delete-window, delete-other-windows, split-window): Move here
6121 from window.c.
6122 (window-split-min-size): New function.
6123 (split-window-keep-point): Mention split-window-above-each-other
6124 instead of split-window-vertically.
2b75be67
SM
6125 (split-window-above-each-other, split-window-vertically):
6126 Rename split-window-vertically to split-window-above-each-other and
562dd5e9
MR
6127 provide defalias for old definition.
6128 (split-window-side-by-side, split-window-horizontally): Rename
6129 split-window-horizontally to split-window-side-by-side and provide
6130 defalias for the old definition.
6131 (ctl-x-map): Move bindings for delete-window,
6132 delete-other-windows and enlarge-window here from window.c.
6133 Replace bindings for split-window-vertically and
6134 split-window-horizontally by bindings for
6135 split-window-above-each-other and split-window-side-by-side.
6136
6137 * cus-start.el (all): Remove entries for window-min-height and
6138 window-min-width. Add entries for window-splits and
6139 window-nest.
6140
f0da764a
GM
61412011-06-09 Glenn Morris <rgm@gnu.org>
6142
80675c21
GM
6143 * calendar/appt.el (appt-mode-line): New function.
6144 (appt-check, appt-disp-window): Use it.
6145
f0da764a
GM
6146 * files.el (hack-one-local-variable-eval-safep):
6147 Allow minor-modes with explicit +/-1 arguments.
6148
59f623b7
TZ
61492011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
6150
6151 * term/xterm.el (xterm): Add defgroup.
6152 (xterm-extra-capabilities): Add defcustom to supply known xterm
6153 capabilities, skip querying them, or query them (default).
6154 (terminal-init-xterm): Use it.
6155 (terminal-init-xterm-modify-other-keys): New function to set up
6156 modifyOtherKeys support to simplify `terminal-init-xterm'.
6157
9aab8e0d
MR
61582011-06-09 Martin Rudalics <rudalics@gmx.at>
6159
6160 * window.el (resize-window-reset, resize-window-reset-1)
6161 (resize-subwindows-skip-p, resize-subwindows-normal)
6162 (resize-subwindows, resize-other-windows, resize-this-window)
6163 (resize-root-window, resize-root-window-vertically)
6164 (window-deletable-p, window-or-subwindow-p)
6165 (frame-root-window-p): New functions.
6166
e8b08aee
GM
61672011-06-09 Glenn Morris <rgm@gnu.org>
6168
6169 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
6170 (ange-ftp-get-files): Use it.
6171
254c37a5
AK
61722011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
6173
6174 * mail/sendmail.el (mail-recover-1, mail-recover):
6175 * files.el (recover-file, recover-session):
6176 Handle dired-listing-switches not being just a single short option.
6177
35d7dbd3
GM
61782011-06-09 Glenn Morris <rgm@gnu.org>
6179
6180 * calendar/appt.el (appt-display-message, appt-disp-window):
6181 Handle lists of appointments.
6182
387522b2
MR
61832011-06-08 Martin Rudalics <rudalics@gmx.at>
6184
2b75be67
SM
6185 * window.el (one-window-p): Move down in code.
6186 Rewrite doc-string.
6187 (window-current-scroll-bars): Rewrite doc-string.
6188 Normalize live window argument.
387522b2
MR
6189 (walk-windows, get-window-with-predicate, count-windows):
6190 Rewrite doc-string. Use window-list-1.
6191 (window-in-direction-2, window-in-direction, get-mru-window):
6192 New functions.
6193
d8e4b68b 61942011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
6195
6196 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
6197 Doc fix (Bug#8713).
6198
61992011-06-08 Chong Yidong <cyd@stupidchicken.com>
6200
6201 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
6202
62032011-06-08 Juanma Barranquero <lekktu@gmail.com>
6204
6205 * loadhist.el (unload-feature-special-hooks):
6206 Add `comint-output-filter-functions'.
6207
0de12c52
IK
62082011-06-08 Ivan Kanis <gnu@kanis.fr>
6209
6210 * calendar/appt.el (appt-check): Move some initializations into the let.
6211
f3d1777e
MR
62122011-06-08 Martin Rudalics <rudalics@gmx.at>
6213
6214 * window.el (window-height): Defalias to window-total-height.
6215 (window-width): Defalias to window-body-width.
6216
18af70d0
CY
62172011-06-07 Chong Yidong <cyd@stupidchicken.com>
6218
6219 * image-mode.el (image-toggle-animation): New command.
6220 (image-mode-map): Bind it to RET.
6221 (image-mode): Update message.
6222 (image-toggle-display-image): Avoid a spurious cache flush.
6223 (image-transform-rotation): Doc fix.
6224 (image-transform-properties): Return quickly in the normal case.
6225 (image-animate-loop): Rename from image-animate-max-time.
6226
2b75be67 6227 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
6228 (create-animated-image): Remove unnecessary function.
6229 (image-animate): Rename from image-animate-start. New arg.
2b75be67 6230 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
6231 (image-animate-timer): Use car-safe.
6232 (image-animate-timeout): Rename argument.
6233
190b47e6
MR
62342011-06-07 Martin Rudalics <rudalics@gmx.at>
6235
6236 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
6237 window.c. Rename first argument to ALL-FRAMES.
6238 Rephrase doc-strings.
6239 (get-buffer-window-list): Rewrite using window-list-1.
6240 Rephrase doc-string.
a1511caf
MR
6241 (window-safe-min-height, window-safe-min-width): New constants.
6242 (window-size-ignore, window-min-size, window-min-size-1)
6243 (window-sizable, window-sizable-p, window-size-fixed-1)
6244 (window-size-fixed-p, window-min-delta-1, window-min-delta)
6245 (window-max-delta-1, window-max-delta, window-resizable)
6246 (window-resizable-p, window-total-height, window-total-width)
6247 (window-body-width): New functions.
6248 (window-full-height-p, window-full-width-p): Rewrite using
6249 window-total-size.
6250 (window-body-height): Rewrite using window-body-size.
190b47e6 6251
85cc1f11
MR
62522011-06-06 Martin Rudalics <rudalics@gmx.at>
6253
6254 * window.el (window-right, window-left, window-child)
6255 (window-child-count, window-last-child, window-any-p)
6256 (normalize-live-buffer, normalize-live-frame)
6257 (normalize-any-window, normalize-live-window)
6258 (window-iso-combination-p, window-iso-combined-p)
6259 (window-iso-combinations)
6260 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
6261 (windows-with-parameter, window-with-parameter)
6262 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
6263 (window-atom-check, window-side-check, window-check):
6264 New functions.
85cc1f11
MR
6265 (ignore-window-parameters, window-sides, window-sides-vertical)
6266 (window-sides-slots): New variables.
6267 (window-size-fixed): Move down in code. Minor doc-string fix.
6268
e7156492
AS
62692011-06-05 Andreas Schwab <schwab@linux-m68k.org>
6270
6271 * comint.el (comint-dynamic-complete-as-filename)
6272 (comint-dynamic-complete-filename): Correctly call
6273 completion-in-region.
6274
7e821d0d
DD
62752011-06-05 Deniz Dogan <deniz@dogan.se>
6276
6277 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
6278 in last change.
6279
ac09b8a1
DD
62802011-06-05 Deniz Dogan <deniz@dogan.se>
6281
6282 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
6283 (rcirc): Use it to prompt for encryption.
6284
34699b85
RW
62852011-06-05 Roland Winkler <winkler@gnu.org>
6286
6287 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
6288 (bibtex-search-entries): New command bound to C-c C-a.
6289 (bibtex-display-entries): New function.
6290
004dedd3
RW
62912011-06-05 Roland Winkler <winkler@gnu.org>
6292
6293 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
6294 (bibtex-insert-kill): After yanking insert newline if necessary.
6295 (bibtex-initialize): Call bibtex-string-files-init only once.
6296 (bibtex-mode): Do not call easy-menu-add.
6297 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
6298 (bibtex-yank): Set arg properly if nil.
6299
022fe7ce
RW
63002011-06-05 Roland Winkler <winkler@gnu.org>
6301
2b75be67
SM
6302 * textmodes/bibtex.el (bibtex-search-entry-globally):
6303 New variable.
022fe7ce
RW
6304 (bibtex-search-entry): Use it.
6305
b7c3692a
RW
63062011-06-05 Roland Winkler <winkler@gnu.org>
6307
6308 * textmodes/bibtex.el (bibtex-entry-format): New option
6309 sort-fields.
6310 (bibtex-format-entry, bibtex-reformat): Honor this option.
6311 (bibtex-parse-entry): Return fields in proper order.
6312
8eda563d
JB
63132011-06-05 Juanma Barranquero <lekktu@gmail.com>
6314
6315 * doc-view.el (doc-view-remove-if): Move computation of result out
6316 of `dolist' to silence misleading lexical-binding warning.
6317
7dbe3dbc
CY
63182011-06-04 Chong Yidong <cyd@stupidchicken.com>
6319
6320 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
6321 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
6322
0c33dd17
MA
63232011-06-04 Michael Albinus <michael.albinus@gmx.de>
6324
6325 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
6326 "SunOS 5.10".
6327
f8f91c2b
MA
63282011-06-04 Michael Albinus <michael.albinus@gmx.de>
6329
6330 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
6331 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
6332 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
6333 (tramp-parse-putty):
6334 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
6335 (tramp-completion-function-alist-ssh)
6336 (tramp-completion-function-alist-telnet)
6337 (tramp-completion-function-alist-su)
6338 (tramp-completion-function-alist-putty): Set `tramp-autoload'
6339 cookie.
6340
6341 * net/tramp-ftp.el:
6342 * net/tramp-sh.el:
6343 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
6344 load "tramp.el" `tramp-set-completion-function'.
6345
e17d9003
SM
63462011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
6347
6348 * shell.el: Require and use pcomplete.
6349 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
6350 (shell-completion-vars): Set pcomplete-default-completion-function.
6351
6c4cab03
DD
63522011-06-04 Deniz Dogan <deniz@dogan.se>
6353
6354 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
6355 `memq' (Bug#8799).
6356
ea9fafe0
SM
63572011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6358
6359 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
6360
b3e945d3
JB
63612011-06-02 Juanma Barranquero <lekktu@gmail.com>
6362
6363 * bs.el (bs--mark-unmark, bs--nth-wrapper):
6364 * mpc.el (mpc-select-extend, mpc-songpointer-context):
6365 * vc/log-view.el (log-view-beginning-of-defun):
6366 * vc/smerge-mode.el (smerge-apply-resolution-patch)
6367 (smerge-refine-forward, smerge-refine-chopup-region):
6368 Silence warning for unused `dotimes' counter variables.
6369
7d520089
SM
63702011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6371
6372 * net/tramp.el (tramp-with-progress-reporter): Rename from
6373 with-progress-reporter. Use `declare'.
6374 * net/tramp-smb.el:
6375 * net/tramp-sh.el:
6376 * net/tramp-gvfs.el: Update all uses.
6377
a1c2400f
JB
63782011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
6379
6380 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
6381 buffer isn't killed before making it current.
6382
2403c841
SM
63832011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6384
6385 Silence various byte-compiler warnings.
6386 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
6387 `access-type' and new obsolescence format.
6388 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
6389 new format.
6390 (byte-compile-check-variable): New `access-type' argument.
6391 Only warn if the access-type is obsolete.
6392 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
6393 (byte-compile-variable-set): Adjust callers.
6394 * help-fns.el (describe-variable): Adjust to new obsolescence format.
6395 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
6396 setting it as obsolete.
6397 * simple.el (minibuffer-completing-symbol):
6398 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
6399 access as obsolete.
6400 * minibuffer.el (minibuffer-completing-file-name): Don't make it
6401 obsolete yet.
6402 * international/quail.el (quail-mouse-choose-completion): Remove unused
6403 code referring to obsolete var.
6404 (quail-choose-completion-string): Remove.
6405 * server.el (server-clients-with, server-kill-buffer-query-function)
6406 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
6407 * proced.el (proced-send-signal):
6408 * emacs-lisp/lisp.el (lisp-complete-symbol):
6409 Replace completion-annotate-function with completion-extra-properties.
6410
2462470b
SM
64112011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6412
fb5b2591
SM
6413 * simple.el (goto-line): Use read-number.
6414 (overriding-map-is-bound): Remove.
6415 (saved-overriding-map): Change default.
6416 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
6417 Take the map as argument.
6418 (universal-argument, negative-argument, digit-argument): Use it.
6419 (restore-overriding-map): Adjust.
6420 (do-auto-fill): Use fill-forward-paragraph.
6421 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
6422
fd6fa53f
SM
6423 * minibuffer.el (minibuffer-inactive-mode-map): New var.
6424 (minibuffer-inactive-mode): New major mode.
6425 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
6426 the *Messages* buffer" hack.
6427 (mouse-popup-menubar): Don't burp if the event is a normal key.
6428
2462470b
SM
6429 Miscellaneous tweaks.
6430 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
6431 lexical scoping as in subr.el's dolist and dotimes.
6432 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
6433 Silence compiler warning.
6434 * thingatpt.el (forward-whitespace): Trivial coding style fix.
6435 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
6436 * international/ccl.el (ccl-compile): Trivial simplification.
6437 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
6438 * emacs-lisp/testcover.el (testcover-end): Remove spurious
6439 `printflag' argument.
6440 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
6441 Purecopy the whole obsolescence data.
6442
108bf785
LL
64432011-06-01 Leo Liu <sdl.web@gmail.com>
6444
6445 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
6446 improve doc-string as suggested by Marco Pessotto
6447 <melmothx@gmail.com>.
6448 (rcirc-print): Fix last change.
6449
30a23501
SM
64502011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6451
6452 * minibuffer.el (complete-with-action): Return nil for the metadata and
6453 boundaries of non-functional tables.
6454 (completion-table-dynamic): Return nil for the metadata.
6455 (completion-table-with-terminator): Add default case, using
6456 complete-with-action.
6457 (completion--metadata): New function.
6458 (completion-all-sorted-completions, minibuffer-completion-help): Use it
6459 to try and avoid pathological performance problems.
6460 (completion--embedded-envvar-table): Return `category' metadata.
6461
bcd54f83
LMI
64622011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
6463
6464 * subr.el (process-alive-p): New tiny convenience function.
6465
e227544d
SM
64662011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6467
6468 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
6469 content but also its previous major mode.
6470
e8296fdc
HE
64712011-05-31 Helmut Eller <eller.helmut@gmail.com>
6472
4d61f28d 6473 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
6474 *Backtrace* buffer when we exit with C-M-c.
6475
620c53a6
SM
64762011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6477
6478 * minibuffer.el: Add metadata method to completion tables.
6479 (completion-category-overrides): New defcustom.
6480 (completion-metadata, completion--field-metadata)
6481 (completion-metadata-get, completion--styles)
6482 (completion--cycle-threshold): New functions.
6483 (completion-try-completion, completion-all-completions):
6484 Add `metadata' argument to choose completion-styles.
6485 (completion--do-completion): Use metadata to choose cycling.
6486 (completion-all-sorted-completions): Use metadata for sorting.
6487 Remove :completion-cycle-penalty which is not needed any more.
6488 (completion--try-word-completion): Add `metadata' argument.
6489 (minibuffer-completion-help): Check metadata for annotation function
6490 and sorting.
6491 (completion-file-name-table): Return `category' metadata.
6492 (minibuffer-completing-file-name): Make obsolete.
6493 * simple.el (minibuffer-completing-symbol): Make obsolete.
6494 * icomplete.el (icomplete-completions): Pass new `metadata' param to
6495 completion-try-completion.
6496
1257e755
SM
64972011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6498
6499 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
6500
3767e706
LL
65012011-05-30 Leo Liu <sdl.web@gmail.com>
6502
6503 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
6504 (rcirc-print): Decode all incoming messages (bug#8744).
6505 (rcirc-decode-coding-system): Allow value nil for automatic coding
6506 system detection.
3767e706 6507
d1a5d56a
GM
65082011-06-01 Glenn Morris <rgm@gnu.org>
6509
6510 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
6511
e8cbec34
CY
65122011-05-29 Chong Yidong <cyd@stupidchicken.com>
6513
6514 * image.el (image-animate-max-time): Allow nil and t values.
6515 Default to nil.
6516 (create-animated-image): Doc fix.
6517 (image-animate-start): Remove second arg; just use
6518 image-animate-max-time.
6519 (image-animate-timeout): Doc fix. Args changed.
6520
6521 * image-mode.el (image-toggle-display-image): Ensure that the
6522 image spec passed to the animate timer is the same object as in
58179cce 6523 the buffer's display property (Bug#6981).
e8cbec34
CY
6524 (image-transform-properties): Doc fix.
6525
6526 * image.el (image-animate-max-time): Default to nil.
6527
159daf87
MR
65282011-05-29 Martin Rudalics <rudalics@gmx.at>
6529
6530 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
6531 entire buffer list (Bug#8184).
6532
d66c4c7c
CY
65332011-05-29 Chong Yidong <cyd@stupidchicken.com>
6534
6535 * image.el (imagemagick-types-inhibit)
6536 (imagemagick-register-types): Doc fix.
6537
80aec780
DD
65382011-05-29 Deniz Dogan <deniz@dogan.se>
6539
6540 * net/rcirc.el (rcirc): Use the user's stored encryption method by
6541 default.
6542
1dd3c2d9
CY
65432011-05-29 Chong Yidong <cyd@stupidchicken.com>
6544
6545 * select.el: Don't perform clipboard-manager saving in hooks;
6546 leave the hooks empty.
6547
60e56523
LL
65482011-05-28 Leo Liu <sdl.web@gmail.com>
6549
6550 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
6551 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
6552 (occur-edit-mode): New major mode (Bug#8463).
6553 (occur-after-change-function): New function.
6554 (occur-engine): Give Occur tags a read-only property.
6555
2b1e1a22
KR
65562011-05-28 Kevin Ryde <user42@zip.com.au>
6557
6558 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
6559
5d344e88
CY
65602011-05-28 Chong Yidong <cyd@stupidchicken.com>
6561
8e6ca83d
CY
6562 * bindings.el (help-echo): Make the initial non-indicator dash
6563 empty on graphical terminals (Bug#7295).
6564
5d344e88
CY
6565 * files.el (auto-mode-alist): Move config rule after the
6566 in-stripping one (Bug#8547).
6567
bfbbace7
CY
6568 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
6569
fbeba6e2
CY
6570 * startup.el (normal-splash-screen): Remove gratuitous mode-line
6571 setting (Bug#8740).
6572
60ed8c72
AA
65732011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
6574
4ac619f0
AA
6575 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
6576 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
6577 (Bug#8539).
60ed8c72 6578
23db196e
CY
65792011-05-28 Chong Yidong <cyd@stupidchicken.com>
6580
6581 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
6582
5012f24c
DK
65832011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
6584
6585 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
6586 (hs-hide-block-at-point, hs-find-block-beginning)
6587 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
6588 (Bug#8279).
6589
6a639b16
GM
65902011-05-28 Glenn Morris <rgm@gnu.org>
6591
6592 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
6593
d43eaf2c
CY
65942011-05-28 Chong Yidong <cyd@stupidchicken.com>
6595
5199bde1
CY
6596 * help-fns.el (describe-function-1): If the function is a derived
6597 major mode, print the parent mode.
6598
d43eaf2c
CY
6599 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
6600 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
6601
423428a8
SM
66022011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
6603
0ff8e1ba 6604 * minibuffer.el (completion--capf-wrapper): Check applicability before
0b381c7e 6605 returning non-nil for non-exclusive completion data.
0ff8e1ba
SM
6606 * progmodes/etags.el (tags-completion-at-point-function):
6607 * info-look.el (info-lookup-completions-at-point): Mark as
6608 non-exclusive.
6609 (info-complete): Adjust accordingly.
6610
423428a8
SM
6611 * info-look.el: Convert to lexical-binding and completion-at-point.
6612 (info-lookup-completions-at-point): New function.
6613 (info-complete): Use it and completion-in-region.
6614
b74aa22b
DA
66152011-05-28 Drew Adams <drew.adams@oracle.com>
6616
6617 * isearch.el: Let M-e start with point at the first mismatched char.
6618 (isearch-fail-pos): New function.
6619 (isearch-edit-string): Use it.
6620
66e2e71d
DK
66212011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
6622
6623 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
6624
eb95d01d
TC
66252009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
6626
6627 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
6628 traversal functions for avl-trees.
6629 (avl-tree--stack): New struct.
6630 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
6631 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
6632 (avl-tree--do-enter): Add optional `updatefun' arg.
6633 Change return value.
eb95d01d 6634 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
6635 (avl-tree--do-delete): Add `test' and `nilflag' args.
6636 Change return value.
eb95d01d
TC
6637 (avl-tree-member): Add optional `nilflag'
6638 (avl-tree-member-p): New function.
6639 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
6640 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
6641 (avl-tree-stack-empty-p): New functions.
6642
3769ddcf
TC
66432009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
6644
6645 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
6646 avl-tree--del-balance1 and make it work both ways.
6647 (avl-tree--del-balance2): Remove.
6648 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
6649 make it work both ways.
6650 (avl-tree--enter-balance2): Remove.
6651 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
6652 New macros.
6653 (avl-tree--mapc, avl-tree-map): Add direction argument.
6654
eb95d01d 66552011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
6656
6657 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
6658
a9f737ee
CY
66592011-05-27 Chong Yidong <cyd@stupidchicken.com>
6660
6661 * select.el: Support clipboard managers with built-in function
6662 x-clipboard-manager-save, via delete-frame-functions and
6663 kill-emacs-hook.
6664 (xselect-convert-to-targets): Add MULTIPLE target to list.
6665 (xselect-convert-to-save-targets): New function.
6666
c92a1e54
KH
66672011-05-27 Kenichi Handa <handa@m17n.org>
6668
6669 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
6670 let-binding rfc2047-encode-encoded-words to nil.
6671
e145f188
GM
66722011-05-27 Glenn Morris <rgm@gnu.org>
6673
5ec8a862
GM
6674 * mail/emacsbug.el: Don't require url-util.
6675
4b29d9fb
GM
6676 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
6677
e145f188
GM
6678 * files.el (set-auto-mode):
6679 Also respect mode: entries at the end of the file. (Bug#8586)
6680
7d15102b
GM
66812011-05-26 Glenn Morris <rgm@gnu.org>
6682
98f593b8
GM
6683 * files.el (hack-local-variables-prop-line, hack-local-variables):
6684 Downcase mode names, as seems to be traditional.
27b48e63 6685 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 6686
7d15102b
GM
6687 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
6688 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
6689
51d5b4ec
JD
66902011-05-25 Julien Danjou <julien@danjou.info>
6691
6692 * textmodes/rst.el (rst-define-level-faces): Do not define face
6693 symbol if it is already defined.
6694
91513f63
VB
66952011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
6696
6697 * play/5x5.el (5x5-new-game, 5x5-randomize):
6698 Reset 5x5-solver-output to nil when a new grid is cast.
6699 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
6700 these debugging traces, as defmacro breaks the compiled code.
6701
4d90d6d0
DK
67022011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
6703
6704 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
6705
e1b90ef6
LL
67062011-05-24 Leo Liu <sdl.web@gmail.com>
6707
6708 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
6709 (vc-bzr-sha1): Adapt.
6710
d8e4b68b 6711 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
6712
6713 * bindings.el: Provide sha1 feature.
6714
db0406bb 67152011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
6716
6717 * mail/sendmail.el: Require `rfc2047'.
6718 (mail-insert-from-field): Do not perform RFC2047 encoding.
6719 (mail-encode-header): New function.
6720 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
6721 buffer to the return value of select-message-coding-system.
6722 Call mail-encode-header.
b8d747b9
KH
6723
6724 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
6725
db0406bb 67262011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 6727
4d90d6d0
DK
6728 * mail/supercite.el (sc-default-cite-frame):
6729 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 6730
eb8a5e9b
GM
67312011-05-24 Glenn Morris <rgm@gnu.org>
6732
f8630703
GM
6733 * progmodes/python.el (brm-menu): Declare.
6734
8831bbed
GM
6735 * emulation/viper.el (viper-set-hooks): Declare.
6736
eb8a5e9b
GM
6737 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
6738 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
6739 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
6740 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
6741 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
6742 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
6743
a2a25d24
SM
67442011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6745
6746 Add an :exit-function for completion-at-point.
6747
6748 * minibuffer.el (completion--done): New fun.
6749 (completion--do-completion): Use it. New arg `expect-exact'.
6750 (minibuffer-complete, minibuffer-complete-word): Don't output message,
6751 since completion--do-completion does it for us now.
6752 (minibuffer-force-complete): Use completion--done and
6753 completion--replace. Handle sole-completion case with more care.
6754 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
6755 (completion-extra-properties): New var.
6756 (completion-annotate-function): Make obsolete.
6757 (minibuffer-completion-help): Adjust accordingly.
6758 Use completion-list-insert-choice-function.
6759 (completion-at-point, completion-help-at-point):
6760 Bind completion-extra-properties.
6761 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
6762 * simple.el (completion-list-insert-choice-function): New var.
6763 (completion-setup-function): Preserve it.
6764 (choose-completion): Pay attention to it, shuffle the code a bit.
6765 (choose-completion-string): New arg `insert-function'.
6766
6767 * textmodes/bibtex.el: Convert to lexical binding.
6768 (bibtex-mode-map): Use completion-at-point.
6769 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
6770 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
6771 (bibtex-complete): Define as obsolete alias.
6772 (bibtex-complete-internal): Remove.
6773 (bibtex-format-entry): Remove unused sub-group in regexp.
6774 * shell.el (shell--command-completion-data)
6775 (shell-environment-variable-completion):
6776 * pcomplete.el (pcomplete-completions-at-point):
6777 * comint.el (comint--complete-file-name-data): Use :exit-function
6778 instead of completion-table-with-terminator so it also works for
6779 choose-completion.
6780
e44e373d
SM
67812011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6782
4f91a816
SM
6783 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
6784
782fc819
SM
6785 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
6786 (bug#8710).
6787
e44e373d
SM
6788 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
6789
381987c3
KM
67902011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
6791
6792 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
6793 customization variable and implement: If non-nil, auto-fill will
6794 be inhibited while on topic's header line.
6795
b776bc70
VB
67962011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
6797
6798 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 6799 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
6800 always have a solution in grid size = 5 cases.
6801 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
6802 (5x5-solver-output, 5x5-log-buffer): New vars.
6803 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
6804 Make these variables buffer local to achieve 5x5 multi-session-ness.
6805 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
6806 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
6807 (5x5-solve-suggest): New funs.
6808 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
6809 randomize a grid so that we ensure that there is always a solution.
6810 (5x5-make-random-grid): Allow other movement than flipping.
6811
7de88b6e
KR
68122011-05-23 Kevin Ryde <user42@zip.com.au>
6813
6814 * emacs-lisp/advice.el (ad-read-advised-function):
6815 Use `function-called-at-point' as the default default, if it has
6816 advice and passes PREDICATE.
6817
b1ef1257
SM
68182011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6819
bbca48fe
SM
6820 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
6821 byte-compile-lambda if it's actually a lambda.
6822
b1ef1257
SM
6823 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
6824 Fix function quoting. Use backquote better.
6825
92a9cc65
YS
68262011-05-22 Yuanle Song <sylecn@gmail.com>
6827
6828 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
6829 matching (Bug#8516).
6830
f0fb8059
JA
68312011-01-22 Jari Aalto <jari.aalto@cante.net>
6832
6833 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
6834 different face (Bug#8178).
6835
d5b44c93
CY
68362011-05-22 Chong Yidong <cyd@stupidchicken.com>
6837
6838 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
6839 defface (Bug#8144).
6840
79106a44
SM
68412011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
6842
9c848d8a
SM
6843 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
6844 funcall as well (bug#8712). Warn when performing those conversions.
6845 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
6846
79106a44
SM
6847 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
6848
88dfa756
GM
68492011-05-22 Glenn Morris <rgm@gnu.org>
6850
6851 * files.el (hack-local-variables-prop-line): Small simplifications.
6852 (hack-local-variables, hack-local-variables-prop-line):
6853 If MODE-ONLY, return the mode, rather than just `t'.
6854
b7cf2c79
SM
68552011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
6856
6857 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
6858
3f1a8558
GM
68592011-05-21 Glenn Morris <rgm@gnu.org>
6860
7e4ccca3
GM
6861 * files.el (hack-local-variables-prop-line, hack-local-variables):
6862 If only interested in the mode, don't bother doing the other stuff.
6863
637d46ca
GM
6864 * image-mode.el (image-after-revert-hook):
6865 Redraw all frames on which the image is visible. (Bug#8567)
6866
973d955b
GM
6867 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
6868
3f1a8558
GM
6869 * wid-edit.el (widget-checklist-match-inline):
6870 Fix 2011-04-19 change. (Bug#8649)
6871
96479927
SM
68722011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
6873
1dcf791f
SM
6874 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
6875 Also allow singlespace after single-letter capitals followed by a dot.
6876
96479927
SM
6877 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
6878 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
6879
35fd0881
N
68802011-05-20 Nix <nix@esperi.org.uk>
6881
6882 * files.el (basic-save-buffer-2):
6883 Fix handling of break-hardlink-on-save with non-existent files.
6884
82745640
DD
68852011-05-19 Deniz Dogan <deniz@dogan.se>
6886
6887 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 6888 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 6889
4a720484
GM
68902011-05-19 Glenn Morris <rgm@gnu.org>
6891
d1f21341
GM
6892 * progmodes/f90.el (f90-type-def-re):
6893 Handle "type, bind(c)". (Bug#8691)
6894
4a720484
GM
6895 * emacs-lisp/autoload.el (batch-update-autoloads):
6896 Set autoload-excludes by parsing loadup.el rather than Makefiles.
6897
2fb0a219
MA
68982011-05-18 Michael Albinus <michael.albinus@gmx.de>
6899
6900 * net/tramp.el (tramp-process-actions): Set "first-password-request"
6901 property for the correct connection in case of multihops.
6902
e565dd37
GM
69032011-05-18 Glenn Morris <rgm@gnu.org>
6904
c2571358 6905 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
6906 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
6907
e565dd37
GM
6908 Rationalize calendar handling of day and month abbrev-arrays.
6909 * calendar/calendar.el (calendar-customized-p): New function.
6910 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
6911 (calendar-day-name-array, calendar-month-name-array): Doc fix.
6912 Add :set function.
6913 (calendar-abbrev-length, calendar-day-abbrev-array)
6914 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
6915 (calendar-day-abbrev-array, calendar-month-abbrev-array):
6916 Elements may no longer be nil.
6917 (calendar-day-name, calendar-month-name):
6918 Update for changed nature of abbrev arrays.
6919 * calendar/diary-lib.el (diary-name-pattern):
6920 Update for changed nature of abbrev arrays.
6921 (diary-mark-entries-1): Update calendar-make-alist calls.
6922 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
6923 * calendar/cal-html.el (cal-html-day-abbrev-array):
6924 Simply inherit from calendar-day-abbrev-array.
6925
1d99a745
SM
69262011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
6927
6928 * progmodes/grep.el (grep-mode): Disable default
6929 compilation-directory-matcher setting (bug#8684).
6930
7c1d9aa0
MA
69312011-05-17 Michael Albinus <michael.albinus@gmx.de>
6932
6933 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
6934 instead of "head" and "tail". There were problems with SunOS 5.9,
6935 and it performs better.
6936
3952e9d8
GM
69372011-05-17 Glenn Morris <rgm@gnu.org>
6938
2dd12e7f
GM
6939 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
6940
e4157b9c
GM
6941 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
6942 Replace obsolete function.
6943
8e249bbd
GM
6944 * shell.el (pcomplete-parse-arguments-function): Declare.
6945
3952e9d8
GM
6946 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
6947 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
6948 (appt-check): Doc fixes.
6949 (appt-disp-window-function, appt-delete-window-function):
6950 Remove needless special case in custom :type.
6951 (appt-display-count): Default to 0, not nil.
6952 (appt-check): Reset appt-display-count to 0, not nil.
6953
c71a0d48 69542011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 6955
c71a0d48
GM
6956 * progmodes/python.el (python-font-lock-keywords):
6957 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 6958
31d55be9
SM
69592011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
6960
6961 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
6962
3bfacb2f
KR
69632011-05-16 Kevin Ryde <user42@zip.com.au>
6964
6965 * info-look.el (makefile-automake-mode): New setups, looking in
6966 automake manual, then makefile-mode.
6967 (makefile-mode): Remove automake manual, have it just in
6968 makefile-automake-mode since there's various things different or
6969 not relevant to plain make.
6970 (makefile-mode): Remove "other-modes" non-existent automake-mode,
6971 believe a hypothetical automake-mode would go to makefile-mode,
6972 not the other way around.
6973
c8e83751
CY
69742011-05-15 Chong Yidong <cyd@stupidchicken.com>
6975
5e9e35cd
CY
6976 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
6977 hunk-end tags (Bug#8672).
6978
c8e83751
CY
6979 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
6980 vc-annotate-show-diff-revision-at-line (Bug#8671).
6981
50b23e5a
GM
69822011-05-14 Glenn Morris <rgm@gnu.org>
6983
7210a739
GM
6984 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
6985 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
6986 (change-log-font-lock-keywords): Also handle multiple author lines
6987 with leading tabs. (Bug#8644)
7210a739 6988
4691905a
GM
6989 * calendar/appt.el (appt-check): Rename some local variables.
6990 Some simplification/reordering.
6991
50b23e5a
GM
6992 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
6993 (feedmail-sendmail-f-doesnt-sell-me-out)
6994 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
6995 (feedmail-debug-sit-for, feedmail-queue-express-hook)
6996 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
6997 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
6998 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
6999 (feedmail-binmail-gnulinuxish-template):
7000 Rename from feedmail-binmail-linuxish-template.
7001 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
7002 Use insert-buffer-substring.
7003
215cda7c
BC
70042011-05-14 Bill Carpenter <bill@carpenter.org>
7005
7006 * mail/feedmail.el (feedmail-patch-level): Increase.
7007 (feedmail-debug): New custom group.
7008 (feedmail-confirm-outgoing-timeout)
7009 (feedmail-sendmail-f-doesnt-sell-me-out)
7010 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
7011 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
7012 (feedmail-sender-line, feedmail-from-line)
7013 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 7014 (feedmail-spray-this-address)
215cda7c
BC
7015 (feedmail-spray-address-fiddle-plex-list)
7016 (feedmail-queue-use-send-time-for-date)
7017 (feedmail-queue-use-send-time-for-message-id)
7018 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
7019 (feedmail-buffer-eating-function):
7020 Doc fixes.
7021 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
7022 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
7023 (feedmail-message-action-scroll-down): New functions.
7024 (feedmail-queue-directory, feedmail-queue-draft-directory):
7025 Use expand-file-name.
7026 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
7027 Remove C-v help entry.
7028 (feedmail-queue-buffer-file-name): New variable.
7029 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
7030 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
7031 (feedmail-message-action-send-strong, feedmail-message-action-edit)
7032 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
7033 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
7034 (feedmail-message-action-toggle-spray)
7035 (feedmail-run-the-queue-no-prompts)
7036 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
7037 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
7038 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
7039 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
7040 (feedmail-envelope-deducer, feedmail-fiddle-from)
7041 (feedmail-fiddle-sender, feedmail-default-date-generator)
7042 (feedmail-fiddle-date, feedmail-fiddle-message-id)
7043 (feedmail-fiddle-spray-address)
7044 (feedmail-fiddle-list-of-spray-fiddle-plexes)
7045 (feedmail-fiddle-list-of-fiddle-plexes)
7046 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
7047 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
7048 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
7049 Change default. Doc fix.
7050 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
7051 (feedmail-binmail-linuxish-template): New constant.
7052 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
7053 Respect feedmail-sendmail-f-doesnt-sell-me-out.
7054 (feedmail-send-it): Add debug call.
7055 Use feedmail-queue-buffer-file-name, and
7056 feedmail-send-it-immediately-wrapper.
7057 (feedmail-message-action-send): Add debug call.
7058 Use feedmail-send-it-immediately-wrapper.
7059 (feedmail-queue-express-to-queue): Add debug call.
7060 Run feedmail-queue-express-hook.
7061 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
7062 (feedmail-message-action-help-blat):
7063 Rename from feedmail-queue-send-edit-prompt-help-first.
7064 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
7065 Check line-endings. Handle errors better.
7066 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
7067 Doc fix. Add debug call.
7068 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
7069 Use feedmail-queue-send-edit-prompt-inner.
7070 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
7071 (feedmail-queue-send-edit-prompt-inner): New function, extracted
7072 from feedmail-queue-send-edit-prompt.
7073 (feedmail-queue-send-edit-prompt-help)
7074 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
7075 (feedmail-tidy-up-slug): Add debug call.
7076 Respect feedmail-queue-slug-suspect-regexp.
7077 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
7078 (feedmail-dump-message-to-queue): Add debug call.
7079 Expand queue-directory.
7080 (feedmail-dump-message-to-queue): Change message slightly.
7081 Use feedmail-say-chatter.
7082 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
7083 (feedmail-send-it-immediately-wrapper): New function.
7084 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
7085 Insert empty string rather than newline. Handle full-frame case.
7086 Use catch/throw. Use feedmail-say-chatter.
7087 (feedmail-fiddle-from): Try mail-host-address.
7088 (feedmail-default-message-id-generator): Doc fix.
7089 Bind system-time-locale. Handle missing end.
7090 (feedmail-fiddle-x-mailer): Add debug call.
7091 Handle feedmail-x-mailer-line being nil.
7092 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
7093 Add debug call. Use buffer-substring-no-properties.
7094 (feedmail-say-debug, feedmail-say-chatter): New functions.
7095 (feedmail-find-eoh): Give an explicit error.
7096
42c7e61e
UJ
70972011-05-13 Ulf Jasper <ulf.jasper@web.de>
7098
c2571358 7099 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 7100 family from helvetica to sans.
c2571358 7101 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
7102 etc/images/newsticker.
7103
c2571358 7104 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
7105 family from helvetica to sans.
7106
7107 * net/newst-plainview.el (newsticker-new-item-face)
7108 (newsticker-old-item-face, newsticker-immortal-item-face)
7109 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 7110 (newsticker-statistics-face): Change default family from
42c7e61e 7111 helvetica to sans.
c2571358 7112 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
7113 etc/images/newsticker.
7114
7115 * net/newst-backend.el (newsticker--do-run-auto-mark-filter),
7116 (newsticker--process-auto-mark-filter-match): : Tell user about
7117 auto-marking.
7118
8497a297
DV
71192011-05-13 Didier Verna <didier@xemacs.org>
7120
7121 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
7122 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
7123 TODO entries.
8497a297
DV
7124 (lisp-lambda-list-keyword-parameter-indentation)
7125 (lisp-lambda-list-keyword-parameter-alignment)
7126 (lisp-lambda-list-keyword-alignment): New customizable user options.
7127 (lisp-indent-defun-method): Improve docstring.
7128 (extended-loop-p): Fix comment.
7129 (lisp-indent-lambda-list-keywords-regexp): New variable.
7130 (lisp-indent-lambda-list): New function.
7131 (lisp-indent-259): Use it.
7132 (lisp-indent-defmethod): Support for more than one
7133 method qualifier and properly indent methods lambda-lists.
7134 (defgeneric): Provide a missing common-lisp-indent-function property.
7135
f278f87f
SM
71362011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7137
7138 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
7139 bounds for the empty string (bug#8667).
7140
5233edd7
GM
71412011-05-13 Glenn Morris <rgm@gnu.org>
7142
5237a44f
GM
7143 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
7144
8340026c 7145 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 7146 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 7147
5233edd7 7148 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 7149 (appt-time-msg-list): Doc fix.
a5464014 7150 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 7151
92d10796
AS
71522011-05-12 Andreas Schwab <schwab@linux-m68k.org>
7153
7154 * progmodes/ld-script.el (ld-script-keywords)
7155 (ld-script-builtins): Update keywords list.
7156
914a0ae1
SM
71572011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
7158
c89be45f
SM
7159 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
7160
914a0ae1
SM
7161 * shell.el (shell-completion-vars): New function.
7162 (shell-mode):
7163 * simple.el (read-shell-command): Use it.
7164 (blink-matching-open): No need for " [...]" in minibuffer-message.
7165
98dc3df3
GM
71662011-05-12 Glenn Morris <rgm@gnu.org>
7167
7168 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
7169 (appt-check): Simplify.
7170
d2fc7e3d 71712011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 7172
4d61f28d 7173 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
7174 literal "/dev/null".
7175
d2fc7e3d 71762011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
7177
7178 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
7179 Fix typo.
7180
d2fc7e3d 71812011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 7182
3f254caa
SM
7183 * progmodes/which-func.el (which-function):
7184 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
7185 which might not be defined (Bug#8260).
7186
d45885f7
GM
71872011-05-12 Glenn Morris <rgm@gnu.org>
7188
7189 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
7190 Let byte-compile-initial-macro-environment always take precedence.
7191
488086f4
SM
71922011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
7193
7194 * net/rcirc.el: Add support for SSL/TLS connections.
7195 (rcirc-server-alist): New field `encryption'.
7196 (rcirc): Check `encryption' settings.
7197 (rcirc-connect): New arg `encryption'. Use open-network-stream.
7198 Merge make-local-variable into `set'.
7199 (rcirc--connection-open-p): New function.
7200 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
7201 the process is not a network process (e.g. running gnutls-cli).
7202 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
7203 Make rcirc-(en|de)code-coding-system local here.
7204 (rcirc-mode): Merge make-local-variable into `set'.
7205 (rcirc-parent-buffer): Make permanent buffer-local.
7206 (rcirc-multiline-minor-mode): Don't do it here.
7207 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
7208 there's no server buffer.
7209
7d3b9d44
GM
72102011-05-11 Glenn Morris <rgm@gnu.org>
7211
f64049c6
GM
7212 * newcomment.el (comment-kill): Prefix "unused" local.
7213
93c9df73
GM
7214 * term/w32console.el (get-screen-color): Declare.
7215
7d3b9d44
GM
7216 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
7217 Handle symbol elements of byte-compile-initial-macro-environment.
7218
9e2dd53f
LL
72192011-05-10 Leo Liu <sdl.web@gmail.com>
7220
488086f4
SM
7221 * bookmark.el (bookmark-bmenu-mode-map):
7222 Bind bookmark-bmenu-search to `/'.
8b340240 7223
9e2dd53f 7224 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
7225 (footnote-unicode-string, footnote-unicode-regexp): New variable.
7226 (Footnote-unicode): New function.
7227 (footnote-style-alist): Add unicode style to the list.
7228 (footnote-style): Doc fix.
9e2dd53f 7229
79b70037
GM
72302011-05-10 Jim Meyering <meyering@redhat.com>
7231
7232 Fix doubled-word typos.
7233 * international/quail.el (quail-insert-kbd-layout): and and -> and
7234 * kermit.el: and and -> and
7235 * net/ldap.el (ldap-search-internal): to to -> to
7236 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
7237 * progmodes/js.el (js-mode): and and -> and
7238 * textmodes/artist.el (artist-move-to-xy): at at -> at
7239 (artist-draw-region-trim-line-endings): if if -> if
7240 And Safetyc -> Safety.
7241 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
7242
b8f82dc1 72432011-05-10 Glenn Morris <rgm@gnu.org>
c2571358 7244 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
7245
7246 * files.el (hack-one-local-variable-eval-safep):
7247 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
7248
4f99f44b
GM
72492011-05-10 Glenn Morris <rgm@gnu.org>
7250
7251 * calendar/diary-lib.el (diary-list-entries-hook)
7252 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
7253 (diary-nongregorian-marking-hook, diary-list-entries)
7254 (diary-include-other-diary-files, diary-mark-entries)
7255 (diary-mark-included-diary-files): Doc fixes.
7256
84f29e6b
JB
72572011-05-09 Juanma Barranquero <lekktu@gmail.com>
7258
7259 * misc.el: Require tabulated-list.el during compilation.
7260
9bedd73a
CY
72612011-05-09 Chong Yidong <cyd@stupidchicken.com>
7262
488086f4
SM
7263 * progmodes/compile.el (compilation-start):
7264 Run compilation-filter-hook for the async case too.
9bedd73a
CY
7265 (compilation-filter-hook): Doc fix.
7266
797c735c
DD
72672011-05-09 Deniz Dogan <deniz@dogan.se>
7268
7269 * wdired.el: Remove outdated installation comment. Fix usage
7270 comment.
7271
5f4b1dfe
JB
72722011-05-09 Juanma Barranquero <lekktu@gmail.com>
7273
7274 * misc.el: Implement new command `list-dynamic-libraries'.
7275 (list-dynamic-libraries--loaded-only-p): New variable.
7276 (list-dynamic-libraries--refresh): New function.
7277 (list-dynamic-libraries): New command.
7278
4c44026c
CY
72792011-05-09 Chong Yidong <cyd@stupidchicken.com>
7280
488086f4
SM
7281 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7282 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
7283 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
7284 higher priority to avoid clobbering by gnu.
7285
027f966d
CY
72862011-05-08 Chong Yidong <cyd@stupidchicken.com>
7287
7288 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
7289 if the face has existing theme settings (Bug#8454).
7290
085f5d7d
CY
72912011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
7292
488086f4
SM
7293 * progmodes/perl-mode.el (perl-imenu-generic-expression):
7294 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 7295
2a86a00c
RS
7296 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
7297 special file names `.' and `..' (Bug#8259).
7298
d9c54a06
CY
72992011-05-08 Chong Yidong <cyd@stupidchicken.com>
7300
488086f4
SM
7301 * progmodes/grep.el (grep-mode-font-lock-keywords):
7302 Remove buffer-changing entries.
d9c54a06
CY
7303 (grep-filter): New function.
7304 (grep-mode): Add it to compilation-filter-hook.
7305
7306 * progmodes/compile.el (compilation-filter-hook)
7307 (compilation-filter-start): New defvars.
7308 (compilation-filter): Call compilation-filter-hook prior to
7309 updating the process mark.
7310
c4662635
SM
73112011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7312
7313 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
7314
b0512a1d
EZ
73152011-05-07 Eli Zaretskii <eliz@gnu.org>
7316
605c9376
EZ
7317 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
7318 mailclient-send-it even if window-system is nil. (Bug#8595)
7319
c4662635
SM
7320 * term/w32console.el (terminal-init-w32console):
7321 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
7322 background-mode. (Bug#8597)
7323
d1dc2cc2
SM
73242011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7325
7326 Make bytecomp.el understand that defmethod defines funs (bug#8631).
7327 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
7328 New functions.
7329 (defgeneric, eieio--defmethod): Use them.
7330 (eieio-defgeneric): Remove.
7331 (defmethod): Call defgeneric in a way visible to the byte-compiler.
7332
915d1300
GM
73332011-05-07 Glenn Morris <rgm@gnu.org>
7334
a3961c3e
GM
7335 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
7336 Use let rather than let*.
7337 (timeclock-find-discrep): Remove unused local.
7338
314347b9
GM
7339 * calendar/diary-lib.el (diary-comment-start): Doc fix.
7340
915d1300
GM
7341 * calendar/appt.el (appt-time-msg-list): Doc fix.
7342
275b59b0
NF
73432011-05-06 Noah Friedman <friedman@splode.com>
7344
7345 * apropos.el (apropos-print-doc): Only use
7346 emacs-lisp-docstring-fill-column when it is bound to an integer,
7347 per that variable's documentation.
7348
6c19f744
SM
73492011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7350
7351 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 7352 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 7353
60f884b2
GM
73542011-05-06 Glenn Morris <rgm@gnu.org>
7355
5006e634
GM
7356 * calendar/appt.el (appt-message-warning-time): Doc fix.
7357 (appt-warning-time-regexp): New option.
7358 (appt-make-list): Respect appt-message-warning-time.
7359
548d0a63
GM
7360 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
7361 New options.
7362 (diary-add-to-list): Strip comments from the displayed string.
7363 (diary-mode): Set comment-start and comment-end.
7364
60f884b2
GM
7365 * vc/diff-mode.el (smerge-refine-subst): Declare.
7366 (diff-refine-hunk): Don't require smerge-mode when compiling.
7367
989681bb
JB
73682011-05-06 Juanma Barranquero <lekktu@gmail.com>
7369
7370 * simple.el (list-processes): Return nil as the docstring says.
7371
a6bc05e1
MA
73722011-05-05 Michael Albinus <michael.albinus@gmx.de>
7373
7374 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
7375 to "".
7376 (ange-ftp-write-region, ange-ftp-insert-file-contents)
7377 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
7378 determining of binary transfer. (Bug#7383)
7379
23c22e9a
MA
73802011-05-05 Michael Albinus <michael.albinus@gmx.de>
7381
c4662635
SM
7382 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7383 Fix port computation bug. (Bug#8618)
23c22e9a 7384
0bff894f
GM
73852011-05-05 Glenn Morris <rgm@gnu.org>
7386
b8296902
GM
7387 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
7388
1f522ce8
GM
7389 * simple.el (shell-dynamic-complete-functions)
7390 (comint-dynamic-complete-functions): Declare.
7391
cf5bee67
GM
7392 * net/network-stream.el (gnutls-negotiate):
7393 * simple.el (tabulated-list-print): Fix declarations.
7394
7395 * progmodes/gud.el (syntax-symbol, syntax-point):
7396 Remove unnecessary and incorrect declarations.
7397
0bff894f
GM
7398 * emacs-lisp/check-declare.el (check-declare-scan):
7399 Handle byte-compile-initial-macro-environment in bytecomp.el
7400
9869b3ae
SM
74012011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7402
7403 Fix earlier half-done eieio-defmethod change (bug#8338).
7404 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
7405 Streamline and change calling convention.
7406 (defmethod): Adjust accordingly and simplify.
7407 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
7408 new eieio--defmethod.
7409 (slot-boundp): Minor CSE simplification.
7410
9c1d5ac5
MZ
74112011-05-05 Milan Zamazal <pdm@zamazal.org>
7412
7413 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
7414 (glasses-make-readable): Use glasses-separate-capital-groups.
7415
455c834e
JB
74162011-05-05 Juanma Barranquero <lekktu@gmail.com>
7417
7418 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
7419 (warning-series): Doc fix.
7420 (display-warning): Don't try to create the buffer if we just found it.
7421
9ed7c8cb
CY
74222011-05-04 Chong Yidong <cyd@stupidchicken.com>
7423
7424 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
7425 (autoload-find-generated-file): New function.
7426 (generate-file-autoloads): Bind generated-autoload-file to
7427 buffer-file-name.
9869b3ae
SM
7428 (update-file-autoloads, update-directory-autoloads):
7429 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
7430 output file (Bug#7989).
7431 (batch-update-autoloads): Doc fix.
7432
0898ca10
JB
74332011-05-04 Juanma Barranquero <lekktu@gmail.com>
7434
7435 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
7436
31dfb76c
GM
74372011-05-04 Glenn Morris <rgm@gnu.org>
7438
f330b642
GM
7439 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
7440 function, so it follows changes in calendar-date-style.
7441 (diary-fancy-date-matcher): New function.
7442 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
7443 (diary-fancy-font-lock-fontify-region-function):
7444 Use diary-fancy-date-pattern as a function.
7445
31dfb76c
GM
7446 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
7447 non-numbers for `year' etc pseudo-variables. (Bug#8583)
7448
48e79d6a
TZ
74492011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
7450
7451 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
7452 instead of positional arguments. Allow :keylist and :crlfiles
7453 arguments.
7454 (open-gnutls-stream): Call it.
7455
7456 * net/network-stream.el (network-stream-open-starttls): Adjust to
7457 call `gnutls-negotiate' with :process and :hostname arguments.
7458
dd5a5ee0
SM
74592011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7460
ef80fc09
SM
7461 * minibuffer.el (completion--message): New function.
7462 (completion--do-completion, minibuffer-complete)
7463 (minibuffer-force-complete, minibuffer-complete-word): Use it.
7464 (completion--do-completion): Don't ignore completion-auto-help when in
7465 icomplete-mode.
7466
dd5a5ee0
SM
7467 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
7468 internal encoding (e.g. tibetan zero is not whitespace).
7469 (global-whitespace-mode): Prefer save-current-buffer.
7470 (whitespace-trailing-regexp): Remove useless save-match-data.
7471 (whitespace-empty-at-bob-regexp): Minor simplification.
7472
b7d22a83
CY
74732011-05-03 Chong Yidong <cyd@stupidchicken.com>
7474
7475 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
7476
5192af46
AM
74772011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7478
7479 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 7480 Use `concat' to create string for insertion.
5192af46 7481
5767d190
SM
74822011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7483
7484 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
7485 Avoid open-line which runs post-self-insert-hook.
7486 (bibtex-fill-entry): Remove unused `end' var.
7487
bf242939
AM
74882011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
7489
5767d190
SM
7490 * textmodes/ispell.el (ispell-add-per-file-word-list):
7491 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 7492
25666126
LL
74932011-05-03 Leo Liu <sdl.web@gmail.com>
7494
7495 * isearch.el (isearch-yank-pop): New command.
5767d190 7496 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
7497 (isearch-forward): Mention it.
7498
52d3c2d0
SM
74992011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7500
1bcace58
SM
7501 * simple.el (minibuffer-complete-shell-command): Remove.
7502 (minibuffer-local-shell-command-map): Use completion-at-point.
7503 (read-shell-command): Setup completion vars here instead.
7504 (read-expression-map): Bind TAB to symbol completion.
7505
52d3c2d0
SM
7506 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
7507 error directly rather via storing it into `results'.
7508
35813471
LL
75092011-05-02 Leo Liu <sdl.web@gmail.com>
7510
7511 * vc/diff.el: Fix description.
7512
e793a940
LMI
75132011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
7514
7515 * server.el (server-eval-at): New function.
7516
8de66e05
LMI
75172011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
7518
7519 * net/network-stream.el (open-network-stream): Take a :nowait
7520 parameter and pass it on to `make-network-process'.
7521 (network-stream-open-plain): Ditto.
7522
dcb79f20
AS
75232011-04-30 Andreas Schwab <schwab@linux-m68k.org>
7524
7525 * faces.el (face-spec-set-match-display): Don't match toolkit
7526 options on terminal frames.
7527
14a7fbd8
SM
75282011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
7529
7eabc1be
SM
7530 * progmodes/pascal.el: Use lexical binding.
7531 (pascal-mode-map): Remove author preferences.
7532
14a7fbd8
SM
7533 * pcomplete.el (pcomplete-std-complete): Don't abuse
7534 completion-at-point.
7535
50f84510
JB
75362011-04-28 Juanma Barranquero <lekktu@gmail.com>
7537
6e087a44
JB
7538 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
7539 removing code that has been dead since 1991 or so.
7540
50f84510
JB
7541 * startup.el (command-line): When warning about "_emacs", use a
7542 delayed warning to allow the user to filter it out.
7543
0ba690bd
DD
75442011-04-28 Deniz Dogan <deniz@dogan.se>
7545
7546 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
7547 user has not joined.
7548
08abfaad
SM
75492011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7550
7551 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
7552 aren't any completions at point.
7553
638f053a
JB
75542011-04-28 Juanma Barranquero <lekktu@gmail.com>
7555
7556 * subr.el (display-delayed-warnings): New function.
7557 (delayed-warnings-hook): New variable.
7558
8fff8daa
SM
75592011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7560
08abfaad
SM
7561 * minibuffer.el (completion-at-point, completion-help-at-point):
7562 Don't presume that a given completion-at-point-function will always
7563 use the same calling convention.
7564
8fff8daa
SM
7565 * pcomplete.el (pcomplete-completions-at-point):
7566 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
7567 pcomplete-seen is non-nil.
7568 (pcomplete-comint-setup): Also recognize the new comint/shell
7569 completion functions.
7570 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
7571 pcomplete-seen is non-nil.
7572
841a1577 75732011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 7574
841a1577 7575 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 7576 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 7577 the first character in the entry. This allows for code to add its
211ec907
UJ
7578 own uid to the entry.
7579 (icalendar--convert-float-to-ical): Add export of
7580 `diary-float'-entries save for those with the optional DAY
7581 argument.
7582
2a782793
DC
75832011-04-27 Daniel Colascione <dan.colascione@gmail.com>
7584
7585 * subr.el (shell-quote-argument): Use alternate escaping strategy
7586 when we spot a variable reference in a string.
7587
0438ce91
DC
75882011-04-26 Daniel Colascione <dan.colascione@gmail.com>
7589
7590 * cus-start.el (all): Define customization for debug-on-event.
7591
841a1577 75922011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
7593
7594 * subr.el (shell-quote-argument): Escape correctly under Windows.
7595
d090ed6c
SM
75962011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7597
7598 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
7599
bfd31217
MA
76002011-04-25 Michael Albinus <michael.albinus@gmx.de>
7601
d090ed6c
SM
7602 * net/tramp.el (tramp-process-actions): Add POS argument.
7603 Delete region between POS and (pos).
bfd31217 7604
d090ed6c
SM
7605 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7606 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
7607 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
7608
7609 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
7610 position in `tramp-process-actions' call.
7611
7612 * net/trampver.el: Update release number.
7613
e92f3bd3
SM
76142011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7615
850256b5
SM
7616 * custom.el (defcustom): Obey lexical-binding.
7617
e92f3bd3
SM
7618 Fix octave-inf completion problems reported by Alexander Klimov.
7619 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
7620 Inherit from octave-mode-syntax-table.
7621 (inferior-octave-mode): Set info-lookup-mode.
7622 (inferior-octave-completion-at-point): New function.
7623 (inferior-octave-complete): Use it and completion-in-region.
7624 (inferior-octave-dynamic-complete-functions): Use it as well, and use
7625 comint-filename-completion.
7626 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
7627 symbol elements which shouldn't be word elements.
7628 (octave-font-lock-keywords, octave-beginning-of-defun)
7629 (octave-function-header-regexp): Adjust regexps accordingly.
7630 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
7631
cd22b309
JB
76322011-04-25 Juanma Barranquero <lekktu@gmail.com>
7633
7634 * net/gnutls.el (gnutls-errorp): Declare before first use.
7635
8b492194
TZ
76362011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
7637
7638 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
7639 verify-error, and verify-hostname-error parameters. Check whether
cd22b309
JB
7640 default trustfile exists before going to use it. Add missing
7641 argument to gnutls-message-maybe call. Return return value.
8b492194
TZ
7642 Reported by Claudio Bley <claudio.bley@gmail.com>.
7643 (open-gnutls-stream): Add usage example.
7644
7645 * net/network-stream.el (network-stream-open-starttls): Give host
7646 parameter to `gnutls-negotiate'.
7647 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 7648 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 7649
841a1577 76502011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 7651
cd22b309
JB
7652 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
7653 Use correct match group (bug#8438).
05842630 7654
3ba7869c
CY
76552011-04-24 Chong Yidong <cyd@stupidchicken.com>
7656
512e3ae1
CY
7657 * emacs-lisp/package.el (package-built-in-p): Fix typo.
7658 (package-menu--generate): New arg specifying packages to show.
7659 (package-menu-refresh, package-menu-execute, list-packages):
7660 Callers changed.
7661 (package-show-package-list): New function, replacing deleted
7662 package--list-packages (renamed because it is non-internal).
7663
7664 * finder.el (finder-list-matches): Use package-show-package-list
7665 instead of deleted package--list-packages.
7666
e92f3bd3
SM
7667 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
7668 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
7669 (vc-annotate-mode-map): Bind it to RET.
7670
7031be6d
UR
76712011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
7672
7673 * progmodes/etags.el (next-file): Don't use set-buffer to change
7674 buffers (Bug#8478).
7675
4ef177aa
CY
76762011-04-24 Chong Yidong <cyd@stupidchicken.com>
7677
c8d173eb
CY
7678 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
7679
4ef177aa
CY
7680 * apropos.el (apropos-label-face): Avoid variable-pitch face.
7681 (apropos-accumulator): Doc fix.
7682 (apropos-function, apropos-macro, apropos-command)
7683 (apropos-variable, apropos-face, apropos-group, apropos-widget)
7684 (apropos-plist): Add face property.
7685 (apropos-symbols-internal): Fix indentation.
7686 (apropos-print): Simplify help, and recognize apropos-multi-type.
7687 (apropos-print-doc): Use button-type-get to extract the button's
7688 face property. Fill docstring (Bug#8352).
7689
4ffd0d6b 76902011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
7691
7692 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
7693
c6c32125 7694 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 7695 (mpuz-mode-map): Use mapc.
c6c32125
JB
7696 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
7697 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
7698 Fix typos in docstrings.
7699
58d468b4
JB
7700 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
7701 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
7702
6470c3c6
JB
7703 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
7704
4ffd0d6b 77052011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
7706
7707 * minibuffer.el (completion--do-completion): Avoid the "Next char
7708 not unique" prompt if icomplete-mode is enabled (Bug#5849).
7709
3ad8bad0
CY
7710 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
7711 mouse-2 into unread-command-events, it is interpreted correctly.
7712
71d73c9c 7713 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 7714 (image-toggle-display): Doc fix.
71d73c9c 7715
841a1577 77162011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 7717
4ffd0d6b
GM
7718 * textmodes/page.el (what-page): Use line-number-at-pos to
7719 calculate line number (Bug#6825).
6e1dbaa9 7720
c2fb1b60
JB
77212011-04-22 Juanma Barranquero <lekktu@gmail.com>
7722
7723 * eshell/esh-mode.el (find-tag-interactive): Declare function.
7724 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
7725 Pass argument NO-DEFAULT to `find-tag-interactive'.
7726
e02f48d7
JB
77272011-04-22 Juanma Barranquero <lekktu@gmail.com>
7728
7729 Lexical-binding cleanup.
7730
7731 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
7732 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
7733 * progmodes/ada-prj.el (ada-prj-initialize-values)
7734 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
7735 (ada-prj-show-value):
7736 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
7737 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
7738 (antlr-invalidate-context-cache, antlr-options-menu-filter)
7739 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
7740 * progmodes/bug-reference.el (bug-reference-push-button):
7741 * progmodes/fortran.el (fortran-line-length):
7742 * progmodes/glasses.el (glasses-change):
7743 * progmodes/octave-mod.el (octave-fill-paragraph):
7744 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
7745 (python-pdbtrack-grub-for-buffer, python-sentinel):
7746 * progmodes/sql.el (sql-save-connection):
7747 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
7748 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
7749 Mark unused parameters.
7750
7751 * progmodes/compile.el (compilation--flush-directory-cache)
7752 (compilation--flush-parse, compile-internal): Mark unused parameters.
7753 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
7754 (compilation-next-error-function): Remove unused variable `timestamp'.
7755
7756 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
7757 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
7758
7759 * progmodes/dcl-mode.el (dcl-end-of-command):
7760 Remove unused variable `start'.
7761 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
7762 (dcl-option-value-basic, dcl-option-value-offset)
7763 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
7764 Mark unused parameters.
7765 (dcl-save-local-variable): Remove unused variable `val'.
7766 (mode): Declare.
7767
7768 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
7769 Mark unused parameters.
7770 (delphi-ignore-changes): Move before first use.
7771 (delphi-charset-token-at): Remove unused variable `start'.
7772 (delphi-else-start): Remove unused variable `if-count'.
7773 (delphi-comment-block-start, delphi-comment-block-end):
7774 Remove unused variable `kind'.
7775 (delphi-indent-line): Remove unused variable `new-point'.
7776
7777 * progmodes/ebrowse.el (ebrowse-files-list)
7778 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
7779 Mark unused parameters. Don't quote `lambda'.
7780 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
7781 Don't quote `lambda'.
7782 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
7783 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
7784 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
7785 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
7786 Use `ignore-errors'.
7787 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
7788 (ebrowse-view/find-file-and-search-pattern)
7789 (ebrowse-view/find-member-declaration/definition):
7790 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
7791 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
7792 Rename parameter PREFIX-ARG to PREFIX.
7793 (ebrowse-tags-read-name): Remove unused variables `start' and
7794 `member-info'.
7795 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
7796 to `tags-file'.
7797
7798 * progmodes/etags.el (local-find-tag-hook): Declare.
7799 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
7800 Mark unused parameters.
7801
7802 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
7803 (executable-interpret): Mark unused parameter.
7804
7805 * progmodes/flymake.el (flymake-process-sentinel)
7806 (flymake-after-change-function)
7807 (flymake-create-temp-with-folder-structure)
7808 (flymake-get-include-dirs-dot): Mark unused parameters.
7809 (flymake-safe-delete-directory): Remove unused variable `err'.
7810
7811 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
7812 (speedbar-timer-fn, speedbar-line-text)
7813 (speedbar-change-expand-button-char, speedbar-delete-subblock)
7814 (speedbar-center-buffer-smartly): Declare functions.
7815 (gdb-find-watch-expression): Remove unused variable `array'.
7816 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
7817 (gdb-starting): Mark unused parameters.
7818 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
7819 (gdb-table-string): Remove unused variable `res'.
7820 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
7821 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
7822 (gdb-display-buffer): Remove unused variable `cur-size'.
7823
7824 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
7825 allow lexical-binding compilation.
7826 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
7827 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
7828 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
7829 Mark unused parameters.
7830 (gud-gdb-marker-filter): Remove unused variable `match'.
7831 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
7832 lambda expressions and funcall them, instead of using `fset'.
7833
7834 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
7835 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
7836
7837 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
7838 variable `header-beg'; use `let'.
7839
7840 * progmodes/icon.el (indent-icon-exp): Remove unused variables
7841 `restart', `last-sexp' and `at-do'.
7842
7843 * progmodes/js.el (js--debug): Mark unused parameter.
7844 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
7845 (js--splice-into-items): Remove unused variable `item'.
7846 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
7847
7848 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
7849 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
7850 (makefile-complete): Remove unused variable `try'.
7851 (makefile-fill-paragraph, makefile-match-function-end):
7852 Mark unused parameters.
7853
7854 * progmodes/octave-inf.el (inferior-octave-complete):
7855 Remove unused variable `proc'.
7856 (inferior-octave-output-digest): Mark unused parameter.
7857
7858 * progmodes/perl-mode.el (perl-calculate-indent):
7859 Remove unused variable `err'.
7860
7861 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
7862 (prolog-indent-line): Mark unused parameters.
7863 (prolog-indent-line): Remove unused variable `beg'.
7864
7865 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
7866 (reporter-dont-compact-list): Declare.
7867
7868 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
7869 Remove unused variable `char'.
7870 (sh-debug): Mark unused parameter.
7871 (sh-get-indent-info): Remove unused variable `start'.
7872 (sh-calculate-indent): Remove unused variable `var'.
7873
7874 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
7875 (simula-electric-keyword): Remove unused variable `null'.
7876 (simula-search-backward, simula-search-forward): Remove unused
7877 variables `begin' and `end'.
7878
7879 * progmodes/vera-mode.el (vera-guess-basic-syntax):
7880 Remove unused variable `pos'.
7881 (vera-electric-tab, vera-comment-uncomment-region):
7882 Mark unused parameters.
7883 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
7884
7ede3b65
CY
78852011-04-22 Chong Yidong <cyd@stupidchicken.com>
7886
7887 * emacs-lisp/package.el (package--builtins, package-alist)
7888 (package-load-descriptor, package-built-in-p, package-activate)
7889 (define-package, package-installed-p)
7890 (package-compute-transaction, package-buffer-info)
7891 (package--push): Doc fix. Distinguish more clearly between
7892 version strings and version lists.
7893
121656e9
JB
78942011-04-21 Juanma Barranquero <lekktu@gmail.com>
7895
7896 Lexical-binding cleanup.
7897
7898 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
7899 (5x5-make-mutate-best):
7900 * play/fortune.el (fortune-in-buffer):
7901 * play/gomoku.el (gomoku-init-display):
7902 * play/solitaire.el (solitaire, solitaire-do-check):
7903 * play/tetris.el (tetris-default-update-speed-function):
7904 Mark unused parameters.
7905
7906 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
7907 (bubbles--shift): Remove unused variable `char-org'.
7908 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
7909 (bubbles--show-images): Remove unused variable `char'.
7910
7911 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
7912 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
7913 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
7914 (decipher-analyze-buffer): Use ?\s.
7915 (decipher-make-checkpoint): Remove unused variable `mapping'.
7916
7917 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
7918
7919 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
7920 Remove unused variable `result'; use `let'.
7921
7922 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
7923 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
7924 (gametree-children-shown-p, gametree-compute-reduced-score):
7925 Use `ignore-errors'.
7926
7927 * play/handwrite.el (ps-lpr-switches): Declare.
7928 (handwrite): Remove unused variables `pmin' and `lastp'.
7929
7930 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
7931
7932 * play/landmark.el (landmark-init-display)
7933 (landmark-update-naught-weights): Mark unused parameters.
7934 (landmark-y): Remove unused variable `noise'. Simplify.
7935 (landmark-human-plays): Remove unused variable `score'.
7936
7937 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
7938 (mpuz-try-proposal): Remove unused variable `game'.
7939
7940 * play/zone.el (life-patterns): Declare.
7941
80f499c7
JB
79422011-04-20 Juanma Barranquero <lekktu@gmail.com>
7943
7944 * vc/vc.el (ediff-vc-internal): Declare function.
7945
024ff170
SM
79462011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7947
c0a193ea
SM
7948 * shell.el: Use lexical-binding and std completion UI.
7949 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
7950 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
7951 comint-preoutput-filter-functions rather than on
7952 comint-output-filter-functions.
7953 (shell-command-completion, shell--command-completion-data)
7954 (shell-filename-completion, shell-environment-variable-completion)
7955 (shell-c-a-p-replace-by-expanded-directory): New functions.
7956 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
7957 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
7958 (shell-dynamic-complete-environment-variable): Use them.
7959 (shell-dynamic-complete-as-environment-variable)
7960 (shell-dynamic-complete-as-command): Remove.
7961 (shell-match-partial-variable): Match past point.
7962 * comint.el: Clean up use of completion-at-point-functions.
7963 (comint-completion-at-point): New function.
7964 (comint-mode): Use it completion-at-point-functions.
7965 (comint-dynamic-complete): Make it obsolete.
7966 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
7967 (comint-c-a-p-replace-by-expanded-history): New function.
7968 (comint-dynamic-complete-functions)
7969 (comint-replace-by-expanded-history): Use it.
7970 * minibuffer.el (completion-table-with-terminator): Allow dynamic
7971 termination strings. Try harder to avoid second try-completion.
7972 (completion-in-region-mode-map): Disable bindings that don't work yet.
7973
2dbaa080
SM
7974 * comint.el: Use lexical-binding. Require CL.
7975 (comint-dynamic-complete-functions): Use comint-filename-completion.
7976 (comint-completion-addsuffix): Tweak custom type.
7977 (comint-filename-completion, comint--common-suffix)
7978 (comint--common-quoted-suffix, comint--table-subvert)
7979 (comint--complete-file-name-data): New functions.
7980 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
7981 (comint-dynamic-list-filename-completions): Use them.
7982 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 7983
2dbaa080
SM
7984 * minibuffer.el (completion-in-region-mode):
7985 Keep completion-in-region-mode--predicate global.
7986 (completion-in-region--postch):
7987 Assume completion-in-region-mode--predicate is not null.
7988
c79a6f38
SM
7989 * progmodes/flymake.el (flymake-start-syntax-check-process):
7990 Obey `dir'. Simplify.
7991
024ff170
SM
7992 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
7993 we're in VC after all.
7994
1c6c854e
CS
79952011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
7996
7997 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 7998 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
7999 (vc-version-diff): Use vc-diff-build-argument-list-internal.
8000
bed7f140
SM
80012011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8002
332e62ab
SM
8003 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
8004 add sanity check.
8005
bed7f140
SM
8006 * obsolete/erc-hecomplete.el: Make obsolete.
8007 * obsolete/: Standardize obsolescence info in the header.
8008
f195c582
GM
80092011-04-20 Glenn Morris <rgm@gnu.org>
8010
8011 * calendar/solar.el (solar-horizontal-coordinates):
8012 Use the longitude argument rather than `calendar-longitude'.
8013 (solar-date-next-longitude): Remove unused locals.
8014
cb79b8c0
VJL
80152011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8016
8017 * whitespace.el: New version 13.2.1.
8018
80192011-04-20 felix <EmacsWiki> (tiny change)
8020
d8e4b68b 8021 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
8022 switching between major modes on a file.
8023
602ea69d
SM
80242011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8025
8026 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
8027 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
8028 multi-line comments as well.
8029
06b60517
JB
80302011-04-19 Juanma Barranquero <lekktu@gmail.com>
8031
8032 Lexical-binding cleanup.
8033
8034 * arc-mode.el (archive-mode-revert):
8035 * cmuscheme.el (scheme-interactively-start-process):
8036 * custom.el (custom-initialize-delay):
8037 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
8038 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
8039 * emacs-lock.el (emacs-lock-clear-sentinel):
8040 * ezimage.el (defezimage):
8041 * follow.el (follow-avoid-tail-recenter):
8042 * fringe.el (set-fringe-mode-1):
8043 * generic-x.el (bat-generic-mode-compile):
8044 * help-mode.el (help-info-variable, help-do-xref)
8045 (help-mode-revert-buffer):
8046 * help.el (view-emacs-todo):
8047 * iswitchb.el (iswitchb-completion-help):
8048 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
8049 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
8050 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
8051 * locate.el (locate-update):
8052 * longlines.el (longlines-encode-region)
8053 (longlines-after-change-function):
8054 * outline.el (outline-isearch-open-invisible):
8055 * ps-def.el (declare-function, charset-dimension, char-width)
8056 (encode-char):
8057 * ps-mule.el (ps-mule-plot-string):
8058 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
8059 (recentf-edit-list-select, recentf-edit-list-validate)
8060 (recentf-open-files-action):
8061 * rect.el (delete-whitespace-rectangle-line)
8062 (rectangle-number-line-callback):
8063 * register.el (window-configuration-to-register)
8064 (frame-configuration-to-register):
8065 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
8066 * select.el (xselect-convert-to-string, xselect-convert-to-length)
8067 (xselect-convert-to-targets, xselect-convert-to-delete)
8068 (xselect-convert-to-filename, xselect-convert-to-charpos)
8069 (xselect-convert-to-lineno, xselect-convert-to-colno)
8070 (xselect-convert-to-os, xselect-convert-to-host)
8071 (xselect-convert-to-user, xselect-convert-to-class)
8072 (xselect-convert-to-name, xselect-convert-to-integer)
8073 (xselect-convert-to-atom, xselect-convert-to-identity):
8074 * subr.el (declare, ignore, process-kill-without-query)
8075 (text-clone-maintain):
8076 * terminal.el (te-get-char, te-tic-sentinel):
8077 * tool-bar.el (tool-bar-make-keymap):
8078 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
8079 * type-break.el (type-break-mode, type-break-noninteractive-query):
8080 * view.el (View-back-to-mark):
8081 * wid-browse.el (widget-browse-action, widget-browse-widget)
8082 (widget-browse-widgets, widget-browse-sexp):
8083 * widget.el (define-widget-keywords):
8084 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
8085 Mark unused parameters.
8086
8087 * align.el (align-adjust-col-for-rule): Mark unused parameter.
8088 (align-areas): Remove unused variable `look'.
8089 (align-region): Remove unused variables `real-end' and `pos-list'.
8090
8091 * apropos.el (apropos-score-doc): Remove unused variable `i'.
8092
8093 * bindings.el (mode-line-modified, mode-line-remote):
8094 Mark unused parameters.
8095 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
8096
8097 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
8098 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
8099
8100 * comint.el (comint-history-isearch-pop-state)
8101 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
8102 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
8103 (comint-substitute-in-file-name): Doc fix.
8104
8105 * completion.el (cmpl-statistics-block): Mark unused parameter.
8106 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
8107 (save-completions-to-file, load-completions-from-file):
8108 Remove unused local variable `e'.
8109
8110 * composite.el (compose-chars): Remove unused variable `len'.
8111 (lgstring-insert-glyph): Remove unused variable `g'.
8112 (compose-glyph-string): Remove unused variables `ascent',
8113 `descent', `lbearing' and `rbearing'.
8114 (compose-glyph-string-relative): Remove unused variables
8115 `lbearing', `rbearing' and `wadjust'.
8116 (compose-gstring-for-graphic): Remove unused variables `header',
8117 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
8118 (compose-gstring-for-terminal): Remove unused variables `header'
8119 and `nchars'. Use `let', not `let*'.
8120
8121 * cus-edit.el (Custom-set, Custom-save, custom-reset)
8122 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
8123 (Custom-buffer-done, custom-buffer-create-internal)
8124 (custom-browse-visibility-action, custom-browse-group-tag-action)
8125 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
8126 (widget-magic-mouse-down-action, custom-toggle-parent)
8127 (custom-add-parent-links, custom-toggle-hide-variable)
8128 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
8129 (custom-toggle-hide-face, face, hook, custom-group-link-action)
8130 (custom-face-menu-create, custom-variable-menu-create, get)
8131 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
8132 (custom-reset-standard-save-and-update): Remove unused variable `value'.
8133 (customize-apropos): Remove unused variable `tests'.
8134 (custom-group-value-create): Remove unused variable `hidden-p'.
8135 (sort-fold-case): Declare.
8136
8137 * cus-theme.el (custom-reset-standard-faces-list)
8138 (custom-reset-standard-variables-list): Declare.
8139 (customize-create-theme, custom-theme-revert, custom-theme-write)
8140 (custom-theme-choose-mode, customize-themes, custom-theme-save):
8141 Mark unused parameters.
8142
8143 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
8144
8145 * delim-col.el (delimit-columns-max): Move defvar before first use.
8146
8147 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 8148 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
8149
8150 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
8151 (auto-insert): Declare.
8152 (desktop-restore-file-buffer): Rename desktop-* parameters;
8153 mark unused ones.
8154 (desktop-create-buffer): Rename desktop-* parameters and bind them.
8155 (desktop-buffer): Rename desktop-* parameters.
8156
8157 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
8158 (dframe-reposition-frame-xemacs, dframe-help-echo)
8159 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
8160 Mark unused parameters.
8161
8162 * dired-aux.el (backup-extract-version-start, overwrite-query)
8163 (overwrite-backup-query, rename-regexp-query)
8164 (rename-non-directory-query): Declare.
8165 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
8166 (dired-add-entry): Remove unused variable `orig-file-name'.
8167 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
8168 Use parameter PRESERVE-TIME instead of accessing dynamic variable
8169 `dired-copy-preserve-time' directly.
8170 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
8171 (dired-insert-subdir-newpos): Rename unused variable `pos'.
8172
8173 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
8174 (dired-virtual-revert, dired-make-relative-symlink):
8175 Mark unused parameters.
8176 (manual-program): Declare.
8177 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
8178 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
8179 wrapped in `with-no-warnings' to avoid replacing one warning by another.
8180
8181 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
8182
8183 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
8184
8185 * echistory.el (electric-history-in-progress, Helper-return-blurb):
8186 Declare.
8187
8188 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
8189
8190 * electric.el (Electric-command-loop): Rename parameter
8191 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
8192
8193 * expand.el (expand-in-literal): Remove unused variable `here'.
8194
8195 * facemenu.el (facemenu-add-new-color):
8196 Remove unused variable `docstring'.
8197
8198 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
8199 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
8200 (face-attr-construct): Mark unused parameter. Doc fix.
8201 (read-color): Remove unused variable `hex-string'.
8202
8203 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
8204 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
8205 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
8206 (display-buffer-other-frame): Remove unused variable `old-window'.
8207 (kill-buffer-hook): Declare.
8208 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
8209 Mark unused parameters.
8210 (after-find-file): Pass 1 to `auto-save-mode', not t.
8211
8212 * files-x.el (auto-insert): Declare.
8213 (modify-file-local-variable-prop-line): Remove unused variable `val'.
8214
8215 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 8216 variable `buf'. Mark unused parameter.
06b60517
JB
8217 (find-lisp-insert-directory): Mark unused parameter.
8218
8219 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
8220 (format-encode-region): Remove unused variables `cur-buf' and `result'.
8221 (format-common-tail): Remove, unused.
8222 (format-deannotate-region): Remove unused variable `loc'.
8223 (format-annotate-region): Remove unused variable `p'.
8224 (format-annotate-single-property-change): Remove unused variables
8225 `default' and `tail'.
8226
8227 * forms.el (read-file-filter): Declare.
8228 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
8229
8230 * frame.el (frame-creation-function-alist): Mark unused parameter.
8231 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
8232
8233 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
8234 Remove unused parameters.
8235 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
8236 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
8237
8238 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
8239 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
8240 (hfy-prepare-tag-map): Mark unused parameters.
8241 (htmlfontify-buffer): Use `called-interactively-p'.
8242
8243 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
8244 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
8245 (ibuffer-do-occur): Mark unused parameters.
8246 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
8247 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
8248
8249 * ibuffer.el: Don't quote `lambda'.
8250 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
8251 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
8252 Mark unused parameters.
8253
8254 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
8255 (ido-completing-read): Mark unused parameters.
8256 (ido-copy-current-word): Mark unused parameters;
8257 remove unused variable `name'.
8258 (ido-sort-merged-list): Remove unused parameter `dirs'.
8259
8260 * ielm.el (ielm-input-sender): Mark unused parameter.
8261 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
8262 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
8263 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
8264 `ielm-string' as a dynamic variable accessible from the IELM prompt.
8265 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
8266
8267 * image-dired.el (image-dired-display-thumbs): Remove unused
8268 variables `curr-file' and `count'.
8269 (image-dired-remove-tag): Remove unused variable `start'.
8270 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
8271 variable `curr-file'
8272 (image-dired-rotate-original): Remove unused variable `temp-file'.
8273 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
8274 Remove unused variable `file'.
8275 (image-dired-gallery-generate): Remove unused variable `curr'.
8276 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
8277
8278 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
8279
8280 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
8281
8282 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
8283
8284 * isearch.el (minibuffer-history-symbol): Declare.
8285 (isearch-edit-string): Remove unused variable `err'.
8286 (isearch-message-prefix, isearch-message-suffix):
8287 Mark unused parameters.
8288
8289 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
8290
8291 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
8292
8293 * makesum.el (double-column): Remove unused variable `cnt'.
8294
8295 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
8296 (ido-ignore-item-temp-list): Declare.
8297
8298 * mouse-drag.el (mouse-drag-throw): Remove unused variables
8299 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
8300 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
8301 (mouse-drag-drag): Remove unused variables `mouse-delta' and
8302 `mouse-col-delta'.
8303
8304 * mouse-sel.el (mouse-extend-internal):
8305 Remove unused variable `orig-window-frame'.
8306
8307 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
8308 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
8309 Move declarations before first use.
8310 (pcomplete-opt): Mark unused parameters; doc fix.
8311
8312 * proced.el (proced-revert): Mark unused parameter.
8313 (proced-send-signal): Remove unused variable `err'.
8314
8315 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
8316 Rename parameter PREFIX-ARG to ARG.
8317 (ps-basic-plot-string, ps-basic-plot-whitespace):
8318 Mark unused parameters.
8319
8320 * replace.el (replace-count): Define.
8321 (occur-revert-function): Mark unused parameters.
8322 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
8323 (isearch-case-fold-search, isearch-string): Declare.
8324 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
8325 bind `case-fold-search'. Remove unused variables `beg' and `end',
8326 and simplify.
8327 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
8328 COUNT and bind `replace-count'.
8329 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
8330 to COUNT.
8331
8332 * savehist.el (print-readably, print-string-length): Declare.
8333
8334 * shadowfile.el (shadow-expand-cluster-in-file-name):
8335 Remove unused variable `cluster'.
8336 (shadow-copy-file): Remove unused variable `i'.
8337 (shadow-noquery, shadow-clusters, shadow-site-cluster)
8338 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
8339 (shadow-define-literal-group, shadow-define-regexp-group)
8340 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
8341
8342 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
8343 (shell): Use `called-interactively-p'.
8344 (shell-directory-tracker): Remove unused variable `chdir-failure'.
8345
8346 * simple.el (compilation-context-lines, comint-file-name-quote-list)
8347 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
8348 (delete-backward-char): Remove unused variable `ocol'.
8349 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
8350 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
8351 (event-apply-hyper-modifier, event-apply-shift-modifier)
8352 (event-apply-control-modifier, event-apply-meta-modifier):
8353 Mark unused parameters.
8354 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
8355 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
8356
8357 * speedbar.el (speedbar-ignored-directory-expressions)
8358 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
8359 (speedbar-find-file, speedbar-dir-follow)
8360 (speedbar-directory-buttons-follow, speedbar-tag-find)
8361 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
8362 (speedbar-buffers-line-directory, speedbar-buffer-click):
8363 Mark unused parameters.
8364 (speedbar-tag-file): Remove unused variable `mode'.
8365 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
8366
8367 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
8368
8369 * talk.el (talk): Remove unused variable `display'.
8370
8371 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
8372 (tar-write-region-annotate): Mark unused parameter.
8373
8374 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
8375 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
8376 Declare them, wrapped in `with-no-warnings' to avoid replacing one
8377 warning by another.
8378
8379 * time-stamp.el (time-stamp-string-preprocess):
8380 Remove unused variable `require-padding'.
8381
8382 * tree-widget.el (widget-glyph-enable): Declare.
8383 (tree-widget-action): Mark unused parameter.
8384
8385 * w32-fns.el (x-get-selection): Mark unused parameter.
8386 (autoload-make-program, generated-autoload-file): Declare.
8387
8388 * wdired.el (wdired-revert): Mark unused parameters.
8389 (wdired-xcase-word): Remove unused variable `err'.
8390
8391 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
8392 (whitespace-help-scroll): Remove unused variable `data-help'.
8393
8394 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
8395 (widget-image-insert, widget-after-change, default)
8396 (widget-default-format-handler, widget-default-notify)
8397 (widget-default-prompt-value, widget-info-link-action)
8398 (widget-url-link-action, widget-function-link-action)
8399 (widget-variable-link-action, widget-file-link-action)
8400 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
8401 (widget-field-prompt-internal, widget-field-action, widget-field-match)
8402 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
8403 (widget-insert-button-action, widget-delete-button-action, visibility)
8404 (widget-documentation-link-action, widget-documentation-string-action)
8405 (widget-const-prompt-value, widget-regexp-match, symbol)
8406 (widget-coding-system-prompt-value)
8407 (widget-key-sequence-value-to-external, sexp)
8408 (widget-sexp-value-to-internal, character, vector, cons)
8409 (widget-choice-prompt-value, widget-boolean-prompt-value)
8410 (widget-color--choose-action): Mark unused parameters.
8411 (widget-item-match-inline, widget-choice-match-inline)
8412 (widget-checklist-match, widget-checklist-match-inline)
8413 (widget-group-match): Rename parameter VALUES to VALS.
8414 (widget-field-value-set): Remove unused variable `size'.
8415 (widget-color-action): Remove unused variables `value' and `start'.
8416
8417 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 8418 variable `dir'. Doc fix.
06b60517
JB
8419 (windmove-find-other-window): Don't pass it.
8420
8421 * window.el (count-windows): Mark unused parameter.
8422 (bw-adjust-window): Remove unused variable `err'.
8423
8424 * woman.el (woman-file-name): Remove unused variable `default'.
8425 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
8426 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
8427 (global-font-lock-mode): Declare.
8428 (woman-decode-region): Mark unused parameter.
8429 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
8430
8431 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
8432 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
8433 (x-dnd-handle-moz-url): Remove unused variable `title'.
8434 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
8435
8436 * xml.el (xml-parse-tag, xml-parse-attlist):
8437 Remove unused variable `pos'.
8438
bc4f7f3d
GM
84392011-04-19 Glenn Morris <rgm@gnu.org>
8440
8441 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
8442 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
8443 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8444 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
8445 * calendar/cal-html.el (cal-html-insert-minical):
8446 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
8447 (calendar-mark-date-pattern):
8448 Prefix "unused" locals.
8449
8450 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
8451 optional argument `style'.
8452
8453 * calendar/appt.el (appt-make-list):
8454 * calendar/cal-china.el (calendar-chinese-date-string):
8455 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
8456 (diary-hebrew-yahrzeit):
8457 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
8458 * calendar/calendar.el (calendar-generate-window):
8459 * calendar/time-date.el (time-to-days):
8460 Remove unused local variables.
8461
16a43933
CY
84622011-04-18 Chong Yidong <cyd@stupidchicken.com>
8463
8464 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
8465 glyphless-char-display table.
8466 (tabulated-list-glyphless-char-display): New var.
8467
7eed1860
SS
84682011-04-18 Sam Steingold <sds@gnu.org>
8469
8470 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
8471 to acknowledgments.
8472
4d2d1ccd
GM
84732011-04-17 Glenn Morris <rgm@gnu.org>
8474
8475 * calendar/diary-lib.el (diary-sexp-entry):
8476 * calendar/holidays.el (holiday-sexp):
8477 Set debug-on-error rather than the removed stack-trace-on-error.
8478
239da61d
GM
84792011-04-16 Glenn Morris <rgm@gnu.org>
8480
8481 * progmodes/f90.el: Use lexical-binding.
8482 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
8483
8b05752a
SM
84842011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8485
daca8ba5
SM
8486 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
8487 (mail-mode): Setup mailalias completion here instead.
8488 * mail/mailalias.el: Use lexical-binding.
8489 (pattern, mailalias-done): Declare dynamic.
8490 (mail-completion-at-point-function): New function, from mail-complete.
8491 (mail-complete): Use it.
8492 (mail-completion-expand): New function.
8493 (mail-get-names): Use it.
8494 (mail-directory, mail-directory-process, mail-directory-stream):
8495 Don't use `pattern' for lexically bound arg.
8496
6f542485
SM
8497 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
8498
037e7c3f
SM
8499 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
8500 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
8501 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
8502
8b05752a
SM
8503 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
8504 (byte-save-window-excursion, byte-temp-output-buffer-setup)
8505 (byte-interactive-p): Define them again, for use when inlining
8506 old code.
8507
49093f60
JB
85082011-04-15 Juanma Barranquero <lekktu@gmail.com>
8509
8510 * loadup.el: Use `string-to-number', not `string-to-int'.
8511
b5b8e7de
SM
85122011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8513
8514 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
8515 gud-gdb-complete-command.
8516 (gud-gdb-completions): New function, from gud-gdb-complete-command.
8517 (gud-gdb-completion-at-point): New function.
8518 (gud-gdb-completions): Remove.
8519
f42efeb5
MA
85202011-04-14 Michael Albinus <michael.albinus@gmx.de>
8521
49093f60
JB
8522 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
8523 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
8524 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
8525 whether `executable-find' is bound.
f42efeb5
MA
8526
8527 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
8528
e240cc21
SM
85292011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8530
8531 * minibuffer.el (completion-in-region-mode-predicate)
8532 (completion-in-region-mode--predicate): New vars.
8533 (completion-in-region, completion-in-region--postch)
8534 (completion-in-region-mode): Use them.
8535 (completion--capf-wrapper): Also return the hook function.
8536 (completion-at-point, completion-help-at-point):
8537 Adjust and provide a predicate.
c2bd2ab0
SM
8538
8539 Preserve arg names for advice of subr and lexical functions (bug#8457).
8540 * help-fns.el (help-function-arglist): Consolidate the subr and
8541 new-byte-code cases. Add argument `preserve-names' to extract names
8542 from the docstring when needed.
8543 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
8544 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
8545 (ad-arglist): Use help-function-arglist's new arg.
8546 (ad-definition-type): Use cond.
8547
c183f693
JB
85482011-04-13 Juanma Barranquero <lekktu@gmail.com>
8549
06641a47
JB
8550 * autorevert.el (auto-revert-handler):
8551 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
8552 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
8553 Don't quote lambda.
8554
c183f693
JB
8555 * image-mode.el (image-transform-set-scale):
8556 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
8557
1e3b6001
G
85582011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
8559
8560 * net/network-stream.el (network-stream-open-starttls): Only do
e9fce1ac 8561 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
1e3b6001
G
8562 Upgrades via gnutls-cli are too slow to be done opportunistically.
8563
2d6af8dd
JB
85642011-04-12 Juanma Barranquero <lekktu@gmail.com>
8565
8566 * dframe.el (dframe-current-frame): Remove spurious quote.
8567
c0749a51
GM
85682011-04-12 Glenn Morris <rgm@gnu.org>
8569
088d0d61
GM
8570 * calendar/cal-tex.el (cal-tex-end-document):
8571 Try to automatically use latin1 input if needed.
8572
c0749a51
GM
8573 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
8574 Don't try to cons a mark onto an empty element.
8575
5c90fde0
LL
85762011-04-11 Leo Liu <sdl.web@gmail.com>
8577
8578 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
8579 buffers.
8580 (ido-kill-buffer-at-head): Support killing virtual buffers.
8581
369e974d
CY
85822011-04-10 Chong Yidong <cyd@stupidchicken.com>
8583
8584 * minibuffer.el (completion-show-inline-help): New var.
8585 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
8586 (minibuffer-force-complete, minibuffer-complete-word):
8587 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
8588
8589 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
8590 to avoid interference from inline help (Bug#5849).
8591
37f1c930
LL
85922011-04-10 Leo Liu <sdl.web@gmail.com>
8593
099c39a4
JB
8594 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
8595 Fix typo.
37f1c930 8596
a32d4040
CY
85972011-04-09 Chong Yidong <cyd@stupidchicken.com>
8598
8599 * image-mode.el (image-toggle-display-image): Signal an error if
8600 not in Image mode.
8601 (image-transform-mode, image-transform-resize)
8602 (image-transform-set-rotation): Doc fix.
daca8ba5 8603 (image-transform-set-resize): Delete.
a32d4040
CY
8604 (image-transform-set-scale, image-transform-fit-to-height)
8605 (image-transform-fit-to-width): Handle image-toggle-display-image
8606 and image-transform-resize directly.
8607
099c39a4 86082011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
8609
8610 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
8611 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
8612 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
8613 (doc-view-mode-map): Add bindings for the new functions.
8614
099c39a4 86152011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 8616
4d61f28d 8617 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
8618 Fix typo in docstring.
8619
3726838a
EZ
86202011-04-08 Eli Zaretskii <eliz@gnu.org>
8621
04f33f1e
EZ
8622 * files.el (file-size-human-readable): Produce one digit after
8623 decimal, like "ls -lh" does.
8624
8625 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
8626 the file size representation.
8627
3726838a
EZ
8628 * simple.el (list-processes): If async subprocesses are not
8629 available, error out with a clear error message.
8630
cbb59342
CY
86312011-04-08 Chong Yidong <cyd@stupidchicken.com>
8632
8633 * help.el (help-form-show): New function, to be called from C.
8634 Put help-form output in a buffer named differently than *Help*.
8635
e3971c44
EZ
86362011-04-08 Eli Zaretskii <eliz@gnu.org>
8637
8638 * files.el (file-size-human-readable): New function.
8639
8640 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
8641 computing the representation inline. Don't require `cl'.
8642
12544bbe
GM
86432011-04-08 Glenn Morris <rgm@gnu.org>
8644
a1de6c6a
GM
8645 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
8646
3c4671f4
GM
8647 * net/browse-url.el (browse-url-firefox):
8648 Test system-type, not system-configuration.
8649
b605679c
GM
8650 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
8651 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
8652 Use log-edit-empty-buffer-p. (Bug#7598)
8653
56442f0c
GM
8654 * net/rlogin.el (rlogin-process-connection-type): Simplify.
8655 (rlogin-mode-map): Initialize in the defvar.
8656 (rlogin): Use ignore-errors.
8657
12544bbe
GM
8658 * replace.el (occur-mode-map): Some fixes for menu items.
8659
eb237b0f
AH
86602011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8661
8662 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
8663
7d668f2c
CY
86642011-04-06 Chong Yidong <cyd@stupidchicken.com>
8665
e67a13ab
CY
8666 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
8667 issuing unused warnings.
8668
8669 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
8670 macro directly.
8671
7d668f2c
CY
8672 * simple.el: Lisp reimplement of list-processes. Based on an
8673 earlier reimplementation by Leo Liu, but using tabulated-list.el.
8674 (process-menu-mode): New major mode.
8675 (list-processes--refresh, list-processes):
8676 (process-menu-visit-buffer): New functions.
8677
8678 * files.el (save-buffers-kill-emacs): Don't assume any return
8679 value of list-processes, which is undocumented anyway.
8680
a83ec3c9
CY
86812011-04-06 Chong Yidong <cyd@stupidchicken.com>
8682
8683 * emacs-lisp/tabulated-list.el: New file.
8684
e91a96fe
CY
8685 * emacs-lisp/package.el: Use Tabulated List mode.
8686 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
8687 (package-menu-mode): Derive from tabulated-list-mode. Set up the
8688 table format using Tabulated List mode variables.
8689 (package--push): New macro, replacing package-list-maybe-add.
8690 (package-menu--generate): Use package--push. Renamed from
8691 package--generate-package-list.
8692 (package-menu-refresh, list-packages): Use it.
daca8ba5 8693 (package-menu--print-info): Rename from package-print-package.
e91a96fe 8694 Return insertion data instead of inserting it directly.
099c39a4
JB
8695 (package-menu-describe-package, package-menu-execute):
8696 Use tabulated-list-get-id.
e91a96fe
CY
8697 (package-menu-mark-delete, package-menu-mark-install)
8698 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
8699 (package-menu-mark-obsolete-for-deletion):
8700 Use tabulated-list-put-tag.
e91a96fe
CY
8701 (package--list-packages, package-menu-revert)
8702 (package-menu-get-package, package-menu-get-version)
8703 (package-menu-sort-by-column): Functions deleted.
8704 (package-menu-package-list, package-menu-sort-key): Vars deleted.
8705 (package-menu--status-predicate, package-menu--version-predicate)
8706 (package-menu--name-predicate)
8707 (package-menu--description-predicate): Handle arguments in the
8708 Tabulated List format.
8709 (package-list-packages-no-fetch): Call list-packages.
8710
3e214b50
JB
87112011-04-06 Juanma Barranquero <lekktu@gmail.com>
8712
8713 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 8714 (after-find-file): Don't bind it.
3e214b50
JB
8715 (revert-buffer-in-progress-p): New variable.
8716 (revert-buffer): Bind it.
8717 Pass nil for `after-find-file-from-revert-buffer'.
8718
8719 * saveplace.el (save-place-find-file-hook): Use new variable
8720 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
8721
3f0f1700
GM
87222011-04-06 Glenn Morris <rgm@gnu.org>
8723
c0274801
GM
8724 * Makefile.in (AUTOGEN_VCS): New variable.
8725 (autoloads): Use $AUTOGEN_VCS.
8726
3f0f1700
GM
8727 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
8728 * calendar/calendar.el (calendar-mode-map):
8729 Check for toolkit scroll bars. (Bug#8305)
8730
41ea9e48
CY
87312011-04-05 Chong Yidong <cyd@stupidchicken.com>
8732
8733 * minibuffer.el (completion-in-region--postch)
8734 (completion-in-region-mode): Remove unnecessary messages.
8735
6194c800
JB
87362011-04-05 Juanma Barranquero <lekktu@gmail.com>
8737
33256f14
JB
8738 * font-lock.el (font-lock-refresh-defaults):
8739 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
8740 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
8741
6194c800
JB
8742 * info.el (Info-directory-list, Info-read-node-name-2)
8743 (Info-split-parameter-string): Doc fixes.
8744 (Info-virtual-nodes): Reflow docstring.
8745 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
8746 (Info-apropos-toc-nodes, info-finder, Info-get-token)
8747 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
8748 Fix typos in docstrings.
8749 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
8750 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
8751 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
8752 (Info-restore-desktop-buffer): Mark unused parameters.
8753 (Info-directory-find-file, Info-directory-find-node)
8754 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
8755 (Info-virtual-index-find-node, Info-apropos-find-file)
8756 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 8757 Mark unused parameters; fix typos in docstrings.
6194c800
JB
8758 (Info-virtual-index): Remove unused local variable `nodename'.
8759
b87a8200 87602011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 8761
b87a8200
DD
8762 * net/rcirc.el: Update my e-mail address.
8763 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 8764
3b2ff876
CY
87652011-04-05 Chong Yidong <cyd@stupidchicken.com>
8766
8767 * startup.el (command-line): Save the cursor's theme-face
8768 directly, instead of using face-override-spec.
8769
8770 * custom.el (load-theme): Minor optimization in assigning faces.
8771
8d17e7ca
JB
87722011-04-04 Juanma Barranquero <lekktu@gmail.com>
8773
8774 * help-fns.el (describe-variable): Complete all variables having
8775 documentation, including keywords.
8776 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
8777
2fbc1934
JB
87782011-04-04 Juanma Barranquero <lekktu@gmail.com>
8779
8780 Convert to lexical-binding.
8781
8782 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
8783 (bs--get-marked-string, bs--get-modified-string)
8784 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
8785 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
8786 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
8787
8788 * ehelp.el (electric-help-execute-extended)
8789 (electric-help-ctrl-x-prefix):
8790 * hexl.el (hexl-revert-buffer-function):
8791 * linum.el (linum-after-change, linum-after-scroll):
8792 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
8793
8794 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
8795
74f50695
DU
87962011-04-04 Daiki Ueno <ueno@unixuser.org>
8797
8798 * epa-dired.el:
8799 * epa-mail.el:
8800 * epa-hook.el:
8801 * epa-file.el:
8802 * epa.el:
8803 * epg.el: Use lexical binding.
8804
c11325f7
CY
88052011-04-03 Chong Yidong <cyd@stupidchicken.com>
8806
0d9e9a12
CY
8807 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
8808
c11325f7 8809 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
8810 dictionary case for flyspell-mark-duplications-exceptions.
8811 Use regexp matching for languages.
c11325f7
CY
8812 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
8813 default dictionary (Bug#7926).
8814
da91b5f2
CY
88152011-04-02 Chong Yidong <cyd@stupidchicken.com>
8816
099c39a4
JB
8817 * emacs-lisp/package.el (package--with-work-buffer):
8818 Recognize https URLs.
da91b5f2 8819
099c39a4
JB
8820 * net/network-stream.el: Move from gnus/proto-stream.el.
8821 Change prefix to network-stream throughout.
da91b5f2
CY
8822 (open-protocol-stream): Merge into open-network-stream, leaving
8823 open-protocol-stream as an alias. Handle nil BUFFER args.
8824
8825 * subr.el (open-network-stream): Move to net/network-stream.el.
8826
afa8e9f6
GM
88272011-04-02 Glenn Morris <rgm@gnu.org>
8828
1d2e369d
GM
8829 * find-dired.el (find-exec-terminator): New option.
8830 (find-ls-option): Test for -ls support.
8831 (find-ls-subdir-switches): Test for -b in find-ls-option.
8832 (find-dired, find-grep-dired): Doc fixes.
8833 (find-dired): Use find-exec-terminator.
8834
8abb7da8 8835 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
8836 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
8837 (find-name-arg): Remove purecopy.
8abb7da8 8838
f3ca7378
GM
8839 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
8840 (grep-compute-defaults): Check for `-exec COMMAND +' support.
8841 Set grep-find-use-xargs, grep-find-command, and grep-find-template
8842 accordingly. Don't add the null-device if not needed.
8843
afa8e9f6
GM
8844 * files.el (save-some-buffers): Doc fix.
8845
35eae264
EZ
88462011-04-02 Eli Zaretskii <eliz@gnu.org>
8847
8848 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
8849
26b51db5
JB
88502011-04-01 Juanma Barranquero <lekktu@gmail.com>
8851
8852 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
8853 Use `dolist' rather than `mapcar'.
8854
7200d79c
SM
88552011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
8856
03408648 8857 Add lexical binding.
7200d79c 8858
03408648
SM
8859 * subr.el (apply-partially): Use new closures rather than CL.
8860 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
8861 (dolist, dotimes): Use slightly different expansion for lexical code.
8862 (functionp): Move to C.
8863 (letrec): New macro.
8864 (with-wrapper-hook): Use it and apply-partially instead of CL.
8865 (eval-after-load): Preserve lexical-binding.
8866 (save-window-excursion, with-output-to-temp-buffer): Turn them
8867 into macros.
7200d79c 8868
03408648
SM
8869 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
8870
8871 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
8872 than the arglist.
8873 (help-add-fundoc-usage): Don't add `Not documented'.
8874 (help-function-arglist): Handle closures, subroutines, and new
8875 byte-code-functions.
8876 (help-make-usage): Remove leading underscores.
8877 (describe-function-1): Handle closures.
8878 (describe-variable): Use special-variable-p for completion.
8879
8880 * files.el (lexical-binding): Declare safe.
f488fb65 8881
03408648
SM
8882 * emacs-lisp/pcase.el: Don't use destructuring-bind.
8883 (pcase--memoize): Rename from pcase-memoize. Change weakness.
8884 (pcase): Add `let' pattern.
8885 Change memoization so it actually works.
8886 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
8887 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
8888 <let>: New case.
f488fb65 8889
03408648
SM
8890 * emacs-lisp/macroexp.el: Use lexical binding.
8891 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
8892 Don't convert ' to #' without checking that it's indeed quoting
8893 a lambda.
8894
8895 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 8896 Use eval-sexp-add-defvars.
03408648
SM
8897 (eval-sexp-add-defvars): New fun.
8898
8899 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
8900
8901 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
8902 Don't autoload.
8903 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
8904 than the internal `byte-compile-lambda'.
8905 (defmethod): Don't hide code under quotes.
8906 (eieio-defmethod): New `code' argument.
8907
8908 * emacs-lisp/eieio-comp.el: Remove.
8909
8910 * emacs-lisp/edebug.el (edebug-eval-defun)
8911 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
8912 (edebug-toggle): Avoid `eval'.
8913
8914 * emacs-lisp/disass.el (disassemble-internal): Handle new
8915 `closure' objects.
8916 (disassemble-1): Handle new byte codes.
8917
8918 * emacs-lisp/cl.el (pushnew): Silence warning.
8919
8920 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
8921 (cl-byte-compile-throw): Remove.
8922 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
8923
8924 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
8925 closures.
8926
8927 * emacs-lisp/cconv.el: New file.
8928
8929 * emacs-lisp/bytecomp.el: Use lexical binding instead of
8930 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
8931 (byte-compile-initial-macro-environment):
8932 Handle declare-function here.
8933 (byte-compile--lexical-environment): New var.
8934 (byte-stack-ref, byte-stack-set, byte-discardN)
8935 (byte-discardN-preserve-tos): New lap codes.
8936 (byte-interactive-p): Don't use any more.
8937 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
8938 New macros.
8939 (byte-compile-lapcode): Use them and handle new lap codes.
8940 (byte-compile-obsolete): Remove.
8941 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
8942 (byte-compile-arglist-warn): Check late def of inlinable funs.
8943 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
8944 since they should have been expanded by now.
8945 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
8946 (byte-compile-from-buffer): Remove unused second arg.
8947 (byte-compile-preprocess): New function.
8948 (byte-compile-toplevel-file-form): New function to distinguish
8949 file-form calls from outside from file-form calls from hunk-handlers.
8950 (byte-compile-file-form): Simplify.
8951 (byte-compile-file-form-defsubst): Remove.
8952 (byte-compile-file-form-defmumble): Simplify now that
8953 byte-compile-lambda always returns a byte-code-function.
8954 (byte-compile): Preprocess.
8955 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
8956 Remove, not used any more.
8957 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
8958 (byte-compile-make-args-desc): New funs.
8959 (byte-compile-lambda): Handle lexical functions. Always return
8960 a byte-code-function.
8961 (byte-compile-reserved-constants): New var, to make up room for
8962 closed-over variables.
8963 (byte-compile-constants-vector): Obey it.
8964 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
8965 (byte-compile-macroexpand-declare-function): New function.
8966 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
8967 byte-code-functions.
8968 (byte-compile-form): Check obsolescence here.
8969 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
8970 (byte-compile-variable-ref): Remove.
8971 (byte-compile-dynamic-variable-op): New fun.
8972 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
8973 (byte-compile-variable-set): New funs.
8974 (byte-compile-discard): Add 2 args.
8975 (byte-compile-stack-ref, byte-compile-stack-set)
8976 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
8977 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
8978 macroexpand-all instead.
8979 (byte-compile-quote-form): Remove.
8980 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
8981 (byte-compile-bind, byte-compile-unbind): New funs.
8982 (byte-compile-let): Handle let* and lexical binding.
8983 (byte-compile-let*): Remove.
8984 (byte-compile-catch, byte-compile-unwind-protect)
8985 (byte-compile-track-mouse, byte-compile-condition-case):
8986 Handle a new :fun-body form, used for lexical scoping.
8987 (byte-compile-save-window-excursion)
8988 (byte-compile-with-output-to-temp-buffer): Remove.
8989 (byte-compile-defun): Simplify.
8990 (byte-compile-stack-adjustment): New fun.
8991 (byte-compile-out): Use it.
8992 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
8993
8994 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
8995 handler any more.
8996
8997 * emacs-lisp/byte-opt.el: Use lexical binding.
8998 (byte-inline-lapcode): Remove (to bytecomp).
8999 (byte-compile-inline-expand): Pay attention to inlining to/from
9000 lexically bound code.
9001 (byte-compile-unfold-lambda): Don't handle byte-code-functions
9002 any more.
9003 (byte-optimize-form-code-walker): Don't handle save-window-excursion
9004 any more and don't call compiler-macros.
9005 (byte-compile-splice-in-already-compiled-code): Remove.
9006 (byte-code): Don't inline any more.
9007 (disassemble-offset): Receive `bytes' as argument rather than via
9008 dynamic scoping.
9009 (byte-compile-tag-number): Declare before first use.
9010 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
9011 `return' even if make-spliceable.
9012 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
9013 obsolete interactive-p.
9014 (byte-optimize-lapcode): Optimize new lap-codes.
9015 Don't trip up on new form of `byte-constant' lap code.
9016
9017 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
9018
9019 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
9020
9021 * custom.el (custom-initialize-default, custom-declare-variable):
9022 Use `defvar'.
9023
9024 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
9025 New variables.
9026 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
9027 (COMPILE_FIRST): Add macroexp and cconv.
9028 * makefile.w32-in: Mirror changes in Makefile.in.
9029
9030 * vc/cvs-status.el:
9031 * vc/diff-mode.el:
9032 * vc/log-edit.el:
9033 * vc/log-view.el:
9034 * vc/smerge-mode.el:
9035 * textmodes/bibtex-style.el:
9036 * textmodes/css.el:
9037 * startup.el:
9038 * uniquify.el:
da91b5f2
CY
9039 * minibuffer.el:
9040 * newcomment.el:
9041 * reveal.el:
9042 * server.el:
9043 * mpc.el:
9044 * emacs-lisp/smie.el:
9045 * doc-view.el:
9046 * dired.el:
03408648
SM
9047 * abbrev.el: Use lexical binding.
9048
0f0c1f27
EZ
90492011-04-01 Eli Zaretskii <eliz@gnu.org>
9050
9051 * info.el (info-display-manual): New function.
9052
c82b2579
SM
90532011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
9054
9055 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
9056
221ddf68
TH
90572011-03-31 Tassilo Horn <tassilo@member.fsf.org>
9058
9059 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 9060 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 9061
cba6e77e
GM
90622011-03-31 Glenn Morris <rgm@gnu.org>
9063
e040639f
GM
9064 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
9065
cba6e77e
GM
9066 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
9067
6d0f1c9e
CS
90682011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
9069
9070 * progmodes/python.el (python-default-interpreter)
9071 (python-python-command-args, python-jython-command-args)
9072 (python-which-shell, python-which-args, python-which-bufname)
9073 (python-file-queue, python-comint-output-filter-function)
9074 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
9075 variables and functions.
9076
3e2d70fd
SM
90772011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
9078
9079 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
9080 (completion-in-region-mode): New minor mode.
9081 (completion-in-region): Use it.
9082 (completion-in-region--data, completion-in-region-mode-map): New vars.
9083 (completion-in-region--postch): New function.
9084 (completion--capf-misbehave-funs, completion--capf-safe-funs):
9085 New vars.
9086 (completion--capf-wrapper): New function.
9087 (completion-at-point): Use it to track well-behavedness of
9088 hook functions.
9089 (completion-help-at-point): New command.
9090
f3e4086c
JM
90912011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
9092
9093 * vc/add-log.el (add-change-log-entry): Don't use whitespace
9094 syntax class to search for whitespace on a single line
9095 (Message-ID: <4D938140.4030905@redhat.com>).
9096
eb7ffc14
LL
90972011-03-30 Leo Liu <sdl.web@gmail.com>
9098
9099 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
9100 New commands.
9101 (edit-abbrevs-map): Bind them here.
9102 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
9103
d806ab68
KM
91042011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
9105
9106 * allout.el (allout-hide-by-annotation, allout-flag-region):
9107 Reduce possibility of overlay leakage by making them volatile.
9108
9109 * allout-widgets.el (allout-widgets-tally): Define as nil so the
9110 hash is not shared between buffers. Mode initialization is
9111 responsible for giving it a useful starting value.
9112 (allout-item-span): Reduce possibility of overlay leakage by
9113 making them volatile.
9114 (allout-widgets-count-buttons-in-region): Add diagnostic function
9115 for tracking down button overlay leaks.
9116
ea622834
LL
91172011-03-29 Leo Liu <sdl.web@gmail.com>
9118
9119 * ido.el (ido-read-internal): Use the default history var
9120 minibuffer-history if no HISTORY is specified.
9121
b62f8267
G
91222011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
9123
03408648
SM
9124 * net/imap.el (imap-shell-open, imap-process-connection-type):
9125 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
9126 Kerberos, SSL, other subprocesses.
9127
947b6566
LL
91282011-03-28 Leo Liu <sdl.web@gmail.com>
9129
9130 * abbrev.el (abbrev-table-empty-p): New function.
9131 (prepare-abbrev-list-buffer): Place empty abbrev tables after
9132 nonempty ones. (Bug#5937)
9133
5ffb62aa
JD
91342011-03-27 Jan Djärv <jan.h.d@swipnet.se>
9135
9136 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
9137
7a097943
LL
91382011-03-27 Leo Liu <sdl.web@gmail.com>
9139
9140 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
9141 for foreground and background colors.
9142 (ansi-color-make-color-map): Adapt.
9143
c5b40130
LL
91442011-03-25 Leo Liu <sdl.web@gmail.com>
9145
1f48f7d2
LL
9146 * midnight.el (midnight-time-float): Remove. Note it calculates
9147 the microsecond component incorrectly and seconds-to-time does the
9148 same job.
625897ec 9149 Remove redundant (require 'timer).
1f48f7d2 9150
c5b40130
LL
9151 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
9152 (ido-completions): Remove unused arguments. (Bug#8329)
9153
d86d2721
SM
91542011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
9155
9156 * minibuffer.el (completion--flush-all-sorted-completions):
9157 Remove itself from hook.
9158 (completion-at-point): Let the functions perform the completion
9159 immediately and return nil or t.
9160 * comint.el (comint-dynamic-complete-functions): Now identical to
9161 completion-at-point-functions.
9162 (comint-dynamic-list-input-ring): Remove unused var `index'.
9163 (comint--match-partial-filename, comint--unquote&expand-filename):
9164 New funs, split from comint-match-partial-filename.
9165 (comint-dynamic-complete): Use completion-at-point.
9166 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
9167
e8974c48
DA
91682011-03-24 Drew Adams <drew.adams@oracle.com>
9169
9170 * thingatpt.el: Support `defun'.
9171
def71b5e
LL
91722011-03-23 Leo Liu <sdl.web@gmail.com>
9173
cb5af48e
LL
9174 * abbrevlist.el: Move to obsolete/abbrevlist.el.
9175
def71b5e
LL
9176 * help-mode.el (help-mode-finish): Tweak regexp.
9177
927c53e7
GM
91782011-03-23 Glenn Morris <rgm@gnu.org>
9179
18d05bed
GM
9180 * eshell/esh-opt.el (eshell-eval-using-options):
9181 Do not bind unused local variable `eshell-option-stub'.
9182
927c53e7
GM
9183 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
9184
9d0da923
JB
91852011-03-22 Juanma Barranquero <lekktu@gmail.com>
9186
9187 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
9188 keymap variable in `with-no-warnings' to avoid a warning when the
9189 keymap has been already `defconst'ed.
9190
4b978a67
LL
91912011-03-22 Leo Liu <sdl.web@gmail.com>
9192
9193 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
9194 encode all chars in abbrevs; otherwise use emacs-mule or
9195 utf-8-emacs. (Bug#8308)
9196
5fd62452
JB
91972011-03-22 Juanma Barranquero <lekktu@gmail.com>
9198
0b1596c6
JB
9199 * simple.el (backward-delete-char-untabify):
9200 Avoid warning about using `delete-backward-char'.
9201
5fd62452
JB
9202 * image.el (image-type-file-name-regexps): Make it variable.
9203 `imagemagick-register-types' modifies it, and the user may want
9204 to add new extensions for known image types.
9205 (imagemagick-register-types): Throw error if not using ImageMagick.
9206
0b4e93f1
LL
92072011-03-22 Leo Liu <sdl.web@gmail.com>
9208
9209 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
9210 located before rcirc-prompt-end-marker.
9211 (rcirc-complete): Error if point is not after rcirc prompt.
9212 Handle the case when table is nil.
9882e214 9213 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 9214
fccee4ab
CY
92152011-03-22 Chong Yidong <cyd@stupidchicken.com>
9216
9217 * custom.el (custom--inhibit-theme-enable): Make it affect only
9218 custom-theme-set-variables and custom-theme-set-faces.
9219 (provide-theme): Ignore custom--inhibit-theme-enable.
9220 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
9221 (custom-enabling-themes): Delete variable.
d86d2721
SM
9222 (enable-theme): Accept only loaded themes as arguments.
9223 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
9224 (custom-enabled-themes): Forbid themes from setting this.
9225 Eliminate use of custom-enabling-themes.
9226 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 9227
af896da6
LL
92282011-03-21 Leo Liu <sdl.web@gmail.com>
9229
9230 * ido.el (ido-read-internal): Add ido-selected to history instead
9231 of user input.
9232
78f64af0
SM
92332011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9234
9235 * subr.el (deferred-action-list, deferred-action-function):
9236 Mark obsolete.
9237
b16ac1ec
LL
92382011-03-21 Leo Liu <sdl.web@gmail.com>
9239
810f7698
LL
9240 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
9241 change on 2011-02-13 (bug#8309).
9242
b16ac1ec
LL
9243 * minibuffer.el (read-file-name-function): Change default value.
9244 (read-file-name--defaults): Rename from read-file-name-defaults.
9245 (read-file-name-default): Rename from read-file-name.
9246 (read-file-name): Call read-file-name-function.
9247
4e05e67e
GM
92482011-03-21 Glenn Morris <rgm@gnu.org>
9249
9250 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
9251 Doc fixes.
9252
4359915b
CY
92532011-03-21 Chong Yidong <cyd@stupidchicken.com>
9254
9255 * cus-theme.el: Add missing provide statement.
9256 (customize-create-theme): Extract theme value correctly.
9257 (custom-theme-visit-theme): Autoload.
9258 (customize-create-theme): Prompt before inserting default faces.
9259
1fe275ee
JB
92602011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
9261
9262 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
9263 units and musical notes.
9264
3ec03f7e
LL
92652011-03-20 Leo <sdl.web@gmail.com>
9266
9267 * ido.el (ido-read-internal): Use completing-read-default.
9268 (ido-completing-read): Fix compatibility with completing-read.
9269
7d476bde
CO
92702011-03-20 Christian Ohler <ohler@gnu.org>
9271
9272 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
9273 (ert-delete-all-tests): Use `called-interactively-p' rather than
9274 `interactive-p'.
9275 (ert--make-xrefs-region): Respect END.
9276
fe0fb33e
CY
92772011-03-19 Chong Yidong <cyd@stupidchicken.com>
9278
ff854b0b
CY
9279 * dired-aux.el (dired-create-directory): Signal an error if the
9280 directory already exists (Bug#8246).
9281
fe0fb33e
CY
9282 * facemenu.el (list-colors-display): Call list-faces-display
9283 inside with-help-window.
9284 (list-colors-print): Use display property to align the final
9285 column, instead of checking window-width.
9286
576bce32
EZ
92872011-03-19 Eli Zaretskii <eliz@gnu.org>
9288
4d61f28d 9289 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
9290 windows-nt systems.
9291 (emerge-protect-metachars): Quote correctly for ms-dos and
9292 windows-nt systems.
9293
89c41d68 92942011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
9295
9296 * info.el (info-initialize): Replace all uses of `:' with
9297 path-separator for compatibility with non-Unix systems.
9298 Cache quoting of path-separator. (Bug#8258)
9299
b14e3e21 93002011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
9301
9302 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
9303 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
9304 (mouse-avoidance-mode): Fix typos in docstrings.
9305
4525ce3e
CY
93062011-03-19 Chong Yidong <cyd@stupidchicken.com>
9307
9308 * startup.el (package-subdirectory-regexp): Move from package.el.
9309 Omit \\` and \\', and let callers add them.
9310
9311 * emacs-lisp/package.el (package-strip-version)
9312 (package-load-all-descriptors): Add \\` and \\' to
9313 package-subdirectory-regexp before using it.
9314 (package-untar-buffer): New arg DIR; ensure that file untars only
9315 into this expected directory. Remove superfluous delete-region.
9316 (package-unpack): Caller changed.
9317 (package-tar-file-info): Use package-subdirectory-regexp.
9318
a904a09a 93192011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 9320
a904a09a
SM
9321 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
9322 diff-mode-shared-map (bug#8284).
9323 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
9324
93252011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
9326
9327 * calendar/time-date.el (format-seconds): Use assoc instead of
9328 assoc-string, since assoc-string doesn't exist in XEmacs.
9329
171fc304
JB
93302011-03-17 Juanma Barranquero <lekktu@gmail.com>
9331
9332 * custom.el (custom-known-themes): Reflow docstring.
9333 (custom-theme-load-path): Fix typo in docstring.
9334 (load-theme): Fix typo in error message.
9335 (custom-available-themes, custom-variable-theme-value):
9336 Use `let', not `let*'.
9337
d71990a1
JB
93382011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
9339
9340 * calc/README: Mention inclusion of musical notes.
9341
9342 * calc/calc-units.el (calc-lu-quant): Rename from
9343 `calc-logunits-quantity'.
9344 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
9345 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
9346 (calc-db): Rename from `calc-dblevel'.
9347 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
9348 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
9349 (calc-np): Rename from `calc-nplevel'.
9350 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
9351 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
9352 (calc-lu-plus): Rename from `calc-logunits-add'.
9353 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
9354 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
9355 (calc-lu-minus): Rename from `calc-logunits-sub'.
9356 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
9357 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
9358 (calc-lu-times): Rename from `calc-logunits-mul'.
9359 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
9360 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
9361 (calc-lu-divide): Rename from `calc-logunits-div'.
9362 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
9363 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
9364
9365 * calc/calc-ext.el (calc-init-extensions): Update the names of the
9366 functions being autoloaded.
9367
9368 * calc/calc.el (calc-lu-power-reference): Rename from
9369 `calc-logunits-power-reference'.
9370 (calc-lu-field-reference): Rename from
9371 `calc-logunits-field-reference'.
9372
9373 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
9374
40c2934b
SM
93752011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
9376
9377 * minibuffer.el (completion-all-sorted-completions):
9378 Use :completion-cycle-penalty text property if present.
9379
b0911414
KM
93802011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
9381
9382 * allout.el (allout-yank-processing): Adjust for new rebulleting
9383 regime so bullet being yanked is used without prompting the user
9384 for a choice.
9385
8a05b668
JB
93862011-03-16 Juanma Barranquero <lekktu@gmail.com>
9387
9388 * startup.el (command-line): Warn the user that _emacs is deprecated.
9389
5ba5fb81
JB
93902011-03-16 Juanma Barranquero <lekktu@gmail.com>
9391
9392 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
9393 (delphi-verbose, delphi-comment-face, delphi-string-face)
9394 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
9395 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
9396 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
9397 (delphi-new-comment-line, delphi-font-lock-defaults)
9398 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
9399 Fix typos in docstrings.
9400
2dab465b
KM
94012011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
9402
5ba5fb81 9403 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
9404 Invert the roles of character and string values for INSTEAD, so a
9405 string is used for the more common case of a defaulting prompt.
9406
0adf5618
SM
94072011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9408
9409 * progmodes/ruby-mode.el (ruby-backward-sexp):
9410 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
9411 * play/gamegrid.el (gamegrid-make-face):
9412 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
9413 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
9414 * notifications.el (notifications-notify):
9415 * net/xesam.el (xesam-search-engines):
9416 * net/quickurl.el (quickurl-list-insert):
9417 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
9418
d72700e5
CY
94192011-03-15 Chong Yidong <cyd@stupidchicken.com>
9420
9421 * startup.el (command-line): Update package subdirectory regexp.
9422
49c5410a
SM
94232011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9424
c6eee9aa
SM
9425 * allout.el (allout-abbreviate-flattened-numbering)
9426 (allout-mode-deactivate-hook): Fix up obsolescence "date".
9427
49c5410a
SM
9428 * subr.el (read-char-choice): Only show the cursor after the prompt,
9429 not after the answer.
9430
047b2bb9
KR
94312011-03-15 Kevin Ryde <user42@zip.com.au>
9432
9433 * help-fns.el (variable-at-point): Skip leading quotes, if any
9434 (bug#8253).
9435
0a57d256
SM
94362011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9437
9438 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
9439 warning message.
9440
77c992bc
MA
94412011-03-14 Michael Albinus <michael.albinus@gmx.de>
9442
9443 * shell.el (shell): When called interactively, offer to change the
9444 shell file name on remote hosts.
9445
eebc475d
TZ
94462011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
9447
9448 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
9449 integration for LDAP parameters. The host, base, user or binddn,
9450 and secret tokens can be specified in a netrc file, for instance.
9451 This is optional because an `auth-source' parameter must be
9452 specified in the search attributes.
9453
9d05d1ba
JB
94542011-03-13 Juanma Barranquero <lekktu@gmail.com>
9455
9456 * help.el (describe-mode): Link to the mode's definition (bug#8185).
9457
09d9db2c
GM
94582011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9459
9460 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
9461 into declaration. Remove redundant and harmful binding.
9462
94632011-03-12 Eli Zaretskii <eliz@gnu.org>
9464
9465 * files.el (file-ownership-preserved-p): Pass `integer' as an
9466 explicit 2nd argument to `file-attributes'. If the file's owner
9467 is the Administrators group on Windows, and the current user is
9468 Administrator, consider that a match.
9469
9470 * server.el (server-ensure-safe-dir): Consider server directory
9471 safe on MS-Windows if its owner is the Administrators group while
9472 the current Emacs user is Administrator. Use `=' to compare
9473 numerical UIDs, since they could be integers or floats.
9474
219bd536
JB
94752011-03-12 Juanma Barranquero <lekktu@gmail.com>
9476
9477 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
9478
f3afd36b
MA
94792011-03-12 Michael Albinus <michael.albinus@gmx.de>
9480
9481 Sync with Tramp 2.2.1.
9482
9483 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
9484
9485 * net/trampver.el: Update release number.
9486
3aaaa6f1
SM
94872011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9488
94642599
SM
9489 * progmodes/compile.el (compilation--previous-directory): Fix up
9490 various nil/dead-marker mismatches (bug#8014).
9491 (compilation-directory-properties, compilation-error-properties):
9492 Don't call it at a position past the one we're about to change.
9493
3aaaa6f1
SM
9494 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
9495 Disable obsolescence warnings in the file that declares it.
9496
14239447
KM
94972011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
9498
099c39a4
JB
9499 * allout-widgets.el (allout-widgets-tally):
9500 Initialize allout-widgets-tally as a hash table rather than nil to
9501 prevent mode-line redisplay warnings. Also, clarify the module
9502 description and fix a comment typo.
14239447 9503
135e287c
JB
95042011-03-11 Juanma Barranquero <lekktu@gmail.com>
9505
9506 * help-fns.el (describe-variable): Don't complete keywords.
9507 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
9508
ffbf300e
CY
95092011-03-10 Chong Yidong <cyd@stupidchicken.com>
9510
ba08b241
CY
9511 * emacs-lisp/package.el (package-version-join): Impose a standard
9512 string representation for pre/alpha/beta version lists.
9513 (package-unpack-single): Standardize the directory name by passing
9514 it through package-version-join.
9515 (package-strip-rcs-id): Accept any version string that does not
9516 signal an error in version-to-list.
ffbf300e 9517
f346fd6b
MA
95182011-03-10 Michael Albinus <michael.albinus@gmx.de>
9519
9520 * simple.el (delete-trailing-whitespace): Return nil for the
9521 benefit of `write-file-functions'.
9522
ccb55d27
GM
95232011-03-10 Glenn Morris <rgm@gnu.org>
9524
5ceaac0c
GM
9525 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
9526
02da65ff
GM
9527 * vc/vc-git.el (vc-git-program): New option.
9528 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
9529 (vc-git--call): Use it.
9530
b2f603cc
GM
9531 * eshell/esh-util.el (eshell-condition-case): Doc fix.
9532
5772caab
GM
9533 * cus-edit.el (Custom-newline): If no button at point, look
9534 for a subgroup button at start-of-line. (Bug#2298)
9535
ccb55d27
GM
9536 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
9537
ec6ecaed
JD
95382011-03-10 Julien Danjou <julien@danjou.info>
9539
9540 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
9541 `cursor-type' is nil.
9542
9d5aa01d
JB
95432011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
9544
9545 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
9546
b6a5875b
KM
95472011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
9548
9549 * allout.el Summary: Change so yank of distinctive-bullet items
9550 preserves the existing header prefix, rebulleting it if necessary,
9551 rather than replacing it. This is necessary for proper operation
9552 of cooperative addons like allout-widgets.
219bd536 9553 (allout-make-topic-prefix, allout-rebullet-heading): Change
b6a5875b
KM
9554 SOLICIT arg to INSTEAD, and interpret additionally a string value
9555 as alternate bullet to be used, instead of prompting the user for
9556 a bullet character.
9557
ee545c35
MA
95582011-03-09 Michael Albinus <michael.albinus@gmx.de>
9559
d86d2721
SM
9560 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
9561 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
9562 `tramp-default-port'.
9563
c47971d7
DD
95642011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9565
9566 * net/rcirc.el (rcirc-handler-001): Remove useless
9567 with-rcirc-process-buffer.
9568 (rcirc-check-auth-status): Swap arguments to string-match.
9569
13522cb4
GM
95702011-03-09 Glenn Morris <rgm@gnu.org>
9571
0be6f4f1
GM
9572 * shell.el (shell-mode):
9573 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
9574
13522cb4
GM
9575 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
9576 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
9577
515de2e3
CY
95782011-03-08 Chong Yidong <cyd@stupidchicken.com>
9579
9580 * emacs-lisp/package.el (package-refresh-contents)
9581 (package-menu-execute): Use condition-case-no-debug.
9582
b511b994
MA
95832011-03-08 Michael Albinus <michael.albinus@gmx.de>
9584
9585 * simple.el (shell-command-to-string): Use `process-file'.
9586
9587 * emacs-lisp/package.el (package-tar-file-info): Handle also
9588 remote files.
9589
d86d2721
SM
9590 * emacs-lisp/package-x.el (package-upload-buffer-internal):
9591 Use `equal' for upload base check.
b511b994 9592
25bbfb31
AM
95932011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
9594
9595 * textmodes/texinfo.el (texinfo-environments):
9596 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
9597
be996521
GM
95982011-03-08 Glenn Morris <rgm@gnu.org>
9599
e9c8529f
GM
9600 * cus-start.el (cursor-in-non-selected-windows):
9601 Fix :set quoting oddness. (Bug#8192)
9602
be996521
GM
9603 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
9604 in some setf expressions. (Bug#2159)
9605
2bb5649e
CY
96062011-03-08 Chong Yidong <cyd@stupidchicken.com>
9607
9608 * custom.el (custom-available-themes): Return themes in
9609 alphabetical order.
9610
33383987 9611See ChangeLog.15 for earlier changes.
e3d51b27
MR
9612
9613;; Local Variables:
9614;; coding: utf-8
e3d51b27
MR
9615;; End:
9616
33383987 9617 Copyright (C) 2011 Free Software Foundation, Inc.
e3d51b27
MR
9618
9619 This file is part of GNU Emacs.
9620
9621 GNU Emacs is free software: you can redistribute it and/or modify
9622 it under the terms of the GNU General Public License as published by
9623 the Free Software Foundation, either version 3 of the License, or
9624 (at your option) any later version.
9625
9626 GNU Emacs is distributed in the hope that it will be useful,
9627 but WITHOUT ANY WARRANTY; without even the implied warranty of
9628 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9629 GNU General Public License for more details.
9630
9631 You should have received a copy of the GNU General Public License
9632 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.