Handle X selection requests in input-pending-p.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
58a70b94
GM
12011-12-05 Glenn Morris <rgm@gnu.org>
2
3 * align.el (align--set-marker): Add doc-string.
4 Don't try to move something that is not a marker. (Bug#10216)
5
5158face
GM
62011-12-04 Glenn Morris <rgm@gnu.org>
7
8 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
9 overly zealous deletion of trailing whitespace.
10
520fca41
JB
112011-12-04 Juanma Barranquero <lekktu@gmail.com>
12
13 * server.el (server-delete-client): On Windows, do not try to delete
14 the only terminal.
15 (server-process-filter): On Windows, treat requests for a tty frame as
16 if they were for a GUI frame if the running server is in GUI mode.
17
5e605a2e
GM
182011-12-03 Glenn Morris <rgm@gnu.org>
19
20 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
21
5c3fe83f
SM
222011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
23
6f5e57e7
SM
24 * electric.el: Streamline electric-indent's hook.
25 (electric-indent-chars): Revert to simple list.
26 (electric-indent-functions): New var.
27 (electric-indent-post-self-insert-function): Use it.
28
5c3fe83f
SM
29 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
30 there's no inferior buffer (bug#10196).
31 (prolog-consult-compile): Don't use toggle-read-only.
32
6bdac736
MA
332011-12-02 Michael Albinus <michael.albinus@gmx.de>
34
35 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
36 interrupt. (Bug#10187)
37
6131ba7f
SM
382011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
39
99c79fee
SM
40 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
41 (bug#9160).
42
6131ba7f
SM
43 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
44 (bug#10191).
45
cb0a02ea
JL
462011-12-02 Juri Linkov <juri@jurta.org>
47
48 * info.el (Info-search): Display "end of manual" when Isearch
49 reaches the end of single-file Info manual. (Bug#9918)
50
66e0570c
EZ
512011-12-02 Eli Zaretskii <eliz@gnu.org>
52
53 * isearch.el (isearch-message-prefix): Run the input method part
54 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
55
02b16839
JL
562011-12-02 Juri Linkov <juri@jurta.org>
57
58 * isearch.el (isearch-occur): Use `word-search-regexp' for
59 `isearch-word'.
60 (isearch-search-and-update): Add condition for `isearch-word' and
61 call `word-search-regexp'. (Bug#10145)
62
0b950688
GM
632011-12-01 Glenn Morris <rgm@gnu.org>
64
65 * eshell/em-hist.el (eshell-hist-initialize):
66 Handle eshell-history-size nil and HISTSIZE set or unset.
e8087a76 67 (eshell-history-file-name, eshell-history-size): Fix custom type.
0b950688 68
9505c3c7
SM
692011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
70
71 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
72
1bbe96b2 732011-12-01 Michael McNamara <mac@mail.brushroad.com>
6288f0ca 74
a1beca85
SM
75 * progmodes/verilog-mode.el (verilog-pretty-expr):
76 Rework verilog-pretty-expr to handle new assignment operators in system
6288f0ca
WS
77 verilog, such as += *= and the like.
78 (verilog-assignment-operator-re): Regular expression to find the
79 assigment operator in a verilog assignment.
80 (verilog-assignment-operation-re): Regular expression to find an
81 assignment statement for pretty-expr.
82 (verilog-in-attribute-p): Query returns true if point is in an
83 attribute context; used to skip these for expression line up from
84 pretty-expr.
85 (verilog-in-parameter-p): Query returns true if point is in an
86 parameter definition context; used to skip these for expression
87 line up from pretty-expr.
88 (verilog-in-parenthesis-p): Query returns true if point is in a
89 parenthetical expression, specifically ( ) but not [ ] or { };
90 used by pretty-expr.
91 (verilog-just-one-space): If there is no space, don't add one.
92 (verilog-get-lineup-indent-2): Specifically skip just attribute
93 contexts for expression lineup, rather than skipping all
94 parenthetical expressions.
95 (verilog-calculate-indent): Fix comment, and fix indent.
96 (verilog-do-indent): Indent declarations in lists (suggested by
97 Joachim Lechner).
98 (verilog-mode-abbrev-table): Populate abbrev mode with the various
99 skeleton items.
100 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
101 by Alain Mellan).
102
1bbe96b2 1032011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6288f0ca
WS
104
105 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
106 parameters with embedded comments. Reported by Ray Stevens.
107 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
108 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
109 Reported by Tim Holt.
110 (verilog-auto): Fix AUTOing a upper module then AUTOing module
111 instantiated by upper module causing wrong expansion until AUTOed a
112 second time. Reported by K C Buckenmaier.
113 (verilog-diff-auto): Fix showing .* as a difference when
114 `verilog-auto-star-save' off. Reported by Dan Dever.
115 (verilog-auto-reset, verilog-read-always-signals)
116 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
117 temporary signals in reset list if
118 verilog-auto-reset-blocking-in-non is nil, and match assignment
a1beca85
SM
119 style to each signal's assignment type, bug381.
120 Reported by Thomas Esposito.
6288f0ca
WS
121 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
122 (verilog-uvm-statement-re): Support UVM indentation and
123 highlighting, with old OVM keywords only.
a1beca85
SM
124 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
125 Support AUTOTIEOFF creating non-wire data types. Suggested by Jonathan
6288f0ca
WS
126 Greenlaw.
127 (verilog-auto-insert-lisp, verilog-delete-to-paren)
128 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
129 (verilog-inject-sense, verilog-read-inst-pins)
a1beca85
SM
130 (verilog-read-sub-decls, verilog-read-sub-decls-line):
131 Fix mismatching parenthesis inside commented out code when deleting
6288f0ca
WS
132 AUTOINST, bug383. Reported by Jonathan Greenlaw.
133 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
134 non-numeric vector width. Reported by Alex Reed.
135 (verilog-auto-ascii-enum): Add "onehot" option to work around not
136 detecting signals with parameter widths. Reported by Alex Reed.
a1beca85
SM
137 (verilog-auto-delete-trailing-whitespace):
138 With `verilog-auto-delete-trailing-whitespace' remove trailing
6288f0ca
WS
139 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
140 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
141 Fix verilog-scan-cache corruption when running user AUTO expansion
142 hooks that call indentation routines.
143 (verilog-simplify-range-expression): Fix typo ignoring lower case
144 identifiers.
145 (verilog-delete-auto): Fix delete-autos to also remove user created
146 automatics, as long as they start with AUTO.
147 (verilog-batch-diff-auto, verilog-diff-auto)
148 (verilog-diff-function): Add `verilog-diff-auto' and bind to
149 "C-c?" to report differences in AUTO expansion, ignoring spaces.
150 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
151 (verilog-in-paren-quick, verilog-re-search-backward-quick)
a1beca85
SM
152 (verilog-re-search-forward-quick, verilog-syntax-ppss):
153 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6288f0ca
WS
154 is disabled and its cache will get corrupt, causing AUTOS not to
155 expand. Instead use only -quick functions.
156 (verilog-scan-region): Fix scanning over escaped quotes.
157 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
158 (verilog-re-search-backward-quick)
159 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
160 related functions now ignore strings, to fix misparsing of strings
161 with magic comments embedded in them.
a1beca85
SM
162 (verilog-read-auto-template):
163 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
164 Reported by Brad Dobbie.
165 (verilog-read-auto-template):
166 Fix 'verilog-auto-inst-template-numbers' with comments.
6288f0ca 167 Reported by Brad Dobbie.
6288f0ca
WS
168 (verilog-auto-inst, verilog-auto-inst-param)
169 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
170 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
171 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
a1beca85
SM
172 debugging templates without merge conflicts, bug357.
173 Reported by Brad Dobbie.
174 (verilog-read-auto-template):
175 Fix verilog-auto-inst-template-numbers with multiple templates.
6288f0ca
WS
176 Reported by Brad Dobbie.
177 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
178 abbrevs so user won't be asked to save.
179 (verilog-read-auto-lisp-present): Fix to start at beginning of
180 buffer in case called outside of verilog-auto.
181 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
182 to "X-2". Reported by Matthew Myers.
183 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
184 all inputs from module templates. Reported by Leith Johnson.
185 (verilog-module-inside-filename-p): Fix locating programs as with
186 modules.
187 (verilog-auto-inst-port): Fix vl-width expressions when using
188 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
189 (verilog-decls-get-regs, verilog-decls-get-signals,
190 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
191 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
192 verilog-read-decls): Combine reg and wire structures into one var
193 structure to represent SystemVerilog concepts.
194 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
195 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
a1beca85
SM
196 (verilog-auto-wire-type, verilog-insert-definition):
197 Add verilog-auto-wire-type and AUTOLOGIC to support using
6288f0ca
WS
198 SystemVerilog "logic" keyword instead of "wire"/"reg".
199 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
200 to declares outputs that also have assignments (presumably in an
a1beca85
SM
201 ifdef or generate if so there's not a driver conflict).
202 Reported by Matthew Myers.
203 (verilog-auto-declare-nettype, verilog-insert-definition):
204 Add verilog-auto-declare-nettype to fix declarations using
6288f0ca
WS
205 `default_nettype none. Reported by Julian Gorfajn.
206 (verilog-read-always-signals-recurse, verilog-read-decls)
207 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
208 malformed end statement, bug325. Reported by Joshua Wise and
209 Andrew Drake.
210 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
211 (verilog-inst-comment-re): Fix not deleting Interfaced comment
212 when expanding .* in interfaces, bug320. Reported by Pierre-David
213 Pfister.
214 (verilog-read-module-name): Fix import statements between module
215 name and open parenthesis, bug317. Reported by Pierre-David
216 Pfister.
217 (verilog-simplify-range-expression): Fix simplification of
218 multiplications inside AUTOWIRE connections, bug303.
219 (verilog-auto-inst-port): Support parameter expansion in
220 multidimensional arrays.
221 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
222 after "assert property". Reported by Julian Gorfajn.
223 (verilog-simplify-range-expression): Fix "couldn't merge" errors
224 with multiplication, bug303.
225 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
226 Reported by Jan Frode Lonnum.
227
1bbe96b2
GM
2282011-11-30 Juanma Barranquero <lekktu@gmail.com>
229
230 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
231 (hfy-shell-file-name, hfy-shell):
232 * international/fontset.el (x-decompose-font-name): Fix typos.
233
2342011-11-29 Ken Brown <kbrown@cornell.edu>
235
236 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
237 (gdb-version): Remove defvar.
238 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
239 (gdb-gud-context-command, gdb-non-stop-handler)
240 (gdb-current-context-command, gdb-stopped): Use it.
241 (gdb-init-1): Enable pretty printing here.
6131ba7f
SM
242 (gdb-non-stop-handler): Don't enable pretty-printing here.
243 Check to see if the target supports non-stop mode; if not, turn off
1bbe96b2
GM
244 non-stop mode. Use the following.
245 (gdb-check-target-async): New defun.
246 (gud-watch, gdb-stopped): Fix whitespace.
247 (gdb-get-source-file): Don't try to display the source file if
248 `gdb-main-file' is nil.
249
2502011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
251
252 * align.el: Try to generate fewer markers (bug#10047).
253 (align--set-marker): New macro.
254 (align-region): Use it.
255
c935221f
SM
2562011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
257
258 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
259
e70b5064
CY
2602011-11-29 Chong Yidong <cyd@gnu.org>
261
262 * indent.el (indent-for-tab-command, indent-according-to-mode):
263 Doc fix.
264 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
265
f3af92b7
MA
2662011-11-29 Michael Albinus <michael.albinus@gmx.de>
267
268 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
269 aware of remote file names. (Bug#10124)
270
ed472be9
CY
2712011-11-29 Chong Yidong <cyd@gnu.org>
272
273 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
274
24510c22
SM
2752011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
276
277 * files.el (find-file): Don't use force-same-window (bug#10144).
278 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
279 use pop-to-buffer if the selected window can't be used.
280 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
281
c60c3703
EZ
2822011-11-28 Eli Zaretskii <eliz@gnu.org>
283
284 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
285 special-mode-map.
286
e95def75
CY
2872011-11-28 Chong Yidong <cyd@gnu.org>
288
289 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
290
c3f1c606
NR
2912011-11-27 Nick Roberts <nickrob@snap.net.nz>
292
293 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
294 gdb-get-source-file-list on gdb-create-source-file-list.
295
00db469c
EZ
2962011-11-26 Eli Zaretskii <eliz@gnu.org>
297
298 * whitespace.el (whitespace-newline): Use a different foreground
299 color for 16-color light-background displays.
300
4ad3bc2a
CY
3012011-11-24 Chong Yidong <cyd@gnu.org>
302
303 * window.el (display-buffer--special-action): Doc fix.
304
e9fce1ac
JB
3052011-11-25 Juanma Barranquero <lekktu@gmail.com>
306
307 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
308 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
309 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
310 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
311 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
312 (avl-tree-stack-first):
313 * emacs-lisp/cconv.el (cconv--analyse-use):
314 * net/gnutls.el (gnutls-negotiate): Fix typos.
315
cb825e5d
GM
3162011-11-24 Glenn Morris <rgm@gnu.org>
317
3adbe224
GM
318 * lpr.el (lpr-windows-system, lpr-lp-system):
319 * mail/binhex.el (binhex-begin-line):
320 * progmodes/grep.el (grep-history, grep-find-history):
321 * textmodes/flyspell.el:
322 * vc/pcvs-defs.el (cvs-global-menu):
323 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
324 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
325 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
326
321decc8
GM
327 * net/tls.el: Fix case of "GnuTLS".
328
420b63ad
GM
329 * paths.el (rmail-file-name): Format doc-string for make-docfile.
330
cb825e5d
GM
331 * version.el (emacs-build-system): Give it a doc-string.
332
a0649f08
JL
3332011-11-24 Juri Linkov <juri@jurta.org>
334
335 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
336
c0bc0fd4
GM
3372011-11-24 Glenn Morris <rgm@gnu.org>
338
339 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
340 if called on a non-mime message just toggle the headers. (Bug#8006)
341
20db1522
JB
3422011-11-24 Juanma Barranquero <lekktu@gmail.com>
343
344 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
345 (allout-lead-with-comment-string, allout-structure-deleted-hook)
346 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
347 (allout-rebullet-heading, allout-open-sibtopic)
348 (allout-toggle-current-subtree-encryption)
349 (allout-toggle-subtree-encryption, allout-encrypt-string)
350 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
351 (allout-distinctive-bullets-string, allout-auto-activation):
352 * window.el (window-normalize-buffer-to-display):
353 * progmodes/verilog-mode.el (verilog-batch-indent):
354 * textmodes/bibtex.el (bibtex-field-braces-opt)
355 (bibtex-field-strings-opt):
356 * vc/cvs-status.el (cvs-tree-merge):
357 Fix typos.
358
7262a87c
MA
3592011-11-23 Michael Albinus <michael.albinus@gmx.de>
360
361 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
362 `non-essential' to t, in order to avoid remote connections.
363
283430a1
EZ
3642011-11-23 Eli Zaretskii <eliz@gnu.org>
365
a1beca85
SM
366 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
367 On MS-DOS and MS-Windows, compare with loaddefs.el
283430a1
EZ
368 case-insensitively.
369
d2992a38
ML
3702011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
371
372 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
373
50419064
GM
3742011-11-23 Glenn Morris <rgm@gnu.org>
375
da94eca1
GM
376 * paths.el (rmail-file-name): Reformat the doc-string so that it
377 is picked up.
378
9aac4de2
GM
379 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
380 (rmail-auto-file): Ignore case in the "special" field names,
381 as mail-fetch-field does for all others.
382
8038d2d2
GM
383 * mail/rmail.el (rmail-forward):
384 * mail/rmailkwd.el (rmail-set-label):
385 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
386 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
387
f3fe222a
GM
388 * mail/rmail.el (rmail-current-message): Doc fix.
389
50419064
GM
390 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
391
28109f49
SM
3922011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
393
394 * server.el (server-eval-and-print): Allow C-g (bug#6585).
395
394c65f1
GM
3962011-11-22 Glenn Morris <rgm@gnu.org>
397
398 * mail/rmailmm.el (test-rmail-mime-handler)
399 (test-rmail-mime-bulk-handler)
400 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
401
f2a0aa3a
JL
4022011-11-21 Juri Linkov <juri@jurta.org>
403
404 * calc/calc.el (calc-read-key-sequence): Let-bind `input-method-function'
405 to nil. (Bug#10018)
406
9c34a344
LMI
4072011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
408
409 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
410 Tell the caller that the next line needs recomputation, even
411 though it doesn't start a sexp (bug#10094).
412
f04a3be9
SM
4132011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
414
415 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
416
7978747f
SM
4172011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
418
f04a3be9
SM
419 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
420 Use force-same-window.
7978747f 421
fe7a3057
JB
4222011-11-20 Juanma Barranquero <lekktu@gmail.com>
423
424 * descr-text.el (describe-char-unicode-data):
425 * json.el (json-string-escape):
426 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
427 (Footnote-unicode, Footnote-style-p):
428 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
429
24901d61
CY
4302011-11-20 Chong Yidong <cyd@gnu.org>
431
432 * window.el (replace-buffer-in-windows): Restore interactive spec.
433
bac7ff22
SM
4342011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
435
24f3d7b9
SM
436 * electric.el (electric-indent-mode): Fix last change (too optimistic).
437
bac7ff22
SM
438 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
439 (byte-compile-global-not-obsolete-vars): New var.
440 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
441 Use it.
442 (byte-compile-warn-obsolete): Align text with the one in *Help*.
443
cd1181db
JB
4442011-11-20 Juanma Barranquero <lekktu@gmail.com>
445
446 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
447 * progmodes/pascal.el (electric-pascal-equal):
448 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
449 * xml.el (xml-substitute-special): Fix typos.
450
7fb18e9e
GM
4512011-11-20 Glenn Morris <rgm@gnu.org>
452
453 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
454 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
455 Doc fixes.
456 (rmail-decode-mime-charset): Mark as obsolete.
457
458 * mail/rmailsum.el (rmail-message-regexp-p-1):
459 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
460 Before using mime functions, check they are set. (Bug#10077)
461
d5a6b3ba
JL
4622011-11-19 Juri Linkov <juri@jurta.org>
463
464 * info.el (Info-finder-find-node): Use `package--builtins' instead
465 of `package-alist'. Use node names formed by the pattern "Keyword "
466 and the keyword name.
467
e981b61f
AS
4682011-11-19 Andreas Schwab <schwab@linux-m68k.org>
469
470 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for
471 bash.
472
3ffbc301
JL
4732011-11-19 Juri Linkov <juri@jurta.org>
474
475 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
476 that calls `revert-buffer' on all Info buffers. (Bug#9915)
477 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
478 `old-history', `old-history-forward'. Add let-binding
479 `window-selected'. Remove calls to `kill-buffer',
480 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
481 before calling `Info-find-node', so `Info-find-node-2' will reread
482 the Info file. Restore window positions only when `window-selected'
483 is non-nil.
484
30c62133
JL
4852011-11-19 Juri Linkov <juri@jurta.org>
486
487 * isearch.el (isearch-lazy-highlight-new-loop):
488 Remove condition `(not isearch-error)'. (Bug#9918)
489
490 * misearch.el (multi-isearch-search-fun): Add condition
491 `(not bound)' to ignore lazy-highlighting search.
492 Add the search-failed message "end of multi" when the end of
493 multi-sequence is reached. Uncapitalize the search-failed
494 message "Repeat for next buffer".
495
496 * info.el (Info-search): Add the search-failed message
497 "end of the manual" when the end of the manual is reached
498 in Isearch mode.
499
645ca9cf
JL
5002011-11-19 Juri Linkov <juri@jurta.org>
501
502 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
503 Use non-destructive `remove' instead of `delete' because
504 `Info-history-list' stored to `Info-isearch-initial-history-list' in
505 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
506
df754f66
JL
5072011-11-19 Juri Linkov <juri@jurta.org>
508
509 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
510 to nil instead of binding `search-ring' and `regexp-search-ring'.
511 (Bug#9185)
512
0e23d96a
EZ
5132011-11-19 Eli Zaretskii <eliz@gnu.org>
514
515 * simple.el (line-move): Force movement by logical lines for any
516 hscrolled window, not only when auto-hscroll-mode is on.
517 (line-move-visual): Update doc string to that effect. (Bug#10076)
518
8a6ccb66
AS
5192011-11-19 Andreas Schwab <schwab@linux-m68k.org>
520
521 * language/european.el (macintosh): Define as alias for mac-roman.
522
49ae5b39
EZ
5232011-11-19 Eli Zaretskii <eliz@gnu.org>
524
525 * mail/rmailmm.el (rmail-mime-display-header)
526 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
527 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
528 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
529 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
530 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
531 of a raw aref.
532 (rmail-mime-entity-segment): To get past the tagline, move forward
533 2 more lines, to account for the 2 empty lines that precede and
534 follow the line with the buttons.
535 (rmail-mime-update-tagline): Move one more line, to get past the
536 empty line that follows the buttons in the tagline. (Bug#9520)
537
c56cad4a
MR
5382011-11-19 Martin Rudalics <rudalics@gmx.at>
539
540 * window.el (window-max-delta-1, window-min-delta-1)
541 (window-min-size-1, window-state-get-1, window-state-put-1)
542 (window-state-put-2): Use "window--" prefix.
543
cbe71af3
SM
5442011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
545
2ad52c60
SM
546 * emacs-lisp/smie.el: Improve warnings and conflict detection.
547 (smie-warning-count): New var.
548 (smie-set-prec2tab): Use it.
549 (smie-bnf->prec2): Improve warnings. Add docstring.
550 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
551 (smie-bnf--set-class): New function.
552 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
553 corner case.
554
6944dbc1
SM
555 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
556 (compilation-error-properties, compilation-move-to-column):
557 Handle compilation-first-column while in the target buffer.
558
c400c4d7
SM
559 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
560 Don't hardcode point-min==1.
561
6dbe3e96
SM
562 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
563 (eshell-rewrite-for-command): Remove workaround.
564 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
565 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
566 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
567
cbe71af3
SM
568 * files-x.el (modify-file-local-variable): Obey commenting conventions.
569
a8e1496d
GM
5702011-11-17 Glenn Morris <rgm@gnu.org>
571
572 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
573 Ignore buffer-local generated-autoload-file if it is the same
574 as the global value. (Bug#10049)
575
df85d315
JB
5762011-11-17 Juanma Barranquero <lekktu@gmail.com>
577
578 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
579 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
580 (reftex-toc-previous-heading, reftex-toc-max-level)
581 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
582 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
583 (reftex-toc-do-promote, reftex-toc-promote-prepare)
584 (reftex-toc-promote-action, reftex-toc-extract-section-number)
585 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
586 (reftex-toc-rename-label, reftex-toc-visit-location)
587 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
588 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
589 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
590 leaving "*toc*" only for references to the buffer.
591
a0c2d0ae
MR
5922011-11-17 Martin Rudalics <rudalics@gmx.at>
593
594 * window.el (window-resize, delete-window, split-window):
595 Replace window-splits by window-combination-resize.
596 * cus-start.el (window-splits): Replace by
597 window-combination-resize.
598
35c0bac8
GM
5992011-11-17 Glenn Morris <rgm@gnu.org>
600
601 * progmodes/sh-script.el (sh-font-lock-keywords-var):
602 Make bash entry derive from sh entry, not shell entry.
603
d0c8fc8a
MA
6042011-11-16 Michael Albinus <michael.albinus@gmx.de>
605
d0c8fc8a
MA
606 * net/tramp-cache.el (tramp-flush-file-property): Flush also
607 properties of linked files. (Bug#9879)
608
7262a87c
MA
609 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
610 local file name.
611
7877f373
JB
6122011-11-16 Juanma Barranquero <lekktu@gmail.com>
613
614 * menu-bar.el (menu-bar-file-menu):
615 * printing.el (pr-ps-utility):
616 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
617 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
618 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
619 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
620 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
621 (icalendar--convert-cyclic-to-ical)
622 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
623 (icalendar--convert-ical-to-diary)
624 (icalendar--convert-recurring-to-diary)
625 (icalendar--convert-non-recurring-all-day-to-diary)
626 (icalendar-import-format-sample):
627 * progmodes/idlw-shell.el (idlwave-shell-mode):
628 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
629 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
630 (vhdl-ps-print-init): Fix typos.
631
10649b82
KM
6322011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
633
9d0cfcd6
GM
634 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
635 FSF and collapse date sequence, obscure author/maintainer email address
636 better, remove extra version line, track relocation of author's webpage.
10649b82 637
9d0cfcd6
GM
638 * progmodes/python.el (python-pdbtrack-input-prompt)
639 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
640 regular python pdb prompts. Adjustments shamelessly taken exactly as
641 suggested in EmacsWiki page (tiny change):
642 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8642c216 643
58179cce
JB
6442011-11-16 Juanma Barranquero <lekktu@gmail.com>
645
646 * expand.el (expand-pos, expand-index, expand-point):
647 Remove redundant info from docstring.
648 (expand-add-abbrevs): Doc fix.
649 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
650 (expand-sample-perl-mode-expand-list): Fix typos.
651
652 * net/dbus.el (dbus-event-member-name):
653 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
654 * term/pc-win.el (msdos-create-frame-with-faces):
655 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
656
b6f67890
MR
6572011-11-16 Martin Rudalics <rudalics@gmx.at>
658
659 * window.el (split-window, window-state-get-1)
660 (window-state-put-1, window-state-put-2): Rename occurrences of
661 window-nest to window-combination-limit.
662 * cus-start.el (window-nest): Rename to
663 window-combination-limit.
664
ce7ddba0
CY
6652011-11-16 Chong Yidong <cyd@gnu.org>
666
667 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
668 regexp (Bug#10033).
669
3ae704f4
SM
6702011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
671
672 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
673 `completing-read' will remove *Completions* and will preserve
674 current-buffer for us.
675 (tmm-add-prompt): Users of *Completions* will always (re)set its
676 major mode.
677 (tmm-old-comp-map): Remove.
678
6ad1cdde
GM
6792011-11-16 Glenn Morris <rgm@gnu.org>
680
681 * mail/rmailedit.el: Require rmailmm when compiling.
682 (rmail-old-mime-state): New declaration.
683 (rmail-edit-current-message): If editing a mime message,
684 edit the "raw" message from the mbox buffer.
685 (rmail-cease-edit): Handle mime messages. (Bug#9840)
686
d20faa20
GM
6872011-11-15 Glenn Morris <rgm@gnu.org>
688
689 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
690 which wasn't being used. Add optional arg to force given state.
691 (rmail-mime): Add optional arg to force given state.
692
c7015153
JB
6932011-11-15 Juanma Barranquero <lekktu@gmail.com>
694
695 * allout.el (allout-encryption-plaintext-sanitization-regexps):
696 * frame.el (display-mm-dimensions-alist):
697 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
698 (outline-move-subtree-down):
699 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
700 (newsticker--treeview-do-get-node):
701 * net/quickurl.el (quickurl-list-buffer-name):
702 * progmodes/dcl-mode.el (dcl-mode):
703 * progmodes/gdb-mi.el (gdb-mapcar*):
704 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
705
45261b50
GM
7062011-11-15 Glenn Morris <rgm@gnu.org>
707
708 * mail/rmail.el (rmail-file-coding-system): It's only ever used
709 in a boolean sense, so just make it a boolean, and fix the doc.
710 (rmail-show-mime-function, rmail-mime-feature)
711 (rmail-require-mime-maybe): Doc fixes.
712 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
713
714 * mail/rmailmm.el (rmail-show-mime): Doc fix.
715
0d26e0b6
JB
7162011-11-15 Juanma Barranquero <lekktu@gmail.com>
717
718 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
719 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
720 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
721 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
722
447f30f6
GM
7232011-11-15 Glenn Morris <rgm@gnu.org>
724
672b871d
GM
725 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
726 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
727 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
728 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
729 (rmail-mime, rmail-show-mime): Doc fixes.
730
f6aa5bb1
GM
731 * term/ns-win.el (mode-line-frame-identification):
732 Leave it alone. (Bug#10051)
733
947cd66b
GM
734 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
735
447f30f6
GM
736 * mail/rmailout.el (rmail-output-to-rmail-buffer):
737 Handle empty buffers. (Bug#9978)
738
0b381c7e
JB
7392011-11-14 Juanma Barranquero <lekktu@gmail.com>
740
741 * international/mule.el (define-charset):
742 * mail/rmailmm.el (rmail-mime-find-header-encoding):
743 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
744 * progmodes/verilog-mode.el (verilog-backward-token):
745 * textmodes/ispell.el (lookup-words):
746 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
747
71e027ac
GM
7482011-11-14 Glenn Morris <rgm@gnu.org>
749
56632ce4
GM
750 * progmodes/executable.el
751 (executable-make-buffer-file-executable-if-script-p):
752 Handle file-modes returning nil.
753
40500957
GM
754 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
755 message - not necessary, and causes problems. (Bug#9831)
756
071c2340
GM
757 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
758
d3cfca60
GM
759 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
760
71e027ac
GM
761 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
762 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
763 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
764
89d61221
MR
7652011-11-12 Martin Rudalics <rudalics@gmx.at>
766
767 * window.el (window-resize, delete-window): Use window-splits
768 variable instead of function.
769 (window-state-get-1, window-state-put-2, window-state-put):
770 Don't deal with windows' splits status.
771
98282f6f
GM
7722011-11-12 Glenn Morris <rgm@gnu.org>
773
774 * apropos.el (apropos-do-all, apropos-library, apropos-value)
775 (apropos-documentation): Doc fixes.
776
40a8bdf6
JB
7772011-11-11 Juanma Barranquero <lekktu@gmail.com>
778
779 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
780 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
781
65bd19ff
SM
7822011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
783
784 * electric.el (electric-indent-post-self-insert-function): Make it
785 possible for a char to only indent in some circumstances.
786 (electric-indent-mode): Simplify.
787
54f9154c
MR
7882011-11-11 Martin Rudalics <rudalics@gmx.at>
789
790 * window.el (windows-with-parameter): Remove unused function.
791 (windows-at-side): Rename to window-at-side-list.
792 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
793 (window-side-check, window-size-ignore, window-size-fixed-1)
794 (window-in-direction-2): Prefix with "window--".
795 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 796
68cbc58b
GM
7972011-11-11 Glenn Morris <rgm@gnu.org>
798
799 * subr.el (eval-after-load): If FILE is already loaded,
800 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
801
b2621720
GM
8022011-11-10 Glenn Morris <rgm@gnu.org>
803
9a4de110
GM
804 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
805 Call svn via vc-svn-command rather than vc-do-command.
806 (vc-svn-command): Add --non-interactive. (Bug#9993)
807 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
808
b2621720
GM
809 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
810 Add toggle-read-only. (Bug#7292)
811 * files.el (toggle-read-only): Mention that it should only
812 be used interactively. (Bug#10006)
813
1dce7193
SM
8142011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
815
d9ac1a1e
SM
816 * progmodes/compile.el (compilation-error-regexp-alist-alist):
817 Adjust regexp for OCaml warnings.
818
0c325082
SM
819 * electric.el (electric-pair-post-self-insert-function): Let user
820 turn it off buffer-locally (bug#9932).
821
90132c14
SM
822 * progmodes/python.el (python-beginning-of-statement):
823 Rewrite (bug#2703).
824
1dce7193
SM
825 * progmodes/compile.el: Better handle TABs (bug#9749).
826 (compilation-internal-error-properties)
827 (compilation-next-error-function): Obey the target buffer's
828 compilation-error-screen-columns.
829
c4e7c63a
JB
8302011-11-09 Juanma Barranquero <lekktu@gmail.com>
831
832 * progmodes/meta-mode.el: Remove obsolete comments.
833 (meta-right-comment-regexp, meta-ignore-comment-regexp):
834 Fix typos in docstrings.
835
2cffd681
MR
8362011-11-09 Martin Rudalics <rudalics@gmx.at>
837
838 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 839 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
840 (window--resizable): New function. Make all callers of
841 window-resizable call window--resizable instead.
842 (window-resizable): Rewrite in terms of window--resizable.
843
0edcba87
GM
8442011-11-08 Glenn Morris <rgm@gnu.org>
845
846 * progmodes/delphi.el (delphi-mode-syntax-table):
847 Let define-derived-mode define a proper syntax table. (Bug#9994)
848
4b0d61e3
SM
8492011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
850
851 * window.el: Stay away from defsubst.
852 (window-list-no-nils): Remove.
853 (window-state-get-1, window-state-get): Use backquote instead.
854
fcbcac2e 8552011-11-08 thierry <thierry.volpiatto@gmail.com>
856
4b0d61e3 857 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 858 Fix incorrect use of default argument in `completing-read'.
859
e1c2c6f2
MR
8602011-11-08 Martin Rudalics <rudalics@gmx.at>
861
862 * window.el (display-buffer-function, special-display-function):
863 Mention display-buffer-record-window but do not mention
864 help-setup parameter in doc-strings.
b3f4a882 865 (window-min-delta): Fix doc-string typo.
e1c2c6f2 866
105216ed
CY
8672011-11-08 Chong Yidong <cyd@gnu.org>
868
869 * window.el (window-total-height, window-total-width): Doc fix.
870 (window-body-size): Move from C.
871 (window-body-height, window-body-width): Move to C.
872
0a9f9ab5
SM
8732011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
874
875 * window.el: Make special-display like display-buffer-alist (bug#9532).
876 (display-buffer--special-action): New function, morphed
877 from display-buffer--special.
878 (display-buffer): Use it to handle special-display-buffers at higher
879 priority (just after display-buffer-alist).
880 (display-buffer-fallback-action, display-buffer--other-frame-action)
881 (pop-to-buffer-same-window): Remove display-buffer--special.
882
a769dd15
GM
8832011-11-07 Glenn Morris <rgm@gnu.org>
884
885 * calendar/cal-menu.el (cal-menu-set-date-title):
886 Do nothing if not in a calendar. (Bug#9976)
887
05a61ee3
SM
8882011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
889
890 * files.el (find-file): Always use selected-window.
891
be7f5545
MR
8922011-11-07 Martin Rudalics <rudalics@gmx.at>
893
894 * window.el (window-combinations): Make WINDOW argument
895 mandatory. Rewrite doc-string.
896 (walk-window-subtree, window-atom-check, window-min-delta)
897 (window-max-delta, window--resize-this-window)
898 (window--resize-root-window-vertically, window-tree)
899 (balance-windows, window-state-put): Rewrite doc-strings as to
900 not mention the term "subwindow".
901 (window--resize-subwindows-skip-p): Rename to
902 window--resize-child-windows-skip-p.
903 (window--resize-subwindows-normal): Rename to
904 window--resize-child-windows-normal.
905 (window--resize-subwindows): Rename to
906 window--resize-child-windows.
907 (window-or-subwindow-p): Rename to window--in-subtree-p.
908
3c6702ef
ML
9092011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
910
911 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
912 Ensure that mbox format messages end in two newlines (Bug#9974).
913
49745b39
CY
9142011-11-06 Chong Yidong <cyd@gnu.org>
915
916 * window.el (window-combination-p): Function deleted; its
917 side-effect is not used in any existing code.
918 (window-combinations, window-combined-p): Call window-*-child
919 directly.
920
24300f5f
CY
9212011-11-05 Chong Yidong <cyd@gnu.org>
922
923 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
924 (window-size-ignore, window-state-get): Callers changed.
925 (window-normalize-window): Rename from window-normalize-any-window.
926 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 927 (window-normalize-live-window): Delete.
447f16b8
CY
928 (window-combination-p, window-combined-p, window-combinations)
929 (walk-window-subtree, window-atom-root, window-min-size)
930 (window-sizable, window-sizable-p, window-size-fixed-p)
931 (window-min-delta, window-max-delta, window-resizable)
932 (window-resizable-p, window-full-height-p, window-full-width-p)
933 (window-current-scroll-bars, window-point-1, set-window-point-1)
934 (window-at-side-p, window-in-direction, window-resize)
935 (adjust-window-trailing-edge, maximize-window, minimize-window)
936 (window-deletable-p, delete-window, delete-other-windows)
937 (record-window-buffer, unrecord-window-buffer)
938 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
939 (quit-window, split-window, window-state-put)
940 (set-window-text-height, fit-window-to-buffer)
941 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 942
89bd5ee1
EZ
9432011-11-04 Eli Zaretskii <eliz@gnu.org>
944
53479029
EZ
945 * mail/rmail.el (rmail-simplified-subject): Decode subject with
946 rfc2047-decode-string.
947 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
948 warnings.
949
89bd5ee1
EZ
950 * window.el (window-body-height, window-body-width): Mention in
951 the doc string that the return values are in frame's canonical
952 units. (Bug#9949)
953
bd17fdee
AM
9542011-11-03 Alan Mackenzie <acm@muc.de>
955
956 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
957 change in cc-engine.el.
958
acc825c5
SM
9592011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
960
961 * window.el (switch-to-buffer): Use `force-same-window' interactively.
962
1885e5b8
MR
9632011-11-02 Martin Rudalics <rudalics@gmx.at>
964
965 * window.el (quit-window): Call unrecord-window-buffer after
966 showing another buffer in the window. (Bug#9937)
acc825c5 967 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 968
ebe06da9
JB
9692011-11-02 Juanma Barranquero <lekktu@gmail.com>
970
971 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
972 Accept status with more than 9 shelves. (Bug#9935)
973 Reported by Colin D Bennett <colin@gibibit.com>.
974
4ee88440
MR
9752011-11-01 Martin Rudalics <rudalics@gmx.at>
976
977 * help.el (with-help-window): Don't reference
978 temp-buffer-show-specifiers in doc-string.
979
08e1d82c
AS
9802011-10-31 Andreas Schwab <schwab@linux-m68k.org>
981
982 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
983 menu-item.
984
84bd6e9e
VJL
9852011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
986
987 * whitespace.el: New version 13.2.2.
988 (whitespace-newline-mode): Disable properly. Reported by Sarah
989 <EmacsWiki>.
990
dba0634a
UJ
9912011-10-30 Ulf Jasper <ulf.jasper@web.de>
992
993 * net/newst-treeview.el: Remove "Time-stamp".
994 (newsticker--group-manage-orphan-feeds): Do not call
995 newsticker--treeview-tree-update.
db22a3c2
JB
996 (newsticker-treeview-update, newsticker-treeview):
997 Call newsticker--treeview-tree-update if necessary.
dba0634a 998
3d8daefe
MR
9992011-10-30 Martin Rudalics <rudalics@gmx.at>
1000
1001 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
1002 (window-iso-combinations): Remove "iso-" infix.
1003 Suggested by Chong Yidong.
3d8daefe
MR
1004 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
1005 (window-max-delta-1, window-resize, window--resize-siblings)
1006 (window--resize-this-window, adjust-window-trailing-edge)
1007 (split-window, balance-windows-1)
1008 (shrink-window-if-larger-than-buffer):
1009 * calendar/calendar.el (calendar-generate-window):
db22a3c2 1010 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 1011
1bc4c3ae
SM
10122011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
1013
1014 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
1015 in place (bug#9907).
1016 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
1017 (eshell-rewrite-if-command, eshell-rewrite-for-command)
1018 (eshell-structure-basic-command, eshell-rewrite-while-command)
1019 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
1020 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
1021 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
1022 (eshell-do-pipelines-synchronously, eshell-eval-command):
1023 Use backquotes and prefer setq to set.
1024 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
1025 (eshell-macrop): Use functionp.
c1e2f5fa 1026 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 1027
30b65d9c
CY
10282011-10-30 Chong Yidong <cyd@gnu.org>
1029
1030 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
1031 instead of set-mark (Bug#9810).
1032
2d197ffb
CY
10332011-10-30 Chong Yidong <cyd@gnu.org>
1034
1035 * window.el (split-window-below, split-window-right): Rename from
1036 split-window-above-each-other and split-window-side-by-side
1037 respectively. All callers changed.
1038 (split-window-sensibly, split-window-sensibly): Use them.
1039 (split-window-keep-point): Doc fix.
1040
1041 * isearch.el: Add isearch-scroll property to split-window-below
1042 and split-window-right.
1043
1044 * follow.el (follow-mode):
1045 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
1046 * progmodes/ada-xref.el (ada-gdb-application):
1047 * emulation/vip.el (vip-buffer-in-two-windows):
1048 * image-dired.el (image-dired-dired-with-window-configuration):
1049 * dired-x.el (dired-do-find-marked-files):
1050 * dired.el (dired-pop-to-buffer):
1051 * bs.el (bs--show-with-configuration):
1052 * vc/emerge.el (emerge-setup-windows):
1053 * textmodes/two-column.el (2C-two-columns):
1054 * textmodes/reftex-toc.el (reftex-toc):
1055 * progmodes/gdb-mi.el (gdb-setup-windows):
1056 * progmodes/fortran.el (fortran-window-create):
1057 * net/newst-treeview.el (newsticker--treeview-window-init):
1058 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
1059 * emulation/tpu-edt.el (tpu-gold-map):
1060 * emulation/crisp.el (crisp-mode-map):
1061 * calendar/calendar.el (calendar-basic-setup): Callers changed.
1062
38bb2ca8
CY
10632011-10-29 Chong Yidong <cyd@gnu.org>
1064
aa4de341
CY
1065 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
1066
e1eb5385
CY
1067 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
1068
5d2ece3c
CY
1069 * textmodes/flyspell.el (flyspell-word): Fix char offset for
1070 forged Ispell output (Bug#7904).
1071
38bb2ca8
CY
1072 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
1073
d0af9f77
SM
10742011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1075
1076 * doc-view.el: Avoid ugly errors about not finding nil.
1077 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
1078 (doc-view-dvipdf-program, doc-view-unoconv-program)
1079 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
1080 Avoid nil or absolute file name as default value.
1081 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
1082
52bedd34
AM
10832011-10-28 Alan Mackenzie <acm@muc.de>
1084
db22a3c2 1085 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 1086
7e43cfa5
AM
10872011-10-28 Alan Mackenzie <acm@muc.de>
1088
1089 Amend the handling of c-beginning/end-of-defun in nested declaration
1090 scopes.
1091
52bedd34
AM
1092 * progmodes/cc-vars.el (c-defun-tactic): Move here from
1093 cc-langs.el. Change it to a defcustom.
7e43cfa5 1094
52bedd34
AM
1095 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
1096 cc-vars.el.
7e43cfa5 1097
d0af9f77
SM
1098 * progmodes/cc-engine.el (c-beginning-of-statement-1):
1099 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 1100
52bedd34 1101 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 1102 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
1103 (c-widen-to-enclosing-decl-scope): New function.
1104 (c-while-widening-to-decl-block): New macro.
1105 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
1106 outward for defun boundaries, and correspondingly change symbol
1107 `respect-enclosure' to `go-outward'.
1108 (c-declaration-limits): Change algorithm to report only the "innermost"
1109 defun's boundaries.
1110
1a2ce9ee
DD
11112011-10-28 Deniz Dogan <deniz@dogan.se>
1112
1113 * net/rcirc.el (rcirc-mode): Use hard newlines.
1114
bc97a826
AM
11152011-10-28 Alan Mackenzie <acm@muc.de>
1116
1117 Amend to indent and fontify macros "which include their own semicolon"
1118 correctly, using the "virtual semicolon" mechanism.
1119
52bedd34 1120 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 1121
d0af9f77 1122 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7877f373 1123 Recode to scan one line at a time rather than having \n and \r
58179cce 1124 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
bc97a826 1125 (c-forward-label): Amend for virtual semicolons.
58179cce 1126 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
bc97a826 1127
52bedd34
AM
1128 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
1129 of the new C macros.
bc97a826 1130
52bedd34 1131 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
1132 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
1133 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
1134 (c-opt-cpp-macro-define): Make into a full language variable.
1135 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
1136 AWK Mode (including \n, \r) removed, no longer needed.
1137
d0af9f77
SM
1138 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
1139 Invoke c-make-macro-with-semi-re.
bc97a826 1140
52bedd34
AM
1141 * progmodes/cc-vars.el (c-macro-with-semi-re):
1142 (c-macro-names-with-semicolon): New variables.
58179cce 1143 (c-make-macro-with-semi-re): New function.
bc97a826 1144
7a6c0941
SM
11452011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1146
1147 * vc/log-edit.el: Fill empty field rather than adding new one.
1148 (log-edit-add-field): New function.
1149 (log-edit-insert-changelog): Use it.
1150
b0c4cdcf
ML
11512011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
1152
1153 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
1154
ee1f1da9
SM
11552011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1156
1157 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
1158 (gdb--check-interpreter): New function.
1159 (gdb): Use it.
1160
51bc5f8b
GM
11612011-10-27 Glenn Morris <rgm@gnu.org>
1162
416a2c45
GM
1163 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
1164 (least-positive-float, least-negative-float)
1165 (least-positive-normalized-float, least-negative-normalized-float)
1166 (float-epsilon, float-negative-epsilon):
1167 Remove unnecessary declarations.
1168
1169 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
1170 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
1171 (least-positive-float, least-negative-float)
1172 (least-positive-normalized-float, least-negative-normalized-float)
1173 (float-epsilon, float-negative-epsilon): Add doc-strings,
1174 based on those in cl.texi.
1175
51bc5f8b
GM
1176 * files.el (set-visited-file-name): If the major-mode changed,
1177 reload the local variables. (Bug#9796)
1178
15de15c6
CY
11792011-10-27 Chong Yidong <cyd@gnu.org>
1180
1181 * subr.el (change-major-mode-after-body-hook): New hook.
1182 (run-mode-hooks): Run it.
1183
ee1f1da9
SM
1184 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1185 Use change-major-mode-before-body-hook.
15de15c6
CY
1186
1187 * simple.el (fundamental-mode):
1188 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
1189 change introducing fundamental-mode-hook.
1190
5430d399
JB
11912011-10-26 Juanma Barranquero <lekktu@gmail.com>
1192
acc825c5 1193 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 1194
ad74a69e
MA
11952011-10-26 Michael Albinus <michael.albinus@gmx.de>
1196
1197 * ido.el (ido-file-name-all-completions-1): Do not require
c7015153 1198 tramp.el explicitly. (Bug#7583)
ad74a69e 1199
71d4c2a5
SM
12002011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1201
1202 * progmodes/octave-mod.el:
1203 * progmodes/octave-inf.el: Update maintainer.
1204
b1f6fa26
CY
12052011-10-26 Chong Yidong <cyd@gnu.org>
1206
1207 * subr.el (with-wrapper-hook): Rewrite doc.
1208
3f04efd6
MA
12092011-10-25 Michael Albinus <michael.albinus@gmx.de>
1210
1211 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 1212 filenames "/method:foo:". (Bug#9793)
3f04efd6 1213
410488d3
SM
12142011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1215
1216 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
1217 (bug#9865).
1218
c1ebb47e
GM
12192011-10-24 Glenn Morris <rgm@gnu.org>
1220
1221 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
1222
7f5c46c7
MA
12232011-10-24 Michael Albinus <michael.albinus@gmx.de>
1224
1225 * notifications.el: Add the requirement of a running D-Bus session
1226 bus to the Commentary.
1227
db2440b6
JL
12282011-10-24 Juri Linkov <juri@jurta.org>
1229
1230 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
1231 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
1232 (Bug#9364)
1233
feecf435
JL
12342011-10-24 Juri Linkov <juri@jurta.org>
1235
1236 * info.el (Info-following-node-name-re): Add newline to the list
1237 of allowed characters for leading space. (Bug#9824)
1238
a3839de2
SM
12392011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1240
acc825c5
SM
1241 * progmodes/octave-inf.el (inferior-octave-mode-map):
1242 Fix C-c C-h binding.
a3839de2
SM
1243 * progmodes/octave-mod.el (octave-help): Remove.
1244
09388e76
MA
12452011-10-23 Michael Albinus <michael.albinus@gmx.de>
1246
1247 Sync with Tramp 2.2.3.
1248
1249 * net/tramp-cache.el (top): Pacify byte-compiler using
1250 `init-file-user' and `site-run-file'.
1251
1252 * net/trampver.el: Update release number.
1253
86c60681
CY
12542011-10-23 Chong Yidong <cyd@gnu.org>
1255
1256 * files.el (toggle-read-only): Remove obsolete comment about
1257 version control.
1258
1259 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
1260 for toggle-read-only. Note that this hasn't called vc-next-action
1261 since 2008-05-02, though it wasn't documented at the time.
1262
a3839de2
SM
1263 * vc/ediff-init.el (ediff-toggle-read-only-function):
1264 Use toggle-read-only.
86c60681 1265
cd5495ff
AM
12662011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
1267
1268 Fix bug #9560, sporadic wrong indentation; improve instrumentation
1269 of c-parse-state.
1270
00b77525 1271 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 1272 correct faulty logical expression.
cd5495ff
AM
1273 (c-parse-state-state, c-record-parse-state-state):
1274 (c-replay-parse-state-state): New defvar/defuns.
1275 (c-debug-parse-state): Use new functions.
1276
42ee24ed
MR
12772011-10-22 Martin Rudalics <rudalics@gmx.at>
1278
1279 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 1280 last fix. Use window-in-direction correctly.
42ee24ed 1281
a7dee7e7
CY
12822011-10-21 Chong Yidong <cyd@gnu.org>
1283
1284 * progmodes/idlwave.el (idlwave-mode):
1285 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
1286 require-final-newline; that's done in prog-mode.
1287 Suggested by Stefan Monnier.
a7dee7e7 1288
e07b9a6d
MR
12892011-10-21 Martin Rudalics <rudalics@gmx.at>
1290
1291 * mouse.el (mouse-drag-window-above)
1292 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
1293 (mouse-drag-mode-line-1, mouse-drag-header-line)
1294 (mouse-drag-vertical-line-rightward-window): Remove.
1295 (mouse-drag-line): New function.
1296 (mouse-drag-mode-line, mouse-drag-header-line)
1297 (mouse-drag-vertical-line): Call mouse-drag-line.
1298 * window.el (window-at-side-p, windows-at-side): New functions.
1299
7e1361d9
UM
13002011-10-21 Ulrich Mueller <ulm@gentoo.org>
1301
1302 * tar-mode.el (tar-grind-file-mode):
1303 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
1304
30fcaf3a
CY
13052011-10-21 Chong Yidong <cyd@gnu.org>
1306
1307 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
1308 * progmodes/vera-mode.el (vera-mode):
1309 Use mode-require-final-newline.
30fcaf3a 1310
516eddb0
GM
13112011-10-20 Glenn Morris <rgm@gnu.org>
1312
db22a3c2 1313 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 1314
10d5f513
CS
13152011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
1316
1317 * emulation/cua-base.el (cua-set-mark): Fix case of string.
1318
ac6c8639
CY
13192011-10-20 Chong Yidong <cyd@gnu.org>
1320
1321 * emulation/cua-base.el (cua-mode):
1322 * mail/footnote.el (footnote-mode):
1323 * mail/mailabbrev.el (mail-abbrevs-mode):
1324 * net/xesam.el (xesam-minor-mode):
1325 * progmodes/bug-reference.el (bug-reference-mode):
1326 * progmodes/cap-words.el (capitalized-words-mode):
1327 * progmodes/compile.el (compilation-minor-mode)
1328 (compilation-shell-minor-mode):
1329 * progmodes/gud.el (gud-tooltip-mode):
1330 * progmodes/hideif.el (hide-ifdef-mode):
1331 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
1332 * progmodes/subword.el (subword-mode):
1333 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
1334 * progmodes/which-func.el (which-function-mode):
1335 * term/tvi970.el (tvi970-set-keypad-mode):
1336 * term/vt100.el (vt100-wide-mode):
1337 * textmodes/flyspell.el (flyspell-mode):
1338 * textmodes/ispell.el (ispell-minor-mode):
1339 * textmodes/nroff-mode.el (nroff-electric-mode):
1340 * textmodes/paragraphs.el (use-hard-newlines):
1341 * textmodes/refill.el (refill-mode):
1342 * textmodes/reftex.el (reftex-mode):
1343 * textmodes/rst.el (rst-minor-mode):
1344 * textmodes/sgml-mode.el (html-autoview-mode)
1345 (sgml-electric-tag-pair-mode):
1346 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
1347 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
1348 * emulation/crisp.el (crisp-mode):
1349 * emacs-lisp/eldoc.el (eldoc-mode):
1350 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
1351 minor mode behavior.
1352
aa42ab43
JL
13532011-10-19 Juri Linkov <juri@jurta.org>
1354
1355 * descr-text.el (describe-char): Add #x2010 and #x2011 to
1356 the list of hard-coded chars with escape-glyph face.
1357
89400f1d
SM
13582011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1359
1360 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
1361
305c07f6
MA
13622011-10-19 Michael Albinus <michael.albinus@gmx.de>
1363
1364 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
1365 running process.
1366
13754b54
GM
13672011-10-19 Glenn Morris <rgm@gnu.org>
1368
1369 * vc/vc-bzr.el (vc-bzr-after-dir-status):
1370 Ignore ignored files. (Bug#9726)
1371
06e21633
CY
13722011-10-19 Chong Yidong <cyd@gnu.org>
1373
1374 Doc fix for minor modes, stating that an omitted argument enables
1375 the mode unconditionally when called from Lisp.
1376
1377 * abbrev.el (abbrev-mode):
1378 * allout.el (allout-mode):
1379 * autoinsert.el (auto-insert-mode):
1380 * autoarg.el (autoarg-mode, autoarg-kp-mode):
1381 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
1382 (global-auto-revert-mode):
1383 * battery.el (display-battery-mode):
1384 * composite.el (global-auto-composition-mode)
1385 (auto-composition-mode):
1386 * delsel.el (delete-selection-mode):
1387 * desktop.el (desktop-save-mode):
1388 * dired-x.el (dired-omit-mode):
1389 * dirtrack.el (dirtrack-mode):
1390 * doc-view.el (doc-view-minor-mode):
1391 * double.el (double-mode):
1392 * electric.el (electric-indent-mode, electric-pair-mode):
1393 * emacs-lock.el (emacs-lock-mode):
1394 * epa-hook.el (auto-encryption-mode):
1395 * follow.el (follow-mode):
1396 * font-core.el (font-lock-mode):
1397 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
1398 * help.el (temp-buffer-resize-mode):
1399 * hilit-chg.el (highlight-changes-mode)
1400 (highlight-changes-visible-mode):
1401 * hi-lock.el (hi-lock-mode):
1402 * hl-line.el (hl-line-mode, global-hl-line-mode):
1403 * icomplete.el (icomplete-mode):
1404 * ido.el (ido-everywhere):
1405 * image-file.el (auto-image-file-mode):
1406 * image-mode.el (image-minor-mode):
1407 * iswitchb.el (iswitchb-mode):
1408 * jka-cmpr-hook.el (auto-compression-mode):
1409 * linum.el (linum-mode):
1410 * longlines.el (longlines-mode):
1411 * master.el (master-mode):
1412 * mb-depth.el (minibuffer-depth-indicate-mode):
1413 * menu-bar.el (menu-bar-mode):
1414 * minibuf-eldef.el (minibuffer-electric-default-mode):
1415 * mouse-sel.el (mouse-sel-mode):
1416 * msb.el (msb-mode):
1417 * mwheel.el (mouse-wheel-mode):
1418 * outline.el (outline-minor-mode):
1419 * paren.el (show-paren-mode):
1420 * recentf.el (recentf-mode):
1421 * reveal.el (reveal-mode, global-reveal-mode):
1422 * rfn-eshadow.el (file-name-shadow-mode):
1423 * ruler-mode.el (ruler-mode):
1424 * savehist.el (savehist-mode):
1425 * scroll-all.el (scroll-all-mode):
1426 * scroll-bar.el (scroll-bar-mode):
1427 * server.el (server-mode):
1428 * shell.el (shell-dirtrack-mode):
1429 * simple.el (auto-fill-mode, transient-mark-mode)
1430 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
1431 (line-number-mode, column-number-mode, size-indication-mode)
1432 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
1433 * strokes.el (strokes-mode):
1434 * time.el (display-time-mode):
1435 * t-mouse.el (gpm-mouse-mode):
1436 * tool-bar.el (tool-bar-mode):
1437 * tooltip.el (tooltip-mode):
1438 * type-break.el (type-break-mode-line-message-mode)
1439 (type-break-query-mode):
1440 * view.el (view-mode):
1441 * whitespace.el (whitespace-mode, whitespace-newline-mode)
1442 (global-whitespace-mode, global-whitespace-newline-mode):
1443 * xt-mouse.el (xterm-mouse-mode): Doc fix.
1444
a3839de2
SM
1445 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1446 Fix autogenerated docstring.
06e21633 1447
5214e501
JL
14482011-10-19 Juri Linkov <juri@jurta.org>
1449
1450 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
1451 by checking environment variables "DESKTOP_SESSION" and
1452 "XDG_CURRENT_DESKTOP". (Bug#9779)
1453
195f8db9
JL
14542011-10-19 Juri Linkov <juri@jurta.org>
1455
1456 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
1457 (browse-url-chromium-program, browse-url-chromium-arguments):
1458 New defcustoms.
1459 (browse-url-default-browser): Check for `browse-url-chromium' and
1460 call `browse-url-chromium-program'.
1461 (browse-url-chromium): New command. (Bug#9779)
1462
343a34ff
JB
14632011-10-18 Juanma Barranquero <lekktu@gmail.com>
1464
1465 * facemenu.el (list-colors-duplicates): On Windows, detect more
1466 duplicates by assuming that only colors matching "^System" are
1467 special "system colors". (Bug#9722)
1468
6978a151
SM
14692011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1470
1471 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
1472 to distinguish the author from the committer.
1473
6a80b297
MA
14742011-10-18 Michael Albinus <michael.albinus@gmx.de>
1475
1476 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
1477
b31a5677
JK
14782011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
1479
1480 * international/mule.el (sgml-html-meta-auto-coding-function):
1481 Add support for detecting encoding in HTML5 specified only as
1482 <meta charset="UTF-8">. Implementation just makes http-equiv and
1483 content-type parts from HTML4 encoding string optional. (Bug#9716)
1484
80c6d77f
GM
14852011-10-18 Glenn Morris <rgm@gnu.org>
1486
1487 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
1488
08b0fee8
CY
14892011-10-18 Chong Yidong <cyd@gnu.org>
1490
1491 * faces.el (cursor): Doc fix.
1492
67e729a5
CY
14932011-10-17 Chong Yidong <cyd@gnu.org>
1494
1495 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
1496
343a34ff 14972011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
1498
1499 * dirtrack.el (dirtrack): Support shell buffers with path
1500 prefixes, e.g. tramp-based remote shells. (Bug#9647)
1501
0bc06380
TZ
15022011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
1503
1504 * json.el: Bump version to 1.3 and note change in History.
1505 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
1506
8b79f3e0
SM
15072011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
1508
5a7c536b
SM
1509 * comint.el (comint-insert-input, comint-send-input)
1510 (comint-get-old-input-default, comint-backward-matching-input)
1511 (comint-next-prompt): Use nil instead of `input' for field property of
1512 past user input (bug#114).
1513
96a8a0df
SM
1514 * minibuffer.el (completion--replace): Inherit surrounding properties
1515 (bug#114).
1516 (minibuffer-complete-and-exit): Use it.
1517
8b79f3e0
SM
1518 * comint.el (comint--table-subvert): Quote the all-completions output
1519 (bug#9160).
1520
b8f7ff0d
MR
15212011-10-17 Martin Rudalics <rudalics@gmx.at>
1522
8b79f3e0 1523 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 1524
b8f7ff0d 1525 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 1526 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
1527 entries and separate them from frame entries.
1528
c235b555
GM
15292011-10-15 Glenn Morris <rgm@gnu.org>
1530
1531 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
1532 Doc fixes.
1533
6bbfa6e1
CY
15342011-10-15 Chong Yidong <cyd@stupidchicken.com>
1535
8b79f3e0
SM
1536 * net/network-stream.el (network-stream-open-starttls):
1537 Improve detection of failure due to lack of TLS support.
ec5c990d 1538
6bbfa6e1
CY
1539 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
1540 putting the input text in front and in bold.
1541
98488977
SM
15422011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
1543
3d1337be
SM
1544 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
1545
ee0b45e4
SM
1546 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
1547 empty buffer.
1548
98488977
SM
1549 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
1550 unread-command-events rather than pushing yet-another event.
1551
186f4720
EZ
15522011-10-14 Eli Zaretskii <eliz@gnu.org>
1553
1554 * mail/sendmail.el (sendmail-query-once): Improve the wording of
1555 the explanation of the possible choices. Make the options passed
1556 to completing-read shorter.
1557
8b7a997c
AM
15582011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1559
1560 * textmodes/flyspell.el (flyspell-large-region): Make sure
1561 extended character mode is used if defined (Bug#1339).
1562
12587bbb
EZ
15632011-10-13 Eli Zaretskii <eliz@gnu.org>
1564
1565 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
1566 character info for LRE, LRO, RLE, and RLO characters by appending
1567 an invisible PDF.
12587bbb 1568
bad41229
SM
15692011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
1570
1571 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
1572 even in case of error; add debug spec; simplify data flow.
1573 (with-timeout-handler): Remove.
1574
28dbc92f
MA
15752011-10-12 Michael Albinus <michael.albinus@gmx.de>
1576
1577 Fix Bug#6019, Bug#9315.
1578
1579 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
1580 complete `buffer-file-name', the local file name part could look
1581 remotely (for example on VMS).
1582
1583 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
1584 `tramp-run-real-handler'.
1585 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
1586 already quoted by '"'.
1587
1588 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
1589 Let `file-name-handler-alist' be nil, the local file name part
1590 could look remotely (for example on VMS).
1591
e1b0b23a
SM
15922011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1593
1594 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
1595 from here...
1596 (flyspell-post-command-hook): ...to here.
1597
a120bde9
SM
15982011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1599
1600 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
1601 if not needed.
1602 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
1603 using completion. Protect against "slow" callers.
1604 Remove the "message hack".
1605
7ce7717b
JL
16062011-10-11 Juri Linkov <juri@jurta.org>
1607
1608 * isearch.el (isearch-lazy-highlight-word): New variable.
1609 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
1610 Use it. (Bug#9727)
1611
c02ee9d6
GM
16122011-10-11 Glenn Morris <rgm@gnu.org>
1613
1614 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
1615 like f90-previous-statement does.
1616
93e616fd 16172011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1618
1f190e73 1619 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
1620 only in interactive use, to avoid error.
1621
af7b6078
SM
16222011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1623
1624 * minibuffer.el (completion-file-name-table): Fix last change,
1625 i.e. ignore normal errors but not the other ones.
1626
0563dae9
MR
16272011-10-10 Martin Rudalics <rudalics@gmx.at>
1628
1629 * window.el (special-display-buffer-names)
1630 (special-display-regexps): Remove some remnants of earlier
1631 changes from doc-strings.
366ca7f3
MR
1632 (quit-windows-on): New function.
1633
1634 * vc/vc.el (vc-revert, vc-rollback):
1635 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
1636 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 1637 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 1638
49677495
MR
16392011-10-09 Martin Rudalics <rudalics@gmx.at>
1640
1641 * window.el (frame-auto-hide-function): Add version tag.
1642 (Bug#9699)
1643
56f2d1e1
MA
16442011-10-09 Michael Albinus <michael.albinus@gmx.de>
1645
1646 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
1647 condition.
1648
112a6592
LL
16492011-10-09 Leo Liu <sdl.web@gmail.com>
1650
1651 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
1652 (Bug#9701)
1653
0812589b
GM
16542011-10-08 Glenn Morris <rgm@gnu.org>
1655
1656 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
1657 before the first code statement zero indent. (Bug#9690)
1658
b2b0776e
CY
16592011-10-08 Chong Yidong <cyd@stupidchicken.com>
1660
1661 * simple.el (count-words-region): Always count in the region.
1662 Report the number of lines and characters too.
1663 (count-words): New command, which counts in the buffer if the
1664 region is inactive, as count-words-region used to.
1665 (count-words--message): New function. Handle plurals.
1666 (count-lines-region): Make it an alias for count-words-region.
1667
1668 * bindings.el (esc-map): Replace count-lines-region with
1669 count-words-region.
1670
c557cd6b
MR
16712011-10-08 Martin Rudalics <rudalics@gmx.at>
1672
1673 * window.el (window--delete): Delete dedicated frame
1674 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 1675 (switch-to-buffer): Fix doc-string typo.
c557cd6b 1676
61a57ef4 16772011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1678
1679 * lisp/eshell/eshell.el (eshell-command): Avoid using hooks.
1680
c3833279
CY
16812011-10-07 Chong Yidong <cyd@stupidchicken.com>
1682
1683 * bindings.el ([M-left],[M-right]): Bind to left-word and
1684 right-word respectively.
1685
21ce8245
GM
16862011-10-07 Glenn Morris <rgm@gnu.org>
1687
1688 * cus-start.el (debug-on-quit): Fix custom type.
1689
6d823bb2
LMI
16902011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
1691
0181e193
LMI
1692 * subr.el (define-key-after): Clarify that the function is not
1693 useful for non-menu keymaps.
1694
6d823bb2
LMI
1695 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
1696
8e3459ce 16972011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1698
21ce8245 1699 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 1700 in current minibuffer (Fix bug with recursive minibuffers).
1701
a1c2d21e
CY
17022011-10-06 Chong Yidong <cyd@stupidchicken.com>
1703
1704 * progmodes/gdb-mi.el (gdb): Doc fix.
1705
5a4cf282
MR
17062011-10-05 Martin Rudalics <rudalics@gmx.at>
1707
1708 * window.el (frame-auto-hide-function): New option replacing
1709 frame-auto-delete. Suggested by Stefan Monnier.
1710 (window--delete): Call frame-auto-hide-function instead of
1711 investigating frame-auto-delete.
c96111ea
MR
1712 (window-point-1, set-window-point-1): New functions.
1713 (window-in-direction, record-window-buffer, window-state-get-1)
1714 (display-buffer-record-window): Use window-point-1 instead of
1715 window-point.
1716 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 1717
9854542e
SM
17182011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1719
1720 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
1721
8943cfb0
GM
17222011-10-05 Glenn Morris <rgm@gnu.org>
1723
1724 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
1725 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
1726
647ab967
LL
17272011-10-05 Leo Liu <sdl.web@gmail.com>
1728
1729 * subr.el (read-char-choice): Fix argument to buffer-live-p which
1730 works with buffer object.
1731
3ddfbced
SM
17322011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1733
1734 * mpc.el (mpc-tool-bar-map): Add labels.
1735
bdfa5dd2
GM
17362011-10-04 Glenn Morris <rgm@gnu.org>
1737
1738 * calendar/holidays.el (calendar-check-holidays): Doc fix.
1739
0e2070b5
MR
17402011-10-04 Martin Rudalics <rudalics@gmx.at>
1741
1742 * window.el (window--delete): New function.
1743 (frame-auto-delete): Resuscitate option.
1744 (bury-buffer, replace-buffer-in-windows)
1745 (quit-window): Rewrite using window--delete.
1746 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1747 Pass display-buffer-mark-dedicated to window--display-buffer-2
1748 (Bug#9639).
1749
3dc61a09
SM
17502011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1751
915a9b64
SM
1752 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
1753 returns a list (bug#9554). Add remote file name completion.
1754 * comint.el (comint--table-subvert): Curry and get quote&unquote
1755 functions as arguments.
1756 (comint--complete-file-name-data): Adjust call accordingly.
1757 * pcomplete.el (pcomplete--table-subvert): Remove.
1758 (pcomplete-completions-at-point): Use comint--table-subvert instead.
1759
3dc61a09
SM
1760 * minibuffer.el (completion-table-case-fold): Use currying.
1761 (completion--styles-type, completion--cycling-threshold-type):
1762 New constants.
1763 (completion-styles, completion-category-overrides)
1764 (completion-cycle-threshold): Use them.
1765 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
1766 completion-table-case-fold.
1767
8ea0a993
SB
17682011-10-03 Stephen Berman <stephen.berman@gmx.net>
1769
1770 * minibuffer.el (completion-category-overrides): Fix type of styles
1771 and add more user friendly tags (bug#9660).
1772
8c24b7f6
SM
17732011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1774
1775 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
1776 (mule-input-method-string): New widget.
1777 (default-input-method, language-info-custom-alist): Use it.
1778
428fe61a
SM
17792011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1780
32c1fffd
SM
1781 * pcomplete.el: Require comint.
1782 (pcomplete--common-suffix): Remove.
1783 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
1784 (pcomplete--table-subvert): Sync with comint--table-subvert.
1785 (pcomplete--entries): Use comint-completion-file-name-table.
1786 * comint.el (comint-unquote-filename): Simplify.
1787 (comint-completion-file-name-table): New function (bug#9616).
1788 (comint--complete-file-name-data): Use it.
1789
428fe61a
SM
1790 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
1791 (pcmpl-gnu-tar-buffer): Remove.
1792 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
1793 around. Make sure pcomplete-suffix-list is only changed temporarily.
1794 Don't look inside the tar's file if it's too large.
428fe61a 1795
04c52e2f
CY
17962011-10-01 Chong Yidong <cyd@stupidchicken.com>
1797
ce3cefcc
CY
1798 * cus-edit.el (custom-mode-map):
1799 * epa.el (epa-key-list-mode-map):
1800 * man.el (Man-mode-map):
1801 * startup.el (splash-screen-keymap):
1802 * simple.el (special-mode-map): Use scroll-up-command and
1803 scroll-down-command.
1804
1805 * progmodes/idlw-help.el (idlwave-help-mode-map):
1806 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
1807 * net/newst-plainview.el (newsticker-mode-map):
1808 * emulation/ws-mode.el (wordstar-mode-map):
1809 * emulation/vi.el (vi-com-map):
1810 * calc/calc-graph.el (calc-graph-show-dumb):
1811 * term/sun.el (terminal-init-sun):
1812 * term/ns-win.el (global-map):
1813 * progmodes/grep.el (grep-mode-map):
1814 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
1815 * mail/rmail.el (rmail-mode-map):
1816 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
1817
04c52e2f
CY
1818 * custom.el (custom-safe-themes, load-theme): Treat value of t for
1819 custom-safe-themes as special.
1820
79adf8c8
JD
18212011-10-01 Julien Danjou <julien@danjou.info>
1822
1823 * notifications.el (notifications-notify): Fix docstring.
1824
63bd50d3
PS
18252011-10-01 Per Starbäck <per@starback.se>
1826
1827 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
1828
199e4c7e
MR
18292011-09-30 Martin Rudalics <rudalics@gmx.at>
1830
1831 * startup.el (command-line-1): Fix last fix by inserting
1832 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 1833 (Bug#9605) and (Bug#9636)
199e4c7e 1834
fe5f08dd
EZ
18352011-09-29 Eli Zaretskii <eliz@gnu.org>
1836
1837 * simple.el (line-move): If auto-hscroll-mode is disabled and the
1838 window is hscrolled, move by logical lines. (Bug#9607)
1839 (line-move-visual): Update the doc string to the above effect.
1840
b5516bbd
MR
18412011-09-29 Martin Rudalics <rudalics@gmx.at>
1842
ccee00c0
MR
1843 * window.el (display-buffer-record-window): When WINDOW is the
1844 selected window use `point' instead of `window-point'. (Bug#9626)
1845
b5516bbd
MR
1846 * startup.el (command-line-1): Use insert-before-markers when
1847 inserting initial-scratch-message. (Bug#9605)
ccee00c0 1848
b5516bbd
MR
1849 * help.el (help-window): Remove variable.
1850
52aa0014
GM
18512011-09-29 Glenn Morris <rgm@gnu.org>
1852
1853 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
1854
df9a7357
JB
18552011-09-29 Juanma Barranquero <lekktu@gmail.com>
1856
1857 * descr-text.el (describe-char-categories): Accept category
1858 descriptions more than one line long.
1859
a8406c20
SM
18602011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1861
88d9610c
SM
1862 * simple.el (delete-trailing-whitespace): Fix last change.
1863
a5daf810
SM
1864 * progmodes/perl-mode.el (perl-syntax-propertize-function):
1865 Don't confuse "y => 3" as the beginning of a `y' operation.
1866
a8406c20
SM
1867 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
1868 object has more than 4 slots (bug#9613).
1869
a239d4e9
JB
18702011-09-28 Juanma Barranquero <lekktu@gmail.com>
1871
1872 * subr.el (with-output-to-temp-buffer):
1873 * net/quickurl.el (quickurl, quickurl-browse-url):
1874 Fix typos in docstrings.
1875
693fbdb6
EZ
18762011-09-27 Eli Zaretskii <eliz@gnu.org>
1877
1878 * minibuffer.el (completion-styles)
1879 (completion-category-overrides): Cross reference each other in doc
1880 strings.
1881
8b457e28
GM
18822011-09-27 Glenn Morris <rgm@gnu.org>
1883
1884 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
1885 to split-string. (Bug#9606)
1886
85a16208
LMI
18872011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
1888
1889 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
1890 (bug#9615).
1891
502f9ebd
CY
18922011-09-27 Chong Yidong <cyd@stupidchicken.com>
1893
1894 * emacs-lisp/package.el (list-packages): Fix echo area message.
1895
7690bdea
LL
18962011-09-27 Leo Liu <sdl.web@gmail.com>
1897
1898 * ido.el (ido-read-internal): Accept cons cell HIST arg.
1899
e2ee6f30
MA
19002011-09-25 Michael Albinus <michael.albinus@gmx.de>
1901
1902 * net/dbus.el (dbus-unregister-object): Don't release services for
1903 registered signals. (Bug#9581)
1904
f3f98342
TZ
19052011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
1906
1907 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
1908 function that picks between cfengine 2 and 3 support
1909 automatically. Update docs accordingly.
1910
dd7aa8dd
KH
19112011-09-22 Kenichi Handa <handa@m17n.org>
1912
1913 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
1914 ZERO.
1915 (indian-itrans-v5-table-for-tamil): New variable.
1916 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
1917
3f2b07f8
KM
19182011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
1919
1920 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
1921 that's true if the current command involved collapsing of text.
1922 It's reset to false at the beginning of the next command.
1923 (allout-post-command-business): Move the cursor to the beginning
1924 of entry if the cursor is hidden and collapsing activity just
1925 happened.
1926
371d6a61
CY
19272011-09-24 Chong Yidong <cyd@stupidchicken.com>
1928
1929 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
1930 tracking (Bug#9541).
1931
2ac2721a
UJ
19322011-09-24 Ulf Jasper <ulf.jasper@web.de>
1933
1934 * net/newst-reader.el (newsticker-html-renderer)
1935 (newsticker-show-news): Automatically
343a34ff
JB
1936 load html rendering package if newsticker-html-renderer is set.
1937 Fixes "Warning: defvar ignored because w3m-fill-column is
2ac2721a
UJ
1938 let-bound" and the error "Symbol's value as variable is void:
1939 w3m-fill-column".
1940
fac7ae53
MA
19412011-09-24 Michael Albinus <michael.albinus@gmx.de>
1942
1943 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
1944 Release services only if they are defined. (Bug#9581)
1945
e08b633b
RS
19462011-09-23 Richard Stallman <rms@gnu.org>
1947
e488d29c
RS
1948 * textmodes/paragraphs.el (forward-sentence): For backwards case,
1949 distinguish start of paragraph from start of its text.
1950
19c38752
RS
1951 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
1952
e08b633b
RS
1953 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
1954 (rmail-generate-viewer-buffer): Put that hook on view buffer.
1955 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
1956
0a39f27e
AS
19572011-09-23 Andreas Schwab <schwab@linux-m68k.org>
1958
1959 * international/mule-diag.el (mule-diag): Insert a newline after
1960 each fontset description.
1961
db4e950d
SM
19622011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1963
1964 * simple.el (delete-trailing-whitespace):
1965 Document last change; simplify.
1966
eca3f3ea
PW
19672011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
1968
d68e189a
PW
1969 * simple.el (delete-trailing-whitespace): Also delete
1970 extra newlines at the end of the buffer.
1971
eca3f3ea
PW
1972 * textmodes/picture.el: Make motion commands obey shift-select-mode.
1973 (picture-newline): Use forward-line so as to ignore fields.
1974
01c157cc
SM
19752011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1976
1977 * subr.el (with-wrapper-hook): Fix edebug spec.
1978
022de23e
LMI
19792011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
1980
1981 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
1982 (bug#4538).
1983
91683089
MA
19842011-09-23 Michael Albinus <michael.albinus@gmx.de>
1985
eca3f3ea
PW
1986 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1987 Fix nasty bug using wrong cached values.
91683089 1988
5bdd6fa4
AM
19892011-09-23 Alan Mackenzie <acm@muc.de>
1990
1991 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
1992
97adfb97
CY
19932011-09-23 Chong Yidong <cyd@stupidchicken.com>
1994
1995 * window.el (pop-to-buffer): Ensure right window is selected if we
1996 chose another frame.
1997
d4ef2b50
EZ
19982011-09-22 Eli Zaretskii <eliz@gnu.org>
1999
2000 * simple.el (what-cursor-position): Use get-char-property-change
2001 and next-single-char-property-change, to be able to show display
2002 properties that come from overlays as well as text properties.
2003
72258fe5
CY
20042011-09-22 Chong Yidong <cyd@stupidchicken.com>
2005
2006 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
2007
2008 * cmuscheme.el (run-scheme, switch-to-scheme):
2009 * cus-edit.el (customize-group, custom-buffer-create)
2010 (customize-browse):
2011 * info.el (info):
2012 * shell.el (shell):
2013 * mail/sendmail.el (mail):
2014 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
2015
8f098516
RS
20162011-09-22 Richard Stallman <rms@gnu.org>
2017
2018 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
2019 move back only to line beg, don't move back over blank lines.
2020
e74f1bb6
MA
20212011-09-22 Michael Albinus <michael.albinus@gmx.de>
2022
2023 * files.el (copy-directory): Set directory attributes only in case
2024 they could be retrieved from the source directory. (Bug#9565)
2025
bfeef8b6
DK
20262011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
2027
2028 * progmodes/hideshow.el (hs-looking-at-block-start-p)
2029 (hs-find-block-beginning, hs-hide-level-recursive):
2030 Ignore strings as well as comments. (Bug#9502)
2031
7e423bb8
AS
20322011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
2033
2034 * progmodes/sql.el (sql-comint-postgres):
2035 Convert port number to a string. (Bug#9566)
2036
b4d72fcf
MR
20372011-09-22 Martin Rudalics <rudalics@gmx.at>
2038
2039 * window.el (quit-window): Undedicate window when switching to
2040 previous buffer. Reported by Thierry Volpiatto
2041 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
2042 (special-display-popup-frame): When popping up a new frame reset
2043 its previous buffers to nil. Simplify code.
b4d72fcf 2044
a7b88dc6
MA
20452011-09-21 Michael Albinus <michael.albinus@gmx.de>
2046
2047 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
2048 and process filter, as done also in `shell-command'.
2049
cf4eacfd
MR
20502011-09-21 Martin Rudalics <rudalics@gmx.at>
2051
eca3f3ea
PW
2052 * window.el (set-window-buffer-start-and-point):
2053 Call set-window-start with NOFORCE argument t. Suggested by Thierry
cf4eacfd
MR
2054 Volpiatto <thierry.volpiatto@gmail.com>.
2055 (quit-window): Reword doc-string. Handle new format of
2056 quit-restore parameter. Don't delete window if it has a
2057 previous buffer we can show instead of the present one.
2058 (display-buffer-record-window): Rewrite using a new format for
2059 the quit-restore window parameter
2060 (special-display-popup-frame, display-buffer-same-window)
2061 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2062 (display-buffer-pop-up-window, display-buffer-use-some-window):
2063 Adapt symbol passed to display-buffer-record-window.
2064 * help.el (help-window-setup): Handle new format of quit-restore
2065 parameter.
2066
8d28cb95
SM
20672011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
2068
94ab793f
SM
2069 * faces.el (face-list): Fix docstring (bug#9564).
2070
8d28cb95
SM
2071 * window.el (display-buffer--action-function-custom-type):
2072 Don't include internal functions in the Custom interface.
2073
3820edeb
JL
20742011-09-20 Juri Linkov <juri@jurta.org>
2075
2076 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
2077 (Info-forward-node, Info-backward-node, Info-next-preorder)
2078 (Info-last-preorder): Use it. (Bug#9528)
2079
5147931d
JL
20802011-09-20 Juri Linkov <juri@jurta.org>
2081
2082 * info.el (Info-last-preorder): Visit last menu item only when
2083 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
2084
cf499a1a
JD
20852011-09-20 Julien Danjou <julien@danjou.info>
2086
2087 * password-cache.el (password-cache-remove): Remove entries even if the
2088 value is nil, so that password with a nil value (negative caching) is
2089 possible to invalidate.
2090
f84e2fe2
LM
20912011-09-20 Lawrence Mitchell <wence@gmx.li>
2092
2093 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
2094 all whitespace around breakpoint. (Bug#9553)
2095 (f90-find-breakpoint): Only break at whitespace inside a comment.
2096
78054a46
SM
20972011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2098
2099 * minibuffer.el (completion-file-name-table): Keep track of errors.
2100 (completion-table-with-predicate): Handle the case where pred1 is nil.
2101 * pcomplete.el (pcomplete-completions-at-point): Simplify.
2102
345083b2
SM
21032011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2104
e24e27be
SM
2105 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
2106 (debugger-return-value): Signal an error if the debugging context does
2107 not await any return value.
2108
345083b2
SM
2109 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
2110 * image-mode.el (image-toggle-display-text)
2111 (image-toggle-display-image): Stay away from evil `intangible'.
2112
08d355e3
LL
21132011-09-19 Leo Liu <sdl.web@gmail.com>
2114
2115 * replace.el (occur-revert-arguments): Make it permanent-local.
2116 (occur-mode): Don't call font-lock-defontify.
2117
f01da43f
CY
21182011-09-19 Chong Yidong <cyd@stupidchicken.com>
2119
2120 * net/ldap.el (ldap-search-internal): Don't push empty search
2121 result (Bug#9508).
2122
b6072fa6
SM
21232011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2124
2125 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
2126
443d6696
MA
21272011-09-19 Michael Albinus <michael.albinus@gmx.de>
2128
2129 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
2130 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
2131
7cc6e154
JL
21322011-09-18 Juri Linkov <juri@jurta.org>
2133
2134 * buff-menu.el (Buffer-menu-mode-map):
2135 * dired.el (dired-mode-map):
2136 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
2137 (lisp-interaction-mode-map):
2138 * emacs-lisp/package.el (package-menu-mode-map):
2139 * epa.el (epa-key-list-mode-map):
2140 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
2141 (menu-bar-options-menu):
2142 * outline.el (outline-mode-menu-bar-map):
2143 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
2144 * vc/vc-dir.el (vc-dir-menu-map):
2145 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
2146 Capitalize non-function content words in menu item strings.
2147
2148 * dired.el (dired-mode-map): Add menu item for
2149 `image-dired-dired-toggle-marked-thumbs'.
2150
80302a81
JL
21512011-09-18 Juri Linkov <juri@jurta.org>
2152
2153 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
2154 to `isearch-case-fold-search' and restore its original value
2155 after the `isearch-mode' call.
2156
46c5cf66
JL
21572011-09-18 Juri Linkov <juri@jurta.org>
2158
2159 * progmodes/grep.el (grep-process-setup): Don't check code for 1
2160 because `zgrep' returns 1 for successful matches (bug#9226).
2161
d18b513b
JL
21622011-09-18 Juri Linkov <juri@jurta.org>
2163
2164 * info.el (Info-extract-menu-node-name): Check the second match
2165 for empty string (second test-case of bug#9528).
2166 (Info-last-preorder): Let-bind `Info-history' to nil to not add
2167 intermediate nodes to the history (first test-case of bug#9528).
2168
72753f87
JL
21692011-09-18 Juri Linkov <juri@jurta.org>
2170
2171 * info.el (Info-mode-syntax-table): New variable.
2172 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table'. (Bug#3312)
2173
c9384295
JL
21742011-09-18 Juri Linkov <juri@jurta.org>
2175
2176 * info.el (Info-file-supports-index-cookies): Increment
2177 line-beginning-position's arg from 3 to 4 because makeinfo outputs
2178 one more line for long file names (bug#4142).
2179
d473dce8
CY
21802011-09-18 Chong Yidong <cyd@stupidchicken.com>
2181
2182 * newcomment.el (comment-normalize-vars): If prompting for
2183 comment-start, set comment-start-skip too (Bug#8424).
2184
2176854d
JB
21852011-09-18 Johan Bockgård <bojohan@gnu.org>
2186
2187 * icomplete.el: Fix previous fix of Bug#5849.
2188 (icomplete-mode): Don't set completion-show-inline-help.
2189 (icomplete-minibuffer-setup): Set completion-show-inline-help
2190 locally during icompletion.
2191
3aace4e4
CY
21922011-09-18 Chong Yidong <cyd@stupidchicken.com>
2193
c940224f
CY
2194 * woman.el (woman2-process-escapes): Don't delete unrecognized
2195 escapes (Bug#7843).
2196
3aace4e4
CY
2197 * files.el (inhibit-first-line-modes-regexps): Add image files.
2198 (hack-local-variables-prop-line): Return nil for malformed
2199 prop-lines (Bug#9044).
2200
710dec63
MA
22012011-09-18 Michael Albinus <michael.albinus@gmx.de>
2202
2203 * net/tramp.el (top): Don't require 'shell.
2204 (tramp-methods): Fix docstring.
2205 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
2206 Return complete remote file name. Handle "smb" case.
2207 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
2208 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
2209
2210 * net/tramp-compat.el (top): Require 'shell.
2211
2212 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
2213 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
2214 `tramp-current-host'.
2215 (tramp-get-remote-tmpdir): Remove.
2216
2217 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
2218 `tramp-tmpdir' entries.
2219 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
2220 (tramp-smb-handle-file-attributes): Ignore errors.
2221 (tramp-smb-wait-for-output): Check also for process end.
2222
5d5ac8ec
LMI
22232011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
2224
2225 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
2226 when sending QUIT (bug#9312).
2227
8c0f49f0
CY
22282011-09-17 Chong Yidong <cyd@stupidchicken.com>
2229
2230 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
2231 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
2232 occur-mode-display-occurrence.
2233 (occur-edit-mode): Add usage message.
2234 (occur-cease-edit): New command.
2235 (occur-after-change-function): Use text properties to find the
2236 position of the prefix text.
2237 (occur-engine): Set stickiness of prefix text properties.
2238
8f1383f7
GM
22392011-09-17 Glenn Morris <rgm@gnu.org>
2240
2241 * progmodes/etags.el (complete-tag):
2242 Fix call to completion-in-region. (Bug#9526)
2243
744ba0e3
JL
22442011-09-17 Juri Linkov <juri@jurta.org>
2245
2246 * textmodes/ispell.el (ispell-word): Add to the error message
2247 the word, ispell program name and current dictionary (bug#9121).
2248 (ispell-tex-arg-end): Capitalize "error" in the error message.
2249
d9bbf400
AS
22502011-09-17 Andreas Schwab <schwab@linux-m68k.org>
2251
2252 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
2253 check. (Bug#4251)
2254
8da11505
JL
22552011-09-17 Juri Linkov <juri@jurta.org>
2256
2257 * window.el (window-safe-min-height, window-safe-min-width):
2258 Fix typos (followup to bug#9522).
2259
a91adc7e
SJ
22602011-09-17 Sven Joachim <svenjoac@gmx.de>
2261
2262 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
2263
064f328a
EZ
22642011-09-16 Eli Zaretskii <eliz@gnu.org>
2265
2266 * simple.el (line-move): If goal-column is set, move by logical
2267 lines, not by display lines. (Bug#971)
2268 (next-line, previous-line, goal-column, line-move-visual): Doc fix
2269 to reflect the above change.
2270
e69df516
SM
22712011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
2272
2273 * image.el (imagemagick-register-types): Use regexp-opt.
2274
cbb0f9ab
CY
22752011-09-15 Chong Yidong <cyd@stupidchicken.com>
2276
2277 * window.el (display-buffer-base-action): Rename from
2278 display-buffer-default-action. Make default value empty.
2279 (display-buffer-overriding-action): Convert to defvar.
2280 (display-buffer-fallback-action): New var.
2281
25322144
CY
22822011-09-15 Chong Yidong <cyd@stupidchicken.com>
2283
2284 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
2285 declaration.
2286 (package--add-to-archive-contents): If there is a duplicate entry
2287 with an older version, remove it.
2288 (package-menu-mark-delete, package-menu-mark-install)
2289 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
2290 (package-menu-mark-obsolete-for-deletion):
2291 Use package-menu-get-status instead of a regexp search.
25322144
CY
2292 (package-menu-get-status): Use tabulated-list-entry.
2293 (package-menu-mark-upgrades): New command.
d770725a 2294 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
2295 (package-menu-execute): Do installation before deletion.
2296 (package-menu-refresh, package-menu-execute): Use derived-mode-p
2297 instead of checking major-mode.
2298 (package-menu--find-upgrades): New function.
2299
7520339c
LMI
23002011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2301
2302 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
2303 passwords in the log buffer.
65a046c4
LMI
2304 (smtpmail-process-filter): Update the process marker so that the
2305 "broken by peer" status message is inserted in the right place.
7520339c 2306
d3c30954
SM
23072011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2308
3fe48822
SM
2309 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
2310 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
2311 bibtex-completion-at-point-function.
2312 (bibtex-completion-at-point-function): Use them.
2313
1b8b3954
SM
2314 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
2315
d3c30954
SM
2316 * mpc.el (mpc-constraints-tag-lookup): New function.
2317 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
2318 also to browser "album|playlist".
2319
72779976
JL
23202011-09-14 Juri Linkov <juri@jurta.org>
2321
2322 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
2323 (isearch-edit-string): Use length of `isearch-string' when
2324 `isearch-fail-pos' returns nil.
2325 (isearch-message): Remove duplicate code and call
2326 `isearch-fail-pos' with arg `t'.
2327
a0bf2bcd
CY
23282011-09-14 Chong Yidong <cyd@stupidchicken.com>
2329
17bb0a2d
CY
2330 * replace.el (occur-mode-goto-occurrence): Don't force using other
2331 window (Bug#9499).
2332
a0bf2bcd
CY
2333 * dired-aux.el (dired-do-chmod): Don't provide initial input.
2334
f678e0b6
MR
23352011-09-14 Martin Rudalics <rudalics@gmx.at>
2336
2337 * window.el (display-buffer-window): Remove.
2338 (display-buffer-record-window): Use help-setup window parameter
2339 instead of variable display-buffer-window.
2340 (display-buffer-function, special-display-buffer-names)
2341 (special-display-function): Mention help-setup parameter instead
2342 of display-buffer-window in doc-string.
d3c30954
SM
2343 * help.el (help-window-setup): New argument help-window.
2344 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
2345 Reword some messages.
2346 (with-help-window): Pass window used for displaying the buffer
2347 to help-window-setup. Don't set display-buffer-window.
2348
8e39b2e8
GM
23492011-09-13 Glenn Morris <rgm@gnu.org>
2350
2351 * emacs-lisp/debug.el (debugger-make-xrefs):
2352 Preserve point. (Bug#9462)
2353
85e9c04b
CY
23542011-09-13 Chong Yidong <cyd@stupidchicken.com>
2355
2356 * window.el (window-deletable-p): Use next-frame.
2357
1b36ed6a
MR
23582011-09-13 Martin Rudalics <rudalics@gmx.at>
2359
2360 * window.el (window-auto-delete): Remove.
2361 (window-deletable-p): Remove argument FORCE. Don't deal with
e4769531 2362 dedication and previous buffers.
1b36ed6a
MR
2363 (switch-to-prev-buffer): Don't delete window.
2364 (delete-windows-on): Delete a window's frame if and only if the
2365 window is dedicated.
2366 (replace-buffer-in-windows): Delete buffer's window or frame if
2367 and only if window is dedicated.
2368 (quit-window): Handle quit-restore as before last change.
4d61f28d 2369 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 2370
ef8ef9fb
CY
23712011-09-13 Chong Yidong <cyd@stupidchicken.com>
2372
2373 * window.el (window-deletable-p): Never delete the last frame on a
2374 given terminal.
2375
b2cba41e
GM
23762011-09-13 Glenn Morris <rgm@gnu.org>
2377
2378 * help.el (describe-key-briefly): Copy previous standard-output change.
2379
51553db6 23802011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
2381
2382 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
2383
b7556719
GM
23842011-09-13 Glenn Morris <rgm@gnu.org>
2385
2386 * emacs-lisp/lisp-mode.el (lisp-indent-function):
2387 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
2388
64b51947
CY
23892011-09-12 Chong Yidong <cyd@stupidchicken.com>
2390
2391 * dired-aux.el (dired-mark-read-string): Don't return default
2392 value on empty input (Bug#9361).
2393 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
2394 Omit initial minibuffer contents.
2395 (dired-do-chmod): Signal an error on empty input.
2396 (dired-mark-read-string): Don't return default on empty input.
2397
2398 * files.el (file-modes-symbolic-to-number): Doc fix.
2399
393a301e
SM
24002011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2401
2402 * international/mule-cmds.el (ucs-completions): Remove.
2403 (read-char-by-name): Use complete-with-action instead; add metadata.
2404
fa5660f9
CY
24052011-09-11 Chong Yidong <cyd@stupidchicken.com>
2406
2407 * window.el (display-buffer--action-function-custom-type)
2408 (display-buffer--action-custom-type): New vars.
2409 (display-buffer-alist, display-buffer-default-action)
2410 (display-buffer-overriding-action): Add defcustom types.
2411
4a592f66
CY
2412 * frame.el (delete-other-frames): Doc fix (Bug#276).
2413
73d56dbd
LMI
24142011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2415
2416 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
2417
37ac18a3
CY
24182011-09-11 Chong Yidong <cyd@stupidchicken.com>
2419
2420 Change modes that used same-window-* vars to use switch-to-buffer.
2421
2422 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
2423 Use switch-to-buffer.
2424
2425 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
2426 (customize-browse, custom-buffer-create-other-window):
2427 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
2428
2429 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
2430 (Info-prev, Info-up, Info-speedbar-goto-node)
2431 (info-display-manual): Use switch-to-buffer.
2432 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
2433
2434 * mail/sendmail.el (mail): Use switch-to-buffer.
2435 (mail-recover): Use switch-to-buffer-other-window.
2436
2437 * cmuscheme.el (run-scheme, switch-to-scheme):
2438 * ielm.el (ielm):
2439 * shell.el (shell):
2440 * net/rlogin.el (rlogin):
2441 * net/telnet.el (telnet, rsh):
2442 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
2443
10195bd6
AS
24442011-09-11 Andreas Schwab <schwab@linux-m68k.org>
2445
2446 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
2447
b322f63a
LMI
24482011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2449
39d7fed6
LMI
2450 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
2451 so don't mention it (bug#9301).
ba5a81f1 2452 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 2453
ee0e9f11
LMI
2454 * faces.el (face-spec-set-match-display): Make `(type graphic)'
2455 match `x', `w32' and `ns', like the manual says (bug#9029).
2456
0b1c89c1 2457 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
2458 (process-kill-buffer-query-function): Mention the buffer name in
2459 the query.
0b1c89c1 2460
77549ea8
LMI
2461 * image-mode.el (image-next-line): The line parameter is mandatory
2462 (bug#9258).
2463
803ef892
LMI
2464 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
2465 which can be useful (bug#9301).
2466
12980837
LMI
2467 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
2468
91054f8f
LMI
2469 * subr.el (match-string): Mention that the current buffer should
2470 be the same as the search was done in (bug#9282).
2471
b322f63a
LMI
2472 * facemenu.el: Disable the remove-* commands if the mark isn't
2473 active (bug#9162).
2474
3199b96f
CY
24752011-09-10 Chong Yidong <cyd@stupidchicken.com>
2476
2477 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
2478 of display-buffer.
2479 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
2480
2481 * replace.el (occur-mode-goto-occurrence)
2482 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
2483 and display-buffer.
2484
2485 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
2486 display-buffer.
2487
2488 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
2489 special-display and same-window variables.
2490 (mail-other-window): Use switch-to-buffer-other-window.
2491 (mail-other-frame): USe switch-to-buffer-other-frame.
2492
393a301e
SM
2493 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
2494 Use display-buffer-other-frame.
3199b96f
CY
2495 (gdb-display-gdb-buffer): Use pop-to-buffer.
2496
2497 * progmodes/gud.el (gud-goto-info): Use info-other-window.
2498
2499 * progmodes/python.el: Don't set same-window-buffer-names.
2500
2501 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
2502
2503 * window.el (display-buffer-alist): Add *Python*.
2504
8319e0bf
CY
25052011-09-10 Chong Yidong <cyd@stupidchicken.com>
2506
2507 * window.el (display-buffer-alist): Add entry for buffers
2508 previously handled same-window-*.
2509 (display-buffer-alist, display-buffer-default-action)
2510 (display-buffer-overriding-action): Mark as risky.
2511 (display-buffer-alist): Document action function changes.
2512 (display-buffer--same-window-action)
2513 (display-buffer--other-frame-action): New variables.
2514 (switch-to-buffer, display-buffer-other-frame): Use them.
2515 (display-buffer): Rename reuse-frame entry to reusable-frames.
2516 (display-buffer-reuse-selected-window): Function deleted.
2517 (display-buffer-reuse-window): Handle reusable-frames alist entry.
2518 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
2519 (display-buffer-special): New function.
2520 (display-buffer--maybe-pop-up-frame-or-window): Rename from
2521 display-buffer-reuse-or-pop-window. Split off special-display
2522 part into display-buffer-special.
2523 (display-buffer-use-some-window): Don't perform any special
2524 pop-up-frames handling.
2525 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 2526 (display-buffer--maybe-same-window): Rename from
0d3ff375 2527 display-buffer-maybe-same-window.
8319e0bf 2528
919a69aa
CY
2529 * info.el: Don't set same-window-regexps.
2530 (info-setup): New function.
2531 (info-other-window, info): Call it.
2532
2533 * cus-edit.el: Don't set same-window-regexps.
2534 (customize-group): New argument.
2535 (customize-group-other-window): Use it.
2536 (customize-face, customize-face-other-window): Likewise.
2537 (custom-buffer-create-other-window): Use pop-to-buffer directly.
2538
8319e0bf
CY
2539 * net/rlogin.el:
2540 * net/telnet.el:
2541 * progmodes/gud.el: Don't set same-window-regexps.
2542
2543 * cmuscheme.el:
2544 * ielm.el:
2545 * shell.el:
2546 * mail/sendmail.el:
2547 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
2548
25173000
JL
25492011-09-10 Juri Linkov <juri@jurta.org>
2550
2551 * isearch.el (isearch-edit-string): Remove obsolete mention of
2552 `C-w' (`isearch-yank-word-or-char') from docstring.
2553 (isearch-query-replace): Fix typo in docstring (bug#9466).
2554
056e44ef
JL
25552011-09-10 Juri Linkov <juri@jurta.org>
2556
2557 * paren.el (show-paren-function): Don't show escaped parens.
2558 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
2559
c3760c17
EZ
25602011-09-10 Eli Zaretskii <eliz@gnu.org>
2561
2562 * mail/sendmail.el (mml-to-mime, mml-attach-file)
2563 (mm-default-file-encoding): Remove autoload forms, they are
2564 replaced with autoload cookies in mml.el and mm-encode.el.
2565 (mail-add-attachment): New command.
2566 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
2567 (mail-mode): Mention mail-insert-file and mail-add-attachment in
2568 the doc string.
2569 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
2570
fece895e
RT
25712011-09-10 Reuben Thomas <rrt@sc3d.org>
2572
e69df516
SM
2573 * simple.el (count-words-region): Use buffer if there's no region
2574 (bug#9429).
fece895e 2575
5e68ce4a
JL
25762011-09-09 Juri Linkov <juri@jurta.org>
2577
2578 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
2579 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
2580 (wdired-isearch-filter-read-only): New function. (Bug#6362)
2581
0a6b9622
AM
25822011-09-09 Alan Mackenzie <acm@muc.de>
2583
2584 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
2585 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
2586
14a29deb
EZ
25872011-09-09 Eli Zaretskii <eliz@gnu.org>
2588
2589 Fix for Savannah bug#9392.
2590 * simple.el (mail-encode-mml): New defvar.
2591
2592 * mail/rmail.el (mail-encode-mml): Add a defvar.
2593 (rmail-enable-mime-composing): Default to t.
2594 (rmail-forward): Use MIME method of forwarding only if both
2595 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
2596 Set mail-encode-mml non-nil if the MIME method was used.
2597
2598 * mail/sendmail.el (mml-to-mime): Add autoload form.
2599 (mail-encode-mml): Add a defvar.
2600 (mail-mode): Make mail-encode-mml buffer-local and initialize it
2601 to nil.
2602 (mail-send): If mail-encode-mml is non-nil, run the outgoing
2603 message through mml-to-mime, and reset mail-encode-mml to nil.
2604
28c45130
GM
26052011-09-09 Glenn Morris <rgm@gnu.org>
2606
2607 * woman.el (woman-if-body): When processing an .el block,
2608 do not delete the next .el block as well. (Bug#9447)
69f4b618 2609 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 2610
9b1c252e
MR
26112011-09-08 Martin Rudalics <rudalics@gmx.at>
2612
2613 * window.el (window-deletable-p): Make sure window is live before
2614 invoking window-prev-buffers.
2615
567457e3
LL
26162011-09-08 Leo Liu <sdl.web@gmail.com>
2617
2618 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
2619
97f05794
JL
26202011-09-08 Juri Linkov <juri@jurta.org>
2621
2622 * progmodes/compile.el (compilation-environment): Make it
2623 a defcustom (bug#8340).
2624
8b0874b5
MR
26252011-09-08 Martin Rudalics <rudalics@gmx.at>
2626
2627 * window.el (frame-auto-delete): Rename to window-auto-delete.
2628 Make it control auto-deletion of windows and/or frames.
2629 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 2630 for deleting window/frame. (Bug#9419)
8b0874b5
MR
2631 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
2632 Rewrite handling of case when window/frame can be deleted.
2633 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 2634 argument t. (Bug#9456)
8b0874b5 2635
4feb6e73
CY
26362011-09-07 Chong Yidong <cyd@stupidchicken.com>
2637
2638 * help-mode.el (help-mode): Restore autoload.
2639
91ab9c13
JL
26402011-09-07 Juri Linkov <juri@jurta.org>
2641
2642 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
2643 `compilation-environment'. Set buffer-local
2644 `compilation-environment' to `thisenv' later after (funcall mode).
2645 (Bug#8340)
2646
2647 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
2648 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
2649 instead of replacing its value. (Bug#8340)
2650
0527e251
JL
26512011-09-07 Juri Linkov <juri@jurta.org>
2652
2653 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
2654 based on text properties put by `grep-filter' instead of matching
2655 escape sequences.
2656 (grep-mode): Set buffer-local `compilation-error-screen-columns'
2657 to the value of `grep-error-screen-columns' (bug#9438).
2658
249f792c
JL
26592011-09-07 Juri Linkov <juri@jurta.org>
2660
2661 * simple.el (next-error-highlight, next-error-highlight-no-select):
2662 Doc fix (bug#9432).
2663
ff7271b9
OT
26642011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
2665
2666 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
2667 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
2668
183fc730
LL
26692011-09-07 Leo Liu <sdl.web@gmail.com>
2670
2671 * net/rcirc.el (rcirc-mode): Conditionally initialize
2672 rcirc-input-ring.
2673
77694924
SM
26742011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2675
2676 * emacs-lisp/find-func.el (find-function-C-source): Only set
2677 find-function-C-source-directory after checking that we found a source
2678 file there (bug#9440).
2679
d809b8eb
AM
26802011-09-06 Alan Mackenzie <acm@muc.de>
2681
2682 * isearch.el (isearch-other-meta-char): Wherever a key list is
2683 unread, "unread" the prefix arg, too. This fixes bug #8901.
2684
453de99f
OG
26852011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
2686
2687 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
2688
90439906
JL
26892011-09-05 Juri Linkov <juri@jurta.org>
2690
2691 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
2692
f62bd846
JL
26932011-09-05 Juri Linkov <juri@jurta.org>
2694
2695 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
2696 keeping point where processing of grep matches begins, and
2697 continue to delete remaining escape sequences from the same point.
2698 (grep-filter): Make leading zero optional in "0?1;31m" because
2699 git-grep emits "\033[1;31m" escape sequences unlike expected
2700 "\033[01;31m" as GNU Grep does (bug#9408).
2701 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
2702
045820ec
JL
27032011-09-05 Juri Linkov <juri@jurta.org>
2704
2705 * subr.el (y-or-n-p): Capitalize "yes".
2706
f5e29b9b
MA
27072011-09-04 Michael Albinus <michael.albinus@gmx.de>
2708
2709 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
2710 `tramp-cache-unload-hook' where appropriate.
2711 (tramp-methods): Rename `tramp-remote-sh' to
2712 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
2713 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
2714
2715 * net/tramp-sh.el (top): Don't require 'shell.
2716 (tramp-methods): Add `tramp-remote-shell' and
2717 `tramp-remote-shell-args' entries.
2718 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
2719 (tramp-sh-handle-shell-command): Remove.
2720 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
2721 Use `tramp-remote-shell'.
2722
2784c434
CY
27232011-09-03 Chong Yidong <cyd@stupidchicken.com>
2724
393a301e 2725 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
2726 (sendmail-query-once): Save directly to send-mail-function.
2727 Update message-send-mail-function too.
2728
2729 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
2730
464cdf56
CS
27312011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
2732
2733 * progmodes/python.el (python-mode-map): Use correct function to
2734 start python interpreter from menu-bar (as reported by Geert
2735 Kloosterman).
2736 (inferior-python-mode-map): Fix typo.
393a301e 2737 (python-shell-map): Remove.
464cdf56 2738
d37e5c87
DD
27392011-09-03 Deniz Dogan <deniz@dogan.se>
2740
2741 * net/rcirc.el (rcirc-print): Simplify code for
2742 rcirc-scroll-show-maximum-output. There is no need to walk
2743 through all windows to find the right one.
2744
f3ada0ee
CS
27452011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
2746
2747 * help.el (help-return-method): Doc fix.
2748
1f3c99ca
MR
27492011-09-03 Martin Rudalics <rudalics@gmx.at>
2750
2751 * window.el (window-deletable-p): Don't return a non-nil value
2752 when there's a buffer that was shown in the window before.
2753 (Bug#9419)
393a301e
SM
2754 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
2755 Set window's previous buffers to nil.
1f3c99ca 2756
a3cf097f
EZ
27572011-09-03 Eli Zaretskii <eliz@gnu.org>
2758
2759 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
2760 newline before and after the tag line, so it doesn't interfere
2761 with determining the paragraph direction of bidirectional text.
2762
3d03de90
LL
27632011-09-03 Leo Liu <sdl.web@gmail.com>
2764
2765 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
2766
c3313451
CY
27672011-09-02 Chong Yidong <cyd@stupidchicken.com>
2768
393a301e 2769 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
2770 (pop-to-buffer): Change interactive spec. Pass second argument
2771 directly to display-buffer.
2772 (display-buffer): Fix interactive spec. Use functionp to
2773 distinguish between a function and a list of functions.
2774
2775 * abbrev.el (edit-abbrevs):
2776 * arc-mode.el (archive-extract):
2777 * autoinsert.el (auto-insert):
2778 * bookmark.el (bookmark-bmenu-list):
2779 * files.el (find-file):
2780 * view.el (view-buffer):
2781 * progmodes/compile.el (compilation-goto-locus):
2782 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
2783
89894cd8
CY
27842011-09-02 Chong Yidong <cyd@stupidchicken.com>
2785
2786 * window.el (display-buffer-alist): Doc fix.
2787 (display-buffer): Add docstring. Don't treat
2788 display-buffer-default specially.
2789 (display-buffer-reuse-selected-window)
2790 (display-buffer-same-window, display-buffer-maybe-same-window)
2791 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2792 (display-buffer-pop-up-window)
2793 (display-buffer-reuse-or-pop-window)
2794 (display-buffer-use-some-window): New functions.
2795 (display-buffer-default-action): Use them.
393a301e 2796 (display-buffer-default): Delete.
89894cd8
CY
2797 (pop-to-buffer-1): Fix choice of actions.
2798
ae0bc9fb
SM
27992011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
2800
2801 * minibuffer.el (completion--insert-strings): Don't get confused by
2802 completion entries that end with an LF char.
2803
e9d90883
EZ
28042011-09-01 Eli Zaretskii <eliz@gnu.org>
2805
2806 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
2807
437014c8
CY
28082011-09-01 Chong Yidong <cyd@stupidchicken.com>
2809
2810 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
2811 (display-buffer-same-window, display-buffer-other-window):
2812 New functions.
437014c8
CY
2813 (pop-to-buffer-1): New function. Use the above.
2814 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 2815 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
2816
2817 * view.el (view-buffer-other-window, view-buffer-other-frame):
2818 Just use pop-to-buffer.
2819
a5e063d5
TV
28202011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2821
2822 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
2823
793d32bb
WH
28242011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
2825
2826 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
2827
d65e4c15
RS
28282011-08-31 Richard Stallman <rms@gnu.org>
2829
2830 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
2831 of the separation of rmail-view-buffer from rmail-buffer.
2832 If you say no to "replace original", the decrypt is in the
2833 view buffer. If you say yes, the decrypt goes into the
2834 rmail buffer also.
2835
f818cd2a
MR
28362011-08-31 Martin Rudalics <rudalics@gmx.at>
2837
2838 * window.el (display-buffer-window): Rewrite doc-string.
2839 (display-buffer-record-window): New function.
2840 (display-buffer-macro-specifiers)
2841 (display-buffer-even-window-sizes, display-buffer-set-height)
2842 (display-buffer-set-width, display-buffer-in-window)
2843 (display-buffer-reuse-window, display-buffer-split-specifiers)
2844 (display-buffer-side-specifiers, display-buffer-split-window-1)
2845 (display-buffer-split-window, display-buffer-split-atom-window)
2846 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
2847 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
2848 (display-buffer-other-window-means-other-frame)
2849 (display-buffer-normalize-special)
2850 (display-buffer-normalize-default)
2851 (display-buffer-normalize-argument)
2852 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
2853 (display-buffer-normalize-specifiers, display-buffer-frame)
2854 (display-buffer-same-window, display-buffer-same-frame)
2855 (display-buffer-other-window)
2856 (display-buffer-same-frame-other-window)
2857 (display-buffer-other-frame, pop-to-buffer-same-window)
2858 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
2859 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
2860 (switch-to-buffer-same-frame)
2861 (switch-to-buffer-other-window-same-frame)
2862 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
2863 (display-buffer-alist-set-1, display-buffer-alist-set-2)
2864 (display-buffer-alist-set): Remove.
2865 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
2866 (special-display-regexps, special-display-function):
2867 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
2868 parameter.
2869 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
2870 (special-display-frame-alist, special-display-popup-frame)
2871 (same-window-buffer-names, same-window-regexps, same-window-p)
2872 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
2873 (split-window-preferred-function, split-height-threshold)
2874 (split-width-threshold, window-splittable-p)
2875 (split-window-sensibly, window--try-to-split-window)
2876 (window--frame-usable-p, even-window-heights)
2877 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
2878 (window--display-buffer-2, display-buffer-other-frame):
2879 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
2880 (display-buffer-default, display-buffer-assq-regexp): New functions.
2881 (display-buffer-alist): Rewrite doc-string.
2882 (display-buffer-default-action)
2883 (display-buffer-overriding-action): New variables.
2884 (display-buffer, switch-to-buffer): Rewrite.
2885 (pop-to-buffer): Restore Emacs 23 behavior but use
2886 window-normalize-buffer-to-display.
2887 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
2888 Restore Emacs 23 behavior but use
2889 window-normalize-buffer-to-switch-to.
2890 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
2891 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
2892 Rewrite using Emacs 23 options.
f818cd2a 2893
5bc3b51d
MA
28942011-08-31 Michael Albinus <michael.albinus@gmx.de>
2895
2896 * net/tramp.el (tramp-root-regexp): Remove.
2897 (tramp-completion-file-name-regexp-unified)
2898 (tramp-completion-file-name-regexp-separate)
2899 (tramp-completion-file-name-regexp-url): Don't use leading volume
2900 letter on win32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
2901 (tramp-drop-volume-letter): Simplify definition.
2902 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 2903
b1a4f8e1
SM
29042011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2905
2906 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
2907 (bug#9356).
2908
5664fa7b
RT
29092011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
2910
b1a4f8e1 2911 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 2912
9a45d6c3
JL
29132011-08-29 Juri Linkov <juri@jurta.org>
2914
2915 * isearch.el (isearch-done): Don't display message "Mark saved"
2916 when arg `edit' is non-nil to prevent its flicker in the echo area.
2917
fb87e0fb
CY
29182011-08-28 Chong Yidong <cyd@stupidchicken.com>
2919
2920 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
2921 obsolete packages for deletion.
2922
09ac1c2a
CS
29232011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
2924
2925 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 2926 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
2927 view-mode from help-mode.
2928 (help-xref-override-view-map): Remove.
2929 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
2930 view-mode is not used anymore.
2931
7a1ff57f
CY
29322011-08-28 Chong Yidong <cyd@stupidchicken.com>
2933
2934 * server.el (server-port): Doc fix.
2935
b9696605
CY
2936 * cus-theme.el (custom-theme-choose-mode): Inherit from
2937 special-mode (Bug#9124).
2938 (custom-theme-choose-mode-map): Add special-mode to parent.
2939
ef8cdf8c
AM
29402011-08-28 Alan Mackenzie <acm@muc.de>
2941
2942 * progmodes/cc-fonts.el
2943 (c-make-font-lock-BO-decl-search-function): New function.
2944 (c-basic-matchers-after - "Fontify the clauses after various
2945 keywords"): Extract the three keyword lists for the 3 erroneous
2946 constructs from the list of four, and use the new function above
2947 in place of an old one.
2948
27de4e20
DD
29492011-08-28 Deniz Dogan <deniz@dogan.se>
2950
2951 * net/rcirc.el (rcirc-insert-prev-input)
2952 (rcirc-insert-next-input): Remove unused argument.
2953
356a3681
SM
29542011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2955
2956 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
2957
3fc9b218
AM
29582011-08-27 Alan Mackenzie <acm@muc.de>
2959
2960 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
2961 handle function pointer parameters properly.
2962
538a061c
MR
29632011-08-27 Martin Rudalics <rudalics@gmx.at>
2964
2965 * window.el (display-buffer-reuse-window): Fix case where
2966 selected window was reused with non-nil OTHER-WINDOW argument.
2967 (Bug#9381)
2968
35b1c40c
DD
29692011-08-27 Deniz Dogan <deniz@dogan.se>
2970
2971 * net/rcirc.el (rcirc-check-auth-status): Adding support for
2972 oftc's NickServ messages.
2973
2f6a3e79
GM
29742011-08-27 Glenn Morris <rgm@gnu.org>
2975
2976 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
2977
7254299e
CY
29782011-08-26 Chong Yidong <cyd@stupidchicken.com>
2979
2980 * emacs-lisp/package.el (package-install): Call package-initialize
2981 if called interactively.
2982
f8ccf167
LL
29832011-08-26 Leo Liu <sdl.web@gmail.com>
2984
2985 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
2986
3e8cd5ce
JL
29872011-08-25 Juri Linkov <juri@jurta.org>
2988
2989 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
2990 `search-whitespace-regexp' (bug#9364).
2991
93eb7113
JL
29922011-08-25 Juri Linkov <juri@jurta.org>
2993
2994 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
2995 `regexp-search-ring' to their global values to protect from
2996 updating by `read-from-minibuffer' (bug#9185).
2997
f65d1611
JL
29982011-08-25 Juri Linkov <juri@jurta.org>
2999
3000 * textmodes/ispell.el (ispell-command-loop): Add newline
3001 at the end of the "Use option `i'..." line.
3002
f1cf7a31
JL
30032011-08-25 Juri Linkov <juri@jurta.org>
3004
3005 * battery.el (display-battery-mode): If `battery-status-function'
3006 or `battery-mode-line-format' is nil, display the message and set
3007 `display-battery-mode' to nil (bug#9363).
3008
0c95fcf7
EZ
30092011-08-25 Eli Zaretskii <eliz@gnu.org>
3010
3011 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
3012 bidi-string-mark-left-to-right; they are unnecessary now.
3013
a2ebe600
DD
30142011-08-25 Deniz Dogan <deniz@dogan.se>
3015
3016 * net/quickurl.el: Documentation typo fixes.
3017
e4ed06f1
CY
30182011-08-25 Chong Yidong <cyd@stupidchicken.com>
3019
3020 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
3021
e5f1c99e
GM
30222011-08-25 Glenn Morris <rgm@gnu.org>
3023
b2948976
GM
3024 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
3025
e5f1c99e
GM
3026 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
3027 (smtpmail-via-smtp): Handle nil response from smtp.
3028
f22f4808
JL
30292011-08-24 Juri Linkov <juri@jurta.org>
3030
3031 * proced.el (proced-marked): Inherit from `error' instead of
3032 `font-lock-warning-face'.
3033
3034 * ibuffer.el (ibuffer-marked-face): Change default face from
3035 `font-lock-warning-face' to `warning'.
3036 (ibuffer-deletion-face): Change default face from
3037 `font-lock-type-face' to `error'.
3038
3039 * battery.el (battery-update): Use the face `error' instead of
3040 `font-lock-warning-face' (bug#6117).
3041
6a93965e
JL
30422011-08-24 Juri Linkov <juri@jurta.org>
3043
3044 * faces.el (success): Change face color from "Green3" to
3045 "ForestGreen" on light background (bug#9353).
3046
1ed43b09
CY
30472011-08-24 Chong Yidong <cyd@stupidchicken.com>
3048
5664fa7b
RT
3049 * window.el (quit-window): Rename from quit-restore-window.
3050 Use same arglist as old quit-window.
1ed43b09
CY
3051 (frame-auto-delete): Doc fix.
3052
3053 * view.el (view-mode-exit): Use quit-window.
3054
11dcdbb2
JL
30552011-08-24 Juri Linkov <juri@jurta.org>
3056
3057 * isearch.el (isearch-ring-adjust1): Start visiting previous
3058 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
3059 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
3060 for empty search string (when the last search string is reused
3061 automatically) to adjust the isearch ring to the last element and
3062 prepare the correct index for further M-p commands (bug#9185).
3063
de62b4df
KH
30642011-08-24 Kenichi Handa <handa@m17n.org>
3065
3066 * international/ucs-normalize.el: If decomposition property of
3067 CHAR is the default one (i.e. a list of CHAR itself), treat it as
3068 nil.
3069 (nfd, nfkd): Likewise.
3070
963b492b
SM
30712011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
3072
3073 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
3074 from process filters aren't reliably transmitted to the surrounding
3075 accept-process-output.
3076 (mpc-proc-check): New function.
3077 (mpc-proc-sync): Use it (bug#8293)
3078
93b6b5e1
SM
30792011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
3080
3081 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
3082 Add compatibility functions (bug#9313).
3083
bca633fb
EZ
30842011-08-23 Eli Zaretskii <eliz@gnu.org>
3085
b177498a
EZ
3086 * cus-start.el (all): Add entry for bidi-paragraph-direction.
3087
bca633fb
EZ
3088 * international/uni-bidi.el: Regenerated.
3089
0902a04e
KH
30902011-08-23 Kenichi Handa <handa@m17n.org>
3091
3092 * international/charprop.el:
3093 * international/uni-bidi.el:
3094 * international/uni-category.el:
3095 * international/uni-combining.el:
3096 * international/uni-comment.el:
3097 * international/uni-decimal.el:
3098 * international/uni-decomposition.el:
3099 * international/uni-digit.el:
3100 * international/uni-lowercase.el:
3101 * international/uni-mirrored.el:
3102 * international/uni-name.el:
3103 * international/uni-numeric.el:
3104 * international/uni-old-name.el:
3105 * international/uni-titlecase.el:
3106 * international/uni-uppercase.el: Regenerate.
3107
3bbf23bc
MR
31082011-08-23 Martin Rudalics <rudalics@gmx.at>
3109
3110 * help.el (help-window-setup): Fix message displayed when other
3111 window is reused. (Bug#9341)
3112
b3fd59bd
SM
31132011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
3114
1802e444
SM
3115 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
3116 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
3117
b3fd59bd
SM
3118 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
3119 Mark obsolete.
3120 * shell.el (shell-parse-pcomplete-arguments): New function.
3121 (shell-completion-vars): Use it instead (bug#9160).
3122
4eb61348
SM
31232011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
3124
867cab74
SM
3125 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
3126 strings and comments (bug#9333).
3127
4eb61348
SM
3128 * emacs-lisp/debug.el (debug-arglist): New function.
3129 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
3130 (debug-on-entry-1): Handle interpreted closures (bug#9120).
3131
262a1439
JL
31322011-08-22 Juri Linkov <juri@jurta.org>
3133
56ee679c
JL
3134 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3135 Revert regexp that highlights output switches to its old
3136 pre-2010-10-28 value and remove one `?' from it (bug#9319).
3137
262a1439
JL
3138 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
3139 to check for empty output (bug#9226).
3140
f13f86fb
CY
31412011-08-22 Chong Yidong <cyd@stupidchicken.com>
3142
3143 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
3144 symbol-constituent as the default, as that stops font-lock from
3145 working properly (Bug#8843).
3146
c65c9622
LMI
31472011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3148
3149 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
3150 `coding-system-for-*' around the process open call to avoid
3151 auth-source side effects.
e7f2c178 3152 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
3153 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
3154 probe hangs.
c65c9622 3155
23a8a5ab
CY
31562011-08-21 Chong Yidong <cyd@stupidchicken.com>
3157
ff98b2dd
CY
3158 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
3159
23a8a5ab
CY
3160 * emacs-lisp/find-func.el (find-function-noselect): New arg
3161 lisp-only.
3162
3163 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
3164 signal an error for built-in functions (Bug#6664).
3165
f5e3c598
LMI
31662011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3167
3168 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
3169 (smtpmail-try-auth-methods): Use it.
3170
a3f2468a
CY
31712011-08-21 Chong Yidong <cyd@stupidchicken.com>
3172
2c34e8da
CY
3173 * font-lock.el (font-lock-fontify-region)
3174 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
3175 (font-lock-default-unfontify-buffer)
3176 (font-lock-default-fontify-region)
3177 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
3178
b3fd59bd
SM
3179 * progmodes/compile.el (compilation-error-properties):
3180 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
3181 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
3182 `ant' regexp.
ee31aabc 3183
a3f2468a
CY
3184 * net/browse-url.el (browse-url-firefox): Don't call
3185 browse-url-firefox-sentinel unless using -remote (Bug#9328).
3186
8e999f70
GM
31872011-08-20 Glenn Morris <rgm@gnu.org>
3188
c21a496a
GM
3189 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
3190
59ee0542
GM
3191 * tutorial.el (tutorial--default-keys): Update some default bindings.
3192
8e999f70
GM
3193 * files.el (hack-local-variables): Fully ignore case for "mode:".
3194
e3715033
AM
31952011-08-20 Alan Mackenzie <acm@muc.de>
3196
3197 Resolve invalid use of a regexp in regexp-opt.
3198
4d61f28d
JB
3199 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
3200 detection for a java annotation.
e3715033 3201
4d61f28d 3202 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
3203 detection for a java annotation.
3204
4d61f28d
JB
3205 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
3206 handling for java.
e3715033
AM
3207 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
3208
04ed2e9c
CY
32092011-08-20 Chong Yidong <cyd@stupidchicken.com>
3210
3211 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
3212 (Bug#9274).
3213
826cee64
AM
32142011-08-20 Alan Mackenzie <acm@muc.de>
3215
58179cce 3216 Fontify CPP expressions correctly when starting in the middle of
826cee64
AM
3217 such a construct. Mainly for when jit-lock etc. starts a chunk
3218 here.
3219
58179cce 3220 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
826cee64 3221 variable.
58179cce 3222 (c-make-font-lock-search-form): New function, extracted from
826cee64
AM
3223 c-make-font-lock-search-function.
3224 (c-make-font-lock-search-function): Use the above function.
3225 (c-make-font-lock-context-search-function): New function.
3226 (c-cpp-matchers): Enhance the preprocessor expression case with
3227 the above function
3228 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
3229 which takes an expression.
3230
3231 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
3232
13009bd8
MR
32332011-08-20 Martin Rudalics <rudalics@gmx.at>
3234
3235 * window.el (display-buffer-reuse-window)
3236 (display-buffer-pop-up-window): Don't reuse or split a side
3237 window.
3238
9234ff7f
GM
32392011-08-19 Glenn Morris <rgm@gnu.org>
3240
3241 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 3242 Downcase "Mode:". (Bug#9331)
9234ff7f 3243
f635daa1
CY
32442011-08-18 Chong Yidong <cyd@stupidchicken.com>
3245
3246 * international/characters.el: Add L and R categories.
3247
3248 * subr.el (bidi-string-mark-left-to-right): Rename from
3249 string-mark-left-to-right. Use category search.
3250
3251 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
3252
bc987f8b
JL
32532011-08-18 Juri Linkov <juri@jurta.org>
3254
3255 * faces.el (error, warning, success): New faces with definitions
3256 copied from old default values of `font-lock-warning-face',
3257 `compilation-warning', `compilation-info' (bug#6117).
3258
3259 * font-lock.el (font-lock-warning-face): Inherit from `error'.
3260
3261 * progmodes/compile.el (compilation-error): Inherit from `error'.
3262 (compilation-warning): Inherit from `warning'.
3263 (compilation-info): Inherit from `success'.
3264
3265 * dired.el (dired-marked): Inherit from `warning'.
3266 (dired-flagged): Inherit from `error'.
3267
57173b96
LMI
32682011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3269
3e79eb87
LMI
3270 * mail/smtpmail.el (auth-source): Require to avoid problems with
3271 binding variables (bug#9298). Also clean up some unused
3272 autoloads.
3273
b3fd59bd
SM
3274 * net/network-stream.el (network-stream-open-starttls):
3275 Support using starttls.el without using gnutls-cli.
57173b96 3276
02b404de
JL
32772011-08-17 Juri Linkov <juri@jurta.org>
3278
3279 * progmodes/grep.el (rgrep): Handle the case when
3280 `grep-find-command' is a cons cell (bug#9278).
3281
8c9177f2
MR
32822011-08-17 Martin Rudalics <rudalics@gmx.at>
3283
3284 * window.el (display-buffer-pop-up-frame): Run frame creation
3285 function with BUFFER current (as special-display-popup-frame
3286 does). Reported by Drew Adams.
3287
3644a0ab
DU
32882011-08-17 Daiki Ueno <ueno@unixuser.org>
3289
3290 * epa-mail.el: Simplify GnuPG group expansion using
3291 epg-expand-group.
3292 (epa-mail-group-alist, epa-mail-group-modtime)
3293 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
3294 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
3295 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
3296 Remove.
3297
5e617bc2 32982011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
3299
3300 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
3301
9c4aeabf
AM
33022011-08-16 Alan Mackenzie <acm@muc.de>
3303
3304 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
3305 Correct, to avoid the inside of macros.
3306
3a99bf64
RS
33072011-08-16 Richard Stallman <rms@gnu.org>
3308
04963aa8
RS
3309 * epa-mail.el: Handle GnuPG group definitions.
3310 (epa-mail-group-alist, epa-mail-group-modtime)
3311 (epa-mail-gnupg-conf-file): New variables.
3312 (epa-mail-parse-groups, epa-mail-sync-groups)
3313 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
3314 (epa-mail-expand-recipients): New functions.
3315 (epa-mail-encrypt): Call epa-mail-expand-recipients.
3316
177549d0
RS
3317 * mail/rmail.el (rmail-epa-decrypt): New command.
3318
fe38beef
RS
3319 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
3320 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
3321 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
3322 (epa-decrypt-armor-in-region): Make error message clearer.
3323
934eacb9
SM
33242011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3325
3326 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
3327 and "a2b" to "ab" for `prefix'.
3328
d024fb4e
CY
33292011-08-14 Chong Yidong <cyd@stupidchicken.com>
3330
3331 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
3332 filter groups.
de148fee
CY
3333 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
3334 Fourquet (Bug#8804).
d024fb4e 3335
62f1ca49
JB
33362011-08-12 Juanma Barranquero <lekktu@gmail.com>
3337
3338 * startup.el (argi): Declare as global variable (bug#9275).
3339
9ccaaa4b
CY
33402011-08-12 Chong Yidong <cyd@stupidchicken.com>
3341
3342 * subr.el (string-mark-left-to-right): Search the entire string
3343 for RTL script, not just the terminating character. Doc fix.
3344
a3dae87a
SM
33452011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3346
6cd18349
SM
3347 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
3348 New function.
3349 (js--regexp-literal, js-syntax-propertize-function): Remove.
3350 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
3351 (js-mode-map): Don't rebind electric keys.
3352 (js-insert-and-indent): Remove.
3353 (js-mode): Setup electric-layout and electric-indent instead.
3354
a3dae87a
SM
3355 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
3356
9d5cb631
DU
33572011-08-12 Daiki Ueno <ueno@unixuser.org>
3358
3359 * epa.el (epa-progress-callback-function): Fix the logic of
3360 displaying progress.
3361 * epa-file.el (epa-file-insert-file-contents): Make progress
3362 display more user-friendly.
3363 (epa-file-write-region): Ditto.
3364
3e26a4a2
CY
33652011-08-10 Chong Yidong <cyd@stupidchicken.com>
3366
3367 * subr.el (string-mark-left-to-right): New function.
3368
3369 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
3370 Use string-mark-left-to-right.
3371 (list-buffers-noselect): Caller changed.
3372
a3dae87a
SM
3373 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
3374 Use string-mark-left-to-right.
3e26a4a2
CY
3375 (tabulated-list-print): Recenter after moving point.
3376
ac8cf6e6
JL
33772011-08-10 Juri Linkov <juri@jurta.org>
3378
3379 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
3380 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
3381 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
3382
8d96c9a4
CY
33832011-08-09 Chong Yidong <cyd@stupidchicken.com>
3384
3385 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
3386 (Bug#7554).
3387
7be1c708 33882011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
3389
3390 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
3391 character. (Bug#6594)
3392
37e11a63
CY
33932011-08-08 Chong Yidong <cyd@stupidchicken.com>
3394
839dde57
CY
3395 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
3396 (image-dired--with-db-file): New macro.
3397 (image-dired-write-tags, image-dired-remove-tag)
3398 (image-dired-create-gallery-lists, image-dired-write-comments)
3399 (image-dired-get-comment, image-dired-mark-tagged-files)
3400 (image-dired-list-tags, image-dired-gallery-generate): Use it.
3401 (image-dired-gallery-generate): Use insert-file-contents.
3402
37e11a63
CY
3403 * time.el (display-time-world-list, display-time-world-display):
3404 * time-stamp.el (time-stamp-string):
3405 * vc/add-log.el (add-change-log-entry): Use setenv instead of
3406 set-time-zone-rule (Bug#7337).
3407
0b4946c4
DU
34082011-08-08 Daiki Ueno <ueno@unixuser.org>
3409
3410 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
3411 (epg-error-to-string, epg-errors-to-string): New function.
3412 (epg-wait-for-completion): Reverse errors list.
3413 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
3414 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
3415 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
3416 (epg-sign-keys, epg-generate-key-from-file)
3417 (epg-generate-key-from-string): Format errors by using
3418 epg-errors-to-string (bug#9255).
3419 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
3420
75bfc667
JL
34212011-08-07 Juri Linkov <juri@jurta.org>
3422
3423 * faces.el (list-faces-display): Remove extra angle bracket
3424 from `help-mode-map'.
3425
3426 * info.el (Info-history-toc-nodes): Doc fix.
3427
3428 * longlines.el (longlines-mode): Doc fix.
3429
673e08bb
SM
34302011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
3431
4640dd88
SM
3432 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
3433 of statements and in a few more cases (bug#9183).
3434
673e08bb
SM
3435 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
3436 New functions.
3437 (cl-transform-lambda): Use them (bug#9239).
3438
89b3f019
MR
34392011-08-05 Martin Rudalics <rudalics@gmx.at>
3440
3441 * window.el (display-buffer-same-window)
3442 (display-buffer-same-frame, display-buffer-other-window)
3443 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
3444 (pop-to-buffer-other-window)
3445 (pop-to-buffer-same-frame-other-window)
3446 (pop-to-buffer-other-frame): Make them defuns.
3447 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
3448
640c8776
SM
34492011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3450
3451 * subr.el (make-composed-keymap): Move from C. Change calling
3452 convention, and improve docstring to bring attention to a subtle point.
3453 * minibuffer.el (completing-read-default): Adjust accordingly.
3454
63648a95
MA
34552011-08-03 Michael Albinus <michael.albinus@gmx.de>
3456
3457 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
3458 (tramp-open-shell): Use `tramp-shell-quote-argument'.
3459
3460 * net/trampver.el: Update release number.
3461
b796c9b7
SM
34622011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3463
3464 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
3465 "in" (bug#9190).
3466
2239d7d5
LMI
34672011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
3468
e07dd7c3
LMI
3469 * mail/sendmail.el (sendmail-query-once): Restore the current
3470 buffer after querying (bug#9074).
3471
0e6a2bd7
LMI
3472 * dired.el (dired-flagged): Use different faces for marked and
3473 flagged files (bug#6117).
3474
ce887515
LMI
3475 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
3476 (bug#4433).
3477
92f2affc
LMI
3478 * ido.el (ido-mode): Switch off the message if called
3479 non-interactively.
3480
57d5aff0
LMI
3481 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
3482 before 587, since it appears that that's more likely to work for
3483 more people.
3484
98cd6c18 3485 * cus-edit.el (custom-file): When running under emacs -q, always
e1dbe924 3486 refuse to save the customizations, even if the .emacs file doesn't
98cd6c18
LMI
3487 exist.
3488
b96dec83
LMI
3489 * info.el: Remove the `Info-beginning-of-buffer' function
3490 (bug#8325).
3491
b796c9b7
SM
3492 * net/network-stream.el (network-stream-open-starttls):
3493 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 3494
d90e2ea0
MR
34952011-08-01 Martin Rudalics <rudalics@gmx.at>
3496
3497 * window.el (display-buffer-in-window): Don't set dedicated status
3498 of window here (Bug#9215).
3499 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
3500 (display-buffer-pop-up-side-window)
b796c9b7 3501 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 3502
cca09170
SM
35032011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3504
3505 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
3506 before binding generated-autoload-file.
3507
027b979c
DD
35082011-08-01 Deniz Dogan <deniz@dogan.se>
3509
3510 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
3511
3c7ee4f3
MA
35122011-07-30 Michael Albinus <michael.albinus@gmx.de>
3513
3514 Sync with Tramp 2.2.2.
3515
3516 * net/trampver.el: Update release number.
3517
2cc8e51a
JL
35182011-07-30 Juri Linkov <juri@jurta.org>
3519
3520 * dired-aux.el (dired-touch-initial): Remove function.
3521 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
3522 current time, and `default' to the last modification time of the
3523 current marked file (bug#6887).
3524
a514d856
JM
35252011-07-28 Jose E. Marchesi <jemarch@gnu.org>
3526
3527 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 3528 numeric argument to read-number (bug#9163).
a514d856 3529
8a7eddd7
MA
35302011-07-27 Michael Albinus <michael.albinus@gmx.de>
3531
3532 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
3533 connection process, it could be nil.
3534
1ddd96f5
LL
35352011-07-27 Leo Liu <sdl.web@gmail.com>
3536
3537 Simplify url handling in rcirc-mode.
3538
3539 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
3540 (rcirc-browse-url-at-mouse): Remove.
3541 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
3542
b248a85d
AM
35432011-07-26 Alan Mackenzie <acm@muc.de>
3544
3545 Fontify bitfield declarations properly.
3546
3547 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
3548 (c-symbol-chars): Now exported as a lang variable.
3549 (c-not-primitive-type-keywords): New lang variable.
3550
3551 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
3552 QT keyword "more" to prevent "more slots: ...." being spuriously
58179cce 3553 parsed as a bitfield declaration.
b248a85d 3554
b796c9b7
SM
3555 * progmodes/cc-engine.el (c-beginning-of-statement-1):
3556 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
3557 (c-punctuation-in): New function.
3558 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
3559 declarations properly.
3560
68575ab0
UJ
35612011-07-26 Ulf Jasper <ulf.jasper@web.de>
3562
3563 * calendar/icalendar.el (icalendar--all-events): Take care of
3564 multiple vcalendars in a single file.
b796c9b7 3565 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 3566
0f0a88b9
DD
35672011-07-25 Deniz Dogan <deniz@dogan.se>
3568
3569 * image.el (insert-image): Clarifying docstring.
3570
0b3f36df
MA
35712011-07-24 Michael Albinus <michael.albinus@gmx.de>
3572
3573 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
3574 `tramp-send-command-and-check' if there is no error.
3575 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
3576
a9901f61
AM
35772011-07-22 Alan Mackenzie <acm@muc.de>
3578
3579 Prevent cc-langs.elc being loaded at run time.
3580
3581 * progmodes/cc-mode.el: Remove two autoload forms which loaded
3582 cc-langs.
3583
4d61f28d 3584 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
3585 "(require 'cc-langs)". Quote a form so it will evaluate at
3586 (cc-mode's) compilation time.
3587
11d074b2
MA
35882011-07-22 Michael Albinus <michael.albinus@gmx.de>
3589
3590 * net/tramp.el (tramp-file-name-handler): Avoid recursive
3591 loading. (Bug#9114)
3592
938b94c8
MR
35932011-07-21 Martin Rudalics <rudalics@gmx.at>
3594
3595 * window.el (display-buffer-pop-up-window)
3596 (display-buffer-pop-up-side-window)
3597 (display-buffer-in-side-window): Call display-buffer-set-height
3598 and display-buffer-set-width after setting the new window's
b796c9b7 3599 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 3600
bfa4f190
SS
36012011-07-20 Sam Steingold <sds@gnu.org>
3602
3603 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
3604 (etags-tags-included-tables): Call `convert-standard-filename' on
3605 the file names contained in TAGS so that windows Emacs can handle
3606 TAGS files created by cygwin ctags.
3607
8ca42262
LMI
36082011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
3609
3610 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
3611 which apparently didn't work.
3612
5db2afd2 36132011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 3614
5db2afd2
RW
3615 * proced.el (proced-send-signal): For *Marked Processes* buffer
3616 put point at beginning of buffer.
3617
92e15d10
SB
36182011-07-19 Stephen Berman <stephen.berman@gmx.net>
3619
3620 * proced.el (proced-format): Make header lines align with the text
3621 (bug#1779).
3622
1bfd59e5
LMI
36232011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3624
3625 * view.el (view-buffer): Allow running in `special' modes if we're
3626 visiting a file (bug#8615).
3627
f5aae37c
MR
36282011-07-19 Martin Rudalics <rudalics@gmx.at>
3629
3630 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
3631 (display-buffer-alist-set-1, display-buffer-alist-set-2):
3632 New functions.
f5aae37c
MR
3633 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
3634 more accurately.
3635
bf2c1571
AM
36362011-07-18 Alan Mackenzie <acm@muc.de>
3637
3638 Fontify declarators properly when, e.g., a jit-lock chunk begins
3639 inside a declaration.
3640
3641 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
3642
b796c9b7
SM
3643 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
3644 New function.
bf2c1571
AM
3645 (c-complex-decl-matchers): Insert reference to
3646 c-font-lock-enclosing-decls.
3647
3648 * progmodes/cc-engine.el (c-backward-single-comment):
3649 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
3650 to nil around calls to (forward-comment -1).
3651
4e190b80
LMI
36522011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3653
12dc863d
LMI
3654 * image.el (put-image): Doc typo fix.
3655
a762e966
LMI
3656 * progmodes/etags.el (tags-search): Doc typo fix.
3657
4e190b80
LMI
3658 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
3659 password if we get errors 550 to 554.
3660
f019fb21
LMI
36612011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
3662
b796c9b7 3663 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 3664
81746738
LMI
3665 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
3666 indentation character (bug#6380).
3667
3ee3a1b5
LMI
3668 * files.el (buffer-offer-save): Made permanently local (bug#6241).
3669
c82f64de
LMI
3670 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
3671 to clarify what the problem is (bug#4291).
3672
f019fb21
LMI
3673 * simple.el (current-kill): Clarify what
3674 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
3675 (auto-fill-mode): Document `auto-fill-function' in relation to
3676 `auto-fill-mode' (bug#2470).
f019fb21 3677
0794775d
LM
36782011-07-16 Lawrence Mitchell <wence@gmx.li>
3679
3680 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
3681 method if slot is read-only (bug#9035).
3682
be39b8cc
MR
36832011-07-16 Martin Rudalics <rudalics@gmx.at>
3684
b796c9b7 3685 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 3686 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
3687 selected before, see discussion of (Bug#8615), (Bug#6954).
3688 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 3689
6ccf7859
GM
36902011-07-15 Glenn Morris <rgm@gnu.org>
3691
3692 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 3693 Respect help-form.
6ccf7859 3694
87e86684
LM
36952011-07-09 Lawrence Mitchell <wence@gmx.li>
3696
3697 * net/gnutls.el (gnutls-min-prime-bits): New variable.
3698 (gnutls-negotiate): Use it.
3699
d6066239
LMI
37002011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
3701
b796c9b7
SM
3702 * net/gnutls.el (gnutls-negotiate):
3703 Upcase `gnutls-algorithm-priority'.
d6066239 3704
bd23ebc0
GM
37052011-07-15 Glenn Morris <rgm@gnu.org>
3706
c65bca65
GM
3707 * jka-compr.el (jka-compr-verbose): Move from here...
3708 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
3709 Add missing :version tag.
3710 * info.el: No need to require jka-compr when compiling.
bd23ebc0 3711
478615cc
LMI
37122011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
3713
7b41decb
LMI
3714 * net/gnutls.el (gnutls-algorithm-priority): New variable.
3715 (gnutls-negotiate): Use it.
3716
dbc44fcd
LMI
3717 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
3718
06789f97
LMI
3719 * info.el (Info-beginning-of-buffer): New command.
3720 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
3721 announcing `b' as the key (bug#8325).
ab896c37 3722 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 3723
c39da690
LMI
3724 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
3725
3aa5f34b
LMI
3726 * international/mule-cmds.el
3727 (describe-specified-language-support): Make the error message
3728 clearer (bug#8905).
3729
4bf0979f
LMI
3730 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
3731
478615cc
LMI
3732 * isearch.el (isearch-barrier): Add a doc string, since it's
3733 mentioned in a function doc string (bug#8678).
3734
75c68aa1
MR
37352011-07-15 Martin Rudalics <rudalics@gmx.at>
3736
3737 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
3738 buffer argument (Bug#9083) and self-identifying label argument.
3739
a7c33da2
GM
37402011-07-15 Glenn Morris <rgm@gnu.org>
3741
3742 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
3743
2f5c6024
LMI
37442011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3745
3746 * man.el (Man-fontify-manpage): Fix message when formatting the
3747 man page (bug#7929).
3748
0bb23927 37492011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
3750
3751 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
3752 argument LRM; if non-nil, append an invisible LRM character to the
3753 buffer name.
3754 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
3755 last argument non-nil, when formatting buffer names.
0bb23927
EZ
3756 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
3757 paragraph direction.
cce4b0a7 3758
621ef9ab
LMI
37592011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3760
d1583c48
LMI
3761 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
3762 the man page name (bug#7929).
3763
6a57fb5f
LMI
3764 * image.el (put-image): Mention the `put-image' overlay property
3765 (bug#7834).
3766
d7956b14
LMI
3767 * scroll-bar.el (set-scroll-bar-mode): Mention that
3768 `scroll-bar-mode' lists the values (bug#7772).
3769
5b2d4a66
LMI
3770 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
3771 command (bug#7729).
3772
7509a874
LMI
3773 * rect.el (apply-on-rectangle): Return the point after the last
3774 operation.
3775 (string-rectangle): Go to the point after the last operation
3776 (bug#7522).
3777
4fe74b19
LMI
3778 * printing.el (pr-toggle-region): Clarify the documentation
3779 slightly (bug#7493).
3780
b796c9b7
SM
3781 * time.el (display-time-update):
3782 Allow `display-time-mail-function' to return nil (bug#7158).
3783 Fix suggested by Detlev Zundel.
ab283561 3784
fc233c9d
LMI
3785 * vc/diff.el (diff): Clarify the order the file names are read
3786 (bug#7111).
3787
43f5740b
LMI
3788 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
3789 the doc string (bug#7015).
3790
f2182a76
LMI
3791 * font-lock.el (font-lock-maximum-decoration): Mention what
3792 numeric levels mean (bug#6935).
3793
621ef9ab
LMI
3794 * startup.el (initial-buffer-choice): Don't mention the `none'
3795 selection, which is against policy.
3796
adc47434
MR
37972011-07-14 Martin Rudalics <rudalics@gmx.at>
3798
b796c9b7
SM
3799 * window.el (display-buffer-normalize-special):
3800 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 3801
7e5bfb8f
EZ
38022011-07-14 Eli Zaretskii <eliz@gnu.org>
3803
3804 * subr.el (version<, version<=, version=): Mention "-CVS" and
3805 "-12345" alpha version numbers.
3806
27fa387a
CY
38072011-07-14 Chong Yidong <cyd@stupidchicken.com>
3808
3809 * bindings.el: Add advertised binding for set-mark-command
3810 (Bug#5772).
3811
8bdfa064
CY
38122011-07-14 Chong Yidong <cyd@stupidchicken.com>
3813
3814 * bindings.el (mode-line-other-buffer):
3815 * bookmark.el (bookmark-bmenu-2-window):
3816 * bs.el (bs-cycle-next, bs-cycle-previous):
3817 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
3818 switch-to-buffer.
3819
3820 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 3821 Delete.
8bdfa064 3822
5eba16a3
JB
38232011-07-14 Juanma Barranquero <lekktu@gmail.com>
3824
3825 * follow.el (follow-debug-message, follow-redisplay):
3826 * jka-cmpr-hook.el (with-auto-compression-mode):
3827 Fix typos in docstrings.
3828
15853710
LMI
38292011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3830
a28e4607
LMI
3831 * subr.el (with-silent-modifications): Clarify somewhat what the
3832 macro inhibits (bug#6525).
3833
15853710
LMI
3834 * simple.el (eval-expression): Note what it does if called
3835 interactively (bug#6495).
3836
bee0fcef
CY
38372011-07-13 Chong Yidong <cyd@stupidchicken.com>
3838
b796c9b7
SM
3839 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
3840 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
3841
3842 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
3843 Remove switch-to-buffer.
3844
58274504
LMI
38452011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3846
bd2fcc8d
LMI
3847 * files.el (make-directory): Clarify that an error will be raised
3848 if there's an error (bug#6397).
3849
0f04b32c
LMI
3850 * startup.el (initial-buffer-choice): Add `none' as a choice
3851 (bug#6234).
3852
465c5fc8
LMI
3853 * subr.el (add-hook): Clarify section about buffer-local hooks
3854 (bug#6218).
3855
58274504
LMI
3856 * dired.el (dired-flagged): Clarify doc string (bug#6117).
3857
bead9a43
JB
38582011-07-13 Juanma Barranquero <lekktu@gmail.com>
3859
3860 * tabify.el (untabify): Preserve the current column so that point
3861 doesn't move (bug#6032).
3862
3af98a7b
LMI
38632011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3864
b796c9b7
SM
3865 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
3866 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 3867
6240145a
GM
38682011-07-13 Glenn Morris <rgm@gnu.org>
3869
3870 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
3871 (dired-insert-directory): Give a message the first time
3872 if ls is found not to support --dired.
3873
1d8c2ccc
LMI
38742011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3875
3876 * simple.el (toggle-truncate-lines): Clarify what is toggled
3877 (bug#5580). Text by Drew Adams.
3878
5fc4038e
CY
38792011-07-13 Chong Yidong <cyd@stupidchicken.com>
3880
3881 * simple.el (blink-matching-open): Make the error message from the
3882 last change less verbose.
3883
bf6012e5
DN
38842011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
3885
3886 * font-lock.el (font-lock-comment-face): Use the high contrast
3887 "yellow" color for font-lock-comment-face on low color terminals
3888 using a dark background color (bug#4221).
3889
343c3b5a
LMI
38902011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3891
7e9505c5
LMI
3892 * dired.el (dired-insert-set-properties): Make the doc string
3893 reflect what it does now (bug#5325).
3894
c26fdcf5
LMI
3895 * simple.el (blink-matching-open): Say that we were unable to find
3896 the match within the limit, if we're limited (bug#5122).
3897
bb388cc5
LMI
3898 * international/mule-cmds.el (prefer-coding-system): Add an
3899 example (bug#4869).
3900
343c3b5a
LMI
3901 * progmodes/etags.el (tags-search): Document `file-list-form'
3902 (bug#4731).
3903
2a517d45
LM
39042011-07-13 Lawrence Mitchell <wence@gmx.li>
3905
3906 * net/browse-url.el (browse-url-default-browser)
3907 (browse-url-browser-function): Make the default browser choice a
3908 bit more logical (bug#4300). Also clean up the doc string.
3909
b6c78ef2
JB
39102011-07-13 Juanma Barranquero <lekktu@gmail.com>
3911
3912 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
3913 binary endings (bug#4440).
3914
1c4dd947
LMI
39152011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3916
a2014063
LMI
3917 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
3918 which can be pretty annoying (bug#8971).
3919
9c9c2d88
LMI
3920 * jka-compr.el (jka-compr-verbose): New variable, and use
3921 throughout (bug#8971).
3922
1c4dd947
LMI
3923 * info.el (Info-find-file): Fall back on the installation
3924 directory if we can't find the info node anywhere else.
3925
a1c9f41b
SO
39262011-07-13 Sergei Organov <osv@javad.com> (tiny change)
3927
3928 * vc/vc.el (vc-revert-file):
3929 Don't set file time-stamp in the past. (Bug#5181)
3930
536f3d36
LMI
39312011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
3932
7152b011
LMI
3933 * files.el (after-find-file): Give a better error message when
3934 trying to find a symlink that points to a file that doesn't exist
3935 (bug#4398).
3936
536f3d36
LMI
3937 * progmodes/cc-vars.el: Remove (probably) misleading comment
3938 (bug#4396).
3939
460c0fba
JB
39402011-07-12 Johan Bockgård <bojohan@gnu.org>
3941
3942 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
3943
7a6bda45
CY
39442011-07-12 Chong Yidong <cyd@stupidchicken.com>
3945
3946 * mouse-sel.el: Hack restoring functionality, while keeping
3947 compatibility with 2010-07-03 changes to mouse selection.
3948 (mouse-sel-primary-overlay): New var.
3949 (mouse-sel-selection-alist): Use it.
3950 (mouse-sel-mode): Doc fix; remove points that are default features
3951 of mouse.el.
3952
c79598ef
JB
39532011-07-12 Johan Bockgård <bojohan@gnu.org>
3954
3955 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3956 Fix previous fix (bug#2490).
3957
ff8be6ef
RW
39582011-07-12 Roland Winkler <winkler@gnu.org>
3959
b796c9b7
SM
3960 * textmodes/bibtex.el (bibtex-initialize):
3961 Use pop-to-buffer-same-window.
ff8be6ef
RW
3962 (bibtex-search-entries): Fix interactive call.
3963
296ba3ee
LMI
39642011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
3965
f5242a02 3966 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
3967 Fontise bytecomp Error lines more correctly (bug#2490).
3968 Fix suggested by Johan Bockgård.
f5242a02 3969
296ba3ee
LMI
3970 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
3971
3972 * dired-x.el (dired-guess-default): Use `delete-dups'.
3973
f69fd0d2
CY
39742011-07-12 Chong Yidong <cyd@stupidchicken.com>
3975
3976 * dired.el (dired-mark-prompt):
3977 * dired-aux.el (dired-read-shell-command): Doc fix.
3978
eab5dc07
LMI
39792011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3980
b796c9b7
SM
3981 * mail/sendmail.el (sendmail-query-once):
3982 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
3983 emacs -Q.
3984
3985 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
3986
eab5dc07
LMI
3987 * cus-edit.el (custom-file): Take an optional no-error variable.
3988 (customize-save-variable): Set the variable, and give a warning if
3989 running under "emacs -q".
3990
a1e65d42
JB
39912011-07-11 Juanma Barranquero <lekktu@gmail.com>
3992
3993 * loadhist.el (unload-feature-special-hooks):
3994 Add `auto-coding-functions', `fill-nobreak-predicate' and
3995 `find-directory-functions' (bug#5327).
3996
1d52da10
LMI
39972011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3998
be958f1d
LMI
3999 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
4000
5bedb26c
LMI
4001 * cus-edit.el (custom-guess-name-alist): -alist variables should
4002 use the `alist' type (bug#3120). Suggested by Drew Adams.
4003
1d52da10
LMI
4004 * printing.el: Add documentation to all the `pr-toggle-' commands.
4005
481a51b6
LL
40062011-07-11 Leo <sdl.web@gmail.com> (tiny change)
4007
4008 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
4009 backends where it makes sense (bug#2623).
4010
dcc88d8a
LMI
40112011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4012
c3de9feb
LMI
4013 * dired-x.el (dired-guess-default): Remove duplicate shell command
4014 entries (bug#2028).
8a93078b 4015 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 4016 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 4017
dcc88d8a
LMI
4018 * subr.el (remove-duplicates): New conveniency function.
4019
505e3645
LMI
40202011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4021
4022 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
4023 (bug#1526).
4024
40252011-07-10 Martin Rudalics <rudalics@gmx.at>
4026
4027 * window.el (display-buffer-normalize-default): Don't invert
4028 meaning of even-window-heights. Reported by Eli Zaretskii
4029 <eliz@gnu.org>.
4030
455e4fa1
BR
40312011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
4032
4033 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
4034
8e0bc3e9
CY
40352011-07-10 Chong Yidong <cyd@stupidchicken.com>
4036
4037 * window.el (display-buffer): Fix arguments to
4038 display-buffer-reuse-window in last change.
4039
fa7c3228
CY
4040 * faces.el (link): Use a less saturated blue on light backgrounds.
4041
4042 * startup.el (fancy-startup-text, fancy-about-text)
4043 (fancy-startup-tail): Use font-lock faces, for background safety.
4044
c0a7f300
BN
40452011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
4046
b796c9b7
SM
4047 * emulation/viper-cmd.el (viper-change-state-to-vi):
4048 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 4049
4dc2a129
MR
40502011-07-09 Martin Rudalics <rudalics@gmx.at>
4051
4052 * window.el (display-buffer-default-specifiers): Remove.
4053 (display-buffer-macro-specifiers): Remove default specifiers.
4054 (display-buffer-alist): Default to nil.
b796c9b7 4055 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
4056 (display-buffer-pop-up-window): Allow splitting internal
4057 windows. Check whether a live window was created.
4058 (display-buffer-other-window-means-other-frame)
4059 (display-buffer-normalize-arguments): Rename to
4060 display-buffer-normalize-argument and rewrite. Set the
4061 other-window specifier.
4062 (display-buffer-normalize-special): New function.
4063 (display-buffer-normalize-options): Rename to
4064 display-buffer-normalize-default and rewrite.
4065 (display-buffer-normalize-options-inhibit): Remove.
4066 (display-buffer-normalize-specifiers): Rewrite.
4067 (display-buffer): Process other-window specifier and call
4068 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
4069 more faithfully.
b796c9b7 4070 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 4071 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
4072 (display-buffer-in-window, display-buffer-alist-set):
4073 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
4074 <tassilo@member.fsf.org>.
4075
2d43b8c9
LL
40762011-07-09 Leo Liu <sdl.web@gmail.com>
4077
4078 * register.el (insert-register): Restore accidental change on
4079 2011-06-26. (Bug#9028)
4080
7f9b7c53
GM
40812011-07-09 Glenn Morris <rgm@gnu.org>
4082
4083 * subr.el (remq): Handle the empty list. (Bug#9024)
4084
f042cfd8
AS
40852011-07-08 Andreas Schwab <schwab@linux-m68k.org>
4086
4087 * mail/sendmail.el (send-mail-function): No longer delay custom
4088 initialization.
4089 * custom.el (custom-initialize-delay): Doc fix.
4090
856b2f11
SM
40912011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4092
4093 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
4094
afae1d68
MA
40952011-07-08 Michael Albinus <michael.albinus@gmx.de>
4096
4097 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
4098 human-friendly prompt.
4099
0757af94
SM
41002011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4101
4102 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
4103 provided by a particular plugin.
4104
d760b731
LMI
41052011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4106
4107 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
4108 save customizations (with "emacs -Q"), just set the variable
4109 instead of erroring out.
4110
4111 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
4112
cd79ce90
JL
41132011-07-08 Juri Linkov <juri@jurta.org>
4114
4115 * arc-mode.el (archive-zip-expunge, archive-zip-update)
4116 (archive-zip-update-case): Use 7z if found by `executable-find'.
4117 The order of searching the available programs is the same as in
4118 `archive-zip-extract' (bug#8968).
4119
14cc04aa
CY
41202011-07-07 Chong Yidong <cyd@stupidchicken.com>
4121
4122 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
4123 (menu-bar-options-menu): Tweak descriptions.
4124
0a1848ec
LMI
41252011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4126
4127 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
4128 menu items into verb phrases (bug#1421). Also refill to fit under
4129 80 columns.
4130
f5bd0689
CY
41312011-07-07 Chong Yidong <cyd@stupidchicken.com>
4132
538e85c6
CY
4133 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
4134 (Info-read-node-name): Doc fix (Bug#1084).
4135
f5bd0689
CY
4136 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
4137 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
4138 (end-of-sexp, beginning-of-sexp)
4139 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
4140 (forward-symbol, forward-same-syntax, word-at-point)
4141 (sentence-at-point): Doc fix (Bug#1144).
4142
56ec5115
LMI
41432011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4144
f3f8e37f
LMI
4145 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
4146 should cover it (bug#1281).
4147
0757af94 4148 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 4149
e9fce1ac 4150 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12b9eb35
LMI
4151 negotiation fails, then possibly try again with a non-encrypted
4152 connection (bug#9017).
4153
56ec5115
LMI
4154 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
4155 be used.
4156
c2f9aec8
RS
41572011-07-07 Richard Stallman <rms@gnu.org>
4158
4159 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
4160 property, and handle its changed format.
4161 Look for the correct line number.
4162 Use file's line contents (but not past first =) to find
4163 correct line in message.
4164
ef7b981d 41652011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
4166
4167 * international/characters.el (build-unicode-category-table):
4168 Delete it.
0757af94 4169 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 4170
0757af94 4171 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
4172 to src/chartab.c.
4173 (get-char-code-property): Call unicode-property-table-internal to
4174 load a file. Call get-unicode-property-internal where necessary.
4175 (put-char-code-property): Call unicode-property-table-internal to
4176 load a file. Call put-unicode-property-internal where necessary.
4177 put-unicode-property-internal where necessary.
0757af94
SM
4178 (char-code-property-description):
4179 Call unicode-property-table-internal to load a file.
c805dec0
KH
4180
4181 * international/charprop.el:
4182 * international/uni-bidi.el:
4183 * international/uni-category.el:
4184 * international/uni-combining.el:
4185 * international/uni-comment.el:
4186 * international/uni-decimal.el:
4187 * international/uni-decomposition.el:
4188 * international/uni-digit.el:
4189 * international/uni-lowercase.el:
4190 * international/uni-mirrored.el:
4191 * international/uni-name.el:
4192 * international/uni-numeric.el:
4193 * international/uni-old-name.el:
4194 * international/uni-titlecase.el:
4195 * international/uni-uppercase.el: Regenerate.
4196
4197 * loadup.el: Load international/charprop.el before
4198 international/characters.
4199
e14b388a
CY
42002011-07-07 Chong Yidong <cyd@stupidchicken.com>
4201
4202 * window.el (next-buffer, previous-buffer): Signal an error if
4203 called from a minibuffer window.
4204
4205 * bindings.el: Revert 2011-07-04 change.
4206
354cf0ba
RS
42072011-07-06 Richard Stallman <rms@gnu.org>
4208
4209 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
4210 (rmail-mime-insert-bulk, rmail-mime-insert-text):
4211 Treat markers like ints.
4212 (rmail-mime-entity): Doc fix.
4213
a48868a7
LMI
42142011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
4215
4906cd3d
LMI
4216 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
4217 defcustom again for backwards compatibility.
4218
e0457abe
LMI
4219 * simple.el (shell-command-on-region): Fill.
4220
d67f7e1f
LMI
4221 * dired-aux.el (dired-kill-line): Add a doc string.
4222
fe204702
LMI
4223 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
4224 to "\\sw\\|\\s_" (bug#358).
4225
a48868a7
LMI
4226 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
4227 (dired-unmark-backward): Ditto.
4228 (dired-flag-backup-files): Ditto.
4229
4230 * dired-x.el (dired-mark-sexp): Ditto.
4231
aa8a705c
RS
42322011-07-06 Richard Stallman <rms@gnu.org>
4233
4234 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
4235 (rmail-mime-entity): New arg TRUNCATED.
4236 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
4237 New functions.
4238 (rmail-mime-save): Warn if entity is truncated.
4239 (rmail-mime-toggle-hidden): Likewise, for showing.
4240 (rmail-mime-process-multipart): Record when an entity is truncated.
4241
a9a936b9
RS
4242 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
4243 if ENTITY is a string.
4244
1f2b92cb
LMI
42452011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
4246
f4f73198 4247 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
4248 of faces when `M-C-x'-ing their definitions (bug#8378).
4249 Also clean up the code slightly.
f4f73198 4250
12b16734 4251 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
da6062e6 4252 because that makes the colors go away.
12b16734 4253
f0691d22
LMI
4254 * mail/sendmail.el (send-mail-function): Change the default to
4255 `sendmail-query-once'.
9e87df06 4256 (sendmail-query-once): Add an autoload cookie.
f0691d22 4257
1f2b92cb
LMI
4258 * net/network-stream.el (network-stream-open-starttls): Try using
4259 a plain connection even if the server offered STARTTLS, and we
4260 kinda wanted to use it, if Emacs doesn't have any STARTTLS
4261 capability. This should make smtpmail.el work in slightly more
4262 configurations.
4263
1cdd2a1b
MA
42642011-07-06 Michael Albinus <michael.albinus@gmx.de>
4265
4266 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
4267 New defun.
4268 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
4269
fbcc67e2
MM
42702011-07-06 Michael R. Mauger <mmaug@yahoo.com>
4271
4272 * progmodes/sql.el: Version 3.0
0757af94 4273 (sql-product-alist): Add product :completion-object,
fbcc67e2 4274 :completion-column, and :statement attributes.
0757af94 4275 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 4276 (sql-mode-syntax-table): Mark all punctuation.
0757af94 4277 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
4278 ansi keywords.
4279 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 4280 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
4281 (sql-oracle-show-reserved-words): New function for development.
4282 (sql-product-font-lock): Simplify for source code buffers.
4283 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
4284 New functions.
4285 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
4286 (sql-mode-map): Add statement movement functions.
4287 (sql-ansi-statement-starters, sql-oracle-statement-starters):
4288 New variable.
fbcc67e2
MM
4289 (sql-statement-regexp, sql-beginning-of-statement)
4290 (sql-end-of-statement, sql-signum): New functions.
0757af94 4291 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
4292 (sql-show-sqli-buffer): Bug fix.
4293 (sql-interactive-mode): Store connection data as buffer local.
0757af94 4294 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
4295 with sql-interactive-mode.
4296 (sql-save-connection): Save buffer local settings.
0757af94 4297 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
4298 (sql-product-interactive): Bug fix.
4299 (sql-preoutput-hold): New variable.
4300 (sql-interactive-remove-continuation-prompt): Bug fixes.
4301 (sql-debug-redirect): New variable.
4302 (sql-str-literal): New function.
4303 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 4304 Redesign.
fbcc67e2
MM
4305 (sql-oracle-save-settings, sql-oracle-restore-settings)
4306 (sql-oracle-list-all, sql-oracle-list-table): New functions.
4307 (sql-completion-object, sql-completion-column)
4308 (sql-completion-sqlbuf): New variables.
4309 (sql-build-completions-1, sql-build-completions)
4310 (sql-try-completion): New functions.
4311 (sql-read-table-name): Use them.
4312 (sql-contains-names): New buffer local variable.
4313 (sql-list-all, sql-list-table): Use it.
4314 (sql-oracle-completion-types): New variable.
4315 (sql-oracle-completion-object, sql-sqlite-completion-object)
4316 (sql-postgres-completion-object): New functions.
4317
d4eaeab1
GM
43182011-07-06 Glenn Morris <rgm@gnu.org>
4319
4320 * window.el (pop-to-buffer): Doc fix.
4321
322b7dab 43222011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
4323
4324 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
4325
322b7dab 43262011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 4327
322b7dab 4328 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 4329
322b7dab 4330 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 4331
605dd5bf
CY
43322011-07-05 Chong Yidong <cyd@stupidchicken.com>
4333
4334 * button.el (button): Inherit from link face. Suggested by Dan
4335 Nicolaescu.
4336
7dbfa719
SM
43372011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4338
3db614b0
SM
4339 * progmodes/gdb-mi.el: Fit in 80 columns.
4340 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
4341 switch-to-buffer.
4342
7dbfa719
SM
4343 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
4344 if imenu is simply not configured (bug#8941).
4345
919d884a
KM
43462011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
4347
4348 * allout.el (allout-post-undo-hook): New allout outline-change
4349 event hook to signal undo activity.
4350 (allout-post-command-business): Run allout-post-undo-hook if an
4351 undo just occurred.
7dbfa719
SM
4352 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
4353 * allout-widgets.el (allout-widgets-after-undo-function):
4354 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
4355 in the vicinity of an undo.
4356 (allout-widgets-mode): Include allout-widgets-after-undo-function
4357 on the new allout-post-undo-hook.
4358
450a0f09
SM
43592011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4360
4361 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
4362 Let define-derived-mode define it.
4363 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
4364 cycles of abbrev-table inheritance (bug#8998).
4365
2de69e00
RW
43662011-07-05 Roland Winkler <winkler@gnu.org>
4367
4368 * textmodes/bibtex.el: Add support for biblatex.
4369 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
4370 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
4371 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
4372 (bibtex-entry-alist, bibtex-field-alist): New variables.
4373 (bibtex-entry-field-alist): Obsolete alias for
4374 bibtex-BibTeX-entry-alist.
4375 (bibtex-entry-alist, bibtex-field-alist): New widgets.
4376 (bibtex-set-dialect): New command.
4377 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
4378 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
4379 Bind via bibtex-set-dialect.
2de69e00
RW
4380 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
4381 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
4382 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
4383 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
4384 Define via bibtex-set-dialect.
450a0f09
SM
4385 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
4386 Obey bibtex-no-opt-remove-re.
2de69e00
RW
4387 (bibtex-vec-push, bibtex-vec-incr): New functions.
4388 (bibtex-format-entry, bibtex-field-list)
4389 (bibtex-print-help-message, bibtex-validate)
4390 (bibtex-search-entries): Use new format of bibtex-entry-alist.
4391
2dcdbdd9
SM
43922011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4393
4394 * progmodes/compile.el (compilation-goto-locus):
4395 * net/tramp-cmds.el (tramp-append-tramp-buffers):
4396 * bs.el (bs-cycle-next, bs-cycle-previous):
4397 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
4398 * bindings.el (mode-line-other-buffer):
4399 * autoinsert.el (auto-insert):
4400 * arc-mode.el (archive-extract):
4401 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
4402
b27640fe
JB
44032011-07-05 Juanma Barranquero <lekktu@gmail.com>
4404
4405 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
4406 Fix check of `emacs-lock-unlockable-modes'.
4407 Coerce true values of `emacs-lock--try-unlocking' to t.
4408
53bbe3ad
JB
44092011-07-05 Juanma Barranquero <lekktu@gmail.com>
4410
4411 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
4412 * emacs-lock.el: New file.
4413
1d3cdbc7
JD
44142011-07-05 Julien Danjou <julien@danjou.info>
4415
4416 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
4417 than `boundp' to check if face is set.
4418
9173deec
JB
44192011-07-05 Juanma Barranquero <lekktu@gmail.com>
4420
4421 * register.el (registerv-make):
4422 * window.el (window-min-height): Fix typos in docstrings.
4423
869795d6
JD
44242011-07-05 Jan Djärv <jan.h.d@swipnet.se>
4425
9173deec 4426 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
4427 Update doc string.
4428
b768cdcd
JB
44292011-07-04 Juanma Barranquero <lekktu@gmail.com>
4430
4431 * server.el (server-execute): Catch quit and call
4432 `server-return-error' to pass the error back to emacsclient and
4433 close the connection (bug#8942).
4434
13aa217b
KM
44352011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
4436
4437 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
4438 insecure exception for current topic. Also note that auto-saves
4439 are handled differently.
4440
4441 (allout-auto-save-temporarily-disabled), (allout-just-did-undo):
4442 State variables for tracking auto-save inhibition situation.
4443
4444 (allout-write-contents-hook-handler): Rename from
4445 'allout-write-file-hook-handler', and describe how it depends on
4446 write-contents-functions sensitivity to non-nil value to prevent
4447 file write.
4448
4449 (allout-auto-save-hook-handler): Remove. auto-save does not check
4450 this in individual buffers, only in the starting buffer, so this
4451 is not the right way for us to inhibit auto-save in a buffer
4452 according to its condition.
4453
4454 (allout-mode): Use new allout-write-contents-hook-handler, and
4455 only with write-contents-functions. Remove auto-save provisions -
4456 they're implemented elsewhere.
4457
4458 (allout-before-change-handler): If undo is in progress, note that
4459 for attention of allout-post-command-business.
4460
4461 (allout-post-command-business): If the command we're following was
4462 an undo, check for change in the status of encrypted items and
4463 adjust auto-save inhibitions accordingly.
4464
4465 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
4466 according to whether there are or aren't any plain-text topics
4467 pending encryption.
4468
2dcdbdd9
SM
4469 (allout-inhibit-auto-save-info-for-decryption):
4470 Adjust buffer-saved-size and some allout state to inhibit auto-saves if
13aa217b
KM
4471 there are plain-text topics pending encryption.
4472
4473 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
4474 buffer-saved-size and some allout state to not inhibit auto-saves
4475 if there are no longer any plain-text topics pending encryption.
4476
0757af94
SM
4477 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
4478 No longer provide for exemption of the current topic.
13aa217b 4479
ac89b32c
JL
44802011-07-04 Juri Linkov <juri@jurta.org>
4481
4482 Add 7z operations to delete and save changed members (bug#8968).
4483 * arc-mode.el (archive-7z-expunge, archive-7z-update):
4484 New defcustoms.
4485 (archive-7z-write-file-member): New function.
4486 (archive-7z-summarize): Fix the number of dashes in the
4487 listing output.
4488
8fa39615
SM
44892011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
4490
4491 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
4492 (bug#8958).
4493
2f11b3f1
CY
44942011-07-04 Chong Yidong <cyd@stupidchicken.com>
4495
d66fef2b
CY
4496 * bindings.el: Ignore next-buffer and previous-buffer in
4497 minibuffer-local-map.
4498
2f11b3f1
CY
4499 * font-lock.el (font-lock-builtin-face): Change light background
4500 color to dark slate blue (Bug#6693).
4501
f932a347
WD
45022011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
4503
4504 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
4505
c8af70e1
SM
45062011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
4507
4508 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
4509 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4510 Add switch-to-buffer.
4511
f158badc
LMI
45122011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4513
4514 * isearch.el (isearch-search-fun-function): Clarify further the
4515 meaning of the function returned.
4516
6d95bd46
MA
45172011-07-04 Michael Albinus <michael.albinus@gmx.de>
4518
4519 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
4520
4521 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
4522 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
4523 Use it.
4524 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
4525 `tramp-default-remote-path' does not exist.
4526 (tramp-send-command-and-read): New optional argument NOERROR.
4527 (tramp-open-connection-setup-interactive-shell)
4528 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
4529 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
4530 (tramp-process-sentinel): Flush also process' connection property.
4531 (tramp-sh-handle-start-file-process): Do not set process
4532 sentinel. It is done now ...
4533 (tramp-maybe-open-connection): ... here. (Bug#8929)
4534
909e6b67
MK
45352011-07-04 MON KEY <monkey@sandpframing.com>
4536
4537 * play/animate.el (animate-string): Doc fixes and allow changing
4538 the buffer name (bug#5417).
4539
45402011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4541
c8af70e1 4542 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 4543
f34755dc
PE
45442011-07-04 Paul Eggert <eggert@cs.ucla.edu>
4545
396cec72
PE
4546 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
4547 This is simpler and helps future-proof the code.
4548 (timer-until): Use time-subtract and float-time.
08235028 4549 (timer--time-less-p): Use time-less-p.
f34755dc 4550
56e6cc31
JB
45512011-07-04 Juanma Barranquero <lekktu@gmail.com>
4552
3abb79e5
JB
4553 * type-break.el (timep): Use the value of `float-time' to avoid a
4554 byte-compiler warning.
4555
56e6cc31
JB
4556 * server.el (server-eval-and-print): Return any result, even nil.
4557
7b9430b4
PE
45582011-07-03 Paul Eggert <eggert@cs.ucla.edu>
4559
4560 * type-break.el: Accept time formats that the builtins accept.
4561 (timep, type-break-time-difference): Accept any format that
4562 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
4563 This is simpler and helps future-proof the code.
4564 (type-break-time-difference): Round rather than ignoring
4565 subseconds components.
4566
3034e9e7
LMI
45672011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4568
4569 * info.el (Info-apropos-matches): Make non-interactive, since it
4570 doesn't seem to do anything useful as a command (bug#8829).
4571
1485f4c0
CY
45722011-07-03 Chong Yidong <cyd@stupidchicken.com>
4573
4574 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 4575 Move from faces.el.
1485f4c0
CY
4576 (frame-default-terminal-background): New function.
4577
4578 * custom.el (custom-push-theme): Don't record faces in `changed'
4579 theme; this doesn't work correctly for per-frame face settings.
4580 (disable-theme): Use face-set-after-frame-default to reset faces.
4581 (custom--frame-color-default): New function.
4582
9fa3dd45
LMI
45832011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4584
c8af70e1 4585 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
4586 (bug#8769).
4587
6cbbc20c
KR
45882011-03-29 Kevin Ryde <user42@zip.com.au>
4589
4590 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4591 `perl-Test2' extend to match possible "fail #N" rep count
4592 (bug#8377).
4593
c7f98048
LMI
45942011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4595
65676592
LMI
4596 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
4597 `smtpmail-via-smtp' now returns the error instead of nil.
4598
c7f98048
LMI
4599 * isearch.el (isearch-search-fun-function): Clarify the doc string
4600 (bug#8101).
4601
56e6cc31 46022011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
4603
4604 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
4605 unnecessary spaces (bug#8987).
4606
2b216704
LMI
46072011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4608
4609 * net/network-stream.el (open-network-stream): Use the
4610 :end-of-capability command thoughout.
4611
46122011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
4613
4614 * net/network-stream.el (open-network-stream): Add the
4615 :end-of-capability command parameter, used by pop3.el.
4616
36adf6ce
LMI
46172011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4618
1ca0da0e
LMI
4619 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
4620
fc00f69c
LMI
4621 * fringe.el (fringe-query-style): Remove redundant text " (type ?
4622 for list)" (bug#6475).
4623
28fd8759 4624 * files.el (file-expand-wildcards): Ignore non-readable
8350f087 4625 sub-directories while trying to find matches instead of signaling
28fd8759
LMI
4626 an error (bug#6297).
4627
0dd8b6da
LMI
4628 * man.el (Man-reference-regexp): Allow matching possible
4629 word-wrapped references (bug#6289).
4630
ce1438d6
LMI
4631 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
4632 for consistency with the other vc buffers (bug#6197).
4633 (vc-checkin): Ditto.
4634
4635 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
4636
36adf6ce
LMI
4637 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
4638
e83cc1f7
LMI
46392011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4640
8a20ca4c
LMI
4641 * custom.el (defcustom): Clarify that :set is only used in the
4642 Customize user interface (bug#6089).
4643
83319045
LMI
4644 * progmodes/flymake.el (flymake-mode): If the buffer isn't
4645 associated with a file, refuse to run instead of erroring out
4646 (bug#6084).
4647
a8392169
LMI
4648 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
4649 the doc string, since it appears that using `fill-column' always
4650 controls the width (bug#7845).
4651
e83cc1f7
LMI
4652 * simple.el (shell-command-on-region): Say where the error output
4653 went if `shell-command-default-error-buffer' is set (bug#6857).
4654
e47ca23b
KM
46552011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
4656
4657 * allout.el (allout-yank-processing): Adjust cursor position for
4658 backwards-deleted space.
4659
4660 (allout-rebullet-heading): Register changes with
4661 allout-exposure-changed-hook, so the modified topic is properly
4662 decorated.
4663
5cf56143
LMI
46642011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4665
08549772
LMI
4666 * minibuffer.el (completion-in-region): Document PREDICATE
4667 (bug#7136).
4668
48e96771
LMI
4669 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
4670 of keyword/argument pairs (bug#6904).
4671
c8af70e1
SM
4672 * replace.el (multi-occur):
4673 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 4674
e17d05e2
LMI
46752011-07-02 Drew Adams <drew.adams@oracle.com>
4676
4677 * dired.el (dired-mark-if): Make the message about whether it's
4678 marking or unmarking clearer (bug#8523).
4679
063b0e45
LMI
46802011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4681
4682 * disp-table.el (display-table-print-array): New function.
4683 (describe-display-table): Use it to print the vectors more pretty
4684 (Bug#8859).
4685
28545e04
MR
46862011-07-02 Martin Rudalics <rudalics@gmx.at>
4687
4688 * window.el (window-state-get-1): Don't assign clone numbers.
4689 Add clone-of item to list of window parameters.
4690 (window-state-put-2): Don't process clone numbers.
4691 (display-buffer-alist): Fix doc-string.
4692
3349e122
SM
46932011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
4694
4695 * subr.el (remq): Don't allocate if it's not needed.
4696 (keymap--menu-item-binding, keymap--menu-item-with-binding)
4697 (keymap--merge-bindings): New functions.
4698 (keymap-canonicalize): Use them to refine the canonicalization.
4699 * minibuffer.el (minibuffer-local-completion-map)
4700 (minibuffer-local-must-match-map): Move initialization from C.
4701 (minibuffer-local-filename-completion-map): Move initialization from C;
4702 don't inherit from anything here.
4703 (minibuffer-local-filename-must-match-map): Make obsolete.
4704 (completing-read-default): Use make-composed-keymap to combine
4705 minibuffer-local-filename-completion-map with either
4706 minibuffer-local-must-match-map or
4707 minibuffer-local-filename-completion-map.
4708
d224ac83
GM
47092011-07-01 Glenn Morris <rgm@gnu.org>
4710
3de63bf8
GM
4711 * type-break.el (type-break-time-sum): Use dolist.
4712
d224ac83
GM
4713 * textmodes/flyspell.el (flyspell-word-search-backward):
4714 Replace CL function.
4715
1a1e3f32
SM
47162011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4717
fe3f64d5
SM
4718 * mouse.el (mouse--strip-first-event): New function.
4719 (function-key-map): Use it to map fringe clicks to normal clicks
4720 by default.
4721
eb604e34
SM
4722 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
4723 (vc-bzr-revision-completion-table): Add support for annotate and date.
4724
1a1e3f32
SM
4725 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
4726 inherit from parent.
4727
5bd35902
LMI
47282011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
4729
ace6c69c 4730 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 4731 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 4732
191e2bed
LMI
4733 * dired.el (dired-mode): Fix up the doc string as suggested by
4734 Drew Adams (bug#8817).
4735
5bd35902
LMI
4736 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
4737 cookie, since the manual says that it should be possible to add
4738 this function to `find-file-hook' (bug#8709).
4739
eee8207a
TZ
47402011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
4741
4742 * progmodes/cfengine.el: Moved all cfengine3.el functionality
4743 here. Noted Ted Zlatanov as the maintainer.
4744 (cfengine-common-settings, cfengine-common-syntax): New functions
4745 to set up common things between `cfengine-mode' and
4746 `cfengine3-mode'.
4747 (cfengine3-mode): New mode.
4748 (cfengine3-defuns cfengine3-defuns-regex
4749 (cfengine3-class-selector-regex cfengine3-category-regex)
4750 (cfengine3-vartypes cfengine3-font-lock-keywords)
4751 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 4752 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 4753
36b148cf
MA
47542011-07-01 Michael Albinus <michael.albinus@gmx.de>
4755
4756 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
4757
4758 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
4759
0bf4ba9a
MR
47602011-07-01 Martin Rudalics <rudalics@gmx.at>
4761
4762 * window.el (same-window-buffer-names, same-window-regexps)
4763 (same-window-p, special-display-frame-alist)
4764 (special-display-popup-frame, special-display-function)
4765 (special-display-buffer-names, special-display-regexps)
4766 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
4767 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
4768 (split-window-preferred-function, split-height-threshold)
4769 (split-width-threshold, even-window-heights)
4770 (display-buffer-mark-dedicated, window-splittable-p)
4771 (split-window-sensibly, window-safely-shrinkable-p):
4772 Un-obsolete.
4773 (display-buffer): Don't spread args with function specifier
4774 because special-display-popup-frame won't like it.
4775
35837f51
PE
47762011-07-01 Paul Eggert <eggert@cs.ucla.edu>
4777
d0672f86
PE
4778 Time-stamp simplifications and fixes.
4779 These improve accuracy slightly, and future-proof the code
4780 against some potential changes to current-time format.
4781
b9444d97
PE
4782 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
4783 by using time-since and float-time.
4784
0ef923dc
PE
4785 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
4786 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
4787 + NNN microseconds".
4788
2f81380d
PE
4789 * type-break.el (type-break-time-sum): Rewrite using time-add.
4790
845b5c3e
PE
4791 * play/hanoi.el (hanoi-current-time-float): Remove.
4792 All uses replaced by float-time.
4793
ee6f1be0
PE
4794 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
4795 This yields a more-accurate answer.
4796 (rng-time-to-float): Remove; no longer needed.
4797
fe955043
PE
4798 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
4799
5777162a
PE
4800 * calendar/timeclock.el (timeclock-seconds-to-time):
4801 Defalias to seconds-to-time, since they're the same thing.
4802
3103f8b6 4803 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 4804 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
4805 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
4806
0e61a35f
SM
48072011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4808
4809 * window.el (bury-buffer): Don't iconify the only frame.
4810 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
4811 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
4812
ddd63a1e
CY
48132011-07-01 Chong Yidong <cyd@stupidchicken.com>
4814
0e61a35f
SM
4815 * eshell/em-smart.el (eshell-smart-display-navigate-list):
4816 Add mouse-yank-primary.
ddd63a1e 4817
055f4923
TZ
48182011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
4819
4820 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
4821
6a2fb145
SM
48222011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4823
4824 * emacs-lisp/find-func.el (find-library--load-name): New fun.
4825 (find-library-name): Use it to find relative load names when provided
4826 absolute file name (bug#8803).
4827
fd4983f2
LMI
48282011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4829
887d14ad
LMI
4830 * textmodes/flyspell.el (flyspell-word): Consider words that
4831 differ only in case as potential doublons (bug#5687).
4832
c53dc7fc
LMI
4833 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
4834 Remove two rather uninteresting debugging-like messages to make
4835 debbugs.el more silent.
4836
fd4983f2
LMI
4837 * comint.el (comint-password-prompt-regexp): Accept "Response" as
4838 a password-like phrase.
4839
b14c0c55
AM
48402011-06-30 Mastake YAMATO <yamato@redhat.com>
4841
4842 * progmodes/cc-guess.el: New file.
4843
6a2fb145 4844 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
4845
4846 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
4847 derived from `c-basic-common-init'.
4848
4849 * progmodes/cc-mode.el (top-level): Require cc-guess.
4850 (c-basic-common-init): Use `cc-choose-style-for-mode'.
4851
1fa280a3
LM
48522011-06-30 Lawrence Mitchell <wence@gmx.li>
4853
4854 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
4855
e6597158
AM
48562011-06-30 Alan Mackenzie <acm@muc.de>
4857
1fa280a3
LM
4858 * progmodes/cc-engine.el (c-guess-continued-construct):
4859 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
4860 lock is disabled. Name this case as "CASE G".
4861
68ba37fb
KM
48622011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
4863
4864 * allout.el (allout-yank-processing): Fix injection of extra space
4865 between bullet and non-whitespace character in first topic when
4866 pasting, ensuring that the actual spacing in the pasted topic
4867 following the bullet char is preserved. This extra space was
4868 causing pasted encrypted topics to get a decrypted status even
4869 when the content was actually still encrypted. Now the decryption
4870 status from before the paste is preserved.
4871
4872 (allout-flag-region): Set all allout overlays so they evaporate
4873 when reduced to zero length (evanescent), to prevent overlay
4874 leakage.
4875
887a0b34
GM
48762011-06-30 Glenn Morris <rgm@gnu.org>
4877
94b9acce
GM
4878 * w32-fns.el (w32-charset-info-alist): Declare.
4879
1d9b46d4
GM
4880 * find-dired.el (find-grep-options): Simplify.
4881
cc232200
GM
4882 * term/ns-win.el (ns-set-resource): Declare.
4883
28e77c46
GM
4884 * ses.el (row, col): Declare dynamic variables honestly.
4885
887a0b34
GM
4886 * textmodes/reftex-parse.el (index-tags): Declare.
4887
658d8eb8
CY
48882011-06-30 Chong Yidong <cyd@stupidchicken.com>
4889
4890 * cus-edit.el (customize-push-and-save): New function.
4891
4892 * files.el (hack-local-variables-confirm): Use it.
4893
1fa280a3
LM
4894 * custom.el (load-theme): New arg NO-CONFIRM.
4895 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
4896 (custom-enabled-themes): Doc fix.
4897
4898 * cus-theme.el (customize-create-theme)
4899 (custom-theme-merge-theme): Callers to load-theme changed.
4900
bb617717
LMI
49012011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4902
d61bdd5d
LMI
4903 * thingatpt.el (thing-at-point-short-url-regexp): Require that
4904 short URLs have at least one dot in them (bug #7614).
4905
bb617717
LMI
4906 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
4907 nil, because using a pty is apparently too slow (bug #895).
4908
2f31f37a
LMI
49092011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
4910
4911 * mail/sendmail.el (sendmail-query-once): New function.
4912 (sendmail-query-once-function): New variable.
4913
3076b24e
GM
49142011-06-29 Glenn Morris <rgm@gnu.org>
4915
faf2a174
GM
4916 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
4917
3076b24e
GM
4918 * ses.el (top-level): Require cl when compiling.
4919 (ses-set-localvars): Fix error statement.
4920 Call it at compile time to silence a storm of warnings.
4921
5386012d
MR
49222011-06-29 Martin Rudalics <rudalics@gmx.at>
4923
4924 * window.el (normalize-live-buffer): Rename to
4925 window-normalize-buffer.
4926 (normalize-live-frame): Rename to window-normalize-frame.
4927 (normalize-any-window): Rename to window-normalize-any-window.
4928 (normalize-live-window): Rename to window-normalize-live-window.
4929 (make-window-atom): Rename to window-make-atom.
4930 (window-resize-reset): Rename to window--resize-reset.
4931 (window-resize-reset-1): Rename to window--resize-reset-1.
4932 (resize-mini-window): Rename to window--resize-mini-window.
4933 (resize-subwindows-skip-p): Rename to
4934 window--resize-subwindows-skip-p.
4935 (resize-subwindows-normal): Rename to
4936 window--resize-subwindows-normal.
4937 (resize-subwindows): Rename to window--resize-subwindows.
4938 (resize-other-windows): Rename to window--resize-siblings.
4939 (resize-this-window): Rename to window--resize-this-window.
4940 (resize-root-window): Rename to window--resize-root-window.
4941 (resize-root-window-vertically): Rename to
4942 window--resize-root-window-vertically.
4943 (normalize-buffer-to-display): Rename to
4944 window-normalize-buffer-to-display.
4945 (normalize-buffer-to-switch-to): Rename to
4946 window-normalize-buffer-to-switch-to.
4947 Correspondingly update all callers of the functions listed
4948 above.
4949 (display-buffer-alist, display-buffer-normalize-arguments)
4950 (display-buffer-normalize-options, display-buffer)
4951 (display-buffer-alist-set): Use "function" instead of
4952 "fun-with-args".
4953
1176868d
CY
49542011-06-28 Chong Yidong <cyd@stupidchicken.com>
4955
4956 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
4957 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
4958 debbugs.gnu.org. Mention acknowledgment email.
4959
20a7a65f
LMI
49602011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
4961
4962 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
4963 buffer multibyteness, since it shouldn't matter.
4964
5f45cca5
MR
49652011-06-28 Martin Rudalics <rudalics@gmx.at>
4966
4967 * window.el (display-buffer-in-side-window): Handle dedicated
4968 windows as in display-buffer-reuse-window.
4969 (display-buffer-normalize-alist): Use value of override
4970 specifier.
4971 (display-buffer-normalize-specifiers): Use value of
4972 other-window-means-other-frame specifier.
4973 (display-buffer-alist): Rewrite some texts in widgets.
4974 (display-buffer): Spread arguments when calling function
4975 specified by fun-with-args.
4976
ad85fe1f
DD
49772011-06-28 Deniz Dogan <deniz@dogan.se>
4978
1fa280a3
LM
4979 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
4980 Unnest `let'.
da68c4c8 4981
ad85fe1f
DD
4982 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
4983 selectors (Bug#5732).
ec49bd31 4984 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 4985
a08cc025
JA
49862011-06-27 Jari Aalto <jari.aalto@cante.net>
4987
4988 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
4989 (eshell-ls-date-format): New defcustom.
4990 (eshell-ls-file): Use it.
4991
e2b551c5
SM
49922011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
4993
4994 * help-fns.el (describe-variable): Fix message for terminal-local vars.
4995
8982b231
KY
49962011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
4997
4998 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
4999 (ange-ftp-make-tmp-name): New arg.
5000 (ange-ftp-file-local-copy): Use it.
5001
36c9fa27
J
50022011-06-27 Jambunathan K <kjambunathan@gmail.com>
5003
5004 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
5005 no-conversion (Bug#8870).
5006
d68443dc
MR
50072011-06-27 Martin Rudalics <rudalics@gmx.at>
5008
5009 * window.el (window-right, window-left, window-child)
5010 (window-child-count, window-last-child)
5011 (window-iso-combination-p, walk-window-tree-1)
5012 (window-atom-check-1, window-tree-1, delete-window)
5013 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
5014 new naming conventions - window-vchild, window-hchild,
5015 window-next and window-prev are now called window-top-child,
5016 window-left-child, window-next-sibling and window-prev-sibling
5017 respectively.
d615d6d2
MR
5018 (resize-window-reset): Rename to window-resize-reset.
5019 (resize-window-reset-1): Rename to window-resize-reset-1.
5020 (resize-window): Rename to window-resize.
5021 (window-min-height, window-min-width)
5022 (resize-mini-window, resize-this-window, resize-root-window)
5023 (resize-root-window-vertically, adjust-window-trailing-edge)
5024 (enlarge-window, shrink-window, maximize-window)
5025 (minimize-window, delete-window, quit-restore-window)
5026 (split-window, balance-windows, balance-windows-area-adjust)
5027 (balance-windows-area, window-state-put-2)
5028 (display-buffer-even-window-sizes, display-buffer-set-height)
5029 (display-buffer-set-width, set-window-text-height)
5030 (fit-window-to-buffer): Rename all "resize-window" prefixed
5031 calls to use the "window-resize" prefix convention.
5032 (display-buffer-alist): Fix symbol for label specifier.
5033 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
5034 corresponding specifier.
5035 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 5036
b6458526
VB
50372011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
5038
5039 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
5040 convention.
5041 (ses-call-printer): Does not pass an empty string to formatter when the
5042 cell is empty to keep from barking printer Calc math-format-value.
5043
d31fd9ac
RS
50442011-06-27 Richard Stallman <rms@gnu.org>
5045
43d5bf84
RS
5046 * battery.el (battery-mode-line-limit): New variable.
5047 (battery-update): Handle it.
5048
d31fd9ac
RS
5049 * mail/rmailmm.el (rmail-mime-process-multipart):
5050 Handle truncated messages.
5051
819a6054
GM
50522011-06-27 Glenn Morris <rgm@gnu.org>
5053
5054 * progmodes/flymake.el (flymake-err-line-patterns):
5055 Allow for column numbers in the ant/javac pattern. (Bug#8866)
5056
cedc73f2
VB
50572011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
5058
819a6054 5059 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
5060 (ses--clean-!, ses--clean-_): New functions.
5061 (ses-range): Add configurability of readout order, and conversion
5062 to Calc vector.
5063
5e5d49b6
VB
5064 * ses.el (ses-repair-cell-reference-all): New function.
5065 (ses-cell-symbol): Set macro as safe, so that it can be used in
5066 formulas.
5067
56e6cc31 5068 * ses.el: Update cycle detection algorithm.
90ca8b49 5069 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 5070 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
5071 (ses-set-localvars): New function.
5072 (ses-make-cell): Add property-list as a cell element.
5073 (ses-cell-property-get-fun, ses-cell-property-get)
5074 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
5075 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
5076 New functions.
90ca8b49
VB
5077 (ses-cell-property-set, ses-cell-property-pop)
5078 (ses-cell-property-get-handle): New macro.
5079 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
5080 New aliases, used for code readability.
5081 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
5082 cycle detection.
5083 (ses-self-reference-early-detection): New defcustom.
5084 (ses-formula-references): Robustify against self-refering cells.
5085 (ses-mode): Use ses-set-localvars.
5086 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
5087 before lauching the update processing.
5088 (ses-initialize-Dijkstra-attempt): New function.
5089 (ses-recalculate-cell): Update for cycle detection based on
5090 Dijkstra algorithm.
5091
2bb63e81
VB
5092 * ses.el: Fix commenting and indenting convention.
5093
c9d29fb8
SM
50942011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5095
5096 * bs.el (bs-cycle-next): Complete last change.
5097
d8e4b68b
JB
50982011-06-27 Drew Adams <drew.adams@oracle.com>
5099
5100 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
5101
40098786
LMI
51022011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
5103
c9d29fb8
SM
5104 * net/network-stream.el (network-stream-open-starttls):
5105 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
5106 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
5107
40098786
LMI
5108 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
5109 to binary to possibly avoid line encoding issues on Windows (among
5110 other things).
5111
468d09d4
LMI
51122011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5113
5114 * net/network-stream.el (open-network-stream): Return an :error
5115 saying what the problem was, if possible.
5116
5117 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
5118 server.
5119
5120 * net/network-stream.el (network-stream-open-starttls): If we
5121 wanted to use STARTTLS, and the server offered it, but we weren't
5122 able to because we had no STARTTLS support, then close the connection.
5123 (open-network-stream): Return an :error element, if present.
5124
16f07dd7
CY
51252011-06-26 Chong Yidong <cyd@stupidchicken.com>
5126
88821ca0
CY
5127 * hl-line.el (hl-line-sticky-flag): Doc fix.
5128 (global-hl-line-sticky-flag): New option (Bug#8323).
5129 (global-hl-line-highlight): Obey it.
5130
16f07dd7
CY
5131 * vc/vc.el (vc-revert-show-diff): Default to t.
5132
6b5ccddf
KM
51332011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
5134
c9d29fb8
SM
5135 * allout-widgets.el (allout-widgets-post-command-business):
5136 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
5137 undecorated when an isearch is continued past, and isearch
5138 automatically collapses them. This leads to "widget leaks", where
5139 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
5140 hidden widgets can slow down cursor travel, substantially.
5141 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
5142 so we're doing without this nicety.
5143
5144 (allout-widgets-tally-string): Don't try to do a hash-table-count
5145 of allout-widgets-tally when it's nil. This eliminates spurious "Error
5146 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
5147 *Messages* when allout-widgets-maintain-tally is t.
5148
355f2e07
MR
51492011-06-26 Martin Rudalics <rudalics@gmx.at>
5150
5151 * window.el (display-buffer-normalize-argument): Rename to
5152 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
5153 LABEL argument. Respect special-display-function when popping up
5154 a new frame. Fix code searching for a window showing the buffer
5155 on another frame.
c9d29fb8
SM
5156 (display-buffer-normalize-specifiers):
5157 Call display-buffer-normalize-arguments.
355f2e07
MR
5158 (display-buffer-in-window): Don't undedicate the window if its
5159 buffer remains the same.
5160 Reported by Drew Adams <drew.adams@oracle.com>.
5161 (display-buffer-alist): Add choice for same-window macro
5162 specfier.
5163 (display-buffer): Mention special meaning of LABEL argument in
5164 doc-string. Fix quoting. Don't pop up a new frame even as
5165 fallback.
5166
7ca8fc42
JB
51672011-06-26 Juanma Barranquero <lekktu@gmail.com>
5168
5169 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
5170 avoid deleting the current window in some cases (bug#8911).
5171
bc312254
AS
51722011-06-26 Andreas Schwab <schwab@linux-m68k.org>
5173
5174 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
5175 (Bug#8934)
5176
2db18f3f
LMI
51772011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5178
c9d29fb8
SM
5179 * net/network-stream.el (network-stream-open-starttls):
5180 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
5181 (network-stream-open-tls): Ditto.
5182
6302e0d3
LL
51832011-06-26 Leo Liu <sdl.web@gmail.com>
5184
5185 * register.el (registerv): New struct.
5186 (registerv-make): New function.
c9d29fb8
SM
5187 (jump-to-register, describe-register-1, insert-register):
5188 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
5189 struct. (Bug#8415)
5190
5fdd4046
CY
51912011-06-26 Chong Yidong <cyd@stupidchicken.com>
5192
2afef60a
CY
5193 * vc/vc.el (vc-revert-show-diff): New defcustom.
5194 (vc-diff-internal): New arg specifying diff buffer.
5195 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
5196 reuse an existing *vc-diff* buffer (Bug#8927).
5197
5fdd4046
CY
5198 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
5199
e93db24a
GM
52002011-06-26 Glenn Morris <rgm@gnu.org>
5201
5202 * progmodes/f90.el (f90-critical-indent): New option.
5203 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
5204 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
5205 (f90-mode): Doc fix.
5206 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
5207 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
5208 (f90-beginning-of-block, f90-next-block, f90-indent-region)
5209 (f90-match-end): Handle block, critical.
5210
eefff499
GM
52112011-06-25 Glenn Morris <rgm@gnu.org>
5212
f6ba4cc9
GM
5213 * calendar/diary-lib.el (diary-included-files): Doc fix.
5214 (diary-include-files): New function, extracted from
5215 diary-include-other-diary-files and diary-mark-included-diary-files.
5216 (diary-include-other-diary-files, diary-mark-included-diary-files):
5217 Just call diary-include-files.
5218 (diary-mark-entries): Reset diary-included-files on first call.
5219
16712304
GM
5220 * calendar/diary-lib.el (diary-mark-entries)
5221 (diary-mark-included-diary-files):
5222 Visit included diary-files in temp buffers.
5223
5d8e0d43
GM
5224 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
5225 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
5226 (f90-start-block-re, f90-imenu-generic-expression)
5227 (f90-looking-at-program-block-start, f90-no-block-limit):
5228 Add support for submodules.
5229
ccf7a5d5
GM
5230 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
5231 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 5232
11fdef7d 52332011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
5234
5235 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
5236 buffer-file-type before setting its value, to avoid disastrous
eefff499 5237 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 5238
74f53697
JB
52392011-06-25 Juanma Barranquero <lekktu@gmail.com>
5240
5241 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
5242
5243 * ses.el (ses-unload-function):
5244 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
5245
5246 * proced.el (proced-unload-function):
5247 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
5248
18a4ce5e
AR
52492011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
5250
5251 * server.el (server-create-window-system-frame): Add parameters arg.
5252 (server-process-filter): Doc fix. Handle frame-parameters.
5253
519d22cc
JB
52542011-06-25 Juanma Barranquero <lekktu@gmail.com>
5255
5256 Fix bug#8730, bug#8781.
5257
5258 * loadhist.el (unload--set-major-mode): New function.
5259 (unload-feature): Use it.
5260
5261 * progmodes/python.el (python-after-info-look): Add autoload cookie.
5262 (python-unload-function): New function.
5263
c206f5b0
SM
52642011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5265
5266 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
5267
f9ad64f3
GS
52682011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
5269
5270 * net/browse-url.el (browse-url-firefox-program): Add icecat to
5271 the candidates list.
5272
7d0da90e
JB
52732011-06-24 Juanma Barranquero <lekktu@gmail.com>
5274
5275 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
5276
14b4e83d
RS
52772011-06-23 Richard Stallman <rms@gnu.org>
5278
5279 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
5280 (rmail-variables): Set next-error-move-function.
5281 (rmail-what-message): Take argument POS.
5282 (rmail-next-error-move): New function.
5283
273d2baf
SM
52842011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5285
5286 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
5287 messages for adjacent non-terminals.
5288
56c2cc9a
RS
52892011-06-23 Richard Stallman <rms@gnu.org>
5290
5291 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 5292 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
5293 (rmail-start-mail): Don't specify use of rmail-mail-return;
5294 that's done by mail-bury now.
5295 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 5296
d59eb518
MA
52972011-06-23 Michael Albinus <michael.albinus@gmx.de>
5298
5299 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
5300 SIZE is a number.
5301
02cfc6d6
MR
53022011-06-23 Martin Rudalics <rudalics@gmx.at>
5303
5304 * window.el (get-lru-window, get-mru-window)
5305 (get-largest-window): Never return a minibuffer window.
5306 (display-buffer-pop-up-window): Fix a bug that could lead to
5307 reusing the minibuffer window.
5308 (display-buffer): Pass original specifier argument to
5309 display-buffer-function instead of the normalized one.
5310 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
5311
4e323265
LL
53122011-06-22 Leo Liu <sdl.web@gmail.com>
5313
5314 * minibuffer.el (completing-read-function)
5315 (completing-read-default): Move from minibuf.c
5316
7a70468f
RS
53172011-06-22 Richard Stallman <rms@gnu.org>
5318
50718fc2
RS
5319 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
5320 to Rmail even if not started by a special Rmail command.
5321
7a70468f
RS
5322 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
5323 Copy the buffer currently showing just one message.
5324
297dde5a
RW
53252011-06-22 Roland Winkler <winkler@gnu.org>
5326
5327 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
5328 (bibtex-clean-entry): First delete the old key so that a
5329 customized algorithm for generating the new key does not get
5330 confused by the old key.
5331 (bibtex-url): Obey regexp of first step.
5332 (bibtex-search-entries): Do not use add-to-list with local
5333 list-var.
5334
97bb1093
LMI
53352011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5336
5337 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
5338 stored a user name, then query for the password first, instead of
5339 waiting for SMTP to give an error message and the trying again.
5340
1c0f1a19
JD
53412011-06-22 Lawrence Mitchell <wence@gmx.li>
5342
5343 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
5344 BUFFER in call-process.
5345
396f7c9d
LMI
53462011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5347
5348 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
5349 QUIT twice.
ddb7ffee
LMI
5350 (smtpmail-try-auth-methods): Require user name and password from
5351 auth-source.
396f7c9d 5352
8998d1b3
MR
53532011-06-22 Martin Rudalics <rudalics@gmx.at>
5354
5355 * window.el (display-buffer-default-specifiers)
5356 (display-buffer-alist): Remove entries for pop-up-frame-alist.
5357 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 5358 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
5359
5360 * frame.el (pop-up-frame-alist, pop-up-frame-function)
5361 (special-display-frame-alist, special-display-popup-frame):
5362 Remove duplicate declarations. These are now in window.el.
5363
4ea31e07
LMI
53642011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5365
c9d29fb8
SM
5366 * mail/smtpmail.el (smtpmail-via-smtp):
5367 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
5368 server supports it. SMTP servers that support STARTTLS commonly
5369 require it.
5370
5371 * net/network-stream.el (network-stream-open-starttls): Support
5372 upgrading to STARTTLS always, even if we don't have built-in support.
fa463103 5373 (open-network-stream): Add the :always-query-capabilities keyword.
6af7a784 5374
95f41d9a
LMI
5375 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
5376 upgrades with `open-network-stream', and rely solely on
5377 auth-source for all credentials. Big changes throughout the file,
5378 but in particular:
c9d29fb8
SM
5379 (smtpmail-auth-credentials): Remove.
5380 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
5381 (smtpmail-via-smtp): Check for servers saying they want AUTH after
5382 MAIL FROM, too.
95f41d9a 5383
c9d29fb8
SM
5384 * net/network-stream.el (network-stream-open-starttls):
5385 Provide support for client certificates both for external and built-in
4ea31e07
LMI
5386 STARTTLS.
5387 (auth-source): Require.
5388 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
5389 (network-stream-certificate): Change cert-cert to cert and
5390 cert-key to key.
4ea31e07 5391
065ec2c7
MA
53922011-06-21 Michael Albinus <michael.albinus@gmx.de>
5393
5394 * net/tramp-cache.el (top): Don't load the persistency file when
5395 "emacs -Q" has been called.
5396
cd93b359
DR
53972011-06-21 Tim Harper <timcharper@gmail.com>
5398
d8e4b68b
JB
5399 * term/ns-win.el (ns-initialize-window-system):
5400 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
5401 resource to NO as it is not yet supported by the NS port.
5402
ae9c0411
JB
54032011-06-21 Juanma Barranquero <lekktu@gmail.com>
5404
5405 * misc.el (list-dynamic-libraries--refresh): Compute header here...
5406 (list-dynamic-libraries): ...not here.
5407
7f3f739f
LL
54082011-06-21 Leo Liu <sdl.web@gmail.com>
5409
5410 * subr.el (sha1): Implement sha1 using secure-hash.
5411
327c8fb1
MR
54122011-06-21 Martin Rudalics <rudalics@gmx.at>
5413
5414 * window.el (display-buffer-alist): In default value do not
5415 enforce searching a window on any but the selected frame.
5416 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
5417 (display-buffer-select-window): Remove function.
5418 (display-buffer-in-window): When a window on another frame gets
5419 reused, do not select it any more but just raise its frame if
5420 necessary (Bug#8851) and (Bug#8856).
5421 (display-buffer-normalize-options): Handle pop-up-frames related
5422 options more faithfully.
5423 (pop-to-buffer): Don't rely on `display-buffer' selecting the
5424 window if it is on another frame.
c9d29fb8
SM
5425 (display-buffer-alist, display-buffer-default-specifiers):
5426 Don't make new frame unsplittable by default.
9e9de014
MR
5427 (display-buffer-normalize-argument): Fix doc-string typo and use
5428 'same-frame-other-window instead of 'other-window when associating
5429 with display-buffer-macro-specifiers.
327c8fb1 5430
7cf3f556
VB
54312011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
5432
5433 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
5434 New functions.
5435 (5x5-mode-map, 5x5-mode-menu): Bind them.
5436 (5x5-draw-grid): Tweak the solver's rendering.
5437
60a406cf
SM
54382011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5439
5440 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
5441 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
5442
d8e4b68b 54432011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
5444
5445 * menu-bar.el: Use function variable instead of switch-to-buffer.
5446 (menu-bar-select-buffer-function): New variable.
60a406cf 5447 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 5448
478d6f95
SM
54492011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5450
5451 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
5452 variable's status.
5453
ca530739
JD
54542011-06-20 Jan Djärv <jan.h.d@swipnet.se>
5455
5456 * x-dnd.el (x-dnd-version-from-flags)
5457 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
5458 and long as number (Bug#8899).
5459 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
5460
bcd70d97
SM
54612011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5462
60a406cf 5463 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
5464 (completion-try-completion, completion-all-completions): Compute the
5465 metadata argument if it's missing; make it optional (bug#8795).
5466
60a406cf 5467 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
5468 (widget-complete): Use new :completion-function property.
5469 (widget-completions-at-point): New function.
5470 (default): Use :completion-function instead of :complete.
60a406cf
SM
5471 (widget-default-completions): Rename from widget-default-complete;
5472 Rewrite.
bcd70d97
SM
5473 (widget-string-complete, widget-file-complete, widget-color-complete):
5474 Remove functions.
5475 (file, symbol, function, variable, coding-system, color):
5476 * international/mule-cmds.el (default-input-method, charset)
5477 (language-info-custom-alist):
5478 * cus-edit.el (face): Use new property :completions.
5479
5480 * progmodes/pascal.el (pascal-completions-at-point): New function.
5481 (pascal-mode): Use it.
5482 (pascal-mode-map): Use completion-at-point.
5483 (pascal-toggle-completions): Make obsolete.
5484 (pascal-complete-word, pascal-show-completions):
5485 * progmodes/octave-mod.el (octave-complete-symbol):
5486 Redefine as obsolete alias.
5487 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
5488 Signal absence of completion info for old Octave,
5489 (inferior-octave-complete): Redefine as obsolete alias.
5490 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
5491 (meta-completions-at-point): Rename from meta-complete-symbol and
5492 adapt it for use on completion-at-point-functions.
5493 (meta-common-mode): Use it.
5494 (meta-looking-at-backward, meta-match-buffer): Remove.
5495 (meta-complete-symbol): Redefine as obsolete alias.
5496 (meta-common-mode-map): Use completion-at-point.
5497 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
5498 (makefile-mode-map): Use completion-at-point.
5499 (makefile-completions-at-point): Rename from makefile-complete and
5500 adapt it for use on completion-at-point-functions.
5501 (makefile-mode): Use it.
5502 (makefile-complete): Redefine as obsolete alias.
5503
aebf69c8
DD
55042011-06-20 Deniz Dogan <deniz@dogan.se>
5505
5506 * net/rcirc.el: Delete trailing whitespaces once and for all.
5507
bfbbb27d
DC
55082011-06-20 Daniel Colascione <dan.colascione@gmail.com>
5509
5510 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
5511
d264a46b
CY
55122011-06-19 Chong Yidong <cyd@stupidchicken.com>
5513
4ca009e5
CY
5514 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
5515
d264a46b
CY
5516 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
5517
fbf5b3ce
MR
55182011-06-19 Martin Rudalics <rudalics@gmx.at>
5519
5520 * window.el (display-buffer-other-window-means-other-frame):
5521 Call display-buffer-normalize-alist.
5522 (display-buffer-normalize-specifiers-1): Rename to
5523 display-buffer-normalize-argument. New argument other-frame.
5524 Rewrite.
5525 (display-buffer-normalize-specifiers-2): Rename to
5526 display-buffer-normalize-options.
5527 (display-buffer-normalize-alist-1): New function.
5528 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
5529 display-buffer-normalize-alist.
5530 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
5531 (display-buffer-normalize-options-inhibit): New variable.
5532 (display-buffer-normalize-specifiers): Rewrite calling
5533 display-buffer-normalize-alist,
5534 display-buffer-normalize-argument, and
5535 display-buffer-normalize-options. Don't call the latter if
5536 display-buffer-normalize-options-inhibit is non-nil.
5537 (frame-auto-delete): New option.
5538 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
5539 (window-list-no-nils, window-state-ignored-parameters)
5540 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
5541 (window-state-put-1, window-state-put-2, window-state-put):
5542 New functions.
9a028c23
MR
5543 (display-buffer-normalize-options): Move special-display-p group
5544 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 5545
6d10d800
CY
55462011-06-18 Chong Yidong <cyd@stupidchicken.com>
5547
6420d28b
CY
5548 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
5549 groups (Bug#8776).
5550 (rx-submatch-n): New function.
5551 (rx): Document it.
5552
ddb8b596
CY
5553 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
5554 (Bug#8768).
5555
5556 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
5557
77080289
CY
5558 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
5559
61dfb316
CY
5560 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
5561 anytime existing face settings are present (Bug#8889).
5562
6d10d800
CY
5563 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
5564 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
5565 Remove unused argument.
5566
be3fb2b8
MR
55672011-06-18 Martin Rudalics <rudalics@gmx.at>
5568
bcd70d97
SM
5569 * window.el (display-buffer-default-specifiers):
5570 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
5571 pop-up-window-min-width, and another reuse-window specifier
5572 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
5573 (display-buffer-normalize-specifiers-2):
5574 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
5575 pop-up-windows is unset. Add a reuse-window specifier for the
5576 case popping up a new window fails.
5577 (special-display-popup-frame): Remove double quoting.
28dec25a 5578 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 5579
1c6d8c76
SM
55802011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5581
5582 * shell.el (shell-completion-vars): Set pcomplete-termination-string
5583 according to comint-completion-addsuffix.
5584
5585 * pcomplete.el: Convert to lexical binding and fix bug#8819.
5586 (pcomplete-suffix-list): Mark as obsolete.
5587 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
5588 pcomplete-seen in the closure.
5589 (pcomplete-comint-setup): Setup completion-at-point as well.
5590 (pcomplete--entries): New function.
5591 (pcomplete--env-regexp): New var.
5592 (pcomplete-entries): Rewrite to work with partial-completion and
5593 without relying on pcomplete-suffix-list.
5594 (pcomplete-pare-list): Remove, unused.
5595
25aef8b8
MR
55962011-06-17 Martin Rudalics <rudalics@gmx.at>
5597
5598 * window.el (display-buffer-alist): Set pop-up-window-min-height
5599 and pop-up-window-min-width in default value. Reported by
5600 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
5601 other-window-means-other-frame.
5602 (display-buffer-macro-specifiers): Comment out entry for
5603 other-window specifier.
5604 (display-buffer-other-window-means-other-frame): New function.
5605 (display-buffer-normalize-specifiers-1): New arguments
5606 buffer-name and label. Treat other-window case specially.
5607 (display-buffer-normalize-specifiers-2): Treat other-window case
5608 specially.
5609 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
5610 (display-buffer-normalize-specifiers):
5611 Call display-buffer-normalize-specifiers-3.
25aef8b8 5612
dbad4f69
MR
56132011-06-17 Martin Rudalics <rudalics@gmx.at>
5614
5615 * window.el (same-window-p): Fix two typos introduced when
5616 adding with-no-warnings.
d1067961
MR
5617 (display-buffer-normalize-specifiers-1): Don't check
5618 pop-up-frames for 'unset initialization.
5619 (display-buffer-normalize-specifiers-2): Major rewrite using
5620 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
5621 (pop-up-frames, display-buffer-reuse-frames)
5622 (display-buffer-mark-dedicated): Don't initialize to 'unset.
5623 Suggested by David Engster <deng@randomsample.de>.
5624 (even-window-heights): Initialize to 'unset.
5625 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
5626 (display-buffer-macro-specifiers): Don't pop up a new frame in the
5627 other window case.
dbad4f69 5628
9b9c9e3a
MR
56292011-06-16 Martin Rudalics <rudalics@gmx.at>
5630
bcd70d97
SM
5631 * window.el (display-buffer-normalize-specifiers-1):
5632 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 5633 second argument of display-buffer (Bug#8865).
981d5c09
MR
5634 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
5635 (switch-to-buffer-other-window-same-frame)
5636 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
5637 Adams (Bug#8875).
9c2755e9
MR
5638 (display-buffer): Don't check noninteractive when calling
5639 display-buffer-pop-up-frame.
5640 (display-buffer-pop-up-frame): Never pop up a frame in
5641 noninteractive mode (Bug#8857).
67222e1d
MR
5642 (enlarge-window, shrink-window): Don't report an error when the
5643 window can't be resized as requested (Bug#8862).
9b9c9e3a 5644
2b75be67
SM
56452011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5646
9ffdd3ba
SM
5647 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
5648
cb581a67
SM
5649 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
5650
2b75be67
SM
5651 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
5652
8c0e3589
AM
56532011-06-15 Alan Mackenzie <acm@muc.de>
5654
cb581a67
SM
5655 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
5656 for declarators, disable knr checking to speed up for normal files.
5657 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 5658
b96e6cde
LMI
56592011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
5660
4bba86e6
LMI
5661 * net/network-stream.el (open-network-stream): Add the keyword
5662 :always-query-capabilities for the case where you want to force a
5663 `plain' network connection, but the protocol still requires the
5664 capabilitiy command (i.e., SMTP and EHLO).
5665
2b75be67 5666 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
5667 consistency with other `-live-p' functions.
5668
efdcdbf8
SM
56692011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5670
5671 * window.el (same-window-buffer-names, same-window-regexps)
5672 (special-display-frame-alist, special-display-popup-frame)
5673 (special-display-function, special-display-buffer-names)
5674 (special-display-regexps, pop-up-frame-alist)
5675 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
5676 (pop-up-windows, split-window-preferred-function)
5677 (split-height-threshold, split-width-threshold, even-window-heights)
5678 (display-buffer-mark-dedicated): Don't encourage the use of
5679 display-buffer-alist from Elisp code.
5680
c5cde042
DN
56812011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
5682
5683 * progmodes/python.el (python-mode): Derive from prog-mode.
5684 * progmodes/ps-mode.el (ps-mode):
5685 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 5686 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
5687 * progmodes/ld-script.el (ld-script-mode): Likewise.
5688
baa1c9ab
MR
56892011-06-15 Martin Rudalics <rudalics@gmx.at>
5690
5691 * window.el (display-buffer-alist): Trim default value to avoid
5692 popping up a new frame (Bug#8857) or reusing an arbitrary window
5693 on another frame.
5694 (display-buffer): Do not fall back on popping up a new frame in
5695 batch mode (Bug#8857).
5696
c5dd5a51
CY
56972011-06-14 Chong Yidong <cyd@stupidchicken.com>
5698
5699 * cus-theme.el (describe-theme-1): Use custom-theme-p.
5700 (custom-theme-summary): New function.
5701 (customize-themes): Use it.
5702
d647b7c4
GM
57032011-06-13 Glenn Morris <rgm@gnu.org>
5704
5705 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
5706
9481c002
MR
57072011-06-13 Martin Rudalics <rudalics@gmx.at>
5708
357f93d2
MR
5709 * help.el (help-window): Remove variable.
5710 (help-window-point-marker, temp-buffer-max-height)
5711 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
5712 (help-print-return-message): Don't set help-window.
5713 (resize-temp-buffer-window): Rewrite cod eand doc-string.
5714 (help-window-setup-finish): Remove.
5715 (help-window-display-message, help-window-setup)
5716 (with-help-window): Major rewrite based on new
5717 display-buffer-window variable.
5718
5719 * help-mode.el (help-mode-finish): Remove help-window related
5720 code.
5721
5722 * view.el (view-exits-all-viewing-windows): Remove reference to
5723 view-return-to-alist in doc-string.
5724 (view-return-to-alist): Make obsolete.
5725 (view-buffer): Call pop-to-buffer-same-window and remove
5726 undo-window code.
5727 (view-buffer-other-window): Call pop-to-buffer-other-window and
5728 simplify code. Ignore second argument.
5729 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
5730 simplify code. Ignore second argument.
5731 (view-return-to-alist-update): Make obsolete.
5732 (view-mode-enter): Rename second argument to QUIT-RESTORE.
5733 Rewrite using quit-restore window parameters.
2b75be67
SM
5734 (view-mode-exit): Rename second argument to EXIT-ONLY.
5735 Rewrite using quit-restore-window.
357f93d2
MR
5736 (View-exit, View-exit-and-edit, View-leave, View-quit)
5737 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
5738 appropriate arguments.
5739 (view-end-message): Use quit-restore window parameter.
5740
9481c002
MR
5741 * window.el (display-buffer-function): Rewrite doc-string.
5742 (display-buffer-window, display-buffer-alist): New variables.
5743 (display-buffer-split-specifiers)
5744 (display-buffer-side-specifiers)
5745 (display-buffer-macro-specifiers): New constants.
5746 (display-buffer-even-window-sizes, display-buffer-set-height)
5747 (display-buffer-set-width, display-buffer-select-window)
5748 (display-buffer-in-window, display-buffer-reuse-window)
5749 (display-buffer-split-window-1, display-buffer-split-window)
5750 (display-buffer-split-atom-window, display-buffer-pop-up-window)
5751 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
5752 (display-buffer-in-side-window, normalize-buffer-to-display)
5753 (display-buffer-normalize-specifiers-1)
5754 (display-buffer-normalize-specifiers-2)
2b75be67
SM
5755 (display-buffer-normalize-specifiers, display-buffer-frame):
5756 New functions.
9481c002
MR
5757 (display-buffer): Major rewrite.
5758 (display-buffer-other-window, display-buffer-other-frame)
5759 (pop-to-buffer, switch-to-buffer-other-window)
5760 (switch-to-buffer-other-frame): Rewrite.
5761 (display-buffer-same-window, display-buffer-same-frame)
5762 (display-buffer-same-frame-other-window)
5763 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
5764 (pop-to-buffer-other-window)
5765 (pop-to-buffer-same-frame-other-window)
5766 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
5767 (switch-to-buffer-other-window-same-frame): New functions.
5768 (same-window-p, special-display-p): Rewrite disabling warnings.
5769 Make obsolete.
5770 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
5771 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
5772 Make obsolete
5773 (same-window-buffer-names, same-window-regexps)
5774 (special-display-frame-alist, special-display-popup-frame)
5775 (special-display-function, special-display-buffer-names)
5776 (special-display-regexps, pop-up-frame-alist)
5777 (pop-up-frame-function, split-window-preferred-function)
5778 (split-height-threshold, split-width-threshold)
5779 (even-window-heights): Make obsolete.
5780
9db51aca
GM
57812011-06-12 Glenn Morris <rgm@gnu.org>
5782
5783 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 5784 Misc simplifications.
9db51aca 5785
39cffb44
MR
57862011-06-12 Martin Rudalics <rudalics@gmx.at>
5787
5788 * window.el (window-safely-shrinkable-p): Restore function which
5789 was inadvertently removed in change from 2011-06-11. Declare as
5790 obsolete.
5791
2b75be67
SM
5792 * calendar/calendar.el (calendar-generate-window):
5793 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
5794 window-safely-shrinkable-p.
5795
a8955be7
GM
57962011-06-12 Glenn Morris <rgm@gnu.org>
5797
5798 * progmodes/fortran.el (fortran-mode-syntax-table):
5799 * progmodes/f90.el (f90-mode-syntax-table):
5800 Set % to punctuation. (Bug#8820)
5801 (f90-find-tag-default): Remove, no longer needed.
5802
f0d4059d
DC
58032011-06-12 Daniel Colascione <dan.colascione@gmail.com>
5804
5805 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
5806
1100a63c
CY
58072011-06-11 Chong Yidong <cyd@stupidchicken.com>
5808
5809 * image.el (image-animated-p): Return animation delay in seconds.
5810 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
5811 (image-animate-timeout): Remove DELAY argument. Don't assume
5812 every subimage has the same delay; get it from image-animated-p.
5813 (image-animate): Caller changed.
5814
def722bf
MA
58152011-06-11 Michael Albinus <michael.albinus@gmx.de>
5816
5817 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
5818 to ignored backtrace functions.
5819
0a2bb1a9
GM
58202011-06-11 Glenn Morris <rgm@gnu.org>
5821
5822 * calendar/appt.el (appt-disp-window-function): Doc fix.
5823 (appt-check): Handle overlapping appointments. (Bug#8337)
5824
6198ccd0
MR
58252011-06-11 Martin Rudalics <rudalics@gmx.at>
5826
5827 * window.el (window-tree-1, window-tree): New functions, moving
5828 the latter to window.el.
5829 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
5830 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
5831 (bw-refresh-edges): Remove.
5832 (balance-windows-1, balance-windows-2): New functions.
5833 (balance-windows): Rewrite in terms of window tree functions,
5834 balance-windows-1 and balance-windows-2.
5835 (bw-adjust-window): Remove.
5836 (balance-windows-area-adjust): New function with functionality of
5837 bw-adjust-window but using resize-window.
2b75be67
SM
5838 (set-window-text-height): Rewrite doc-string.
5839 Use normalize-live-window and resize-window.
5840 (enlarge-window-horizontally, shrink-window-horizontally):
5841 Rename argument to DELTA.
6198ccd0
MR
5842 (window-buffer-height): New function.
5843 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
5844 Rewrite using new window resize routines.
2b75be67
SM
5845 (kill-buffer-and-window, mouse-autoselect-window-select):
5846 Use ignore-errors instead of condition-case.
6198ccd0
MR
5847 (quit-window): Call delete-frame instead of delete-windows-on
5848 for the only buffer on frame.
5849
9397e56f
MR
58502011-06-10 Martin Rudalics <rudalics@gmx.at>
5851
5852 * loadup.el (top-level): Load window before files for the sake
5853 of replace-buffer-in-windows.
5854
5855 * files.el (read-buffer-to-switch)
5856 (switch-to-buffer-other-window)
2b75be67
SM
5857 (switch-to-buffer-other-frame, display-buffer-other-frame):
5858 Move to window.el.
9397e56f
MR
5859
5860 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
5861 (previous-buffer): Move to window.el.
5862
5863 * bindings.el (unbury-buffer): Move to window.el.
5864
5865 * window.el (delete-other-windows-vertically): Move after
5866 definition of delete-other-windows.
5867 (other-window, delete-windows-on, replace-buffer-in-windows):
5868 Move here from window.c.
5869 (record-window-buffer, unrecord-window-buffer)
5870 (set-window-buffer-start-and-point, switch-to-prev-buffer)
5871 (switch-to-next-buffer): New functions.
5872 (get-next-valid-buffer, last-buffer, next-buffer): Move here
5873 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
5874 (previous-buffer): Move here from simple.el.
5875 Call switch-to-prev-buffer.
9397e56f
MR
5876 (bury-buffer): Move here from buffer.c. Switch to previous
5877 buffer when window cannot be deleted.
5878 (unbury-buffer): Move here from bindings.el.
5879 (ctl-x-map): Move binding for other-window from window.c to
5880 here.
5881 (read-buffer-to-switch, switch-to-buffer-other-window)
5882 (switch-to-buffer-other-frame): Move here from files.el.
5883 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
5884 (switch-to-buffer): Move here from buffer.c.
5885 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 5886
562dd5e9
MR
58872011-06-10 Martin Rudalics <rudalics@gmx.at>
5888
5889 * window.el (window-min-height, window-min-width): Move here
5890 from window.c. Add defcustoms and rewrite doc-strings.
5891 (resize-mini-window, resize-window): New functions.
5892 (adjust-window-trailing-edge, enlarge-window, shrink-window):
5893 Move here from window.c.
5894 (maximize-window, minimize-window): New functions.
5895 (delete-window, delete-other-windows, split-window): Move here
5896 from window.c.
5897 (window-split-min-size): New function.
5898 (split-window-keep-point): Mention split-window-above-each-other
5899 instead of split-window-vertically.
2b75be67
SM
5900 (split-window-above-each-other, split-window-vertically):
5901 Rename split-window-vertically to split-window-above-each-other and
562dd5e9
MR
5902 provide defalias for old definition.
5903 (split-window-side-by-side, split-window-horizontally): Rename
5904 split-window-horizontally to split-window-side-by-side and provide
5905 defalias for the old definition.
5906 (ctl-x-map): Move bindings for delete-window,
5907 delete-other-windows and enlarge-window here from window.c.
5908 Replace bindings for split-window-vertically and
5909 split-window-horizontally by bindings for
5910 split-window-above-each-other and split-window-side-by-side.
5911
5912 * cus-start.el (all): Remove entries for window-min-height and
5913 window-min-width. Add entries for window-splits and
5914 window-nest.
5915
f0da764a
GM
59162011-06-09 Glenn Morris <rgm@gnu.org>
5917
80675c21
GM
5918 * calendar/appt.el (appt-mode-line): New function.
5919 (appt-check, appt-disp-window): Use it.
5920
f0da764a
GM
5921 * files.el (hack-one-local-variable-eval-safep):
5922 Allow minor-modes with explicit +/-1 arguments.
5923
59f623b7
TZ
59242011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
5925
5926 * term/xterm.el (xterm): Add defgroup.
5927 (xterm-extra-capabilities): Add defcustom to supply known xterm
5928 capabilities, skip querying them, or query them (default).
5929 (terminal-init-xterm): Use it.
5930 (terminal-init-xterm-modify-other-keys): New function to set up
5931 modifyOtherKeys support to simplify `terminal-init-xterm'.
5932
9aab8e0d
MR
59332011-06-09 Martin Rudalics <rudalics@gmx.at>
5934
5935 * window.el (resize-window-reset, resize-window-reset-1)
5936 (resize-subwindows-skip-p, resize-subwindows-normal)
5937 (resize-subwindows, resize-other-windows, resize-this-window)
5938 (resize-root-window, resize-root-window-vertically)
5939 (window-deletable-p, window-or-subwindow-p)
5940 (frame-root-window-p): New functions.
5941
e8b08aee
GM
59422011-06-09 Glenn Morris <rgm@gnu.org>
5943
5944 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
5945 (ange-ftp-get-files): Use it.
5946
254c37a5
AK
59472011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
5948
5949 * mail/sendmail.el (mail-recover-1, mail-recover):
5950 * files.el (recover-file, recover-session):
5951 Handle dired-listing-switches not being just a single short option.
5952
35d7dbd3
GM
59532011-06-09 Glenn Morris <rgm@gnu.org>
5954
5955 * calendar/appt.el (appt-display-message, appt-disp-window):
5956 Handle lists of appointments.
5957
387522b2
MR
59582011-06-08 Martin Rudalics <rudalics@gmx.at>
5959
2b75be67
SM
5960 * window.el (one-window-p): Move down in code.
5961 Rewrite doc-string.
5962 (window-current-scroll-bars): Rewrite doc-string.
5963 Normalize live window argument.
387522b2
MR
5964 (walk-windows, get-window-with-predicate, count-windows):
5965 Rewrite doc-string. Use window-list-1.
5966 (window-in-direction-2, window-in-direction, get-mru-window):
5967 New functions.
5968
d8e4b68b 59692011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
5970
5971 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
5972 Doc fix (Bug#8713).
5973
59742011-06-08 Chong Yidong <cyd@stupidchicken.com>
5975
5976 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
5977
59782011-06-08 Juanma Barranquero <lekktu@gmail.com>
5979
5980 * loadhist.el (unload-feature-special-hooks):
5981 Add `comint-output-filter-functions'.
5982
0de12c52
IK
59832011-06-08 Ivan Kanis <gnu@kanis.fr>
5984
5985 * calendar/appt.el (appt-check): Move some initializations into the let.
5986
f3d1777e
MR
59872011-06-08 Martin Rudalics <rudalics@gmx.at>
5988
5989 * window.el (window-height): Defalias to window-total-height.
5990 (window-width): Defalias to window-body-width.
5991
18af70d0
CY
59922011-06-07 Chong Yidong <cyd@stupidchicken.com>
5993
5994 * image-mode.el (image-toggle-animation): New command.
5995 (image-mode-map): Bind it to RET.
5996 (image-mode): Update message.
5997 (image-toggle-display-image): Avoid a spurious cache flush.
5998 (image-transform-rotation): Doc fix.
5999 (image-transform-properties): Return quickly in the normal case.
6000 (image-animate-loop): Rename from image-animate-max-time.
6001
2b75be67 6002 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
6003 (create-animated-image): Remove unnecessary function.
6004 (image-animate): Rename from image-animate-start. New arg.
2b75be67 6005 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
6006 (image-animate-timer): Use car-safe.
6007 (image-animate-timeout): Rename argument.
6008
190b47e6
MR
60092011-06-07 Martin Rudalics <rudalics@gmx.at>
6010
6011 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
6012 window.c. Rename first argument to ALL-FRAMES.
6013 Rephrase doc-strings.
6014 (get-buffer-window-list): Rewrite using window-list-1.
6015 Rephrase doc-string.
a1511caf
MR
6016 (window-safe-min-height, window-safe-min-width): New constants.
6017 (window-size-ignore, window-min-size, window-min-size-1)
6018 (window-sizable, window-sizable-p, window-size-fixed-1)
6019 (window-size-fixed-p, window-min-delta-1, window-min-delta)
6020 (window-max-delta-1, window-max-delta, window-resizable)
6021 (window-resizable-p, window-total-height, window-total-width)
6022 (window-body-width): New functions.
6023 (window-full-height-p, window-full-width-p): Rewrite using
6024 window-total-size.
6025 (window-body-height): Rewrite using window-body-size.
190b47e6 6026
85cc1f11
MR
60272011-06-06 Martin Rudalics <rudalics@gmx.at>
6028
6029 * window.el (window-right, window-left, window-child)
6030 (window-child-count, window-last-child, window-any-p)
6031 (normalize-live-buffer, normalize-live-frame)
6032 (normalize-any-window, normalize-live-window)
6033 (window-iso-combination-p, window-iso-combined-p)
6034 (window-iso-combinations)
6035 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
6036 (windows-with-parameter, window-with-parameter)
6037 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
6038 (window-atom-check, window-side-check, window-check):
6039 New functions.
85cc1f11
MR
6040 (ignore-window-parameters, window-sides, window-sides-vertical)
6041 (window-sides-slots): New variables.
6042 (window-size-fixed): Move down in code. Minor doc-string fix.
6043
e7156492
AS
60442011-06-05 Andreas Schwab <schwab@linux-m68k.org>
6045
6046 * comint.el (comint-dynamic-complete-as-filename)
6047 (comint-dynamic-complete-filename): Correctly call
6048 completion-in-region.
6049
7e821d0d
DD
60502011-06-05 Deniz Dogan <deniz@dogan.se>
6051
6052 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
6053 in last change.
6054
ac09b8a1
DD
60552011-06-05 Deniz Dogan <deniz@dogan.se>
6056
6057 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
6058 (rcirc): Use it to prompt for encryption.
6059
34699b85
RW
60602011-06-05 Roland Winkler <winkler@gnu.org>
6061
6062 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
6063 (bibtex-search-entries): New command bound to C-c C-a.
6064 (bibtex-display-entries): New function.
6065
004dedd3
RW
60662011-06-05 Roland Winkler <winkler@gnu.org>
6067
6068 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
6069 (bibtex-insert-kill): After yanking insert newline if necessary.
6070 (bibtex-initialize): Call bibtex-string-files-init only once.
6071 (bibtex-mode): Do not call easy-menu-add.
6072 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
6073 (bibtex-yank): Set arg properly if nil.
6074
022fe7ce
RW
60752011-06-05 Roland Winkler <winkler@gnu.org>
6076
2b75be67
SM
6077 * textmodes/bibtex.el (bibtex-search-entry-globally):
6078 New variable.
022fe7ce
RW
6079 (bibtex-search-entry): Use it.
6080
b7c3692a
RW
60812011-06-05 Roland Winkler <winkler@gnu.org>
6082
6083 * textmodes/bibtex.el (bibtex-entry-format): New option
6084 sort-fields.
6085 (bibtex-format-entry, bibtex-reformat): Honor this option.
6086 (bibtex-parse-entry): Return fields in proper order.
6087
8eda563d
JB
60882011-06-05 Juanma Barranquero <lekktu@gmail.com>
6089
6090 * doc-view.el (doc-view-remove-if): Move computation of result out
6091 of `dolist' to silence misleading lexical-binding warning.
6092
7dbe3dbc
CY
60932011-06-04 Chong Yidong <cyd@stupidchicken.com>
6094
6095 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
6096 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
6097
0c33dd17
MA
60982011-06-04 Michael Albinus <michael.albinus@gmx.de>
6099
6100 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
6101 "SunOS 5.10".
6102
f8f91c2b
MA
61032011-06-04 Michael Albinus <michael.albinus@gmx.de>
6104
6105 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
6106 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
6107 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
6108 (tramp-parse-putty):
6109 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
6110 (tramp-completion-function-alist-ssh)
6111 (tramp-completion-function-alist-telnet)
6112 (tramp-completion-function-alist-su)
6113 (tramp-completion-function-alist-putty): Set `tramp-autoload'
6114 cookie.
6115
6116 * net/tramp-ftp.el:
6117 * net/tramp-sh.el:
6118 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
6119 load "tramp.el" `tramp-set-completion-function'.
6120
e17d9003
SM
61212011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
6122
6123 * shell.el: Require and use pcomplete.
6124 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
6125 (shell-completion-vars): Set pcomplete-default-completion-function.
6126
6c4cab03
DD
61272011-06-04 Deniz Dogan <deniz@dogan.se>
6128
6129 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
6130 `memq' (Bug#8799).
6131
ea9fafe0
SM
61322011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6133
6134 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
6135
b3e945d3
JB
61362011-06-02 Juanma Barranquero <lekktu@gmail.com>
6137
6138 * bs.el (bs--mark-unmark, bs--nth-wrapper):
6139 * mpc.el (mpc-select-extend, mpc-songpointer-context):
6140 * vc/log-view.el (log-view-beginning-of-defun):
6141 * vc/smerge-mode.el (smerge-apply-resolution-patch)
6142 (smerge-refine-forward, smerge-refine-chopup-region):
6143 Silence warning for unused `dotimes' counter variables.
6144
7d520089
SM
61452011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6146
6147 * net/tramp.el (tramp-with-progress-reporter): Rename from
6148 with-progress-reporter. Use `declare'.
6149 * net/tramp-smb.el:
6150 * net/tramp-sh.el:
6151 * net/tramp-gvfs.el: Update all uses.
6152
a1c2400f
JB
61532011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
6154
6155 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
6156 buffer isn't killed before making it current.
6157
2403c841
SM
61582011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6159
6160 Silence various byte-compiler warnings.
6161 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
6162 `access-type' and new obsolescence format.
6163 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
6164 new format.
6165 (byte-compile-check-variable): New `access-type' argument.
6166 Only warn if the access-type is obsolete.
6167 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
6168 (byte-compile-variable-set): Adjust callers.
6169 * help-fns.el (describe-variable): Adjust to new obsolescence format.
6170 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
6171 setting it as obsolete.
6172 * simple.el (minibuffer-completing-symbol):
6173 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
6174 access as obsolete.
6175 * minibuffer.el (minibuffer-completing-file-name): Don't make it
6176 obsolete yet.
6177 * international/quail.el (quail-mouse-choose-completion): Remove unused
6178 code referring to obsolete var.
6179 (quail-choose-completion-string): Remove.
6180 * server.el (server-clients-with, server-kill-buffer-query-function)
6181 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
6182 * proced.el (proced-send-signal):
6183 * emacs-lisp/lisp.el (lisp-complete-symbol):
6184 Replace completion-annotate-function with completion-extra-properties.
6185
2462470b
SM
61862011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6187
fb5b2591
SM
6188 * simple.el (goto-line): Use read-number.
6189 (overriding-map-is-bound): Remove.
6190 (saved-overriding-map): Change default.
6191 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
6192 Take the map as argument.
6193 (universal-argument, negative-argument, digit-argument): Use it.
6194 (restore-overriding-map): Adjust.
6195 (do-auto-fill): Use fill-forward-paragraph.
6196 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
6197
fd6fa53f
SM
6198 * minibuffer.el (minibuffer-inactive-mode-map): New var.
6199 (minibuffer-inactive-mode): New major mode.
6200 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
6201 the *Messages* buffer" hack.
6202 (mouse-popup-menubar): Don't burp if the event is a normal key.
6203
2462470b
SM
6204 Miscellaneous tweaks.
6205 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
6206 lexical scoping as in subr.el's dolist and dotimes.
6207 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
6208 Silence compiler warning.
6209 * thingatpt.el (forward-whitespace): Trivial coding style fix.
6210 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
6211 * international/ccl.el (ccl-compile): Trivial simplification.
6212 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
6213 * emacs-lisp/testcover.el (testcover-end): Remove spurious
6214 `printflag' argument.
6215 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
6216 Purecopy the whole obsolescence data.
6217
108bf785
LL
62182011-06-01 Leo Liu <sdl.web@gmail.com>
6219
6220 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
6221 improve doc-string as suggested by Marco Pessotto
6222 <melmothx@gmail.com>.
6223 (rcirc-print): Fix last change.
6224
30a23501
SM
62252011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6226
6227 * minibuffer.el (complete-with-action): Return nil for the metadata and
6228 boundaries of non-functional tables.
6229 (completion-table-dynamic): Return nil for the metadata.
6230 (completion-table-with-terminator): Add default case, using
6231 complete-with-action.
6232 (completion--metadata): New function.
6233 (completion-all-sorted-completions, minibuffer-completion-help): Use it
6234 to try and avoid pathological performance problems.
6235 (completion--embedded-envvar-table): Return `category' metadata.
6236
bcd54f83
LMI
62372011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
6238
6239 * subr.el (process-alive-p): New tiny convenience function.
6240
e227544d
SM
62412011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6242
6243 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
6244 content but also its previous major mode.
6245
e8296fdc
HE
62462011-05-31 Helmut Eller <eller.helmut@gmail.com>
6247
4d61f28d 6248 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
6249 *Backtrace* buffer when we exit with C-M-c.
6250
620c53a6
SM
62512011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6252
6253 * minibuffer.el: Add metadata method to completion tables.
6254 (completion-category-overrides): New defcustom.
6255 (completion-metadata, completion--field-metadata)
6256 (completion-metadata-get, completion--styles)
6257 (completion--cycle-threshold): New functions.
6258 (completion-try-completion, completion-all-completions):
6259 Add `metadata' argument to choose completion-styles.
6260 (completion--do-completion): Use metadata to choose cycling.
6261 (completion-all-sorted-completions): Use metadata for sorting.
6262 Remove :completion-cycle-penalty which is not needed any more.
6263 (completion--try-word-completion): Add `metadata' argument.
6264 (minibuffer-completion-help): Check metadata for annotation function
6265 and sorting.
6266 (completion-file-name-table): Return `category' metadata.
6267 (minibuffer-completing-file-name): Make obsolete.
6268 * simple.el (minibuffer-completing-symbol): Make obsolete.
6269 * icomplete.el (icomplete-completions): Pass new `metadata' param to
6270 completion-try-completion.
6271
1257e755
SM
62722011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6273
6274 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
6275
3767e706
LL
62762011-05-30 Leo Liu <sdl.web@gmail.com>
6277
6278 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
6279 (rcirc-print): Decode all incoming messages (bug#8744).
6280 (rcirc-decode-coding-system): Allow value nil for automatic coding
6281 system detection.
3767e706 6282
d1a5d56a
GM
62832011-06-01 Glenn Morris <rgm@gnu.org>
6284
6285 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
6286
e8cbec34
CY
62872011-05-29 Chong Yidong <cyd@stupidchicken.com>
6288
6289 * image.el (image-animate-max-time): Allow nil and t values.
6290 Default to nil.
6291 (create-animated-image): Doc fix.
6292 (image-animate-start): Remove second arg; just use
6293 image-animate-max-time.
6294 (image-animate-timeout): Doc fix. Args changed.
6295
6296 * image-mode.el (image-toggle-display-image): Ensure that the
6297 image spec passed to the animate timer is the same object as in
58179cce 6298 the buffer's display property (Bug#6981).
e8cbec34
CY
6299 (image-transform-properties): Doc fix.
6300
6301 * image.el (image-animate-max-time): Default to nil.
6302
159daf87
MR
63032011-05-29 Martin Rudalics <rudalics@gmx.at>
6304
6305 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
6306 entire buffer list (Bug#8184).
6307
d66c4c7c
CY
63082011-05-29 Chong Yidong <cyd@stupidchicken.com>
6309
6310 * image.el (imagemagick-types-inhibit)
6311 (imagemagick-register-types): Doc fix.
6312
80aec780
DD
63132011-05-29 Deniz Dogan <deniz@dogan.se>
6314
6315 * net/rcirc.el (rcirc): Use the user's stored encryption method by
6316 default.
6317
1dd3c2d9
CY
63182011-05-29 Chong Yidong <cyd@stupidchicken.com>
6319
6320 * select.el: Don't perform clipboard-manager saving in hooks;
6321 leave the hooks empty.
6322
60e56523
LL
63232011-05-28 Leo Liu <sdl.web@gmail.com>
6324
6325 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
6326 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
6327 (occur-edit-mode): New major mode (Bug#8463).
6328 (occur-after-change-function): New function.
6329 (occur-engine): Give Occur tags a read-only property.
6330
2b1e1a22
KR
63312011-05-28 Kevin Ryde <user42@zip.com.au>
6332
6333 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
6334
5d344e88
CY
63352011-05-28 Chong Yidong <cyd@stupidchicken.com>
6336
8e6ca83d
CY
6337 * bindings.el (help-echo): Make the initial non-indicator dash
6338 empty on graphical terminals (Bug#7295).
6339
5d344e88
CY
6340 * files.el (auto-mode-alist): Move config rule after the
6341 in-stripping one (Bug#8547).
6342
bfbbace7
CY
6343 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
6344
fbeba6e2
CY
6345 * startup.el (normal-splash-screen): Remove gratuitous mode-line
6346 setting (Bug#8740).
6347
60ed8c72
AA
63482011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
6349
4ac619f0
AA
6350 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
6351 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
6352 (Bug#8539).
60ed8c72 6353
23db196e
CY
63542011-05-28 Chong Yidong <cyd@stupidchicken.com>
6355
6356 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
6357
5012f24c
DK
63582011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
6359
6360 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
6361 (hs-hide-block-at-point, hs-find-block-beginning)
6362 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
6363 (Bug#8279).
6364
6a639b16
GM
63652011-05-28 Glenn Morris <rgm@gnu.org>
6366
6367 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
6368
d43eaf2c
CY
63692011-05-28 Chong Yidong <cyd@stupidchicken.com>
6370
5199bde1
CY
6371 * help-fns.el (describe-function-1): If the function is a derived
6372 major mode, print the parent mode.
6373
d43eaf2c
CY
6374 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
6375 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
6376
423428a8
SM
63772011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
6378
0ff8e1ba 6379 * minibuffer.el (completion--capf-wrapper): Check applicability before
0b381c7e 6380 returning non-nil for non-exclusive completion data.
0ff8e1ba
SM
6381 * progmodes/etags.el (tags-completion-at-point-function):
6382 * info-look.el (info-lookup-completions-at-point): Mark as
6383 non-exclusive.
6384 (info-complete): Adjust accordingly.
6385
423428a8
SM
6386 * info-look.el: Convert to lexical-binding and completion-at-point.
6387 (info-lookup-completions-at-point): New function.
6388 (info-complete): Use it and completion-in-region.
6389
b74aa22b
DA
63902011-05-28 Drew Adams <drew.adams@oracle.com>
6391
6392 * isearch.el: Let M-e start with point at the first mismatched char.
6393 (isearch-fail-pos): New function.
6394 (isearch-edit-string): Use it.
6395
66e2e71d
DK
63962011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
6397
6398 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
6399
eb95d01d
TC
64002009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
6401
6402 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
6403 traversal functions for avl-trees.
6404 (avl-tree--stack): New struct.
6405 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
6406 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
6407 (avl-tree--do-enter): Add optional `updatefun' arg.
6408 Change return value.
eb95d01d 6409 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
6410 (avl-tree--do-delete): Add `test' and `nilflag' args.
6411 Change return value.
eb95d01d
TC
6412 (avl-tree-member): Add optional `nilflag'
6413 (avl-tree-member-p): New function.
6414 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
6415 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
6416 (avl-tree-stack-empty-p): New functions.
6417
3769ddcf
TC
64182009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
6419
6420 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
6421 avl-tree--del-balance1 and make it work both ways.
6422 (avl-tree--del-balance2): Remove.
6423 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
6424 make it work both ways.
6425 (avl-tree--enter-balance2): Remove.
6426 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
6427 New macros.
6428 (avl-tree--mapc, avl-tree-map): Add direction argument.
6429
eb95d01d 64302011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
6431
6432 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
6433
a9f737ee
CY
64342011-05-27 Chong Yidong <cyd@stupidchicken.com>
6435
6436 * select.el: Support clipboard managers with built-in function
6437 x-clipboard-manager-save, via delete-frame-functions and
6438 kill-emacs-hook.
6439 (xselect-convert-to-targets): Add MULTIPLE target to list.
6440 (xselect-convert-to-save-targets): New function.
6441
c92a1e54
KH
64422011-05-27 Kenichi Handa <handa@m17n.org>
6443
6444 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
6445 let-binding rfc2047-encode-encoded-words to nil.
6446
e145f188
GM
64472011-05-27 Glenn Morris <rgm@gnu.org>
6448
5ec8a862
GM
6449 * mail/emacsbug.el: Don't require url-util.
6450
4b29d9fb
GM
6451 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
6452
e145f188
GM
6453 * files.el (set-auto-mode):
6454 Also respect mode: entries at the end of the file. (Bug#8586)
6455
7d15102b
GM
64562011-05-26 Glenn Morris <rgm@gnu.org>
6457
98f593b8
GM
6458 * files.el (hack-local-variables-prop-line, hack-local-variables):
6459 Downcase mode names, as seems to be traditional.
27b48e63 6460 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 6461
7d15102b
GM
6462 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
6463 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
6464
51d5b4ec
JD
64652011-05-25 Julien Danjou <julien@danjou.info>
6466
6467 * textmodes/rst.el (rst-define-level-faces): Do not define face
6468 symbol if it is already defined.
6469
91513f63
VB
64702011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
6471
6472 * play/5x5.el (5x5-new-game, 5x5-randomize):
6473 Reset 5x5-solver-output to nil when a new grid is cast.
6474 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
6475 these debugging traces, as defmacro breaks the compiled code.
6476
4d90d6d0
DK
64772011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
6478
6479 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
6480
e1b90ef6
LL
64812011-05-24 Leo Liu <sdl.web@gmail.com>
6482
6483 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
6484 (vc-bzr-sha1): Adapt.
6485
d8e4b68b 6486 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
6487
6488 * bindings.el: Provide sha1 feature.
6489
db0406bb 64902011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
6491
6492 * mail/sendmail.el: Require `rfc2047'.
6493 (mail-insert-from-field): Do not perform RFC2047 encoding.
6494 (mail-encode-header): New function.
6495 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
6496 buffer to the return value of select-message-coding-system.
6497 Call mail-encode-header.
b8d747b9
KH
6498
6499 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
6500
db0406bb 65012011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 6502
4d90d6d0
DK
6503 * mail/supercite.el (sc-default-cite-frame):
6504 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 6505
eb8a5e9b
GM
65062011-05-24 Glenn Morris <rgm@gnu.org>
6507
f8630703
GM
6508 * progmodes/python.el (brm-menu): Declare.
6509
8831bbed
GM
6510 * emulation/viper.el (viper-set-hooks): Declare.
6511
eb8a5e9b
GM
6512 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
6513 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
6514 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
6515 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
6516 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
6517 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
6518
a2a25d24
SM
65192011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6520
6521 Add an :exit-function for completion-at-point.
6522
6523 * minibuffer.el (completion--done): New fun.
6524 (completion--do-completion): Use it. New arg `expect-exact'.
6525 (minibuffer-complete, minibuffer-complete-word): Don't output message,
6526 since completion--do-completion does it for us now.
6527 (minibuffer-force-complete): Use completion--done and
6528 completion--replace. Handle sole-completion case with more care.
6529 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
6530 (completion-extra-properties): New var.
6531 (completion-annotate-function): Make obsolete.
6532 (minibuffer-completion-help): Adjust accordingly.
6533 Use completion-list-insert-choice-function.
6534 (completion-at-point, completion-help-at-point):
6535 Bind completion-extra-properties.
6536 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
6537 * simple.el (completion-list-insert-choice-function): New var.
6538 (completion-setup-function): Preserve it.
6539 (choose-completion): Pay attention to it, shuffle the code a bit.
6540 (choose-completion-string): New arg `insert-function'.
6541
6542 * textmodes/bibtex.el: Convert to lexical binding.
6543 (bibtex-mode-map): Use completion-at-point.
6544 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
6545 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
6546 (bibtex-complete): Define as obsolete alias.
6547 (bibtex-complete-internal): Remove.
6548 (bibtex-format-entry): Remove unused sub-group in regexp.
6549 * shell.el (shell--command-completion-data)
6550 (shell-environment-variable-completion):
6551 * pcomplete.el (pcomplete-completions-at-point):
6552 * comint.el (comint--complete-file-name-data): Use :exit-function
6553 instead of completion-table-with-terminator so it also works for
6554 choose-completion.
6555
e44e373d
SM
65562011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6557
4f91a816
SM
6558 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
6559
782fc819
SM
6560 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
6561 (bug#8710).
6562
e44e373d
SM
6563 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
6564
381987c3
KM
65652011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
6566
6567 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
6568 customization variable and implement: If non-nil, auto-fill will
6569 be inhibited while on topic's header line.
6570
b776bc70
VB
65712011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
6572
6573 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 6574 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
6575 always have a solution in grid size = 5 cases.
6576 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
6577 (5x5-solver-output, 5x5-log-buffer): New vars.
6578 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
6579 Make these variables buffer local to achieve 5x5 multi-session-ness.
6580 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
6581 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
6582 (5x5-solve-suggest): New funs.
6583 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
6584 randomize a grid so that we ensure that there is always a solution.
6585 (5x5-make-random-grid): Allow other movement than flipping.
6586
7de88b6e
KR
65872011-05-23 Kevin Ryde <user42@zip.com.au>
6588
6589 * emacs-lisp/advice.el (ad-read-advised-function):
6590 Use `function-called-at-point' as the default default, if it has
6591 advice and passes PREDICATE.
6592
b1ef1257
SM
65932011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6594
bbca48fe
SM
6595 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
6596 byte-compile-lambda if it's actually a lambda.
6597
b1ef1257
SM
6598 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
6599 Fix function quoting. Use backquote better.
6600
92a9cc65
YS
66012011-05-22 Yuanle Song <sylecn@gmail.com>
6602
6603 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
6604 matching (Bug#8516).
6605
f0fb8059
JA
66062011-01-22 Jari Aalto <jari.aalto@cante.net>
6607
6608 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
6609 different face (Bug#8178).
6610
d5b44c93
CY
66112011-05-22 Chong Yidong <cyd@stupidchicken.com>
6612
6613 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
6614 defface (Bug#8144).
6615
79106a44
SM
66162011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
6617
9c848d8a
SM
6618 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
6619 funcall as well (bug#8712). Warn when performing those conversions.
6620 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
6621
79106a44
SM
6622 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
6623
88dfa756
GM
66242011-05-22 Glenn Morris <rgm@gnu.org>
6625
6626 * files.el (hack-local-variables-prop-line): Small simplifications.
6627 (hack-local-variables, hack-local-variables-prop-line):
6628 If MODE-ONLY, return the mode, rather than just `t'.
6629
b7cf2c79
SM
66302011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
6631
6632 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
6633
3f1a8558
GM
66342011-05-21 Glenn Morris <rgm@gnu.org>
6635
7e4ccca3
GM
6636 * files.el (hack-local-variables-prop-line, hack-local-variables):
6637 If only interested in the mode, don't bother doing the other stuff.
6638
637d46ca
GM
6639 * image-mode.el (image-after-revert-hook):
6640 Redraw all frames on which the image is visible. (Bug#8567)
6641
973d955b
GM
6642 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
6643
3f1a8558
GM
6644 * wid-edit.el (widget-checklist-match-inline):
6645 Fix 2011-04-19 change. (Bug#8649)
6646
96479927
SM
66472011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
6648
1dcf791f
SM
6649 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
6650 Also allow singlespace after single-letter capitals followed by a dot.
6651
96479927
SM
6652 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
6653 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
6654
35fd0881
N
66552011-05-20 Nix <nix@esperi.org.uk>
6656
6657 * files.el (basic-save-buffer-2):
6658 Fix handling of break-hardlink-on-save with non-existent files.
6659
82745640
DD
66602011-05-19 Deniz Dogan <deniz@dogan.se>
6661
6662 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 6663 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 6664
4a720484
GM
66652011-05-19 Glenn Morris <rgm@gnu.org>
6666
d1f21341
GM
6667 * progmodes/f90.el (f90-type-def-re):
6668 Handle "type, bind(c)". (Bug#8691)
6669
4a720484
GM
6670 * emacs-lisp/autoload.el (batch-update-autoloads):
6671 Set autoload-excludes by parsing loadup.el rather than Makefiles.
6672
2fb0a219
MA
66732011-05-18 Michael Albinus <michael.albinus@gmx.de>
6674
6675 * net/tramp.el (tramp-process-actions): Set "first-password-request"
6676 property for the correct connection in case of multihops.
6677
e565dd37
GM
66782011-05-18 Glenn Morris <rgm@gnu.org>
6679
c2571358 6680 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
6681 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
6682
e565dd37
GM
6683 Rationalize calendar handling of day and month abbrev-arrays.
6684 * calendar/calendar.el (calendar-customized-p): New function.
6685 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
6686 (calendar-day-name-array, calendar-month-name-array): Doc fix.
6687 Add :set function.
6688 (calendar-abbrev-length, calendar-day-abbrev-array)
6689 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
6690 (calendar-day-abbrev-array, calendar-month-abbrev-array):
6691 Elements may no longer be nil.
6692 (calendar-day-name, calendar-month-name):
6693 Update for changed nature of abbrev arrays.
6694 * calendar/diary-lib.el (diary-name-pattern):
6695 Update for changed nature of abbrev arrays.
6696 (diary-mark-entries-1): Update calendar-make-alist calls.
6697 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
6698 * calendar/cal-html.el (cal-html-day-abbrev-array):
6699 Simply inherit from calendar-day-abbrev-array.
6700
1d99a745
SM
67012011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
6702
6703 * progmodes/grep.el (grep-mode): Disable default
6704 compilation-directory-matcher setting (bug#8684).
6705
7c1d9aa0
MA
67062011-05-17 Michael Albinus <michael.albinus@gmx.de>
6707
6708 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
6709 instead of "head" and "tail". There were problems with SunOS 5.9,
6710 and it performs better.
6711
3952e9d8
GM
67122011-05-17 Glenn Morris <rgm@gnu.org>
6713
2dd12e7f
GM
6714 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
6715
e4157b9c
GM
6716 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
6717 Replace obsolete function.
6718
8e249bbd
GM
6719 * shell.el (pcomplete-parse-arguments-function): Declare.
6720
3952e9d8
GM
6721 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
6722 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
6723 (appt-check): Doc fixes.
6724 (appt-disp-window-function, appt-delete-window-function):
6725 Remove needless special case in custom :type.
6726 (appt-display-count): Default to 0, not nil.
6727 (appt-check): Reset appt-display-count to 0, not nil.
6728
c71a0d48 67292011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 6730
c71a0d48
GM
6731 * progmodes/python.el (python-font-lock-keywords):
6732 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 6733
31d55be9
SM
67342011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
6735
6736 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
6737
3bfacb2f
KR
67382011-05-16 Kevin Ryde <user42@zip.com.au>
6739
6740 * info-look.el (makefile-automake-mode): New setups, looking in
6741 automake manual, then makefile-mode.
6742 (makefile-mode): Remove automake manual, have it just in
6743 makefile-automake-mode since there's various things different or
6744 not relevant to plain make.
6745 (makefile-mode): Remove "other-modes" non-existent automake-mode,
6746 believe a hypothetical automake-mode would go to makefile-mode,
6747 not the other way around.
6748
c8e83751
CY
67492011-05-15 Chong Yidong <cyd@stupidchicken.com>
6750
5e9e35cd
CY
6751 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
6752 hunk-end tags (Bug#8672).
6753
c8e83751
CY
6754 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
6755 vc-annotate-show-diff-revision-at-line (Bug#8671).
6756
50b23e5a
GM
67572011-05-14 Glenn Morris <rgm@gnu.org>
6758
7210a739
GM
6759 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
6760 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
6761 (change-log-font-lock-keywords): Also handle multiple author lines
6762 with leading tabs. (Bug#8644)
7210a739 6763
4691905a
GM
6764 * calendar/appt.el (appt-check): Rename some local variables.
6765 Some simplification/reordering.
6766
50b23e5a
GM
6767 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
6768 (feedmail-sendmail-f-doesnt-sell-me-out)
6769 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
6770 (feedmail-debug-sit-for, feedmail-queue-express-hook)
6771 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
6772 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
6773 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
6774 (feedmail-binmail-gnulinuxish-template):
6775 Rename from feedmail-binmail-linuxish-template.
6776 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
6777 Use insert-buffer-substring.
6778
215cda7c
BC
67792011-05-14 Bill Carpenter <bill@carpenter.org>
6780
6781 * mail/feedmail.el (feedmail-patch-level): Increase.
6782 (feedmail-debug): New custom group.
6783 (feedmail-confirm-outgoing-timeout)
6784 (feedmail-sendmail-f-doesnt-sell-me-out)
6785 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
6786 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
6787 (feedmail-sender-line, feedmail-from-line)
6788 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 6789 (feedmail-spray-this-address)
215cda7c
BC
6790 (feedmail-spray-address-fiddle-plex-list)
6791 (feedmail-queue-use-send-time-for-date)
6792 (feedmail-queue-use-send-time-for-message-id)
6793 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
6794 (feedmail-buffer-eating-function):
6795 Doc fixes.
6796 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
6797 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
6798 (feedmail-message-action-scroll-down): New functions.
6799 (feedmail-queue-directory, feedmail-queue-draft-directory):
6800 Use expand-file-name.
6801 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
6802 Remove C-v help entry.
6803 (feedmail-queue-buffer-file-name): New variable.
6804 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
6805 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
6806 (feedmail-message-action-send-strong, feedmail-message-action-edit)
6807 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
6808 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
6809 (feedmail-message-action-toggle-spray)
6810 (feedmail-run-the-queue-no-prompts)
6811 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
6812 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
6813 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
6814 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
6815 (feedmail-envelope-deducer, feedmail-fiddle-from)
6816 (feedmail-fiddle-sender, feedmail-default-date-generator)
6817 (feedmail-fiddle-date, feedmail-fiddle-message-id)
6818 (feedmail-fiddle-spray-address)
6819 (feedmail-fiddle-list-of-spray-fiddle-plexes)
6820 (feedmail-fiddle-list-of-fiddle-plexes)
6821 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
6822 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
6823 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
6824 Change default. Doc fix.
6825 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
6826 (feedmail-binmail-linuxish-template): New constant.
6827 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
6828 Respect feedmail-sendmail-f-doesnt-sell-me-out.
6829 (feedmail-send-it): Add debug call.
6830 Use feedmail-queue-buffer-file-name, and
6831 feedmail-send-it-immediately-wrapper.
6832 (feedmail-message-action-send): Add debug call.
6833 Use feedmail-send-it-immediately-wrapper.
6834 (feedmail-queue-express-to-queue): Add debug call.
6835 Run feedmail-queue-express-hook.
6836 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
6837 (feedmail-message-action-help-blat):
6838 Rename from feedmail-queue-send-edit-prompt-help-first.
6839 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
6840 Check line-endings. Handle errors better.
6841 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
6842 Doc fix. Add debug call.
6843 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
6844 Use feedmail-queue-send-edit-prompt-inner.
6845 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
6846 (feedmail-queue-send-edit-prompt-inner): New function, extracted
6847 from feedmail-queue-send-edit-prompt.
6848 (feedmail-queue-send-edit-prompt-help)
6849 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
6850 (feedmail-tidy-up-slug): Add debug call.
6851 Respect feedmail-queue-slug-suspect-regexp.
6852 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
6853 (feedmail-dump-message-to-queue): Add debug call.
6854 Expand queue-directory.
6855 (feedmail-dump-message-to-queue): Change message slightly.
6856 Use feedmail-say-chatter.
6857 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
6858 (feedmail-send-it-immediately-wrapper): New function.
6859 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
6860 Insert empty string rather than newline. Handle full-frame case.
6861 Use catch/throw. Use feedmail-say-chatter.
6862 (feedmail-fiddle-from): Try mail-host-address.
6863 (feedmail-default-message-id-generator): Doc fix.
6864 Bind system-time-locale. Handle missing end.
6865 (feedmail-fiddle-x-mailer): Add debug call.
6866 Handle feedmail-x-mailer-line being nil.
6867 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
6868 Add debug call. Use buffer-substring-no-properties.
6869 (feedmail-say-debug, feedmail-say-chatter): New functions.
6870 (feedmail-find-eoh): Give an explicit error.
6871
42c7e61e
UJ
68722011-05-13 Ulf Jasper <ulf.jasper@web.de>
6873
c2571358 6874 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 6875 family from helvetica to sans.
c2571358 6876 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
6877 etc/images/newsticker.
6878
c2571358 6879 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
6880 family from helvetica to sans.
6881
6882 * net/newst-plainview.el (newsticker-new-item-face)
6883 (newsticker-old-item-face, newsticker-immortal-item-face)
6884 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 6885 (newsticker-statistics-face): Change default family from
42c7e61e 6886 helvetica to sans.
c2571358 6887 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
6888 etc/images/newsticker.
6889
6890 * net/newst-backend.el (newsticker--do-run-auto-mark-filter),
6891 (newsticker--process-auto-mark-filter-match): : Tell user about
6892 auto-marking.
6893
8497a297
DV
68942011-05-13 Didier Verna <didier@xemacs.org>
6895
6896 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
6897 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
6898 TODO entries.
8497a297
DV
6899 (lisp-lambda-list-keyword-parameter-indentation)
6900 (lisp-lambda-list-keyword-parameter-alignment)
6901 (lisp-lambda-list-keyword-alignment): New customizable user options.
6902 (lisp-indent-defun-method): Improve docstring.
6903 (extended-loop-p): Fix comment.
6904 (lisp-indent-lambda-list-keywords-regexp): New variable.
6905 (lisp-indent-lambda-list): New function.
6906 (lisp-indent-259): Use it.
6907 (lisp-indent-defmethod): Support for more than one
6908 method qualifier and properly indent methods lambda-lists.
6909 (defgeneric): Provide a missing common-lisp-indent-function property.
6910
f278f87f
SM
69112011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
6912
6913 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
6914 bounds for the empty string (bug#8667).
6915
5233edd7
GM
69162011-05-13 Glenn Morris <rgm@gnu.org>
6917
5237a44f
GM
6918 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
6919
8340026c 6920 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 6921 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 6922
5233edd7 6923 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 6924 (appt-time-msg-list): Doc fix.
a5464014 6925 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 6926
92d10796
AS
69272011-05-12 Andreas Schwab <schwab@linux-m68k.org>
6928
6929 * progmodes/ld-script.el (ld-script-keywords)
6930 (ld-script-builtins): Update keywords list.
6931
914a0ae1
SM
69322011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6933
c89be45f
SM
6934 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
6935
914a0ae1
SM
6936 * shell.el (shell-completion-vars): New function.
6937 (shell-mode):
6938 * simple.el (read-shell-command): Use it.
6939 (blink-matching-open): No need for " [...]" in minibuffer-message.
6940
98dc3df3
GM
69412011-05-12 Glenn Morris <rgm@gnu.org>
6942
6943 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
6944 (appt-check): Simplify.
6945
d2fc7e3d 69462011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 6947
4d61f28d 6948 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
6949 literal "/dev/null".
6950
d2fc7e3d 69512011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
6952
6953 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
6954 Fix typo.
6955
d2fc7e3d 69562011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 6957
3f254caa
SM
6958 * progmodes/which-func.el (which-function):
6959 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
6960 which might not be defined (Bug#8260).
6961
d45885f7
GM
69622011-05-12 Glenn Morris <rgm@gnu.org>
6963
6964 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
6965 Let byte-compile-initial-macro-environment always take precedence.
6966
488086f4
SM
69672011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6968
6969 * net/rcirc.el: Add support for SSL/TLS connections.
6970 (rcirc-server-alist): New field `encryption'.
6971 (rcirc): Check `encryption' settings.
6972 (rcirc-connect): New arg `encryption'. Use open-network-stream.
6973 Merge make-local-variable into `set'.
6974 (rcirc--connection-open-p): New function.
6975 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
6976 the process is not a network process (e.g. running gnutls-cli).
6977 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
6978 Make rcirc-(en|de)code-coding-system local here.
6979 (rcirc-mode): Merge make-local-variable into `set'.
6980 (rcirc-parent-buffer): Make permanent buffer-local.
6981 (rcirc-multiline-minor-mode): Don't do it here.
6982 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
6983 there's no server buffer.
6984
7d3b9d44
GM
69852011-05-11 Glenn Morris <rgm@gnu.org>
6986
f64049c6
GM
6987 * newcomment.el (comment-kill): Prefix "unused" local.
6988
93c9df73
GM
6989 * term/w32console.el (get-screen-color): Declare.
6990
7d3b9d44
GM
6991 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
6992 Handle symbol elements of byte-compile-initial-macro-environment.
6993
9e2dd53f
LL
69942011-05-10 Leo Liu <sdl.web@gmail.com>
6995
488086f4
SM
6996 * bookmark.el (bookmark-bmenu-mode-map):
6997 Bind bookmark-bmenu-search to `/'.
8b340240 6998
9e2dd53f 6999 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
7000 (footnote-unicode-string, footnote-unicode-regexp): New variable.
7001 (Footnote-unicode): New function.
7002 (footnote-style-alist): Add unicode style to the list.
7003 (footnote-style): Doc fix.
9e2dd53f 7004
79b70037
GM
70052011-05-10 Jim Meyering <meyering@redhat.com>
7006
7007 Fix doubled-word typos.
7008 * international/quail.el (quail-insert-kbd-layout): and and -> and
7009 * kermit.el: and and -> and
7010 * net/ldap.el (ldap-search-internal): to to -> to
7011 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
7012 * progmodes/js.el (js-mode): and and -> and
7013 * textmodes/artist.el (artist-move-to-xy): at at -> at
7014 (artist-draw-region-trim-line-endings): if if -> if
7015 And Safetyc -> Safety.
7016 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
7017
b8f82dc1 70182011-05-10 Glenn Morris <rgm@gnu.org>
c2571358 7019 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
7020
7021 * files.el (hack-one-local-variable-eval-safep):
7022 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
7023
4f99f44b
GM
70242011-05-10 Glenn Morris <rgm@gnu.org>
7025
7026 * calendar/diary-lib.el (diary-list-entries-hook)
7027 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
7028 (diary-nongregorian-marking-hook, diary-list-entries)
7029 (diary-include-other-diary-files, diary-mark-entries)
7030 (diary-mark-included-diary-files): Doc fixes.
7031
84f29e6b
JB
70322011-05-09 Juanma Barranquero <lekktu@gmail.com>
7033
7034 * misc.el: Require tabulated-list.el during compilation.
7035
9bedd73a
CY
70362011-05-09 Chong Yidong <cyd@stupidchicken.com>
7037
488086f4
SM
7038 * progmodes/compile.el (compilation-start):
7039 Run compilation-filter-hook for the async case too.
9bedd73a
CY
7040 (compilation-filter-hook): Doc fix.
7041
797c735c
DD
70422011-05-09 Deniz Dogan <deniz@dogan.se>
7043
7044 * wdired.el: Remove outdated installation comment. Fix usage
7045 comment.
7046
5f4b1dfe
JB
70472011-05-09 Juanma Barranquero <lekktu@gmail.com>
7048
7049 * misc.el: Implement new command `list-dynamic-libraries'.
7050 (list-dynamic-libraries--loaded-only-p): New variable.
7051 (list-dynamic-libraries--refresh): New function.
7052 (list-dynamic-libraries): New command.
7053
4c44026c
CY
70542011-05-09 Chong Yidong <cyd@stupidchicken.com>
7055
488086f4
SM
7056 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7057 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
7058 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
7059 higher priority to avoid clobbering by gnu.
7060
027f966d
CY
70612011-05-08 Chong Yidong <cyd@stupidchicken.com>
7062
7063 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
7064 if the face has existing theme settings (Bug#8454).
7065
085f5d7d
CY
70662011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
7067
488086f4
SM
7068 * progmodes/perl-mode.el (perl-imenu-generic-expression):
7069 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 7070
2a86a00c
RS
7071 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
7072 special file names `.' and `..' (Bug#8259).
7073
d9c54a06
CY
70742011-05-08 Chong Yidong <cyd@stupidchicken.com>
7075
488086f4
SM
7076 * progmodes/grep.el (grep-mode-font-lock-keywords):
7077 Remove buffer-changing entries.
d9c54a06
CY
7078 (grep-filter): New function.
7079 (grep-mode): Add it to compilation-filter-hook.
7080
7081 * progmodes/compile.el (compilation-filter-hook)
7082 (compilation-filter-start): New defvars.
7083 (compilation-filter): Call compilation-filter-hook prior to
7084 updating the process mark.
7085
c4662635
SM
70862011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7087
7088 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
7089
b0512a1d
EZ
70902011-05-07 Eli Zaretskii <eliz@gnu.org>
7091
605c9376
EZ
7092 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
7093 mailclient-send-it even if window-system is nil. (Bug#8595)
7094
c4662635
SM
7095 * term/w32console.el (terminal-init-w32console):
7096 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
7097 background-mode. (Bug#8597)
7098
d1dc2cc2
SM
70992011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7100
7101 Make bytecomp.el understand that defmethod defines funs (bug#8631).
7102 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
7103 New functions.
7104 (defgeneric, eieio--defmethod): Use them.
7105 (eieio-defgeneric): Remove.
7106 (defmethod): Call defgeneric in a way visible to the byte-compiler.
7107
915d1300
GM
71082011-05-07 Glenn Morris <rgm@gnu.org>
7109
a3961c3e
GM
7110 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
7111 Use let rather than let*.
7112 (timeclock-find-discrep): Remove unused local.
7113
314347b9
GM
7114 * calendar/diary-lib.el (diary-comment-start): Doc fix.
7115
915d1300
GM
7116 * calendar/appt.el (appt-time-msg-list): Doc fix.
7117
275b59b0
NF
71182011-05-06 Noah Friedman <friedman@splode.com>
7119
7120 * apropos.el (apropos-print-doc): Only use
7121 emacs-lisp-docstring-fill-column when it is bound to an integer,
7122 per that variable's documentation.
7123
6c19f744
SM
71242011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7125
7126 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 7127 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 7128
60f884b2
GM
71292011-05-06 Glenn Morris <rgm@gnu.org>
7130
5006e634
GM
7131 * calendar/appt.el (appt-message-warning-time): Doc fix.
7132 (appt-warning-time-regexp): New option.
7133 (appt-make-list): Respect appt-message-warning-time.
7134
548d0a63
GM
7135 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
7136 New options.
7137 (diary-add-to-list): Strip comments from the displayed string.
7138 (diary-mode): Set comment-start and comment-end.
7139
60f884b2
GM
7140 * vc/diff-mode.el (smerge-refine-subst): Declare.
7141 (diff-refine-hunk): Don't require smerge-mode when compiling.
7142
989681bb
JB
71432011-05-06 Juanma Barranquero <lekktu@gmail.com>
7144
7145 * simple.el (list-processes): Return nil as the docstring says.
7146
a6bc05e1
MA
71472011-05-05 Michael Albinus <michael.albinus@gmx.de>
7148
7149 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
7150 to "".
7151 (ange-ftp-write-region, ange-ftp-insert-file-contents)
7152 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
7153 determining of binary transfer. (Bug#7383)
7154
23c22e9a
MA
71552011-05-05 Michael Albinus <michael.albinus@gmx.de>
7156
c4662635
SM
7157 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7158 Fix port computation bug. (Bug#8618)
23c22e9a 7159
0bff894f
GM
71602011-05-05 Glenn Morris <rgm@gnu.org>
7161
b8296902
GM
7162 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
7163
1f522ce8
GM
7164 * simple.el (shell-dynamic-complete-functions)
7165 (comint-dynamic-complete-functions): Declare.
7166
cf5bee67
GM
7167 * net/network-stream.el (gnutls-negotiate):
7168 * simple.el (tabulated-list-print): Fix declarations.
7169
7170 * progmodes/gud.el (syntax-symbol, syntax-point):
7171 Remove unnecessary and incorrect declarations.
7172
0bff894f
GM
7173 * emacs-lisp/check-declare.el (check-declare-scan):
7174 Handle byte-compile-initial-macro-environment in bytecomp.el
7175
9869b3ae
SM
71762011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7177
7178 Fix earlier half-done eieio-defmethod change (bug#8338).
7179 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
7180 Streamline and change calling convention.
7181 (defmethod): Adjust accordingly and simplify.
7182 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
7183 new eieio--defmethod.
7184 (slot-boundp): Minor CSE simplification.
7185
9c1d5ac5
MZ
71862011-05-05 Milan Zamazal <pdm@zamazal.org>
7187
7188 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
7189 (glasses-make-readable): Use glasses-separate-capital-groups.
7190
455c834e
JB
71912011-05-05 Juanma Barranquero <lekktu@gmail.com>
7192
7193 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
7194 (warning-series): Doc fix.
7195 (display-warning): Don't try to create the buffer if we just found it.
7196
9ed7c8cb
CY
71972011-05-04 Chong Yidong <cyd@stupidchicken.com>
7198
7199 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
7200 (autoload-find-generated-file): New function.
7201 (generate-file-autoloads): Bind generated-autoload-file to
7202 buffer-file-name.
9869b3ae
SM
7203 (update-file-autoloads, update-directory-autoloads):
7204 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
7205 output file (Bug#7989).
7206 (batch-update-autoloads): Doc fix.
7207
0898ca10
JB
72082011-05-04 Juanma Barranquero <lekktu@gmail.com>
7209
7210 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
7211
31dfb76c
GM
72122011-05-04 Glenn Morris <rgm@gnu.org>
7213
f330b642
GM
7214 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
7215 function, so it follows changes in calendar-date-style.
7216 (diary-fancy-date-matcher): New function.
7217 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
7218 (diary-fancy-font-lock-fontify-region-function):
7219 Use diary-fancy-date-pattern as a function.
7220
31dfb76c
GM
7221 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
7222 non-numbers for `year' etc pseudo-variables. (Bug#8583)
7223
48e79d6a
TZ
72242011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
7225
7226 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
7227 instead of positional arguments. Allow :keylist and :crlfiles
7228 arguments.
7229 (open-gnutls-stream): Call it.
7230
7231 * net/network-stream.el (network-stream-open-starttls): Adjust to
7232 call `gnutls-negotiate' with :process and :hostname arguments.
7233
dd5a5ee0
SM
72342011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7235
ef80fc09
SM
7236 * minibuffer.el (completion--message): New function.
7237 (completion--do-completion, minibuffer-complete)
7238 (minibuffer-force-complete, minibuffer-complete-word): Use it.
7239 (completion--do-completion): Don't ignore completion-auto-help when in
7240 icomplete-mode.
7241
dd5a5ee0
SM
7242 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
7243 internal encoding (e.g. tibetan zero is not whitespace).
7244 (global-whitespace-mode): Prefer save-current-buffer.
7245 (whitespace-trailing-regexp): Remove useless save-match-data.
7246 (whitespace-empty-at-bob-regexp): Minor simplification.
7247
b7d22a83
CY
72482011-05-03 Chong Yidong <cyd@stupidchicken.com>
7249
7250 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
7251
5192af46
AM
72522011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7253
7254 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 7255 Use `concat' to create string for insertion.
5192af46 7256
5767d190
SM
72572011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7258
7259 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
7260 Avoid open-line which runs post-self-insert-hook.
7261 (bibtex-fill-entry): Remove unused `end' var.
7262
bf242939
AM
72632011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
7264
5767d190
SM
7265 * textmodes/ispell.el (ispell-add-per-file-word-list):
7266 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 7267
25666126
LL
72682011-05-03 Leo Liu <sdl.web@gmail.com>
7269
7270 * isearch.el (isearch-yank-pop): New command.
5767d190 7271 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
7272 (isearch-forward): Mention it.
7273
52d3c2d0
SM
72742011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7275
1bcace58
SM
7276 * simple.el (minibuffer-complete-shell-command): Remove.
7277 (minibuffer-local-shell-command-map): Use completion-at-point.
7278 (read-shell-command): Setup completion vars here instead.
7279 (read-expression-map): Bind TAB to symbol completion.
7280
52d3c2d0
SM
7281 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
7282 error directly rather via storing it into `results'.
7283
35813471
LL
72842011-05-02 Leo Liu <sdl.web@gmail.com>
7285
7286 * vc/diff.el: Fix description.
7287
e793a940
LMI
72882011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
7289
7290 * server.el (server-eval-at): New function.
7291
8de66e05
LMI
72922011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
7293
7294 * net/network-stream.el (open-network-stream): Take a :nowait
7295 parameter and pass it on to `make-network-process'.
7296 (network-stream-open-plain): Ditto.
7297
dcb79f20
AS
72982011-04-30 Andreas Schwab <schwab@linux-m68k.org>
7299
7300 * faces.el (face-spec-set-match-display): Don't match toolkit
7301 options on terminal frames.
7302
14a7fbd8
SM
73032011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
7304
7eabc1be
SM
7305 * progmodes/pascal.el: Use lexical binding.
7306 (pascal-mode-map): Remove author preferences.
7307
14a7fbd8
SM
7308 * pcomplete.el (pcomplete-std-complete): Don't abuse
7309 completion-at-point.
7310
50f84510
JB
73112011-04-28 Juanma Barranquero <lekktu@gmail.com>
7312
6e087a44
JB
7313 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
7314 removing code that has been dead since 1991 or so.
7315
50f84510
JB
7316 * startup.el (command-line): When warning about "_emacs", use a
7317 delayed warning to allow the user to filter it out.
7318
0ba690bd
DD
73192011-04-28 Deniz Dogan <deniz@dogan.se>
7320
7321 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
7322 user has not joined.
7323
08abfaad
SM
73242011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7325
7326 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
7327 aren't any completions at point.
7328
638f053a
JB
73292011-04-28 Juanma Barranquero <lekktu@gmail.com>
7330
7331 * subr.el (display-delayed-warnings): New function.
7332 (delayed-warnings-hook): New variable.
7333
8fff8daa
SM
73342011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7335
08abfaad
SM
7336 * minibuffer.el (completion-at-point, completion-help-at-point):
7337 Don't presume that a given completion-at-point-function will always
7338 use the same calling convention.
7339
8fff8daa
SM
7340 * pcomplete.el (pcomplete-completions-at-point):
7341 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
7342 pcomplete-seen is non-nil.
7343 (pcomplete-comint-setup): Also recognize the new comint/shell
7344 completion functions.
7345 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
7346 pcomplete-seen is non-nil.
7347
841a1577 73482011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 7349
841a1577 7350 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 7351 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 7352 the first character in the entry. This allows for code to add its
211ec907
UJ
7353 own uid to the entry.
7354 (icalendar--convert-float-to-ical): Add export of
7355 `diary-float'-entries save for those with the optional DAY
7356 argument.
7357
2a782793
DC
73582011-04-27 Daniel Colascione <dan.colascione@gmail.com>
7359
7360 * subr.el (shell-quote-argument): Use alternate escaping strategy
7361 when we spot a variable reference in a string.
7362
0438ce91
DC
73632011-04-26 Daniel Colascione <dan.colascione@gmail.com>
7364
7365 * cus-start.el (all): Define customization for debug-on-event.
7366
841a1577 73672011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
7368
7369 * subr.el (shell-quote-argument): Escape correctly under Windows.
7370
d090ed6c
SM
73712011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7372
7373 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
7374
bfd31217
MA
73752011-04-25 Michael Albinus <michael.albinus@gmx.de>
7376
d090ed6c
SM
7377 * net/tramp.el (tramp-process-actions): Add POS argument.
7378 Delete region between POS and (pos).
bfd31217 7379
d090ed6c
SM
7380 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7381 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
7382 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
7383
7384 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
7385 position in `tramp-process-actions' call.
7386
7387 * net/trampver.el: Update release number.
7388
e92f3bd3
SM
73892011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7390
850256b5
SM
7391 * custom.el (defcustom): Obey lexical-binding.
7392
e92f3bd3
SM
7393 Fix octave-inf completion problems reported by Alexander Klimov.
7394 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
7395 Inherit from octave-mode-syntax-table.
7396 (inferior-octave-mode): Set info-lookup-mode.
7397 (inferior-octave-completion-at-point): New function.
7398 (inferior-octave-complete): Use it and completion-in-region.
7399 (inferior-octave-dynamic-complete-functions): Use it as well, and use
7400 comint-filename-completion.
7401 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
7402 symbol elements which shouldn't be word elements.
7403 (octave-font-lock-keywords, octave-beginning-of-defun)
7404 (octave-function-header-regexp): Adjust regexps accordingly.
7405 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
7406
cd22b309
JB
74072011-04-25 Juanma Barranquero <lekktu@gmail.com>
7408
7409 * net/gnutls.el (gnutls-errorp): Declare before first use.
7410
8b492194
TZ
74112011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
7412
7413 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
7414 verify-error, and verify-hostname-error parameters. Check whether
cd22b309
JB
7415 default trustfile exists before going to use it. Add missing
7416 argument to gnutls-message-maybe call. Return return value.
8b492194
TZ
7417 Reported by Claudio Bley <claudio.bley@gmail.com>.
7418 (open-gnutls-stream): Add usage example.
7419
7420 * net/network-stream.el (network-stream-open-starttls): Give host
7421 parameter to `gnutls-negotiate'.
7422 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 7423 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 7424
841a1577 74252011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 7426
cd22b309
JB
7427 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
7428 Use correct match group (bug#8438).
05842630 7429
3ba7869c
CY
74302011-04-24 Chong Yidong <cyd@stupidchicken.com>
7431
512e3ae1
CY
7432 * emacs-lisp/package.el (package-built-in-p): Fix typo.
7433 (package-menu--generate): New arg specifying packages to show.
7434 (package-menu-refresh, package-menu-execute, list-packages):
7435 Callers changed.
7436 (package-show-package-list): New function, replacing deleted
7437 package--list-packages (renamed because it is non-internal).
7438
7439 * finder.el (finder-list-matches): Use package-show-package-list
7440 instead of deleted package--list-packages.
7441
e92f3bd3
SM
7442 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
7443 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
7444 (vc-annotate-mode-map): Bind it to RET.
7445
7031be6d
UR
74462011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
7447
7448 * progmodes/etags.el (next-file): Don't use set-buffer to change
7449 buffers (Bug#8478).
7450
4ef177aa
CY
74512011-04-24 Chong Yidong <cyd@stupidchicken.com>
7452
c8d173eb
CY
7453 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
7454
4ef177aa
CY
7455 * apropos.el (apropos-label-face): Avoid variable-pitch face.
7456 (apropos-accumulator): Doc fix.
7457 (apropos-function, apropos-macro, apropos-command)
7458 (apropos-variable, apropos-face, apropos-group, apropos-widget)
7459 (apropos-plist): Add face property.
7460 (apropos-symbols-internal): Fix indentation.
7461 (apropos-print): Simplify help, and recognize apropos-multi-type.
7462 (apropos-print-doc): Use button-type-get to extract the button's
7463 face property. Fill docstring (Bug#8352).
7464
4ffd0d6b 74652011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
7466
7467 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
7468
c6c32125 7469 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 7470 (mpuz-mode-map): Use mapc.
c6c32125
JB
7471 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
7472 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
7473 Fix typos in docstrings.
7474
58d468b4
JB
7475 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
7476 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
7477
6470c3c6
JB
7478 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
7479
4ffd0d6b 74802011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
7481
7482 * minibuffer.el (completion--do-completion): Avoid the "Next char
7483 not unique" prompt if icomplete-mode is enabled (Bug#5849).
7484
3ad8bad0
CY
7485 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
7486 mouse-2 into unread-command-events, it is interpreted correctly.
7487
71d73c9c 7488 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 7489 (image-toggle-display): Doc fix.
71d73c9c 7490
841a1577 74912011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 7492
4ffd0d6b
GM
7493 * textmodes/page.el (what-page): Use line-number-at-pos to
7494 calculate line number (Bug#6825).
6e1dbaa9 7495
c2fb1b60
JB
74962011-04-22 Juanma Barranquero <lekktu@gmail.com>
7497
7498 * eshell/esh-mode.el (find-tag-interactive): Declare function.
7499 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
7500 Pass argument NO-DEFAULT to `find-tag-interactive'.
7501
e02f48d7
JB
75022011-04-22 Juanma Barranquero <lekktu@gmail.com>
7503
7504 Lexical-binding cleanup.
7505
7506 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
7507 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
7508 * progmodes/ada-prj.el (ada-prj-initialize-values)
7509 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
7510 (ada-prj-show-value):
7511 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
7512 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
7513 (antlr-invalidate-context-cache, antlr-options-menu-filter)
7514 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
7515 * progmodes/bug-reference.el (bug-reference-push-button):
7516 * progmodes/fortran.el (fortran-line-length):
7517 * progmodes/glasses.el (glasses-change):
7518 * progmodes/octave-mod.el (octave-fill-paragraph):
7519 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
7520 (python-pdbtrack-grub-for-buffer, python-sentinel):
7521 * progmodes/sql.el (sql-save-connection):
7522 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
7523 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
7524 Mark unused parameters.
7525
7526 * progmodes/compile.el (compilation--flush-directory-cache)
7527 (compilation--flush-parse, compile-internal): Mark unused parameters.
7528 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
7529 (compilation-next-error-function): Remove unused variable `timestamp'.
7530
7531 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
7532 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
7533
7534 * progmodes/dcl-mode.el (dcl-end-of-command):
7535 Remove unused variable `start'.
7536 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
7537 (dcl-option-value-basic, dcl-option-value-offset)
7538 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
7539 Mark unused parameters.
7540 (dcl-save-local-variable): Remove unused variable `val'.
7541 (mode): Declare.
7542
7543 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
7544 Mark unused parameters.
7545 (delphi-ignore-changes): Move before first use.
7546 (delphi-charset-token-at): Remove unused variable `start'.
7547 (delphi-else-start): Remove unused variable `if-count'.
7548 (delphi-comment-block-start, delphi-comment-block-end):
7549 Remove unused variable `kind'.
7550 (delphi-indent-line): Remove unused variable `new-point'.
7551
7552 * progmodes/ebrowse.el (ebrowse-files-list)
7553 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
7554 Mark unused parameters. Don't quote `lambda'.
7555 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
7556 Don't quote `lambda'.
7557 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
7558 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
7559 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
7560 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
7561 Use `ignore-errors'.
7562 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
7563 (ebrowse-view/find-file-and-search-pattern)
7564 (ebrowse-view/find-member-declaration/definition):
7565 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
7566 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
7567 Rename parameter PREFIX-ARG to PREFIX.
7568 (ebrowse-tags-read-name): Remove unused variables `start' and
7569 `member-info'.
7570 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
7571 to `tags-file'.
7572
7573 * progmodes/etags.el (local-find-tag-hook): Declare.
7574 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
7575 Mark unused parameters.
7576
7577 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
7578 (executable-interpret): Mark unused parameter.
7579
7580 * progmodes/flymake.el (flymake-process-sentinel)
7581 (flymake-after-change-function)
7582 (flymake-create-temp-with-folder-structure)
7583 (flymake-get-include-dirs-dot): Mark unused parameters.
7584 (flymake-safe-delete-directory): Remove unused variable `err'.
7585
7586 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
7587 (speedbar-timer-fn, speedbar-line-text)
7588 (speedbar-change-expand-button-char, speedbar-delete-subblock)
7589 (speedbar-center-buffer-smartly): Declare functions.
7590 (gdb-find-watch-expression): Remove unused variable `array'.
7591 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
7592 (gdb-starting): Mark unused parameters.
7593 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
7594 (gdb-table-string): Remove unused variable `res'.
7595 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
7596 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
7597 (gdb-display-buffer): Remove unused variable `cur-size'.
7598
7599 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
7600 allow lexical-binding compilation.
7601 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
7602 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
7603 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
7604 Mark unused parameters.
7605 (gud-gdb-marker-filter): Remove unused variable `match'.
7606 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
7607 lambda expressions and funcall them, instead of using `fset'.
7608
7609 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
7610 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
7611
7612 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
7613 variable `header-beg'; use `let'.
7614
7615 * progmodes/icon.el (indent-icon-exp): Remove unused variables
7616 `restart', `last-sexp' and `at-do'.
7617
7618 * progmodes/js.el (js--debug): Mark unused parameter.
7619 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
7620 (js--splice-into-items): Remove unused variable `item'.
7621 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
7622
7623 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
7624 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
7625 (makefile-complete): Remove unused variable `try'.
7626 (makefile-fill-paragraph, makefile-match-function-end):
7627 Mark unused parameters.
7628
7629 * progmodes/octave-inf.el (inferior-octave-complete):
7630 Remove unused variable `proc'.
7631 (inferior-octave-output-digest): Mark unused parameter.
7632
7633 * progmodes/perl-mode.el (perl-calculate-indent):
7634 Remove unused variable `err'.
7635
7636 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
7637 (prolog-indent-line): Mark unused parameters.
7638 (prolog-indent-line): Remove unused variable `beg'.
7639
7640 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
7641 (reporter-dont-compact-list): Declare.
7642
7643 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
7644 Remove unused variable `char'.
7645 (sh-debug): Mark unused parameter.
7646 (sh-get-indent-info): Remove unused variable `start'.
7647 (sh-calculate-indent): Remove unused variable `var'.
7648
7649 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
7650 (simula-electric-keyword): Remove unused variable `null'.
7651 (simula-search-backward, simula-search-forward): Remove unused
7652 variables `begin' and `end'.
7653
7654 * progmodes/vera-mode.el (vera-guess-basic-syntax):
7655 Remove unused variable `pos'.
7656 (vera-electric-tab, vera-comment-uncomment-region):
7657 Mark unused parameters.
7658 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
7659
7ede3b65
CY
76602011-04-22 Chong Yidong <cyd@stupidchicken.com>
7661
7662 * emacs-lisp/package.el (package--builtins, package-alist)
7663 (package-load-descriptor, package-built-in-p, package-activate)
7664 (define-package, package-installed-p)
7665 (package-compute-transaction, package-buffer-info)
7666 (package--push): Doc fix. Distinguish more clearly between
7667 version strings and version lists.
7668
121656e9
JB
76692011-04-21 Juanma Barranquero <lekktu@gmail.com>
7670
7671 Lexical-binding cleanup.
7672
7673 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
7674 (5x5-make-mutate-best):
7675 * play/fortune.el (fortune-in-buffer):
7676 * play/gomoku.el (gomoku-init-display):
7677 * play/solitaire.el (solitaire, solitaire-do-check):
7678 * play/tetris.el (tetris-default-update-speed-function):
7679 Mark unused parameters.
7680
7681 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
7682 (bubbles--shift): Remove unused variable `char-org'.
7683 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
7684 (bubbles--show-images): Remove unused variable `char'.
7685
7686 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
7687 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
7688 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
7689 (decipher-analyze-buffer): Use ?\s.
7690 (decipher-make-checkpoint): Remove unused variable `mapping'.
7691
7692 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
7693
7694 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
7695 Remove unused variable `result'; use `let'.
7696
7697 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
7698 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
7699 (gametree-children-shown-p, gametree-compute-reduced-score):
7700 Use `ignore-errors'.
7701
7702 * play/handwrite.el (ps-lpr-switches): Declare.
7703 (handwrite): Remove unused variables `pmin' and `lastp'.
7704
7705 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
7706
7707 * play/landmark.el (landmark-init-display)
7708 (landmark-update-naught-weights): Mark unused parameters.
7709 (landmark-y): Remove unused variable `noise'. Simplify.
7710 (landmark-human-plays): Remove unused variable `score'.
7711
7712 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
7713 (mpuz-try-proposal): Remove unused variable `game'.
7714
7715 * play/zone.el (life-patterns): Declare.
7716
80f499c7
JB
77172011-04-20 Juanma Barranquero <lekktu@gmail.com>
7718
7719 * vc/vc.el (ediff-vc-internal): Declare function.
7720
024ff170
SM
77212011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7722
c0a193ea
SM
7723 * shell.el: Use lexical-binding and std completion UI.
7724 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
7725 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
7726 comint-preoutput-filter-functions rather than on
7727 comint-output-filter-functions.
7728 (shell-command-completion, shell--command-completion-data)
7729 (shell-filename-completion, shell-environment-variable-completion)
7730 (shell-c-a-p-replace-by-expanded-directory): New functions.
7731 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
7732 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
7733 (shell-dynamic-complete-environment-variable): Use them.
7734 (shell-dynamic-complete-as-environment-variable)
7735 (shell-dynamic-complete-as-command): Remove.
7736 (shell-match-partial-variable): Match past point.
7737 * comint.el: Clean up use of completion-at-point-functions.
7738 (comint-completion-at-point): New function.
7739 (comint-mode): Use it completion-at-point-functions.
7740 (comint-dynamic-complete): Make it obsolete.
7741 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
7742 (comint-c-a-p-replace-by-expanded-history): New function.
7743 (comint-dynamic-complete-functions)
7744 (comint-replace-by-expanded-history): Use it.
7745 * minibuffer.el (completion-table-with-terminator): Allow dynamic
7746 termination strings. Try harder to avoid second try-completion.
7747 (completion-in-region-mode-map): Disable bindings that don't work yet.
7748
2dbaa080
SM
7749 * comint.el: Use lexical-binding. Require CL.
7750 (comint-dynamic-complete-functions): Use comint-filename-completion.
7751 (comint-completion-addsuffix): Tweak custom type.
7752 (comint-filename-completion, comint--common-suffix)
7753 (comint--common-quoted-suffix, comint--table-subvert)
7754 (comint--complete-file-name-data): New functions.
7755 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
7756 (comint-dynamic-list-filename-completions): Use them.
7757 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 7758
2dbaa080
SM
7759 * minibuffer.el (completion-in-region-mode):
7760 Keep completion-in-region-mode--predicate global.
7761 (completion-in-region--postch):
7762 Assume completion-in-region-mode--predicate is not null.
7763
c79a6f38
SM
7764 * progmodes/flymake.el (flymake-start-syntax-check-process):
7765 Obey `dir'. Simplify.
7766
024ff170
SM
7767 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
7768 we're in VC after all.
7769
1c6c854e
CS
77702011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
7771
7772 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 7773 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
7774 (vc-version-diff): Use vc-diff-build-argument-list-internal.
7775
bed7f140
SM
77762011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7777
332e62ab
SM
7778 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
7779 add sanity check.
7780
bed7f140
SM
7781 * obsolete/erc-hecomplete.el: Make obsolete.
7782 * obsolete/: Standardize obsolescence info in the header.
7783
f195c582
GM
77842011-04-20 Glenn Morris <rgm@gnu.org>
7785
7786 * calendar/solar.el (solar-horizontal-coordinates):
7787 Use the longitude argument rather than `calendar-longitude'.
7788 (solar-date-next-longitude): Remove unused locals.
7789
cb79b8c0
VJL
77902011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7791
7792 * whitespace.el: New version 13.2.1.
7793
77942011-04-20 felix <EmacsWiki> (tiny change)
7795
d8e4b68b 7796 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
7797 switching between major modes on a file.
7798
602ea69d
SM
77992011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
7800
7801 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
7802 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
7803 multi-line comments as well.
7804
06b60517
JB
78052011-04-19 Juanma Barranquero <lekktu@gmail.com>
7806
7807 Lexical-binding cleanup.
7808
7809 * arc-mode.el (archive-mode-revert):
7810 * cmuscheme.el (scheme-interactively-start-process):
7811 * custom.el (custom-initialize-delay):
7812 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
7813 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
7814 * emacs-lock.el (emacs-lock-clear-sentinel):
7815 * ezimage.el (defezimage):
7816 * follow.el (follow-avoid-tail-recenter):
7817 * fringe.el (set-fringe-mode-1):
7818 * generic-x.el (bat-generic-mode-compile):
7819 * help-mode.el (help-info-variable, help-do-xref)
7820 (help-mode-revert-buffer):
7821 * help.el (view-emacs-todo):
7822 * iswitchb.el (iswitchb-completion-help):
7823 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
7824 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
7825 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
7826 * locate.el (locate-update):
7827 * longlines.el (longlines-encode-region)
7828 (longlines-after-change-function):
7829 * outline.el (outline-isearch-open-invisible):
7830 * ps-def.el (declare-function, charset-dimension, char-width)
7831 (encode-char):
7832 * ps-mule.el (ps-mule-plot-string):
7833 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
7834 (recentf-edit-list-select, recentf-edit-list-validate)
7835 (recentf-open-files-action):
7836 * rect.el (delete-whitespace-rectangle-line)
7837 (rectangle-number-line-callback):
7838 * register.el (window-configuration-to-register)
7839 (frame-configuration-to-register):
7840 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
7841 * select.el (xselect-convert-to-string, xselect-convert-to-length)
7842 (xselect-convert-to-targets, xselect-convert-to-delete)
7843 (xselect-convert-to-filename, xselect-convert-to-charpos)
7844 (xselect-convert-to-lineno, xselect-convert-to-colno)
7845 (xselect-convert-to-os, xselect-convert-to-host)
7846 (xselect-convert-to-user, xselect-convert-to-class)
7847 (xselect-convert-to-name, xselect-convert-to-integer)
7848 (xselect-convert-to-atom, xselect-convert-to-identity):
7849 * subr.el (declare, ignore, process-kill-without-query)
7850 (text-clone-maintain):
7851 * terminal.el (te-get-char, te-tic-sentinel):
7852 * tool-bar.el (tool-bar-make-keymap):
7853 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
7854 * type-break.el (type-break-mode, type-break-noninteractive-query):
7855 * view.el (View-back-to-mark):
7856 * wid-browse.el (widget-browse-action, widget-browse-widget)
7857 (widget-browse-widgets, widget-browse-sexp):
7858 * widget.el (define-widget-keywords):
7859 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
7860 Mark unused parameters.
7861
7862 * align.el (align-adjust-col-for-rule): Mark unused parameter.
7863 (align-areas): Remove unused variable `look'.
7864 (align-region): Remove unused variables `real-end' and `pos-list'.
7865
7866 * apropos.el (apropos-score-doc): Remove unused variable `i'.
7867
7868 * bindings.el (mode-line-modified, mode-line-remote):
7869 Mark unused parameters.
7870 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
7871
7872 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
7873 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
7874
7875 * comint.el (comint-history-isearch-pop-state)
7876 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
7877 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
7878 (comint-substitute-in-file-name): Doc fix.
7879
7880 * completion.el (cmpl-statistics-block): Mark unused parameter.
7881 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
7882 (save-completions-to-file, load-completions-from-file):
7883 Remove unused local variable `e'.
7884
7885 * composite.el (compose-chars): Remove unused variable `len'.
7886 (lgstring-insert-glyph): Remove unused variable `g'.
7887 (compose-glyph-string): Remove unused variables `ascent',
7888 `descent', `lbearing' and `rbearing'.
7889 (compose-glyph-string-relative): Remove unused variables
7890 `lbearing', `rbearing' and `wadjust'.
7891 (compose-gstring-for-graphic): Remove unused variables `header',
7892 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
7893 (compose-gstring-for-terminal): Remove unused variables `header'
7894 and `nchars'. Use `let', not `let*'.
7895
7896 * cus-edit.el (Custom-set, Custom-save, custom-reset)
7897 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
7898 (Custom-buffer-done, custom-buffer-create-internal)
7899 (custom-browse-visibility-action, custom-browse-group-tag-action)
7900 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
7901 (widget-magic-mouse-down-action, custom-toggle-parent)
7902 (custom-add-parent-links, custom-toggle-hide-variable)
7903 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
7904 (custom-toggle-hide-face, face, hook, custom-group-link-action)
7905 (custom-face-menu-create, custom-variable-menu-create, get)
7906 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
7907 (custom-reset-standard-save-and-update): Remove unused variable `value'.
7908 (customize-apropos): Remove unused variable `tests'.
7909 (custom-group-value-create): Remove unused variable `hidden-p'.
7910 (sort-fold-case): Declare.
7911
7912 * cus-theme.el (custom-reset-standard-faces-list)
7913 (custom-reset-standard-variables-list): Declare.
7914 (customize-create-theme, custom-theme-revert, custom-theme-write)
7915 (custom-theme-choose-mode, customize-themes, custom-theme-save):
7916 Mark unused parameters.
7917
7918 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
7919
7920 * delim-col.el (delimit-columns-max): Move defvar before first use.
7921
7922 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 7923 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
7924
7925 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
7926 (auto-insert): Declare.
7927 (desktop-restore-file-buffer): Rename desktop-* parameters;
7928 mark unused ones.
7929 (desktop-create-buffer): Rename desktop-* parameters and bind them.
7930 (desktop-buffer): Rename desktop-* parameters.
7931
7932 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
7933 (dframe-reposition-frame-xemacs, dframe-help-echo)
7934 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
7935 Mark unused parameters.
7936
7937 * dired-aux.el (backup-extract-version-start, overwrite-query)
7938 (overwrite-backup-query, rename-regexp-query)
7939 (rename-non-directory-query): Declare.
7940 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
7941 (dired-add-entry): Remove unused variable `orig-file-name'.
7942 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
7943 Use parameter PRESERVE-TIME instead of accessing dynamic variable
7944 `dired-copy-preserve-time' directly.
7945 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
7946 (dired-insert-subdir-newpos): Rename unused variable `pos'.
7947
7948 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
7949 (dired-virtual-revert, dired-make-relative-symlink):
7950 Mark unused parameters.
7951 (manual-program): Declare.
7952 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
7953 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
7954 wrapped in `with-no-warnings' to avoid replacing one warning by another.
7955
7956 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
7957
7958 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
7959
7960 * echistory.el (electric-history-in-progress, Helper-return-blurb):
7961 Declare.
7962
7963 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
7964
7965 * electric.el (Electric-command-loop): Rename parameter
7966 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
7967
7968 * expand.el (expand-in-literal): Remove unused variable `here'.
7969
7970 * facemenu.el (facemenu-add-new-color):
7971 Remove unused variable `docstring'.
7972
7973 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
7974 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
7975 (face-attr-construct): Mark unused parameter. Doc fix.
7976 (read-color): Remove unused variable `hex-string'.
7977
7978 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
7979 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
7980 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
7981 (display-buffer-other-frame): Remove unused variable `old-window'.
7982 (kill-buffer-hook): Declare.
7983 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
7984 Mark unused parameters.
7985 (after-find-file): Pass 1 to `auto-save-mode', not t.
7986
7987 * files-x.el (auto-insert): Declare.
7988 (modify-file-local-variable-prop-line): Remove unused variable `val'.
7989
7990 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 7991 variable `buf'. Mark unused parameter.
06b60517
JB
7992 (find-lisp-insert-directory): Mark unused parameter.
7993
7994 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
7995 (format-encode-region): Remove unused variables `cur-buf' and `result'.
7996 (format-common-tail): Remove, unused.
7997 (format-deannotate-region): Remove unused variable `loc'.
7998 (format-annotate-region): Remove unused variable `p'.
7999 (format-annotate-single-property-change): Remove unused variables
8000 `default' and `tail'.
8001
8002 * forms.el (read-file-filter): Declare.
8003 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
8004
8005 * frame.el (frame-creation-function-alist): Mark unused parameter.
8006 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
8007
8008 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
8009 Remove unused parameters.
8010 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
8011 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
8012
8013 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
8014 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
8015 (hfy-prepare-tag-map): Mark unused parameters.
8016 (htmlfontify-buffer): Use `called-interactively-p'.
8017
8018 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
8019 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
8020 (ibuffer-do-occur): Mark unused parameters.
8021 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
8022 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
8023
8024 * ibuffer.el: Don't quote `lambda'.
8025 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
8026 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
8027 Mark unused parameters.
8028
8029 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
8030 (ido-completing-read): Mark unused parameters.
8031 (ido-copy-current-word): Mark unused parameters;
8032 remove unused variable `name'.
8033 (ido-sort-merged-list): Remove unused parameter `dirs'.
8034
8035 * ielm.el (ielm-input-sender): Mark unused parameter.
8036 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
8037 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
8038 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
8039 `ielm-string' as a dynamic variable accessible from the IELM prompt.
8040 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
8041
8042 * image-dired.el (image-dired-display-thumbs): Remove unused
8043 variables `curr-file' and `count'.
8044 (image-dired-remove-tag): Remove unused variable `start'.
8045 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
8046 variable `curr-file'
8047 (image-dired-rotate-original): Remove unused variable `temp-file'.
8048 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
8049 Remove unused variable `file'.
8050 (image-dired-gallery-generate): Remove unused variable `curr'.
8051 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
8052
8053 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
8054
8055 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
8056
8057 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
8058
8059 * isearch.el (minibuffer-history-symbol): Declare.
8060 (isearch-edit-string): Remove unused variable `err'.
8061 (isearch-message-prefix, isearch-message-suffix):
8062 Mark unused parameters.
8063
8064 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
8065
8066 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
8067
8068 * makesum.el (double-column): Remove unused variable `cnt'.
8069
8070 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
8071 (ido-ignore-item-temp-list): Declare.
8072
8073 * mouse-drag.el (mouse-drag-throw): Remove unused variables
8074 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
8075 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
8076 (mouse-drag-drag): Remove unused variables `mouse-delta' and
8077 `mouse-col-delta'.
8078
8079 * mouse-sel.el (mouse-extend-internal):
8080 Remove unused variable `orig-window-frame'.
8081
8082 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
8083 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
8084 Move declarations before first use.
8085 (pcomplete-opt): Mark unused parameters; doc fix.
8086
8087 * proced.el (proced-revert): Mark unused parameter.
8088 (proced-send-signal): Remove unused variable `err'.
8089
8090 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
8091 Rename parameter PREFIX-ARG to ARG.
8092 (ps-basic-plot-string, ps-basic-plot-whitespace):
8093 Mark unused parameters.
8094
8095 * replace.el (replace-count): Define.
8096 (occur-revert-function): Mark unused parameters.
8097 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
8098 (isearch-case-fold-search, isearch-string): Declare.
8099 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
8100 bind `case-fold-search'. Remove unused variables `beg' and `end',
8101 and simplify.
8102 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
8103 COUNT and bind `replace-count'.
8104 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
8105 to COUNT.
8106
8107 * savehist.el (print-readably, print-string-length): Declare.
8108
8109 * shadowfile.el (shadow-expand-cluster-in-file-name):
8110 Remove unused variable `cluster'.
8111 (shadow-copy-file): Remove unused variable `i'.
8112 (shadow-noquery, shadow-clusters, shadow-site-cluster)
8113 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
8114 (shadow-define-literal-group, shadow-define-regexp-group)
8115 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
8116
8117 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
8118 (shell): Use `called-interactively-p'.
8119 (shell-directory-tracker): Remove unused variable `chdir-failure'.
8120
8121 * simple.el (compilation-context-lines, comint-file-name-quote-list)
8122 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
8123 (delete-backward-char): Remove unused variable `ocol'.
8124 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
8125 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
8126 (event-apply-hyper-modifier, event-apply-shift-modifier)
8127 (event-apply-control-modifier, event-apply-meta-modifier):
8128 Mark unused parameters.
8129 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
8130 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
8131
8132 * speedbar.el (speedbar-ignored-directory-expressions)
8133 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
8134 (speedbar-find-file, speedbar-dir-follow)
8135 (speedbar-directory-buttons-follow, speedbar-tag-find)
8136 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
8137 (speedbar-buffers-line-directory, speedbar-buffer-click):
8138 Mark unused parameters.
8139 (speedbar-tag-file): Remove unused variable `mode'.
8140 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
8141
8142 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
8143
8144 * talk.el (talk): Remove unused variable `display'.
8145
8146 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
8147 (tar-write-region-annotate): Mark unused parameter.
8148
8149 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
8150 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
8151 Declare them, wrapped in `with-no-warnings' to avoid replacing one
8152 warning by another.
8153
8154 * time-stamp.el (time-stamp-string-preprocess):
8155 Remove unused variable `require-padding'.
8156
8157 * tree-widget.el (widget-glyph-enable): Declare.
8158 (tree-widget-action): Mark unused parameter.
8159
8160 * w32-fns.el (x-get-selection): Mark unused parameter.
8161 (autoload-make-program, generated-autoload-file): Declare.
8162
8163 * wdired.el (wdired-revert): Mark unused parameters.
8164 (wdired-xcase-word): Remove unused variable `err'.
8165
8166 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
8167 (whitespace-help-scroll): Remove unused variable `data-help'.
8168
8169 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
8170 (widget-image-insert, widget-after-change, default)
8171 (widget-default-format-handler, widget-default-notify)
8172 (widget-default-prompt-value, widget-info-link-action)
8173 (widget-url-link-action, widget-function-link-action)
8174 (widget-variable-link-action, widget-file-link-action)
8175 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
8176 (widget-field-prompt-internal, widget-field-action, widget-field-match)
8177 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
8178 (widget-insert-button-action, widget-delete-button-action, visibility)
8179 (widget-documentation-link-action, widget-documentation-string-action)
8180 (widget-const-prompt-value, widget-regexp-match, symbol)
8181 (widget-coding-system-prompt-value)
8182 (widget-key-sequence-value-to-external, sexp)
8183 (widget-sexp-value-to-internal, character, vector, cons)
8184 (widget-choice-prompt-value, widget-boolean-prompt-value)
8185 (widget-color--choose-action): Mark unused parameters.
8186 (widget-item-match-inline, widget-choice-match-inline)
8187 (widget-checklist-match, widget-checklist-match-inline)
8188 (widget-group-match): Rename parameter VALUES to VALS.
8189 (widget-field-value-set): Remove unused variable `size'.
8190 (widget-color-action): Remove unused variables `value' and `start'.
8191
8192 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 8193 variable `dir'. Doc fix.
06b60517
JB
8194 (windmove-find-other-window): Don't pass it.
8195
8196 * window.el (count-windows): Mark unused parameter.
8197 (bw-adjust-window): Remove unused variable `err'.
8198
8199 * woman.el (woman-file-name): Remove unused variable `default'.
8200 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
8201 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
8202 (global-font-lock-mode): Declare.
8203 (woman-decode-region): Mark unused parameter.
8204 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
8205
8206 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
8207 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
8208 (x-dnd-handle-moz-url): Remove unused variable `title'.
8209 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
8210
8211 * xml.el (xml-parse-tag, xml-parse-attlist):
8212 Remove unused variable `pos'.
8213
bc4f7f3d
GM
82142011-04-19 Glenn Morris <rgm@gnu.org>
8215
8216 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
8217 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
8218 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8219 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
8220 * calendar/cal-html.el (cal-html-insert-minical):
8221 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
8222 (calendar-mark-date-pattern):
8223 Prefix "unused" locals.
8224
8225 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
8226 optional argument `style'.
8227
8228 * calendar/appt.el (appt-make-list):
8229 * calendar/cal-china.el (calendar-chinese-date-string):
8230 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
8231 (diary-hebrew-yahrzeit):
8232 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
8233 * calendar/calendar.el (calendar-generate-window):
8234 * calendar/time-date.el (time-to-days):
8235 Remove unused local variables.
8236
16a43933
CY
82372011-04-18 Chong Yidong <cyd@stupidchicken.com>
8238
8239 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
8240 glyphless-char-display table.
8241 (tabulated-list-glyphless-char-display): New var.
8242
7eed1860
SS
82432011-04-18 Sam Steingold <sds@gnu.org>
8244
8245 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
8246 to acknowledgments.
8247
4d2d1ccd
GM
82482011-04-17 Glenn Morris <rgm@gnu.org>
8249
8250 * calendar/diary-lib.el (diary-sexp-entry):
8251 * calendar/holidays.el (holiday-sexp):
8252 Set debug-on-error rather than the removed stack-trace-on-error.
8253
239da61d
GM
82542011-04-16 Glenn Morris <rgm@gnu.org>
8255
8256 * progmodes/f90.el: Use lexical-binding.
8257 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
8258
8b05752a
SM
82592011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8260
daca8ba5
SM
8261 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
8262 (mail-mode): Setup mailalias completion here instead.
8263 * mail/mailalias.el: Use lexical-binding.
8264 (pattern, mailalias-done): Declare dynamic.
8265 (mail-completion-at-point-function): New function, from mail-complete.
8266 (mail-complete): Use it.
8267 (mail-completion-expand): New function.
8268 (mail-get-names): Use it.
8269 (mail-directory, mail-directory-process, mail-directory-stream):
8270 Don't use `pattern' for lexically bound arg.
8271
6f542485
SM
8272 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
8273
037e7c3f
SM
8274 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
8275 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
8276 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
8277
8b05752a
SM
8278 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
8279 (byte-save-window-excursion, byte-temp-output-buffer-setup)
8280 (byte-interactive-p): Define them again, for use when inlining
8281 old code.
8282
49093f60
JB
82832011-04-15 Juanma Barranquero <lekktu@gmail.com>
8284
8285 * loadup.el: Use `string-to-number', not `string-to-int'.
8286
b5b8e7de
SM
82872011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8288
8289 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
8290 gud-gdb-complete-command.
8291 (gud-gdb-completions): New function, from gud-gdb-complete-command.
8292 (gud-gdb-completion-at-point): New function.
8293 (gud-gdb-completions): Remove.
8294
f42efeb5
MA
82952011-04-14 Michael Albinus <michael.albinus@gmx.de>
8296
49093f60
JB
8297 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
8298 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
8299 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
8300 whether `executable-find' is bound.
f42efeb5
MA
8301
8302 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
8303
e240cc21
SM
83042011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8305
8306 * minibuffer.el (completion-in-region-mode-predicate)
8307 (completion-in-region-mode--predicate): New vars.
8308 (completion-in-region, completion-in-region--postch)
8309 (completion-in-region-mode): Use them.
8310 (completion--capf-wrapper): Also return the hook function.
8311 (completion-at-point, completion-help-at-point):
8312 Adjust and provide a predicate.
c2bd2ab0
SM
8313
8314 Preserve arg names for advice of subr and lexical functions (bug#8457).
8315 * help-fns.el (help-function-arglist): Consolidate the subr and
8316 new-byte-code cases. Add argument `preserve-names' to extract names
8317 from the docstring when needed.
8318 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
8319 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
8320 (ad-arglist): Use help-function-arglist's new arg.
8321 (ad-definition-type): Use cond.
8322
c183f693
JB
83232011-04-13 Juanma Barranquero <lekktu@gmail.com>
8324
06641a47
JB
8325 * autorevert.el (auto-revert-handler):
8326 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
8327 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
8328 Don't quote lambda.
8329
c183f693
JB
8330 * image-mode.el (image-transform-set-scale):
8331 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
8332
1e3b6001
G
83332011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
8334
8335 * net/network-stream.el (network-stream-open-starttls): Only do
e9fce1ac 8336 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
1e3b6001
G
8337 Upgrades via gnutls-cli are too slow to be done opportunistically.
8338
2d6af8dd
JB
83392011-04-12 Juanma Barranquero <lekktu@gmail.com>
8340
8341 * dframe.el (dframe-current-frame): Remove spurious quote.
8342
c0749a51
GM
83432011-04-12 Glenn Morris <rgm@gnu.org>
8344
088d0d61
GM
8345 * calendar/cal-tex.el (cal-tex-end-document):
8346 Try to automatically use latin1 input if needed.
8347
c0749a51
GM
8348 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
8349 Don't try to cons a mark onto an empty element.
8350
5c90fde0
LL
83512011-04-11 Leo Liu <sdl.web@gmail.com>
8352
8353 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
8354 buffers.
8355 (ido-kill-buffer-at-head): Support killing virtual buffers.
8356
369e974d
CY
83572011-04-10 Chong Yidong <cyd@stupidchicken.com>
8358
8359 * minibuffer.el (completion-show-inline-help): New var.
8360 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
8361 (minibuffer-force-complete, minibuffer-complete-word):
8362 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
8363
8364 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
8365 to avoid interference from inline help (Bug#5849).
8366
37f1c930
LL
83672011-04-10 Leo Liu <sdl.web@gmail.com>
8368
099c39a4
JB
8369 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
8370 Fix typo.
37f1c930 8371
a32d4040
CY
83722011-04-09 Chong Yidong <cyd@stupidchicken.com>
8373
8374 * image-mode.el (image-toggle-display-image): Signal an error if
8375 not in Image mode.
8376 (image-transform-mode, image-transform-resize)
8377 (image-transform-set-rotation): Doc fix.
daca8ba5 8378 (image-transform-set-resize): Delete.
a32d4040
CY
8379 (image-transform-set-scale, image-transform-fit-to-height)
8380 (image-transform-fit-to-width): Handle image-toggle-display-image
8381 and image-transform-resize directly.
8382
099c39a4 83832011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
8384
8385 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
8386 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
8387 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
8388 (doc-view-mode-map): Add bindings for the new functions.
8389
099c39a4 83902011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 8391
4d61f28d 8392 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
8393 Fix typo in docstring.
8394
3726838a
EZ
83952011-04-08 Eli Zaretskii <eliz@gnu.org>
8396
04f33f1e
EZ
8397 * files.el (file-size-human-readable): Produce one digit after
8398 decimal, like "ls -lh" does.
8399
8400 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
8401 the file size representation.
8402
3726838a
EZ
8403 * simple.el (list-processes): If async subprocesses are not
8404 available, error out with a clear error message.
8405
cbb59342
CY
84062011-04-08 Chong Yidong <cyd@stupidchicken.com>
8407
8408 * help.el (help-form-show): New function, to be called from C.
8409 Put help-form output in a buffer named differently than *Help*.
8410
e3971c44
EZ
84112011-04-08 Eli Zaretskii <eliz@gnu.org>
8412
8413 * files.el (file-size-human-readable): New function.
8414
8415 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
8416 computing the representation inline. Don't require `cl'.
8417
12544bbe
GM
84182011-04-08 Glenn Morris <rgm@gnu.org>
8419
a1de6c6a
GM
8420 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
8421
3c4671f4
GM
8422 * net/browse-url.el (browse-url-firefox):
8423 Test system-type, not system-configuration.
8424
b605679c
GM
8425 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
8426 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
8427 Use log-edit-empty-buffer-p. (Bug#7598)
8428
56442f0c
GM
8429 * net/rlogin.el (rlogin-process-connection-type): Simplify.
8430 (rlogin-mode-map): Initialize in the defvar.
8431 (rlogin): Use ignore-errors.
8432
12544bbe
GM
8433 * replace.el (occur-mode-map): Some fixes for menu items.
8434
eb237b0f
AH
84352011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8436
8437 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
8438
7d668f2c
CY
84392011-04-06 Chong Yidong <cyd@stupidchicken.com>
8440
e67a13ab
CY
8441 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
8442 issuing unused warnings.
8443
8444 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
8445 macro directly.
8446
7d668f2c
CY
8447 * simple.el: Lisp reimplement of list-processes. Based on an
8448 earlier reimplementation by Leo Liu, but using tabulated-list.el.
8449 (process-menu-mode): New major mode.
8450 (list-processes--refresh, list-processes):
8451 (process-menu-visit-buffer): New functions.
8452
8453 * files.el (save-buffers-kill-emacs): Don't assume any return
8454 value of list-processes, which is undocumented anyway.
8455
a83ec3c9
CY
84562011-04-06 Chong Yidong <cyd@stupidchicken.com>
8457
8458 * emacs-lisp/tabulated-list.el: New file.
8459
e91a96fe
CY
8460 * emacs-lisp/package.el: Use Tabulated List mode.
8461 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
8462 (package-menu-mode): Derive from tabulated-list-mode. Set up the
8463 table format using Tabulated List mode variables.
8464 (package--push): New macro, replacing package-list-maybe-add.
8465 (package-menu--generate): Use package--push. Renamed from
8466 package--generate-package-list.
8467 (package-menu-refresh, list-packages): Use it.
daca8ba5 8468 (package-menu--print-info): Rename from package-print-package.
e91a96fe 8469 Return insertion data instead of inserting it directly.
099c39a4
JB
8470 (package-menu-describe-package, package-menu-execute):
8471 Use tabulated-list-get-id.
e91a96fe
CY
8472 (package-menu-mark-delete, package-menu-mark-install)
8473 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
8474 (package-menu-mark-obsolete-for-deletion):
8475 Use tabulated-list-put-tag.
e91a96fe
CY
8476 (package--list-packages, package-menu-revert)
8477 (package-menu-get-package, package-menu-get-version)
8478 (package-menu-sort-by-column): Functions deleted.
8479 (package-menu-package-list, package-menu-sort-key): Vars deleted.
8480 (package-menu--status-predicate, package-menu--version-predicate)
8481 (package-menu--name-predicate)
8482 (package-menu--description-predicate): Handle arguments in the
8483 Tabulated List format.
8484 (package-list-packages-no-fetch): Call list-packages.
8485
3e214b50
JB
84862011-04-06 Juanma Barranquero <lekktu@gmail.com>
8487
8488 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 8489 (after-find-file): Don't bind it.
3e214b50
JB
8490 (revert-buffer-in-progress-p): New variable.
8491 (revert-buffer): Bind it.
8492 Pass nil for `after-find-file-from-revert-buffer'.
8493
8494 * saveplace.el (save-place-find-file-hook): Use new variable
8495 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
8496
3f0f1700
GM
84972011-04-06 Glenn Morris <rgm@gnu.org>
8498
c0274801
GM
8499 * Makefile.in (AUTOGEN_VCS): New variable.
8500 (autoloads): Use $AUTOGEN_VCS.
8501
3f0f1700
GM
8502 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
8503 * calendar/calendar.el (calendar-mode-map):
8504 Check for toolkit scroll bars. (Bug#8305)
8505
41ea9e48
CY
85062011-04-05 Chong Yidong <cyd@stupidchicken.com>
8507
8508 * minibuffer.el (completion-in-region--postch)
8509 (completion-in-region-mode): Remove unnecessary messages.
8510
6194c800
JB
85112011-04-05 Juanma Barranquero <lekktu@gmail.com>
8512
33256f14
JB
8513 * font-lock.el (font-lock-refresh-defaults):
8514 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
8515 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
8516
6194c800
JB
8517 * info.el (Info-directory-list, Info-read-node-name-2)
8518 (Info-split-parameter-string): Doc fixes.
8519 (Info-virtual-nodes): Reflow docstring.
8520 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
8521 (Info-apropos-toc-nodes, info-finder, Info-get-token)
8522 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
8523 Fix typos in docstrings.
8524 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
8525 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
8526 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
8527 (Info-restore-desktop-buffer): Mark unused parameters.
8528 (Info-directory-find-file, Info-directory-find-node)
8529 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
8530 (Info-virtual-index-find-node, Info-apropos-find-file)
8531 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 8532 Mark unused parameters; fix typos in docstrings.
6194c800
JB
8533 (Info-virtual-index): Remove unused local variable `nodename'.
8534
b87a8200 85352011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 8536
b87a8200
DD
8537 * net/rcirc.el: Update my e-mail address.
8538 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 8539
3b2ff876
CY
85402011-04-05 Chong Yidong <cyd@stupidchicken.com>
8541
8542 * startup.el (command-line): Save the cursor's theme-face
8543 directly, instead of using face-override-spec.
8544
8545 * custom.el (load-theme): Minor optimization in assigning faces.
8546
8d17e7ca
JB
85472011-04-04 Juanma Barranquero <lekktu@gmail.com>
8548
8549 * help-fns.el (describe-variable): Complete all variables having
8550 documentation, including keywords.
8551 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
8552
2fbc1934
JB
85532011-04-04 Juanma Barranquero <lekktu@gmail.com>
8554
8555 Convert to lexical-binding.
8556
8557 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
8558 (bs--get-marked-string, bs--get-modified-string)
8559 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
8560 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
8561 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
8562
8563 * ehelp.el (electric-help-execute-extended)
8564 (electric-help-ctrl-x-prefix):
8565 * hexl.el (hexl-revert-buffer-function):
8566 * linum.el (linum-after-change, linum-after-scroll):
8567 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
8568
8569 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
8570
74f50695
DU
85712011-04-04 Daiki Ueno <ueno@unixuser.org>
8572
8573 * epa-dired.el:
8574 * epa-mail.el:
8575 * epa-hook.el:
8576 * epa-file.el:
8577 * epa.el:
8578 * epg.el: Use lexical binding.
8579
c11325f7
CY
85802011-04-03 Chong Yidong <cyd@stupidchicken.com>
8581
0d9e9a12
CY
8582 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
8583
c11325f7 8584 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
8585 dictionary case for flyspell-mark-duplications-exceptions.
8586 Use regexp matching for languages.
c11325f7
CY
8587 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
8588 default dictionary (Bug#7926).
8589
da91b5f2
CY
85902011-04-02 Chong Yidong <cyd@stupidchicken.com>
8591
099c39a4
JB
8592 * emacs-lisp/package.el (package--with-work-buffer):
8593 Recognize https URLs.
da91b5f2 8594
099c39a4
JB
8595 * net/network-stream.el: Move from gnus/proto-stream.el.
8596 Change prefix to network-stream throughout.
da91b5f2
CY
8597 (open-protocol-stream): Merge into open-network-stream, leaving
8598 open-protocol-stream as an alias. Handle nil BUFFER args.
8599
8600 * subr.el (open-network-stream): Move to net/network-stream.el.
8601
afa8e9f6
GM
86022011-04-02 Glenn Morris <rgm@gnu.org>
8603
1d2e369d
GM
8604 * find-dired.el (find-exec-terminator): New option.
8605 (find-ls-option): Test for -ls support.
8606 (find-ls-subdir-switches): Test for -b in find-ls-option.
8607 (find-dired, find-grep-dired): Doc fixes.
8608 (find-dired): Use find-exec-terminator.
8609
8abb7da8 8610 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
8611 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
8612 (find-name-arg): Remove purecopy.
8abb7da8 8613
f3ca7378
GM
8614 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
8615 (grep-compute-defaults): Check for `-exec COMMAND +' support.
8616 Set grep-find-use-xargs, grep-find-command, and grep-find-template
8617 accordingly. Don't add the null-device if not needed.
8618
afa8e9f6
GM
8619 * files.el (save-some-buffers): Doc fix.
8620
35eae264
EZ
86212011-04-02 Eli Zaretskii <eliz@gnu.org>
8622
8623 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
8624
26b51db5
JB
86252011-04-01 Juanma Barranquero <lekktu@gmail.com>
8626
8627 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
8628 Use `dolist' rather than `mapcar'.
8629
7200d79c
SM
86302011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
8631
03408648 8632 Add lexical binding.
7200d79c 8633
03408648
SM
8634 * subr.el (apply-partially): Use new closures rather than CL.
8635 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
8636 (dolist, dotimes): Use slightly different expansion for lexical code.
8637 (functionp): Move to C.
8638 (letrec): New macro.
8639 (with-wrapper-hook): Use it and apply-partially instead of CL.
8640 (eval-after-load): Preserve lexical-binding.
8641 (save-window-excursion, with-output-to-temp-buffer): Turn them
8642 into macros.
7200d79c 8643
03408648
SM
8644 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
8645
8646 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
8647 than the arglist.
8648 (help-add-fundoc-usage): Don't add `Not documented'.
8649 (help-function-arglist): Handle closures, subroutines, and new
8650 byte-code-functions.
8651 (help-make-usage): Remove leading underscores.
8652 (describe-function-1): Handle closures.
8653 (describe-variable): Use special-variable-p for completion.
8654
8655 * files.el (lexical-binding): Declare safe.
f488fb65 8656
03408648
SM
8657 * emacs-lisp/pcase.el: Don't use destructuring-bind.
8658 (pcase--memoize): Rename from pcase-memoize. Change weakness.
8659 (pcase): Add `let' pattern.
8660 Change memoization so it actually works.
8661 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
8662 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
8663 <let>: New case.
f488fb65 8664
03408648
SM
8665 * emacs-lisp/macroexp.el: Use lexical binding.
8666 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
8667 Don't convert ' to #' without checking that it's indeed quoting
8668 a lambda.
8669
8670 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 8671 Use eval-sexp-add-defvars.
03408648
SM
8672 (eval-sexp-add-defvars): New fun.
8673
8674 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
8675
8676 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
8677 Don't autoload.
8678 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
8679 than the internal `byte-compile-lambda'.
8680 (defmethod): Don't hide code under quotes.
8681 (eieio-defmethod): New `code' argument.
8682
8683 * emacs-lisp/eieio-comp.el: Remove.
8684
8685 * emacs-lisp/edebug.el (edebug-eval-defun)
8686 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
8687 (edebug-toggle): Avoid `eval'.
8688
8689 * emacs-lisp/disass.el (disassemble-internal): Handle new
8690 `closure' objects.
8691 (disassemble-1): Handle new byte codes.
8692
8693 * emacs-lisp/cl.el (pushnew): Silence warning.
8694
8695 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
8696 (cl-byte-compile-throw): Remove.
8697 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
8698
8699 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
8700 closures.
8701
8702 * emacs-lisp/cconv.el: New file.
8703
8704 * emacs-lisp/bytecomp.el: Use lexical binding instead of
8705 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
8706 (byte-compile-initial-macro-environment):
8707 Handle declare-function here.
8708 (byte-compile--lexical-environment): New var.
8709 (byte-stack-ref, byte-stack-set, byte-discardN)
8710 (byte-discardN-preserve-tos): New lap codes.
8711 (byte-interactive-p): Don't use any more.
8712 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
8713 New macros.
8714 (byte-compile-lapcode): Use them and handle new lap codes.
8715 (byte-compile-obsolete): Remove.
8716 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
8717 (byte-compile-arglist-warn): Check late def of inlinable funs.
8718 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
8719 since they should have been expanded by now.
8720 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
8721 (byte-compile-from-buffer): Remove unused second arg.
8722 (byte-compile-preprocess): New function.
8723 (byte-compile-toplevel-file-form): New function to distinguish
8724 file-form calls from outside from file-form calls from hunk-handlers.
8725 (byte-compile-file-form): Simplify.
8726 (byte-compile-file-form-defsubst): Remove.
8727 (byte-compile-file-form-defmumble): Simplify now that
8728 byte-compile-lambda always returns a byte-code-function.
8729 (byte-compile): Preprocess.
8730 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
8731 Remove, not used any more.
8732 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
8733 (byte-compile-make-args-desc): New funs.
8734 (byte-compile-lambda): Handle lexical functions. Always return
8735 a byte-code-function.
8736 (byte-compile-reserved-constants): New var, to make up room for
8737 closed-over variables.
8738 (byte-compile-constants-vector): Obey it.
8739 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
8740 (byte-compile-macroexpand-declare-function): New function.
8741 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
8742 byte-code-functions.
8743 (byte-compile-form): Check obsolescence here.
8744 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
8745 (byte-compile-variable-ref): Remove.
8746 (byte-compile-dynamic-variable-op): New fun.
8747 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
8748 (byte-compile-variable-set): New funs.
8749 (byte-compile-discard): Add 2 args.
8750 (byte-compile-stack-ref, byte-compile-stack-set)
8751 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
8752 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
8753 macroexpand-all instead.
8754 (byte-compile-quote-form): Remove.
8755 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
8756 (byte-compile-bind, byte-compile-unbind): New funs.
8757 (byte-compile-let): Handle let* and lexical binding.
8758 (byte-compile-let*): Remove.
8759 (byte-compile-catch, byte-compile-unwind-protect)
8760 (byte-compile-track-mouse, byte-compile-condition-case):
8761 Handle a new :fun-body form, used for lexical scoping.
8762 (byte-compile-save-window-excursion)
8763 (byte-compile-with-output-to-temp-buffer): Remove.
8764 (byte-compile-defun): Simplify.
8765 (byte-compile-stack-adjustment): New fun.
8766 (byte-compile-out): Use it.
8767 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
8768
8769 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
8770 handler any more.
8771
8772 * emacs-lisp/byte-opt.el: Use lexical binding.
8773 (byte-inline-lapcode): Remove (to bytecomp).
8774 (byte-compile-inline-expand): Pay attention to inlining to/from
8775 lexically bound code.
8776 (byte-compile-unfold-lambda): Don't handle byte-code-functions
8777 any more.
8778 (byte-optimize-form-code-walker): Don't handle save-window-excursion
8779 any more and don't call compiler-macros.
8780 (byte-compile-splice-in-already-compiled-code): Remove.
8781 (byte-code): Don't inline any more.
8782 (disassemble-offset): Receive `bytes' as argument rather than via
8783 dynamic scoping.
8784 (byte-compile-tag-number): Declare before first use.
8785 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
8786 `return' even if make-spliceable.
8787 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
8788 obsolete interactive-p.
8789 (byte-optimize-lapcode): Optimize new lap-codes.
8790 Don't trip up on new form of `byte-constant' lap code.
8791
8792 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
8793
8794 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
8795
8796 * custom.el (custom-initialize-default, custom-declare-variable):
8797 Use `defvar'.
8798
8799 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
8800 New variables.
8801 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
8802 (COMPILE_FIRST): Add macroexp and cconv.
8803 * makefile.w32-in: Mirror changes in Makefile.in.
8804
8805 * vc/cvs-status.el:
8806 * vc/diff-mode.el:
8807 * vc/log-edit.el:
8808 * vc/log-view.el:
8809 * vc/smerge-mode.el:
8810 * textmodes/bibtex-style.el:
8811 * textmodes/css.el:
8812 * startup.el:
8813 * uniquify.el:
da91b5f2
CY
8814 * minibuffer.el:
8815 * newcomment.el:
8816 * reveal.el:
8817 * server.el:
8818 * mpc.el:
8819 * emacs-lisp/smie.el:
8820 * doc-view.el:
8821 * dired.el:
03408648
SM
8822 * abbrev.el: Use lexical binding.
8823
0f0c1f27
EZ
88242011-04-01 Eli Zaretskii <eliz@gnu.org>
8825
8826 * info.el (info-display-manual): New function.
8827
c82b2579
SM
88282011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8829
8830 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
8831
221ddf68
TH
88322011-03-31 Tassilo Horn <tassilo@member.fsf.org>
8833
8834 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 8835 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 8836
cba6e77e
GM
88372011-03-31 Glenn Morris <rgm@gnu.org>
8838
e040639f
GM
8839 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
8840
cba6e77e
GM
8841 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
8842
6d0f1c9e
CS
88432011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
8844
8845 * progmodes/python.el (python-default-interpreter)
8846 (python-python-command-args, python-jython-command-args)
8847 (python-which-shell, python-which-args, python-which-bufname)
8848 (python-file-queue, python-comint-output-filter-function)
8849 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
8850 variables and functions.
8851
3e2d70fd
SM
88522011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
8853
8854 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
8855 (completion-in-region-mode): New minor mode.
8856 (completion-in-region): Use it.
8857 (completion-in-region--data, completion-in-region-mode-map): New vars.
8858 (completion-in-region--postch): New function.
8859 (completion--capf-misbehave-funs, completion--capf-safe-funs):
8860 New vars.
8861 (completion--capf-wrapper): New function.
8862 (completion-at-point): Use it to track well-behavedness of
8863 hook functions.
8864 (completion-help-at-point): New command.
8865
f3e4086c
JM
88662011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
8867
8868 * vc/add-log.el (add-change-log-entry): Don't use whitespace
8869 syntax class to search for whitespace on a single line
8870 (Message-ID: <4D938140.4030905@redhat.com>).
8871
eb7ffc14
LL
88722011-03-30 Leo Liu <sdl.web@gmail.com>
8873
8874 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
8875 New commands.
8876 (edit-abbrevs-map): Bind them here.
8877 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
8878
d806ab68
KM
88792011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
8880
8881 * allout.el (allout-hide-by-annotation, allout-flag-region):
8882 Reduce possibility of overlay leakage by making them volatile.
8883
8884 * allout-widgets.el (allout-widgets-tally): Define as nil so the
8885 hash is not shared between buffers. Mode initialization is
8886 responsible for giving it a useful starting value.
8887 (allout-item-span): Reduce possibility of overlay leakage by
8888 making them volatile.
8889 (allout-widgets-count-buttons-in-region): Add diagnostic function
8890 for tracking down button overlay leaks.
8891
ea622834
LL
88922011-03-29 Leo Liu <sdl.web@gmail.com>
8893
8894 * ido.el (ido-read-internal): Use the default history var
8895 minibuffer-history if no HISTORY is specified.
8896
b62f8267
G
88972011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
8898
03408648
SM
8899 * net/imap.el (imap-shell-open, imap-process-connection-type):
8900 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
8901 Kerberos, SSL, other subprocesses.
8902
947b6566
LL
89032011-03-28 Leo Liu <sdl.web@gmail.com>
8904
8905 * abbrev.el (abbrev-table-empty-p): New function.
8906 (prepare-abbrev-list-buffer): Place empty abbrev tables after
8907 nonempty ones. (Bug#5937)
8908
5ffb62aa
JD
89092011-03-27 Jan Djärv <jan.h.d@swipnet.se>
8910
8911 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
8912
7a097943
LL
89132011-03-27 Leo Liu <sdl.web@gmail.com>
8914
8915 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
8916 for foreground and background colors.
8917 (ansi-color-make-color-map): Adapt.
8918
c5b40130
LL
89192011-03-25 Leo Liu <sdl.web@gmail.com>
8920
1f48f7d2
LL
8921 * midnight.el (midnight-time-float): Remove. Note it calculates
8922 the microsecond component incorrectly and seconds-to-time does the
8923 same job.
625897ec 8924 Remove redundant (require 'timer).
1f48f7d2 8925
c5b40130
LL
8926 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
8927 (ido-completions): Remove unused arguments. (Bug#8329)
8928
d86d2721
SM
89292011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
8930
8931 * minibuffer.el (completion--flush-all-sorted-completions):
8932 Remove itself from hook.
8933 (completion-at-point): Let the functions perform the completion
8934 immediately and return nil or t.
8935 * comint.el (comint-dynamic-complete-functions): Now identical to
8936 completion-at-point-functions.
8937 (comint-dynamic-list-input-ring): Remove unused var `index'.
8938 (comint--match-partial-filename, comint--unquote&expand-filename):
8939 New funs, split from comint-match-partial-filename.
8940 (comint-dynamic-complete): Use completion-at-point.
8941 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
8942
e8974c48
DA
89432011-03-24 Drew Adams <drew.adams@oracle.com>
8944
8945 * thingatpt.el: Support `defun'.
8946
def71b5e
LL
89472011-03-23 Leo Liu <sdl.web@gmail.com>
8948
cb5af48e
LL
8949 * abbrevlist.el: Move to obsolete/abbrevlist.el.
8950
def71b5e
LL
8951 * help-mode.el (help-mode-finish): Tweak regexp.
8952
927c53e7
GM
89532011-03-23 Glenn Morris <rgm@gnu.org>
8954
18d05bed
GM
8955 * eshell/esh-opt.el (eshell-eval-using-options):
8956 Do not bind unused local variable `eshell-option-stub'.
8957
927c53e7
GM
8958 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
8959
9d0da923
JB
89602011-03-22 Juanma Barranquero <lekktu@gmail.com>
8961
8962 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
8963 keymap variable in `with-no-warnings' to avoid a warning when the
8964 keymap has been already `defconst'ed.
8965
4b978a67
LL
89662011-03-22 Leo Liu <sdl.web@gmail.com>
8967
8968 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
8969 encode all chars in abbrevs; otherwise use emacs-mule or
8970 utf-8-emacs. (Bug#8308)
8971
5fd62452
JB
89722011-03-22 Juanma Barranquero <lekktu@gmail.com>
8973
0b1596c6
JB
8974 * simple.el (backward-delete-char-untabify):
8975 Avoid warning about using `delete-backward-char'.
8976
5fd62452
JB
8977 * image.el (image-type-file-name-regexps): Make it variable.
8978 `imagemagick-register-types' modifies it, and the user may want
8979 to add new extensions for known image types.
8980 (imagemagick-register-types): Throw error if not using ImageMagick.
8981
0b4e93f1
LL
89822011-03-22 Leo Liu <sdl.web@gmail.com>
8983
8984 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
8985 located before rcirc-prompt-end-marker.
8986 (rcirc-complete): Error if point is not after rcirc prompt.
8987 Handle the case when table is nil.
9882e214 8988 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 8989
fccee4ab
CY
89902011-03-22 Chong Yidong <cyd@stupidchicken.com>
8991
8992 * custom.el (custom--inhibit-theme-enable): Make it affect only
8993 custom-theme-set-variables and custom-theme-set-faces.
8994 (provide-theme): Ignore custom--inhibit-theme-enable.
8995 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
8996 (custom-enabling-themes): Delete variable.
d86d2721
SM
8997 (enable-theme): Accept only loaded themes as arguments.
8998 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
8999 (custom-enabled-themes): Forbid themes from setting this.
9000 Eliminate use of custom-enabling-themes.
9001 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 9002
af896da6
LL
90032011-03-21 Leo Liu <sdl.web@gmail.com>
9004
9005 * ido.el (ido-read-internal): Add ido-selected to history instead
9006 of user input.
9007
78f64af0
SM
90082011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9009
9010 * subr.el (deferred-action-list, deferred-action-function):
9011 Mark obsolete.
9012
b16ac1ec
LL
90132011-03-21 Leo Liu <sdl.web@gmail.com>
9014
810f7698
LL
9015 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
9016 change on 2011-02-13 (bug#8309).
9017
b16ac1ec
LL
9018 * minibuffer.el (read-file-name-function): Change default value.
9019 (read-file-name--defaults): Rename from read-file-name-defaults.
9020 (read-file-name-default): Rename from read-file-name.
9021 (read-file-name): Call read-file-name-function.
9022
4e05e67e
GM
90232011-03-21 Glenn Morris <rgm@gnu.org>
9024
9025 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
9026 Doc fixes.
9027
4359915b
CY
90282011-03-21 Chong Yidong <cyd@stupidchicken.com>
9029
9030 * cus-theme.el: Add missing provide statement.
9031 (customize-create-theme): Extract theme value correctly.
9032 (custom-theme-visit-theme): Autoload.
9033 (customize-create-theme): Prompt before inserting default faces.
9034
1fe275ee
JB
90352011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
9036
9037 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
9038 units and musical notes.
9039
3ec03f7e
LL
90402011-03-20 Leo <sdl.web@gmail.com>
9041
9042 * ido.el (ido-read-internal): Use completing-read-default.
9043 (ido-completing-read): Fix compatibility with completing-read.
9044
7d476bde
CO
90452011-03-20 Christian Ohler <ohler@gnu.org>
9046
9047 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
9048 (ert-delete-all-tests): Use `called-interactively-p' rather than
9049 `interactive-p'.
9050 (ert--make-xrefs-region): Respect END.
9051
fe0fb33e
CY
90522011-03-19 Chong Yidong <cyd@stupidchicken.com>
9053
ff854b0b
CY
9054 * dired-aux.el (dired-create-directory): Signal an error if the
9055 directory already exists (Bug#8246).
9056
fe0fb33e
CY
9057 * facemenu.el (list-colors-display): Call list-faces-display
9058 inside with-help-window.
9059 (list-colors-print): Use display property to align the final
9060 column, instead of checking window-width.
9061
576bce32
EZ
90622011-03-19 Eli Zaretskii <eliz@gnu.org>
9063
4d61f28d 9064 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
9065 windows-nt systems.
9066 (emerge-protect-metachars): Quote correctly for ms-dos and
9067 windows-nt systems.
9068
89c41d68 90692011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
9070
9071 * info.el (info-initialize): Replace all uses of `:' with
9072 path-separator for compatibility with non-Unix systems.
9073 Cache quoting of path-separator. (Bug#8258)
9074
b14e3e21 90752011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
9076
9077 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
9078 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
9079 (mouse-avoidance-mode): Fix typos in docstrings.
9080
4525ce3e
CY
90812011-03-19 Chong Yidong <cyd@stupidchicken.com>
9082
9083 * startup.el (package-subdirectory-regexp): Move from package.el.
9084 Omit \\` and \\', and let callers add them.
9085
9086 * emacs-lisp/package.el (package-strip-version)
9087 (package-load-all-descriptors): Add \\` and \\' to
9088 package-subdirectory-regexp before using it.
9089 (package-untar-buffer): New arg DIR; ensure that file untars only
9090 into this expected directory. Remove superfluous delete-region.
9091 (package-unpack): Caller changed.
9092 (package-tar-file-info): Use package-subdirectory-regexp.
9093
a904a09a 90942011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 9095
a904a09a
SM
9096 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
9097 diff-mode-shared-map (bug#8284).
9098 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
9099
91002011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
9101
9102 * calendar/time-date.el (format-seconds): Use assoc instead of
9103 assoc-string, since assoc-string doesn't exist in XEmacs.
9104
171fc304
JB
91052011-03-17 Juanma Barranquero <lekktu@gmail.com>
9106
9107 * custom.el (custom-known-themes): Reflow docstring.
9108 (custom-theme-load-path): Fix typo in docstring.
9109 (load-theme): Fix typo in error message.
9110 (custom-available-themes, custom-variable-theme-value):
9111 Use `let', not `let*'.
9112
d71990a1
JB
91132011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
9114
9115 * calc/README: Mention inclusion of musical notes.
9116
9117 * calc/calc-units.el (calc-lu-quant): Rename from
9118 `calc-logunits-quantity'.
9119 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
9120 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
9121 (calc-db): Rename from `calc-dblevel'.
9122 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
9123 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
9124 (calc-np): Rename from `calc-nplevel'.
9125 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
9126 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
9127 (calc-lu-plus): Rename from `calc-logunits-add'.
9128 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
9129 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
9130 (calc-lu-minus): Rename from `calc-logunits-sub'.
9131 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
9132 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
9133 (calc-lu-times): Rename from `calc-logunits-mul'.
9134 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
9135 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
9136 (calc-lu-divide): Rename from `calc-logunits-div'.
9137 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
9138 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
9139
9140 * calc/calc-ext.el (calc-init-extensions): Update the names of the
9141 functions being autoloaded.
9142
9143 * calc/calc.el (calc-lu-power-reference): Rename from
9144 `calc-logunits-power-reference'.
9145 (calc-lu-field-reference): Rename from
9146 `calc-logunits-field-reference'.
9147
9148 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
9149
40c2934b
SM
91502011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
9151
9152 * minibuffer.el (completion-all-sorted-completions):
9153 Use :completion-cycle-penalty text property if present.
9154
b0911414
KM
91552011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
9156
9157 * allout.el (allout-yank-processing): Adjust for new rebulleting
9158 regime so bullet being yanked is used without prompting the user
9159 for a choice.
9160
8a05b668
JB
91612011-03-16 Juanma Barranquero <lekktu@gmail.com>
9162
9163 * startup.el (command-line): Warn the user that _emacs is deprecated.
9164
5ba5fb81
JB
91652011-03-16 Juanma Barranquero <lekktu@gmail.com>
9166
9167 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
9168 (delphi-verbose, delphi-comment-face, delphi-string-face)
9169 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
9170 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
9171 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
9172 (delphi-new-comment-line, delphi-font-lock-defaults)
9173 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
9174 Fix typos in docstrings.
9175
2dab465b
KM
91762011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
9177
5ba5fb81 9178 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
9179 Invert the roles of character and string values for INSTEAD, so a
9180 string is used for the more common case of a defaulting prompt.
9181
0adf5618
SM
91822011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9183
9184 * progmodes/ruby-mode.el (ruby-backward-sexp):
9185 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
9186 * play/gamegrid.el (gamegrid-make-face):
9187 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
9188 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
9189 * notifications.el (notifications-notify):
9190 * net/xesam.el (xesam-search-engines):
9191 * net/quickurl.el (quickurl-list-insert):
9192 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
9193
d72700e5
CY
91942011-03-15 Chong Yidong <cyd@stupidchicken.com>
9195
9196 * startup.el (command-line): Update package subdirectory regexp.
9197
49c5410a
SM
91982011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9199
c6eee9aa
SM
9200 * allout.el (allout-abbreviate-flattened-numbering)
9201 (allout-mode-deactivate-hook): Fix up obsolescence "date".
9202
49c5410a
SM
9203 * subr.el (read-char-choice): Only show the cursor after the prompt,
9204 not after the answer.
9205
047b2bb9
KR
92062011-03-15 Kevin Ryde <user42@zip.com.au>
9207
9208 * help-fns.el (variable-at-point): Skip leading quotes, if any
9209 (bug#8253).
9210
0a57d256
SM
92112011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9212
9213 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
9214 warning message.
9215
77c992bc
MA
92162011-03-14 Michael Albinus <michael.albinus@gmx.de>
9217
9218 * shell.el (shell): When called interactively, offer to change the
9219 shell file name on remote hosts.
9220
eebc475d
TZ
92212011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
9222
9223 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
9224 integration for LDAP parameters. The host, base, user or binddn,
9225 and secret tokens can be specified in a netrc file, for instance.
9226 This is optional because an `auth-source' parameter must be
9227 specified in the search attributes.
9228
9d05d1ba
JB
92292011-03-13 Juanma Barranquero <lekktu@gmail.com>
9230
9231 * help.el (describe-mode): Link to the mode's definition (bug#8185).
9232
09d9db2c
GM
92332011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9234
9235 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
9236 into declaration. Remove redundant and harmful binding.
9237
92382011-03-12 Eli Zaretskii <eliz@gnu.org>
9239
9240 * files.el (file-ownership-preserved-p): Pass `integer' as an
9241 explicit 2nd argument to `file-attributes'. If the file's owner
9242 is the Administrators group on Windows, and the current user is
9243 Administrator, consider that a match.
9244
9245 * server.el (server-ensure-safe-dir): Consider server directory
9246 safe on MS-Windows if its owner is the Administrators group while
9247 the current Emacs user is Administrator. Use `=' to compare
9248 numerical UIDs, since they could be integers or floats.
9249
219bd536
JB
92502011-03-12 Juanma Barranquero <lekktu@gmail.com>
9251
9252 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
9253
f3afd36b
MA
92542011-03-12 Michael Albinus <michael.albinus@gmx.de>
9255
9256 Sync with Tramp 2.2.1.
9257
9258 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
9259
9260 * net/trampver.el: Update release number.
9261
3aaaa6f1
SM
92622011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9263
94642599
SM
9264 * progmodes/compile.el (compilation--previous-directory): Fix up
9265 various nil/dead-marker mismatches (bug#8014).
9266 (compilation-directory-properties, compilation-error-properties):
9267 Don't call it at a position past the one we're about to change.
9268
3aaaa6f1
SM
9269 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
9270 Disable obsolescence warnings in the file that declares it.
9271
14239447
KM
92722011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
9273
099c39a4
JB
9274 * allout-widgets.el (allout-widgets-tally):
9275 Initialize allout-widgets-tally as a hash table rather than nil to
9276 prevent mode-line redisplay warnings. Also, clarify the module
9277 description and fix a comment typo.
14239447 9278
135e287c
JB
92792011-03-11 Juanma Barranquero <lekktu@gmail.com>
9280
9281 * help-fns.el (describe-variable): Don't complete keywords.
9282 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
9283
ffbf300e
CY
92842011-03-10 Chong Yidong <cyd@stupidchicken.com>
9285
ba08b241
CY
9286 * emacs-lisp/package.el (package-version-join): Impose a standard
9287 string representation for pre/alpha/beta version lists.
9288 (package-unpack-single): Standardize the directory name by passing
9289 it through package-version-join.
9290 (package-strip-rcs-id): Accept any version string that does not
9291 signal an error in version-to-list.
ffbf300e 9292
f346fd6b
MA
92932011-03-10 Michael Albinus <michael.albinus@gmx.de>
9294
9295 * simple.el (delete-trailing-whitespace): Return nil for the
9296 benefit of `write-file-functions'.
9297
ccb55d27
GM
92982011-03-10 Glenn Morris <rgm@gnu.org>
9299
5ceaac0c
GM
9300 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
9301
02da65ff
GM
9302 * vc/vc-git.el (vc-git-program): New option.
9303 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
9304 (vc-git--call): Use it.
9305
b2f603cc
GM
9306 * eshell/esh-util.el (eshell-condition-case): Doc fix.
9307
5772caab
GM
9308 * cus-edit.el (Custom-newline): If no button at point, look
9309 for a subgroup button at start-of-line. (Bug#2298)
9310
ccb55d27
GM
9311 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
9312
ec6ecaed
JD
93132011-03-10 Julien Danjou <julien@danjou.info>
9314
9315 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
9316 `cursor-type' is nil.
9317
9d5aa01d
JB
93182011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
9319
9320 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
9321
b6a5875b
KM
93222011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
9323
9324 * allout.el Summary: Change so yank of distinctive-bullet items
9325 preserves the existing header prefix, rebulleting it if necessary,
9326 rather than replacing it. This is necessary for proper operation
9327 of cooperative addons like allout-widgets.
219bd536 9328 (allout-make-topic-prefix, allout-rebullet-heading): Change
b6a5875b
KM
9329 SOLICIT arg to INSTEAD, and interpret additionally a string value
9330 as alternate bullet to be used, instead of prompting the user for
9331 a bullet character.
9332
ee545c35
MA
93332011-03-09 Michael Albinus <michael.albinus@gmx.de>
9334
d86d2721
SM
9335 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
9336 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
9337 `tramp-default-port'.
9338
c47971d7
DD
93392011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9340
9341 * net/rcirc.el (rcirc-handler-001): Remove useless
9342 with-rcirc-process-buffer.
9343 (rcirc-check-auth-status): Swap arguments to string-match.
9344
13522cb4
GM
93452011-03-09 Glenn Morris <rgm@gnu.org>
9346
0be6f4f1
GM
9347 * shell.el (shell-mode):
9348 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
9349
13522cb4
GM
9350 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
9351 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
9352
515de2e3
CY
93532011-03-08 Chong Yidong <cyd@stupidchicken.com>
9354
9355 * emacs-lisp/package.el (package-refresh-contents)
9356 (package-menu-execute): Use condition-case-no-debug.
9357
b511b994
MA
93582011-03-08 Michael Albinus <michael.albinus@gmx.de>
9359
9360 * simple.el (shell-command-to-string): Use `process-file'.
9361
9362 * emacs-lisp/package.el (package-tar-file-info): Handle also
9363 remote files.
9364
d86d2721
SM
9365 * emacs-lisp/package-x.el (package-upload-buffer-internal):
9366 Use `equal' for upload base check.
b511b994 9367
25bbfb31
AM
93682011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
9369
9370 * textmodes/texinfo.el (texinfo-environments):
9371 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
9372
be996521
GM
93732011-03-08 Glenn Morris <rgm@gnu.org>
9374
e9c8529f
GM
9375 * cus-start.el (cursor-in-non-selected-windows):
9376 Fix :set quoting oddness. (Bug#8192)
9377
be996521
GM
9378 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
9379 in some setf expressions. (Bug#2159)
9380
2bb5649e
CY
93812011-03-08 Chong Yidong <cyd@stupidchicken.com>
9382
9383 * custom.el (custom-available-themes): Return themes in
9384 alphabetical order.
9385
33383987 9386See ChangeLog.15 for earlier changes.
e3d51b27
MR
9387
9388;; Local Variables:
9389;; coding: utf-8
e3d51b27
MR
9390;; End:
9391
33383987 9392 Copyright (C) 2011 Free Software Foundation, Inc.
e3d51b27
MR
9393
9394 This file is part of GNU Emacs.
9395
9396 GNU Emacs is free software: you can redistribute it and/or modify
9397 it under the terms of the GNU General Public License as published by
9398 the Free Software Foundation, either version 3 of the License, or
9399 (at your option) any later version.
9400
9401 GNU Emacs is distributed in the hope that it will be useful,
9402 but WITHOUT ANY WARRANTY; without even the implied warranty of
9403 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9404 GNU General Public License for more details.
9405
9406 You should have received a copy of the GNU General Public License
9407 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.