Fix part 3 of bug #10183 with input-method prompt in I-search.
[bpt/emacs.git] / lisp / ChangeLog
1 2011-12-02 Eli Zaretskii <eliz@gnu.org>
2
3 * isearch.el (isearch-message-prefix): Run the input method part
4 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
5
6 2011-12-02 Juri Linkov <juri@jurta.org>
7
8 * isearch.el (isearch-occur): Use `word-search-regexp' for
9 `isearch-word'.
10 (isearch-search-and-update): Add condition for `isearch-word' and
11 call `word-search-regexp'. (Bug#10145)
12
13 2011-12-01 Glenn Morris <rgm@gnu.org>
14
15 * eshell/em-hist.el (eshell-hist-initialize):
16 Handle eshell-history-size nil and HISTSIZE set or unset.
17 (eshell-history-file-name, eshell-history-size): Fix custom type.
18
19 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
20
21 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
22
23 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
24
25 * progmodes/verilog-mode.el (verilog-pretty-expr):
26 Rework verilog-pretty-expr to handle new assignment operators in system
27 verilog, such as += *= and the like.
28 (verilog-assignment-operator-re): Regular expression to find the
29 assigment operator in a verilog assignment.
30 (verilog-assignment-operation-re): Regular expression to find an
31 assignment statement for pretty-expr.
32 (verilog-in-attribute-p): Query returns true if point is in an
33 attribute context; used to skip these for expression line up from
34 pretty-expr.
35 (verilog-in-parameter-p): Query returns true if point is in an
36 parameter definition context; used to skip these for expression
37 line up from pretty-expr.
38 (verilog-in-parenthesis-p): Query returns true if point is in a
39 parenthetical expression, specifically ( ) but not [ ] or { };
40 used by pretty-expr.
41 (verilog-just-one-space): If there is no space, don't add one.
42 (verilog-get-lineup-indent-2): Specifically skip just attribute
43 contexts for expression lineup, rather than skipping all
44 parenthetical expressions.
45 (verilog-calculate-indent): Fix comment, and fix indent.
46 (verilog-do-indent): Indent declarations in lists (suggested by
47 Joachim Lechner).
48 (verilog-mode-abbrev-table): Populate abbrev mode with the various
49 skeleton items.
50 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
51 by Alain Mellan).
52
53 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
54
55 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
56 parameters with embedded comments. Reported by Ray Stevens.
57 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
58 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
59 Reported by Tim Holt.
60 (verilog-auto): Fix AUTOing a upper module then AUTOing module
61 instantiated by upper module causing wrong expansion until AUTOed a
62 second time. Reported by K C Buckenmaier.
63 (verilog-diff-auto): Fix showing .* as a difference when
64 `verilog-auto-star-save' off. Reported by Dan Dever.
65 (verilog-auto-reset, verilog-read-always-signals)
66 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
67 temporary signals in reset list if
68 verilog-auto-reset-blocking-in-non is nil, and match assignment
69 style to each signal's assignment type, bug381.
70 Reported by Thomas Esposito.
71 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
72 (verilog-uvm-statement-re): Support UVM indentation and
73 highlighting, with old OVM keywords only.
74 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
75 Support AUTOTIEOFF creating non-wire data types. Suggested by Jonathan
76 Greenlaw.
77 (verilog-auto-insert-lisp, verilog-delete-to-paren)
78 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
79 (verilog-inject-sense, verilog-read-inst-pins)
80 (verilog-read-sub-decls, verilog-read-sub-decls-line):
81 Fix mismatching parenthesis inside commented out code when deleting
82 AUTOINST, bug383. Reported by Jonathan Greenlaw.
83 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
84 non-numeric vector width. Reported by Alex Reed.
85 (verilog-auto-ascii-enum): Add "onehot" option to work around not
86 detecting signals with parameter widths. Reported by Alex Reed.
87 (verilog-auto-delete-trailing-whitespace):
88 With `verilog-auto-delete-trailing-whitespace' remove trailing
89 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
90 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
91 Fix verilog-scan-cache corruption when running user AUTO expansion
92 hooks that call indentation routines.
93 (verilog-simplify-range-expression): Fix typo ignoring lower case
94 identifiers.
95 (verilog-delete-auto): Fix delete-autos to also remove user created
96 automatics, as long as they start with AUTO.
97 (verilog-batch-diff-auto, verilog-diff-auto)
98 (verilog-diff-function): Add `verilog-diff-auto' and bind to
99 "C-c?" to report differences in AUTO expansion, ignoring spaces.
100 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
101 (verilog-in-paren-quick, verilog-re-search-backward-quick)
102 (verilog-re-search-forward-quick, verilog-syntax-ppss):
103 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
104 is disabled and its cache will get corrupt, causing AUTOS not to
105 expand. Instead use only -quick functions.
106 (verilog-scan-region): Fix scanning over escaped quotes.
107 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
108 (verilog-re-search-backward-quick)
109 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
110 related functions now ignore strings, to fix misparsing of strings
111 with magic comments embedded in them.
112 (verilog-read-auto-template):
113 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
114 Reported by Brad Dobbie.
115 (verilog-read-auto-template):
116 Fix 'verilog-auto-inst-template-numbers' with comments.
117 Reported by Brad Dobbie.
118 (verilog-auto-inst, verilog-auto-inst-param)
119 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
120 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
121 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
122 debugging templates without merge conflicts, bug357.
123 Reported by Brad Dobbie.
124 (verilog-read-auto-template):
125 Fix verilog-auto-inst-template-numbers with multiple templates.
126 Reported by Brad Dobbie.
127 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
128 abbrevs so user won't be asked to save.
129 (verilog-read-auto-lisp-present): Fix to start at beginning of
130 buffer in case called outside of verilog-auto.
131 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
132 to "X-2". Reported by Matthew Myers.
133 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
134 all inputs from module templates. Reported by Leith Johnson.
135 (verilog-module-inside-filename-p): Fix locating programs as with
136 modules.
137 (verilog-auto-inst-port): Fix vl-width expressions when using
138 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
139 (verilog-decls-get-regs, verilog-decls-get-signals,
140 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
141 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
142 verilog-read-decls): Combine reg and wire structures into one var
143 structure to represent SystemVerilog concepts.
144 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
145 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
146 (verilog-auto-wire-type, verilog-insert-definition):
147 Add verilog-auto-wire-type and AUTOLOGIC to support using
148 SystemVerilog "logic" keyword instead of "wire"/"reg".
149 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
150 to declares outputs that also have assignments (presumably in an
151 ifdef or generate if so there's not a driver conflict).
152 Reported by Matthew Myers.
153 (verilog-auto-declare-nettype, verilog-insert-definition):
154 Add verilog-auto-declare-nettype to fix declarations using
155 `default_nettype none. Reported by Julian Gorfajn.
156 (verilog-read-always-signals-recurse, verilog-read-decls)
157 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
158 malformed end statement, bug325. Reported by Joshua Wise and
159 Andrew Drake.
160 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
161 (verilog-inst-comment-re): Fix not deleting Interfaced comment
162 when expanding .* in interfaces, bug320. Reported by Pierre-David
163 Pfister.
164 (verilog-read-module-name): Fix import statements between module
165 name and open parenthesis, bug317. Reported by Pierre-David
166 Pfister.
167 (verilog-simplify-range-expression): Fix simplification of
168 multiplications inside AUTOWIRE connections, bug303.
169 (verilog-auto-inst-port): Support parameter expansion in
170 multidimensional arrays.
171 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
172 after "assert property". Reported by Julian Gorfajn.
173 (verilog-simplify-range-expression): Fix "couldn't merge" errors
174 with multiplication, bug303.
175 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
176 Reported by Jan Frode Lonnum.
177
178 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
179
180 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
181 (hfy-shell-file-name, hfy-shell):
182 * international/fontset.el (x-decompose-font-name): Fix typos.
183
184 2011-11-29 Ken Brown <kbrown@cornell.edu>
185
186 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
187 (gdb-version): Remove defvar.
188 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
189 (gdb-gud-context-command, gdb-non-stop-handler)
190 (gdb-current-context-command, gdb-stopped): Use it.
191 (gdb-init-1): Enable pretty printing here.
192 (gdb-non-stop-handler): Don't enable pretty-printing here. Check
193 to see if the target supports non-stop mode; if not, turn off
194 non-stop mode. Use the following.
195 (gdb-check-target-async): New defun.
196 (gud-watch, gdb-stopped): Fix whitespace.
197 (gdb-get-source-file): Don't try to display the source file if
198 `gdb-main-file' is nil.
199
200 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
201
202 * align.el: Try to generate fewer markers (bug#10047).
203 (align--set-marker): New macro.
204 (align-region): Use it.
205
206 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
207
208 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
209
210 2011-11-29 Chong Yidong <cyd@gnu.org>
211
212 * indent.el (indent-for-tab-command, indent-according-to-mode):
213 Doc fix.
214 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
215
216 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
217
218 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
219 aware of remote file names. (Bug#10124)
220
221 2011-11-29 Chong Yidong <cyd@gnu.org>
222
223 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
224
225 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
226
227 * files.el (find-file): Don't use force-same-window (bug#10144).
228 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
229 use pop-to-buffer if the selected window can't be used.
230 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
231
232 2011-11-28 Eli Zaretskii <eliz@gnu.org>
233
234 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
235 special-mode-map.
236
237 2011-11-28 Chong Yidong <cyd@gnu.org>
238
239 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
240
241 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
242
243 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
244 gdb-get-source-file-list on gdb-create-source-file-list.
245
246 2011-11-26 Eli Zaretskii <eliz@gnu.org>
247
248 * whitespace.el (whitespace-newline): Use a different foreground
249 color for 16-color light-background displays.
250
251 2011-11-24 Chong Yidong <cyd@gnu.org>
252
253 * window.el (display-buffer--special-action): Doc fix.
254
255 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
256
257 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
258 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
259 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
260 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
261 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
262 (avl-tree-stack-first):
263 * emacs-lisp/cconv.el (cconv--analyse-use):
264 * net/gnutls.el (gnutls-negotiate): Fix typos.
265
266 2011-11-24 Glenn Morris <rgm@gnu.org>
267
268 * lpr.el (lpr-windows-system, lpr-lp-system):
269 * mail/binhex.el (binhex-begin-line):
270 * progmodes/grep.el (grep-history, grep-find-history):
271 * textmodes/flyspell.el:
272 * vc/pcvs-defs.el (cvs-global-menu):
273 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
274 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
275 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
276
277 * net/tls.el: Fix case of "GnuTLS".
278
279 * paths.el (rmail-file-name): Format doc-string for make-docfile.
280
281 * version.el (emacs-build-system): Give it a doc-string.
282
283 2011-11-24 Juri Linkov <juri@jurta.org>
284
285 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
286
287 2011-11-24 Glenn Morris <rgm@gnu.org>
288
289 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
290 if called on a non-mime message just toggle the headers. (Bug#8006)
291
292 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
293
294 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
295 (allout-lead-with-comment-string, allout-structure-deleted-hook)
296 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
297 (allout-rebullet-heading, allout-open-sibtopic)
298 (allout-toggle-current-subtree-encryption)
299 (allout-toggle-subtree-encryption, allout-encrypt-string)
300 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
301 (allout-distinctive-bullets-string, allout-auto-activation):
302 * window.el (window-normalize-buffer-to-display):
303 * progmodes/verilog-mode.el (verilog-batch-indent):
304 * textmodes/bibtex.el (bibtex-field-braces-opt)
305 (bibtex-field-strings-opt):
306 * vc/cvs-status.el (cvs-tree-merge):
307 Fix typos.
308
309 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
310
311 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
312 `non-essential' to t, in order to avoid remote connections.
313
314 2011-11-23 Eli Zaretskii <eliz@gnu.org>
315
316 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
317 On MS-DOS and MS-Windows, compare with loaddefs.el
318 case-insensitively.
319
320 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
321
322 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
323
324 2011-11-23 Glenn Morris <rgm@gnu.org>
325
326 * paths.el (rmail-file-name): Reformat the doc-string so that it
327 is picked up.
328
329 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
330 (rmail-auto-file): Ignore case in the "special" field names,
331 as mail-fetch-field does for all others.
332
333 * mail/rmail.el (rmail-forward):
334 * mail/rmailkwd.el (rmail-set-label):
335 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
336 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
337
338 * mail/rmail.el (rmail-current-message): Doc fix.
339
340 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
341
342 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
343
344 * server.el (server-eval-and-print): Allow C-g (bug#6585).
345
346 2011-11-22 Glenn Morris <rgm@gnu.org>
347
348 * mail/rmailmm.el (test-rmail-mime-handler)
349 (test-rmail-mime-bulk-handler)
350 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
351
352 2011-11-21 Juri Linkov <juri@jurta.org>
353
354 * calc/calc.el (calc-read-key-sequence): Let-bind `input-method-function'
355 to nil. (Bug#10018)
356
357 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
358
359 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
360 Tell the caller that the next line needs recomputation, even
361 though it doesn't start a sexp (bug#10094).
362
363 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
364
365 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
366
367 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
368
369 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
370 Use force-same-window.
371
372 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
373
374 * descr-text.el (describe-char-unicode-data):
375 * json.el (json-string-escape):
376 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
377 (Footnote-unicode, Footnote-style-p):
378 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
379
380 2011-11-20 Chong Yidong <cyd@gnu.org>
381
382 * window.el (replace-buffer-in-windows): Restore interactive spec.
383
384 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
385
386 * electric.el (electric-indent-mode): Fix last change (too optimistic).
387
388 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
389 (byte-compile-global-not-obsolete-vars): New var.
390 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
391 Use it.
392 (byte-compile-warn-obsolete): Align text with the one in *Help*.
393
394 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
395
396 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
397 * progmodes/pascal.el (electric-pascal-equal):
398 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
399 * xml.el (xml-substitute-special): Fix typos.
400
401 2011-11-20 Glenn Morris <rgm@gnu.org>
402
403 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
404 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
405 Doc fixes.
406 (rmail-decode-mime-charset): Mark as obsolete.
407
408 * mail/rmailsum.el (rmail-message-regexp-p-1):
409 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
410 Before using mime functions, check they are set. (Bug#10077)
411
412 2011-11-19 Juri Linkov <juri@jurta.org>
413
414 * info.el (Info-finder-find-node): Use `package--builtins' instead
415 of `package-alist'. Use node names formed by the pattern "Keyword "
416 and the keyword name.
417
418 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
419
420 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for
421 bash.
422
423 2011-11-19 Juri Linkov <juri@jurta.org>
424
425 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
426 that calls `revert-buffer' on all Info buffers. (Bug#9915)
427 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
428 `old-history', `old-history-forward'. Add let-binding
429 `window-selected'. Remove calls to `kill-buffer',
430 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
431 before calling `Info-find-node', so `Info-find-node-2' will reread
432 the Info file. Restore window positions only when `window-selected'
433 is non-nil.
434
435 2011-11-19 Juri Linkov <juri@jurta.org>
436
437 * isearch.el (isearch-lazy-highlight-new-loop):
438 Remove condition `(not isearch-error)'. (Bug#9918)
439
440 * misearch.el (multi-isearch-search-fun): Add condition
441 `(not bound)' to ignore lazy-highlighting search.
442 Add the search-failed message "end of multi" when the end of
443 multi-sequence is reached. Uncapitalize the search-failed
444 message "Repeat for next buffer".
445
446 * info.el (Info-search): Add the search-failed message
447 "end of the manual" when the end of the manual is reached
448 in Isearch mode.
449
450 2011-11-19 Juri Linkov <juri@jurta.org>
451
452 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
453 Use non-destructive `remove' instead of `delete' because
454 `Info-history-list' stored to `Info-isearch-initial-history-list' in
455 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
456
457 2011-11-19 Juri Linkov <juri@jurta.org>
458
459 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
460 to nil instead of binding `search-ring' and `regexp-search-ring'.
461 (Bug#9185)
462
463 2011-11-19 Eli Zaretskii <eliz@gnu.org>
464
465 * simple.el (line-move): Force movement by logical lines for any
466 hscrolled window, not only when auto-hscroll-mode is on.
467 (line-move-visual): Update doc string to that effect. (Bug#10076)
468
469 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
470
471 * language/european.el (macintosh): Define as alias for mac-roman.
472
473 2011-11-19 Eli Zaretskii <eliz@gnu.org>
474
475 * mail/rmailmm.el (rmail-mime-display-header)
476 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
477 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
478 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
479 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
480 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
481 of a raw aref.
482 (rmail-mime-entity-segment): To get past the tagline, move forward
483 2 more lines, to account for the 2 empty lines that precede and
484 follow the line with the buttons.
485 (rmail-mime-update-tagline): Move one more line, to get past the
486 empty line that follows the buttons in the tagline. (Bug#9520)
487
488 2011-11-19 Martin Rudalics <rudalics@gmx.at>
489
490 * window.el (window-max-delta-1, window-min-delta-1)
491 (window-min-size-1, window-state-get-1, window-state-put-1)
492 (window-state-put-2): Use "window--" prefix.
493
494 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
495
496 * emacs-lisp/smie.el: Improve warnings and conflict detection.
497 (smie-warning-count): New var.
498 (smie-set-prec2tab): Use it.
499 (smie-bnf->prec2): Improve warnings. Add docstring.
500 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
501 (smie-bnf--set-class): New function.
502 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
503 corner case.
504
505 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
506 (compilation-error-properties, compilation-move-to-column):
507 Handle compilation-first-column while in the target buffer.
508
509 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
510 Don't hardcode point-min==1.
511
512 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
513 (eshell-rewrite-for-command): Remove workaround.
514 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
515 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
516 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
517
518 * files-x.el (modify-file-local-variable): Obey commenting conventions.
519
520 2011-11-17 Glenn Morris <rgm@gnu.org>
521
522 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
523 Ignore buffer-local generated-autoload-file if it is the same
524 as the global value. (Bug#10049)
525
526 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
527
528 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
529 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
530 (reftex-toc-previous-heading, reftex-toc-max-level)
531 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
532 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
533 (reftex-toc-do-promote, reftex-toc-promote-prepare)
534 (reftex-toc-promote-action, reftex-toc-extract-section-number)
535 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
536 (reftex-toc-rename-label, reftex-toc-visit-location)
537 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
538 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
539 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
540 leaving "*toc*" only for references to the buffer.
541
542 2011-11-17 Martin Rudalics <rudalics@gmx.at>
543
544 * window.el (window-resize, delete-window, split-window):
545 Replace window-splits by window-combination-resize.
546 * cus-start.el (window-splits): Replace by
547 window-combination-resize.
548
549 2011-11-17 Glenn Morris <rgm@gnu.org>
550
551 * progmodes/sh-script.el (sh-font-lock-keywords-var):
552 Make bash entry derive from sh entry, not shell entry.
553
554 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
555
556 * net/tramp-cache.el (tramp-flush-file-property): Flush also
557 properties of linked files. (Bug#9879)
558
559 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
560 local file name.
561
562 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
563
564 * menu-bar.el (menu-bar-file-menu):
565 * printing.el (pr-ps-utility):
566 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
567 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
568 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
569 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
570 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
571 (icalendar--convert-cyclic-to-ical)
572 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
573 (icalendar--convert-ical-to-diary)
574 (icalendar--convert-recurring-to-diary)
575 (icalendar--convert-non-recurring-all-day-to-diary)
576 (icalendar-import-format-sample):
577 * progmodes/idlw-shell.el (idlwave-shell-mode):
578 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
579 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
580 (vhdl-ps-print-init): Fix typos.
581
582 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
583
584 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
585 FSF and collapse date sequence, obscure author/maintainer email address
586 better, remove extra version line, track relocation of author's webpage.
587
588 * progmodes/python.el (python-pdbtrack-input-prompt)
589 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
590 regular python pdb prompts. Adjustments shamelessly taken exactly as
591 suggested in EmacsWiki page (tiny change):
592 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
593
594 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
595
596 * expand.el (expand-pos, expand-index, expand-point):
597 Remove redundant info from docstring.
598 (expand-add-abbrevs): Doc fix.
599 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
600 (expand-sample-perl-mode-expand-list): Fix typos.
601
602 * net/dbus.el (dbus-event-member-name):
603 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
604 * term/pc-win.el (msdos-create-frame-with-faces):
605 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
606
607 2011-11-16 Martin Rudalics <rudalics@gmx.at>
608
609 * window.el (split-window, window-state-get-1)
610 (window-state-put-1, window-state-put-2): Rename occurrences of
611 window-nest to window-combination-limit.
612 * cus-start.el (window-nest): Rename to
613 window-combination-limit.
614
615 2011-11-16 Chong Yidong <cyd@gnu.org>
616
617 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
618 regexp (Bug#10033).
619
620 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
621
622 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
623 `completing-read' will remove *Completions* and will preserve
624 current-buffer for us.
625 (tmm-add-prompt): Users of *Completions* will always (re)set its
626 major mode.
627 (tmm-old-comp-map): Remove.
628
629 2011-11-16 Glenn Morris <rgm@gnu.org>
630
631 * mail/rmailedit.el: Require rmailmm when compiling.
632 (rmail-old-mime-state): New declaration.
633 (rmail-edit-current-message): If editing a mime message,
634 edit the "raw" message from the mbox buffer.
635 (rmail-cease-edit): Handle mime messages. (Bug#9840)
636
637 2011-11-15 Glenn Morris <rgm@gnu.org>
638
639 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
640 which wasn't being used. Add optional arg to force given state.
641 (rmail-mime): Add optional arg to force given state.
642
643 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
644
645 * allout.el (allout-encryption-plaintext-sanitization-regexps):
646 * frame.el (display-mm-dimensions-alist):
647 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
648 (outline-move-subtree-down):
649 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
650 (newsticker--treeview-do-get-node):
651 * net/quickurl.el (quickurl-list-buffer-name):
652 * progmodes/dcl-mode.el (dcl-mode):
653 * progmodes/gdb-mi.el (gdb-mapcar*):
654 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
655
656 2011-11-15 Glenn Morris <rgm@gnu.org>
657
658 * mail/rmail.el (rmail-file-coding-system): It's only ever used
659 in a boolean sense, so just make it a boolean, and fix the doc.
660 (rmail-show-mime-function, rmail-mime-feature)
661 (rmail-require-mime-maybe): Doc fixes.
662 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
663
664 * mail/rmailmm.el (rmail-show-mime): Doc fix.
665
666 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
667
668 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
669 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
670 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
671 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
672
673 2011-11-15 Glenn Morris <rgm@gnu.org>
674
675 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
676 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
677 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
678 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
679 (rmail-mime, rmail-show-mime): Doc fixes.
680
681 * term/ns-win.el (mode-line-frame-identification):
682 Leave it alone. (Bug#10051)
683
684 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
685
686 * mail/rmailout.el (rmail-output-to-rmail-buffer):
687 Handle empty buffers. (Bug#9978)
688
689 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
690
691 * international/mule.el (define-charset):
692 * mail/rmailmm.el (rmail-mime-find-header-encoding):
693 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
694 * progmodes/verilog-mode.el (verilog-backward-token):
695 * textmodes/ispell.el (lookup-words):
696 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
697
698 2011-11-14 Glenn Morris <rgm@gnu.org>
699
700 * progmodes/executable.el
701 (executable-make-buffer-file-executable-if-script-p):
702 Handle file-modes returning nil.
703
704 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
705 message - not necessary, and causes problems. (Bug#9831)
706
707 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
708
709 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
710
711 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
712 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
713 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
714
715 2011-11-12 Martin Rudalics <rudalics@gmx.at>
716
717 * window.el (window-resize, delete-window): Use window-splits
718 variable instead of function.
719 (window-state-get-1, window-state-put-2, window-state-put):
720 Don't deal with windows' splits status.
721
722 2011-11-12 Glenn Morris <rgm@gnu.org>
723
724 * apropos.el (apropos-do-all, apropos-library, apropos-value)
725 (apropos-documentation): Doc fixes.
726
727 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
728
729 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
730 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
731
732 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
733
734 * electric.el (electric-indent-post-self-insert-function): Make it
735 possible for a char to only indent in some circumstances.
736 (electric-indent-mode): Simplify.
737
738 2011-11-11 Martin Rudalics <rudalics@gmx.at>
739
740 * window.el (windows-with-parameter): Remove unused function.
741 (windows-at-side): Rename to window-at-side-list.
742 (window-check, window-atom-check, window-atom-check-1)
743 (window-side-check, window-size-ignore, window-size-fixed-1)
744 (window-in-direction-2): Prefix with "window--".
745 (window-tree-1): Rename to window--subtree, fix doc-string.
746
747 2011-11-11 Glenn Morris <rgm@gnu.org>
748
749 * subr.el (eval-after-load): If FILE is already loaded,
750 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
751
752 2011-11-10 Glenn Morris <rgm@gnu.org>
753
754 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
755 Call svn via vc-svn-command rather than vc-do-command.
756 (vc-svn-command): Add --non-interactive. (Bug#9993)
757 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
758
759 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
760 Add toggle-read-only. (Bug#7292)
761 * files.el (toggle-read-only): Mention that it should only
762 be used interactively. (Bug#10006)
763
764 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
765
766 * progmodes/compile.el (compilation-error-regexp-alist-alist):
767 Adjust regexp for OCaml warnings.
768
769 * electric.el (electric-pair-post-self-insert-function): Let user
770 turn it off buffer-locally (bug#9932).
771
772 * progmodes/python.el (python-beginning-of-statement):
773 Rewrite (bug#2703).
774
775 * progmodes/compile.el: Better handle TABs (bug#9749).
776 (compilation-internal-error-properties)
777 (compilation-next-error-function): Obey the target buffer's
778 compilation-error-screen-columns.
779
780 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
781
782 * progmodes/meta-mode.el: Remove obsolete comments.
783 (meta-right-comment-regexp, meta-ignore-comment-regexp):
784 Fix typos in docstrings.
785
786 2011-11-09 Martin Rudalics <rudalics@gmx.at>
787
788 * window.el (window-size-fixed-p): Rewrite doc-string.
789 (window-resizable-p): Rename to window--resizable-p. Update callers.
790 (window--resizable): New function. Make all callers of
791 window-resizable call window--resizable instead.
792 (window-resizable): Rewrite in terms of window--resizable.
793
794 2011-11-08 Glenn Morris <rgm@gnu.org>
795
796 * progmodes/delphi.el (delphi-mode-syntax-table):
797 Let define-derived-mode define a proper syntax table. (Bug#9994)
798
799 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
800
801 * window.el: Stay away from defsubst.
802 (window-list-no-nils): Remove.
803 (window-state-get-1, window-state-get): Use backquote instead.
804
805 2011-11-08 thierry <thierry.volpiatto@gmail.com>
806
807 * emacs-lisp/find-func.el (find-function-read):
808 Fix incorrect use of default argument in `completing-read'.
809
810 2011-11-08 Martin Rudalics <rudalics@gmx.at>
811
812 * window.el (display-buffer-function, special-display-function):
813 Mention display-buffer-record-window but do not mention
814 help-setup parameter in doc-strings.
815 (window-min-delta): Fix doc-string typo.
816
817 2011-11-08 Chong Yidong <cyd@gnu.org>
818
819 * window.el (window-total-height, window-total-width): Doc fix.
820 (window-body-size): Move from C.
821 (window-body-height, window-body-width): Move to C.
822
823 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
824
825 * window.el: Make special-display like display-buffer-alist (bug#9532).
826 (display-buffer--special-action): New function, morphed
827 from display-buffer--special.
828 (display-buffer): Use it to handle special-display-buffers at higher
829 priority (just after display-buffer-alist).
830 (display-buffer-fallback-action, display-buffer--other-frame-action)
831 (pop-to-buffer-same-window): Remove display-buffer--special.
832
833 2011-11-07 Glenn Morris <rgm@gnu.org>
834
835 * calendar/cal-menu.el (cal-menu-set-date-title):
836 Do nothing if not in a calendar. (Bug#9976)
837
838 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
839
840 * files.el (find-file): Always use selected-window.
841
842 2011-11-07 Martin Rudalics <rudalics@gmx.at>
843
844 * window.el (window-combinations): Make WINDOW argument
845 mandatory. Rewrite doc-string.
846 (walk-window-subtree, window-atom-check, window-min-delta)
847 (window-max-delta, window--resize-this-window)
848 (window--resize-root-window-vertically, window-tree)
849 (balance-windows, window-state-put): Rewrite doc-strings as to
850 not mention the term "subwindow".
851 (window--resize-subwindows-skip-p): Rename to
852 window--resize-child-windows-skip-p.
853 (window--resize-subwindows-normal): Rename to
854 window--resize-child-windows-normal.
855 (window--resize-subwindows): Rename to
856 window--resize-child-windows.
857 (window-or-subwindow-p): Rename to window--in-subtree-p.
858
859 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
860
861 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
862 Ensure that mbox format messages end in two newlines (Bug#9974).
863
864 2011-11-06 Chong Yidong <cyd@gnu.org>
865
866 * window.el (window-combination-p): Function deleted; its
867 side-effect is not used in any existing code.
868 (window-combinations, window-combined-p): Call window-*-child
869 directly.
870
871 2011-11-05 Chong Yidong <cyd@gnu.org>
872
873 * window.el (window-valid-p): Rename from window-any-p.
874 (window-size-ignore, window-state-get): Callers changed.
875 (window-normalize-window): Rename from window-normalize-any-window.
876 New arg LIVE-ONLY, replacing window-normalize-live-window.
877 (window-normalize-live-window): Delete.
878 (window-combination-p, window-combined-p, window-combinations)
879 (walk-window-subtree, window-atom-root, window-min-size)
880 (window-sizable, window-sizable-p, window-size-fixed-p)
881 (window-min-delta, window-max-delta, window-resizable)
882 (window-resizable-p, window-full-height-p, window-full-width-p)
883 (window-current-scroll-bars, window-point-1, set-window-point-1)
884 (window-at-side-p, window-in-direction, window-resize)
885 (adjust-window-trailing-edge, maximize-window, minimize-window)
886 (window-deletable-p, delete-window, delete-other-windows)
887 (record-window-buffer, unrecord-window-buffer)
888 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
889 (quit-window, split-window, window-state-put)
890 (set-window-text-height, fit-window-to-buffer)
891 (shrink-window-if-larger-than-buffer): Callers changed.
892
893 2011-11-04 Eli Zaretskii <eliz@gnu.org>
894
895 * mail/rmail.el (rmail-simplified-subject): Decode subject with
896 rfc2047-decode-string.
897 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
898 warnings.
899
900 * window.el (window-body-height, window-body-width): Mention in
901 the doc string that the return values are in frame's canonical
902 units. (Bug#9949)
903
904 2011-11-03 Alan Mackenzie <acm@muc.de>
905
906 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
907 change in cc-engine.el.
908
909 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
910
911 * window.el (switch-to-buffer): Use `force-same-window' interactively.
912
913 2011-11-02 Martin Rudalics <rudalics@gmx.at>
914
915 * window.el (quit-window): Call unrecord-window-buffer after
916 showing another buffer in the window. (Bug#9937)
917 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
918
919 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
920
921 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
922 Accept status with more than 9 shelves. (Bug#9935)
923 Reported by Colin D Bennett <colin@gibibit.com>.
924
925 2011-11-01 Martin Rudalics <rudalics@gmx.at>
926
927 * help.el (with-help-window): Don't reference
928 temp-buffer-show-specifiers in doc-string.
929
930 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
931
932 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
933 menu-item.
934
935 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
936
937 * whitespace.el: New version 13.2.2.
938 (whitespace-newline-mode): Disable properly. Reported by Sarah
939 <EmacsWiki>.
940
941 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
942
943 * net/newst-treeview.el: Remove "Time-stamp".
944 (newsticker--group-manage-orphan-feeds): Do not call
945 newsticker--treeview-tree-update.
946 (newsticker-treeview-update, newsticker-treeview):
947 Call newsticker--treeview-tree-update if necessary.
948
949 2011-10-30 Martin Rudalics <rudalics@gmx.at>
950
951 * window.el (window-iso-combination-p, window-iso-combined-p)
952 (window-iso-combinations): Remove "iso-" infix.
953 Suggested by Chong Yidong.
954 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
955 (window-max-delta-1, window-resize, window--resize-siblings)
956 (window--resize-this-window, adjust-window-trailing-edge)
957 (split-window, balance-windows-1)
958 (shrink-window-if-larger-than-buffer):
959 * calendar/calendar.el (calendar-generate-window):
960 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
961
962 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
963
964 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
965 in place (bug#9907).
966 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
967 (eshell-rewrite-if-command, eshell-rewrite-for-command)
968 (eshell-structure-basic-command, eshell-rewrite-while-command)
969 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
970 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
971 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
972 (eshell-do-pipelines-synchronously, eshell-eval-command):
973 Use backquotes and prefer setq to set.
974 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
975 (eshell-macrop): Use functionp.
976 (eshell-do-eval): Handle multiple expressions in `while' body.
977
978 2011-10-30 Chong Yidong <cyd@gnu.org>
979
980 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
981 instead of set-mark (Bug#9810).
982
983 2011-10-30 Chong Yidong <cyd@gnu.org>
984
985 * window.el (split-window-below, split-window-right): Rename from
986 split-window-above-each-other and split-window-side-by-side
987 respectively. All callers changed.
988 (split-window-sensibly, split-window-sensibly): Use them.
989 (split-window-keep-point): Doc fix.
990
991 * isearch.el: Add isearch-scroll property to split-window-below
992 and split-window-right.
993
994 * follow.el (follow-mode):
995 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
996 * progmodes/ada-xref.el (ada-gdb-application):
997 * emulation/vip.el (vip-buffer-in-two-windows):
998 * image-dired.el (image-dired-dired-with-window-configuration):
999 * dired-x.el (dired-do-find-marked-files):
1000 * dired.el (dired-pop-to-buffer):
1001 * bs.el (bs--show-with-configuration):
1002 * vc/emerge.el (emerge-setup-windows):
1003 * textmodes/two-column.el (2C-two-columns):
1004 * textmodes/reftex-toc.el (reftex-toc):
1005 * progmodes/gdb-mi.el (gdb-setup-windows):
1006 * progmodes/fortran.el (fortran-window-create):
1007 * net/newst-treeview.el (newsticker--treeview-window-init):
1008 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
1009 * emulation/tpu-edt.el (tpu-gold-map):
1010 * emulation/crisp.el (crisp-mode-map):
1011 * calendar/calendar.el (calendar-basic-setup): Callers changed.
1012
1013 2011-10-29 Chong Yidong <cyd@gnu.org>
1014
1015 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
1016
1017 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
1018
1019 * textmodes/flyspell.el (flyspell-word): Fix char offset for
1020 forged Ispell output (Bug#7904).
1021
1022 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
1023
1024 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1025
1026 * doc-view.el: Avoid ugly errors about not finding nil.
1027 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
1028 (doc-view-dvipdf-program, doc-view-unoconv-program)
1029 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
1030 Avoid nil or absolute file name as default value.
1031 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
1032
1033 2011-10-28 Alan Mackenzie <acm@muc.de>
1034
1035 * progmodes/cc-defs.el (c-version): -> 5.32.2.
1036
1037 2011-10-28 Alan Mackenzie <acm@muc.de>
1038
1039 Amend the handling of c-beginning/end-of-defun in nested declaration
1040 scopes.
1041
1042 * progmodes/cc-vars.el (c-defun-tactic): Move here from
1043 cc-langs.el. Change it to a defcustom.
1044
1045 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
1046 cc-vars.el.
1047
1048 * progmodes/cc-engine.el (c-beginning-of-statement-1):
1049 Prevent "class foo : bar" being spuriously recognized as a label.
1050
1051 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
1052 Add parameter `inclusive' (to include enclosing braces in the region).
1053 (c-widen-to-enclosing-decl-scope): New function.
1054 (c-while-widening-to-decl-block): New macro.
1055 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
1056 outward for defun boundaries, and correspondingly change symbol
1057 `respect-enclosure' to `go-outward'.
1058 (c-declaration-limits): Change algorithm to report only the "innermost"
1059 defun's boundaries.
1060
1061 2011-10-28 Deniz Dogan <deniz@dogan.se>
1062
1063 * net/rcirc.el (rcirc-mode): Use hard newlines.
1064
1065 2011-10-28 Alan Mackenzie <acm@muc.de>
1066
1067 Amend to indent and fontify macros "which include their own semicolon"
1068 correctly, using the "virtual semicolon" mechanism.
1069
1070 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
1071
1072 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
1073 Recode to scan one line at a time rather than having \n and \r
1074 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
1075 (c-forward-label): Amend for virtual semicolons.
1076 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
1077
1078 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
1079 of the new C macros.
1080
1081 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
1082 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
1083 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
1084 (c-opt-cpp-macro-define): Make into a full language variable.
1085 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
1086 AWK Mode (including \n, \r) removed, no longer needed.
1087
1088 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
1089 Invoke c-make-macro-with-semi-re.
1090
1091 * progmodes/cc-vars.el (c-macro-with-semi-re):
1092 (c-macro-names-with-semicolon): New variables.
1093 (c-make-macro-with-semi-re): New function.
1094
1095 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1096
1097 * vc/log-edit.el: Fill empty field rather than adding new one.
1098 (log-edit-add-field): New function.
1099 (log-edit-insert-changelog): Use it.
1100
1101 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
1102
1103 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
1104
1105 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1106
1107 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
1108 (gdb--check-interpreter): New function.
1109 (gdb): Use it.
1110
1111 2011-10-27 Glenn Morris <rgm@gnu.org>
1112
1113 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
1114 (least-positive-float, least-negative-float)
1115 (least-positive-normalized-float, least-negative-normalized-float)
1116 (float-epsilon, float-negative-epsilon):
1117 Remove unnecessary declarations.
1118
1119 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
1120 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
1121 (least-positive-float, least-negative-float)
1122 (least-positive-normalized-float, least-negative-normalized-float)
1123 (float-epsilon, float-negative-epsilon): Add doc-strings,
1124 based on those in cl.texi.
1125
1126 * files.el (set-visited-file-name): If the major-mode changed,
1127 reload the local variables. (Bug#9796)
1128
1129 2011-10-27 Chong Yidong <cyd@gnu.org>
1130
1131 * subr.el (change-major-mode-after-body-hook): New hook.
1132 (run-mode-hooks): Run it.
1133
1134 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1135 Use change-major-mode-before-body-hook.
1136
1137 * simple.el (fundamental-mode):
1138 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
1139 change introducing fundamental-mode-hook.
1140
1141 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
1142
1143 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
1144
1145 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
1146
1147 * ido.el (ido-file-name-all-completions-1): Do not require
1148 tramp.el explicitly. (Bug#7583)
1149
1150 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1151
1152 * progmodes/octave-mod.el:
1153 * progmodes/octave-inf.el: Update maintainer.
1154
1155 2011-10-26 Chong Yidong <cyd@gnu.org>
1156
1157 * subr.el (with-wrapper-hook): Rewrite doc.
1158
1159 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
1160
1161 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
1162 filenames "/method:foo:". (Bug#9793)
1163
1164 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1165
1166 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
1167 (bug#9865).
1168
1169 2011-10-24 Glenn Morris <rgm@gnu.org>
1170
1171 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
1172
1173 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
1174
1175 * notifications.el: Add the requirement of a running D-Bus session
1176 bus to the Commentary.
1177
1178 2011-10-24 Juri Linkov <juri@jurta.org>
1179
1180 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
1181 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
1182 (Bug#9364)
1183
1184 2011-10-24 Juri Linkov <juri@jurta.org>
1185
1186 * info.el (Info-following-node-name-re): Add newline to the list
1187 of allowed characters for leading space. (Bug#9824)
1188
1189 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1190
1191 * progmodes/octave-inf.el (inferior-octave-mode-map):
1192 Fix C-c C-h binding.
1193 * progmodes/octave-mod.el (octave-help): Remove.
1194
1195 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
1196
1197 Sync with Tramp 2.2.3.
1198
1199 * net/tramp-cache.el (top): Pacify byte-compiler using
1200 `init-file-user' and `site-run-file'.
1201
1202 * net/trampver.el: Update release number.
1203
1204 2011-10-23 Chong Yidong <cyd@gnu.org>
1205
1206 * files.el (toggle-read-only): Remove obsolete comment about
1207 version control.
1208
1209 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
1210 for toggle-read-only. Note that this hasn't called vc-next-action
1211 since 2008-05-02, though it wasn't documented at the time.
1212
1213 * vc/ediff-init.el (ediff-toggle-read-only-function):
1214 Use toggle-read-only.
1215
1216 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
1217
1218 Fix bug #9560, sporadic wrong indentation; improve instrumentation
1219 of c-parse-state.
1220
1221 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
1222 correct faulty logical expression.
1223 (c-parse-state-state, c-record-parse-state-state):
1224 (c-replay-parse-state-state): New defvar/defuns.
1225 (c-debug-parse-state): Use new functions.
1226
1227 2011-10-22 Martin Rudalics <rudalics@gmx.at>
1228
1229 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
1230 last fix. Use window-in-direction correctly.
1231
1232 2011-10-21 Chong Yidong <cyd@gnu.org>
1233
1234 * progmodes/idlwave.el (idlwave-mode):
1235 * progmodes/vera-mode.el (vera-mode): No need to set
1236 require-final-newline; that's done in prog-mode.
1237 Suggested by Stefan Monnier.
1238
1239 2011-10-21 Martin Rudalics <rudalics@gmx.at>
1240
1241 * mouse.el (mouse-drag-window-above)
1242 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
1243 (mouse-drag-mode-line-1, mouse-drag-header-line)
1244 (mouse-drag-vertical-line-rightward-window): Remove.
1245 (mouse-drag-line): New function.
1246 (mouse-drag-mode-line, mouse-drag-header-line)
1247 (mouse-drag-vertical-line): Call mouse-drag-line.
1248 * window.el (window-at-side-p, windows-at-side): New functions.
1249
1250 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
1251
1252 * tar-mode.el (tar-grind-file-mode):
1253 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
1254
1255 2011-10-21 Chong Yidong <cyd@gnu.org>
1256
1257 * progmodes/idlwave.el (idlwave-mode):
1258 * progmodes/vera-mode.el (vera-mode):
1259 Use mode-require-final-newline.
1260
1261 2011-10-20 Glenn Morris <rgm@gnu.org>
1262
1263 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
1264
1265 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
1266
1267 * emulation/cua-base.el (cua-set-mark): Fix case of string.
1268
1269 2011-10-20 Chong Yidong <cyd@gnu.org>
1270
1271 * emulation/cua-base.el (cua-mode):
1272 * mail/footnote.el (footnote-mode):
1273 * mail/mailabbrev.el (mail-abbrevs-mode):
1274 * net/xesam.el (xesam-minor-mode):
1275 * progmodes/bug-reference.el (bug-reference-mode):
1276 * progmodes/cap-words.el (capitalized-words-mode):
1277 * progmodes/compile.el (compilation-minor-mode)
1278 (compilation-shell-minor-mode):
1279 * progmodes/gud.el (gud-tooltip-mode):
1280 * progmodes/hideif.el (hide-ifdef-mode):
1281 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
1282 * progmodes/subword.el (subword-mode):
1283 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
1284 * progmodes/which-func.el (which-function-mode):
1285 * term/tvi970.el (tvi970-set-keypad-mode):
1286 * term/vt100.el (vt100-wide-mode):
1287 * textmodes/flyspell.el (flyspell-mode):
1288 * textmodes/ispell.el (ispell-minor-mode):
1289 * textmodes/nroff-mode.el (nroff-electric-mode):
1290 * textmodes/paragraphs.el (use-hard-newlines):
1291 * textmodes/refill.el (refill-mode):
1292 * textmodes/reftex.el (reftex-mode):
1293 * textmodes/rst.el (rst-minor-mode):
1294 * textmodes/sgml-mode.el (html-autoview-mode)
1295 (sgml-electric-tag-pair-mode):
1296 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
1297 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
1298 * emulation/crisp.el (crisp-mode):
1299 * emacs-lisp/eldoc.el (eldoc-mode):
1300 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
1301 minor mode behavior.
1302
1303 2011-10-19 Juri Linkov <juri@jurta.org>
1304
1305 * descr-text.el (describe-char): Add #x2010 and #x2011 to
1306 the list of hard-coded chars with escape-glyph face.
1307
1308 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1309
1310 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
1311
1312 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
1313
1314 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
1315 running process.
1316
1317 2011-10-19 Glenn Morris <rgm@gnu.org>
1318
1319 * vc/vc-bzr.el (vc-bzr-after-dir-status):
1320 Ignore ignored files. (Bug#9726)
1321
1322 2011-10-19 Chong Yidong <cyd@gnu.org>
1323
1324 Doc fix for minor modes, stating that an omitted argument enables
1325 the mode unconditionally when called from Lisp.
1326
1327 * abbrev.el (abbrev-mode):
1328 * allout.el (allout-mode):
1329 * autoinsert.el (auto-insert-mode):
1330 * autoarg.el (autoarg-mode, autoarg-kp-mode):
1331 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
1332 (global-auto-revert-mode):
1333 * battery.el (display-battery-mode):
1334 * composite.el (global-auto-composition-mode)
1335 (auto-composition-mode):
1336 * delsel.el (delete-selection-mode):
1337 * desktop.el (desktop-save-mode):
1338 * dired-x.el (dired-omit-mode):
1339 * dirtrack.el (dirtrack-mode):
1340 * doc-view.el (doc-view-minor-mode):
1341 * double.el (double-mode):
1342 * electric.el (electric-indent-mode, electric-pair-mode):
1343 * emacs-lock.el (emacs-lock-mode):
1344 * epa-hook.el (auto-encryption-mode):
1345 * follow.el (follow-mode):
1346 * font-core.el (font-lock-mode):
1347 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
1348 * help.el (temp-buffer-resize-mode):
1349 * hilit-chg.el (highlight-changes-mode)
1350 (highlight-changes-visible-mode):
1351 * hi-lock.el (hi-lock-mode):
1352 * hl-line.el (hl-line-mode, global-hl-line-mode):
1353 * icomplete.el (icomplete-mode):
1354 * ido.el (ido-everywhere):
1355 * image-file.el (auto-image-file-mode):
1356 * image-mode.el (image-minor-mode):
1357 * iswitchb.el (iswitchb-mode):
1358 * jka-cmpr-hook.el (auto-compression-mode):
1359 * linum.el (linum-mode):
1360 * longlines.el (longlines-mode):
1361 * master.el (master-mode):
1362 * mb-depth.el (minibuffer-depth-indicate-mode):
1363 * menu-bar.el (menu-bar-mode):
1364 * minibuf-eldef.el (minibuffer-electric-default-mode):
1365 * mouse-sel.el (mouse-sel-mode):
1366 * msb.el (msb-mode):
1367 * mwheel.el (mouse-wheel-mode):
1368 * outline.el (outline-minor-mode):
1369 * paren.el (show-paren-mode):
1370 * recentf.el (recentf-mode):
1371 * reveal.el (reveal-mode, global-reveal-mode):
1372 * rfn-eshadow.el (file-name-shadow-mode):
1373 * ruler-mode.el (ruler-mode):
1374 * savehist.el (savehist-mode):
1375 * scroll-all.el (scroll-all-mode):
1376 * scroll-bar.el (scroll-bar-mode):
1377 * server.el (server-mode):
1378 * shell.el (shell-dirtrack-mode):
1379 * simple.el (auto-fill-mode, transient-mark-mode)
1380 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
1381 (line-number-mode, column-number-mode, size-indication-mode)
1382 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
1383 * strokes.el (strokes-mode):
1384 * time.el (display-time-mode):
1385 * t-mouse.el (gpm-mouse-mode):
1386 * tool-bar.el (tool-bar-mode):
1387 * tooltip.el (tooltip-mode):
1388 * type-break.el (type-break-mode-line-message-mode)
1389 (type-break-query-mode):
1390 * view.el (view-mode):
1391 * whitespace.el (whitespace-mode, whitespace-newline-mode)
1392 (global-whitespace-mode, global-whitespace-newline-mode):
1393 * xt-mouse.el (xterm-mouse-mode): Doc fix.
1394
1395 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1396 Fix autogenerated docstring.
1397
1398 2011-10-19 Juri Linkov <juri@jurta.org>
1399
1400 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
1401 by checking environment variables "DESKTOP_SESSION" and
1402 "XDG_CURRENT_DESKTOP". (Bug#9779)
1403
1404 2011-10-19 Juri Linkov <juri@jurta.org>
1405
1406 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
1407 (browse-url-chromium-program, browse-url-chromium-arguments):
1408 New defcustoms.
1409 (browse-url-default-browser): Check for `browse-url-chromium' and
1410 call `browse-url-chromium-program'.
1411 (browse-url-chromium): New command. (Bug#9779)
1412
1413 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
1414
1415 * facemenu.el (list-colors-duplicates): On Windows, detect more
1416 duplicates by assuming that only colors matching "^System" are
1417 special "system colors". (Bug#9722)
1418
1419 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1420
1421 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
1422 to distinguish the author from the committer.
1423
1424 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
1425
1426 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
1427
1428 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
1429
1430 * international/mule.el (sgml-html-meta-auto-coding-function):
1431 Add support for detecting encoding in HTML5 specified only as
1432 <meta charset="UTF-8">. Implementation just makes http-equiv and
1433 content-type parts from HTML4 encoding string optional. (Bug#9716)
1434
1435 2011-10-18 Glenn Morris <rgm@gnu.org>
1436
1437 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
1438
1439 2011-10-18 Chong Yidong <cyd@gnu.org>
1440
1441 * faces.el (cursor): Doc fix.
1442
1443 2011-10-17 Chong Yidong <cyd@gnu.org>
1444
1445 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
1446
1447 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
1448
1449 * dirtrack.el (dirtrack): Support shell buffers with path
1450 prefixes, e.g. tramp-based remote shells. (Bug#9647)
1451
1452 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
1453
1454 * json.el: Bump version to 1.3 and note change in History.
1455 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
1456
1457 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
1458
1459 * comint.el (comint-insert-input, comint-send-input)
1460 (comint-get-old-input-default, comint-backward-matching-input)
1461 (comint-next-prompt): Use nil instead of `input' for field property of
1462 past user input (bug#114).
1463
1464 * minibuffer.el (completion--replace): Inherit surrounding properties
1465 (bug#114).
1466 (minibuffer-complete-and-exit): Use it.
1467
1468 * comint.el (comint--table-subvert): Quote the all-completions output
1469 (bug#9160).
1470
1471 2011-10-17 Martin Rudalics <rudalics@gmx.at>
1472
1473 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
1474
1475 * menu-bar.el (menu-bar-file-menu): Add entry for making new
1476 window on right of selected. (Bug#9350) Reword other window
1477 entries and separate them from frame entries.
1478
1479 2011-10-15 Glenn Morris <rgm@gnu.org>
1480
1481 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
1482 Doc fixes.
1483
1484 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
1485
1486 * net/network-stream.el (network-stream-open-starttls):
1487 Improve detection of failure due to lack of TLS support.
1488
1489 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
1490 putting the input text in front and in bold.
1491
1492 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
1493
1494 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
1495
1496 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
1497 empty buffer.
1498
1499 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
1500 unread-command-events rather than pushing yet-another event.
1501
1502 2011-10-14 Eli Zaretskii <eliz@gnu.org>
1503
1504 * mail/sendmail.el (sendmail-query-once): Improve the wording of
1505 the explanation of the possible choices. Make the options passed
1506 to completing-read shorter.
1507
1508 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1509
1510 * textmodes/flyspell.el (flyspell-large-region): Make sure
1511 extended character mode is used if defined (Bug#1339).
1512
1513 2011-10-13 Eli Zaretskii <eliz@gnu.org>
1514
1515 * simple.el (what-cursor-position): Fix the display of the
1516 character info for LRE, LRO, RLE, and RLO characters by appending
1517 an invisible PDF.
1518
1519 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
1520
1521 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
1522 even in case of error; add debug spec; simplify data flow.
1523 (with-timeout-handler): Remove.
1524
1525 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
1526
1527 Fix Bug#6019, Bug#9315.
1528
1529 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
1530 complete `buffer-file-name', the local file name part could look
1531 remotely (for example on VMS).
1532
1533 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
1534 `tramp-run-real-handler'.
1535 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
1536 already quoted by '"'.
1537
1538 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
1539 Let `file-name-handler-alist' be nil, the local file name part
1540 could look remotely (for example on VMS).
1541
1542 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1543
1544 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
1545 from here...
1546 (flyspell-post-command-hook): ...to here.
1547
1548 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1549
1550 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
1551 if not needed.
1552 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
1553 using completion. Protect against "slow" callers.
1554 Remove the "message hack".
1555
1556 2011-10-11 Juri Linkov <juri@jurta.org>
1557
1558 * isearch.el (isearch-lazy-highlight-word): New variable.
1559 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
1560 Use it. (Bug#9727)
1561
1562 2011-10-11 Glenn Morris <rgm@gnu.org>
1563
1564 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
1565 like f90-previous-statement does.
1566
1567 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1568
1569 * eshell/eshell.el (eshell-command): History should be saved
1570 only in interactive use, to avoid error.
1571
1572 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1573
1574 * minibuffer.el (completion-file-name-table): Fix last change,
1575 i.e. ignore normal errors but not the other ones.
1576
1577 2011-10-10 Martin Rudalics <rudalics@gmx.at>
1578
1579 * window.el (special-display-buffer-names)
1580 (special-display-regexps): Remove some remnants of earlier
1581 changes from doc-strings.
1582 (quit-windows-on): New function.
1583
1584 * vc/vc.el (vc-revert, vc-rollback):
1585 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
1586 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
1587 (Bug#6183) (Bug#7074) (Bug#7447)
1588
1589 2011-10-09 Martin Rudalics <rudalics@gmx.at>
1590
1591 * window.el (frame-auto-hide-function): Add version tag.
1592 (Bug#9699)
1593
1594 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
1595
1596 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
1597 condition.
1598
1599 2011-10-09 Leo Liu <sdl.web@gmail.com>
1600
1601 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
1602 (Bug#9701)
1603
1604 2011-10-08 Glenn Morris <rgm@gnu.org>
1605
1606 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
1607 before the first code statement zero indent. (Bug#9690)
1608
1609 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
1610
1611 * simple.el (count-words-region): Always count in the region.
1612 Report the number of lines and characters too.
1613 (count-words): New command, which counts in the buffer if the
1614 region is inactive, as count-words-region used to.
1615 (count-words--message): New function. Handle plurals.
1616 (count-lines-region): Make it an alias for count-words-region.
1617
1618 * bindings.el (esc-map): Replace count-lines-region with
1619 count-words-region.
1620
1621 2011-10-08 Martin Rudalics <rudalics@gmx.at>
1622
1623 * window.el (window--delete): Delete dedicated frame
1624 unconditionally when argument KILL is non-nil. (Bug#9699)
1625 (switch-to-buffer): Fix doc-string typo.
1626
1627 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1628
1629 * lisp/eshell/eshell.el (eshell-command): Avoid using hooks.
1630
1631 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
1632
1633 * bindings.el ([M-left],[M-right]): Bind to left-word and
1634 right-word respectively.
1635
1636 2011-10-07 Glenn Morris <rgm@gnu.org>
1637
1638 * cus-start.el (debug-on-quit): Fix custom type.
1639
1640 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
1641
1642 * subr.el (define-key-after): Clarify that the function is not
1643 useful for non-menu keymaps.
1644
1645 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
1646
1647 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1648
1649 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
1650 in current minibuffer (Fix bug with recursive minibuffers).
1651
1652 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
1653
1654 * progmodes/gdb-mi.el (gdb): Doc fix.
1655
1656 2011-10-05 Martin Rudalics <rudalics@gmx.at>
1657
1658 * window.el (frame-auto-hide-function): New option replacing
1659 frame-auto-delete. Suggested by Stefan Monnier.
1660 (window--delete): Call frame-auto-hide-function instead of
1661 investigating frame-auto-delete.
1662 (window-point-1, set-window-point-1): New functions.
1663 (window-in-direction, record-window-buffer, window-state-get-1)
1664 (display-buffer-record-window): Use window-point-1 instead of
1665 window-point.
1666 (set-window-buffer-start-and-point): Use set-window-point-1.
1667
1668 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1669
1670 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
1671
1672 2011-10-05 Glenn Morris <rgm@gnu.org>
1673
1674 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
1675 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
1676
1677 2011-10-05 Leo Liu <sdl.web@gmail.com>
1678
1679 * subr.el (read-char-choice): Fix argument to buffer-live-p which
1680 works with buffer object.
1681
1682 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1683
1684 * mpc.el (mpc-tool-bar-map): Add labels.
1685
1686 2011-10-04 Glenn Morris <rgm@gnu.org>
1687
1688 * calendar/holidays.el (calendar-check-holidays): Doc fix.
1689
1690 2011-10-04 Martin Rudalics <rudalics@gmx.at>
1691
1692 * window.el (window--delete): New function.
1693 (frame-auto-delete): Resuscitate option.
1694 (bury-buffer, replace-buffer-in-windows)
1695 (quit-window): Rewrite using window--delete.
1696 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1697 Pass display-buffer-mark-dedicated to window--display-buffer-2
1698 (Bug#9639).
1699
1700 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1701
1702 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
1703 returns a list (bug#9554). Add remote file name completion.
1704 * comint.el (comint--table-subvert): Curry and get quote&unquote
1705 functions as arguments.
1706 (comint--complete-file-name-data): Adjust call accordingly.
1707 * pcomplete.el (pcomplete--table-subvert): Remove.
1708 (pcomplete-completions-at-point): Use comint--table-subvert instead.
1709
1710 * minibuffer.el (completion-table-case-fold): Use currying.
1711 (completion--styles-type, completion--cycling-threshold-type):
1712 New constants.
1713 (completion-styles, completion-category-overrides)
1714 (completion-cycle-threshold): Use them.
1715 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
1716 completion-table-case-fold.
1717
1718 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
1719
1720 * minibuffer.el (completion-category-overrides): Fix type of styles
1721 and add more user friendly tags (bug#9660).
1722
1723 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1724
1725 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
1726 (mule-input-method-string): New widget.
1727 (default-input-method, language-info-custom-alist): Use it.
1728
1729 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1730
1731 * pcomplete.el: Require comint.
1732 (pcomplete--common-suffix): Remove.
1733 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
1734 (pcomplete--table-subvert): Sync with comint--table-subvert.
1735 (pcomplete--entries): Use comint-completion-file-name-table.
1736 * comint.el (comint-unquote-filename): Simplify.
1737 (comint-completion-file-name-table): New function (bug#9616).
1738 (comint--complete-file-name-data): Use it.
1739
1740 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
1741 (pcmpl-gnu-tar-buffer): Remove.
1742 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
1743 around. Make sure pcomplete-suffix-list is only changed temporarily.
1744 Don't look inside the tar's file if it's too large.
1745
1746 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
1747
1748 * cus-edit.el (custom-mode-map):
1749 * epa.el (epa-key-list-mode-map):
1750 * man.el (Man-mode-map):
1751 * startup.el (splash-screen-keymap):
1752 * simple.el (special-mode-map): Use scroll-up-command and
1753 scroll-down-command.
1754
1755 * progmodes/idlw-help.el (idlwave-help-mode-map):
1756 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
1757 * net/newst-plainview.el (newsticker-mode-map):
1758 * emulation/ws-mode.el (wordstar-mode-map):
1759 * emulation/vi.el (vi-com-map):
1760 * calc/calc-graph.el (calc-graph-show-dumb):
1761 * term/sun.el (terminal-init-sun):
1762 * term/ns-win.el (global-map):
1763 * progmodes/grep.el (grep-mode-map):
1764 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
1765 * mail/rmail.el (rmail-mode-map):
1766 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
1767
1768 * custom.el (custom-safe-themes, load-theme): Treat value of t for
1769 custom-safe-themes as special.
1770
1771 2011-10-01 Julien Danjou <julien@danjou.info>
1772
1773 * notifications.el (notifications-notify): Fix docstring.
1774
1775 2011-10-01 Per Starbäck <per@starback.se>
1776
1777 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
1778
1779 2011-09-30 Martin Rudalics <rudalics@gmx.at>
1780
1781 * startup.el (command-line-1): Fix last fix by inserting
1782 initial-scratch-message into *scratch* before displaying it.
1783 (Bug#9605) and (Bug#9636)
1784
1785 2011-09-29 Eli Zaretskii <eliz@gnu.org>
1786
1787 * simple.el (line-move): If auto-hscroll-mode is disabled and the
1788 window is hscrolled, move by logical lines. (Bug#9607)
1789 (line-move-visual): Update the doc string to the above effect.
1790
1791 2011-09-29 Martin Rudalics <rudalics@gmx.at>
1792
1793 * window.el (display-buffer-record-window): When WINDOW is the
1794 selected window use `point' instead of `window-point'. (Bug#9626)
1795
1796 * startup.el (command-line-1): Use insert-before-markers when
1797 inserting initial-scratch-message. (Bug#9605)
1798
1799 * help.el (help-window): Remove variable.
1800
1801 2011-09-29 Glenn Morris <rgm@gnu.org>
1802
1803 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
1804
1805 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
1806
1807 * descr-text.el (describe-char-categories): Accept category
1808 descriptions more than one line long.
1809
1810 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1811
1812 * simple.el (delete-trailing-whitespace): Fix last change.
1813
1814 * progmodes/perl-mode.el (perl-syntax-propertize-function):
1815 Don't confuse "y => 3" as the beginning of a `y' operation.
1816
1817 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
1818 object has more than 4 slots (bug#9613).
1819
1820 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
1821
1822 * subr.el (with-output-to-temp-buffer):
1823 * net/quickurl.el (quickurl, quickurl-browse-url):
1824 Fix typos in docstrings.
1825
1826 2011-09-27 Eli Zaretskii <eliz@gnu.org>
1827
1828 * minibuffer.el (completion-styles)
1829 (completion-category-overrides): Cross reference each other in doc
1830 strings.
1831
1832 2011-09-27 Glenn Morris <rgm@gnu.org>
1833
1834 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
1835 to split-string. (Bug#9606)
1836
1837 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
1838
1839 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
1840 (bug#9615).
1841
1842 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
1843
1844 * emacs-lisp/package.el (list-packages): Fix echo area message.
1845
1846 2011-09-27 Leo Liu <sdl.web@gmail.com>
1847
1848 * ido.el (ido-read-internal): Accept cons cell HIST arg.
1849
1850 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
1851
1852 * net/dbus.el (dbus-unregister-object): Don't release services for
1853 registered signals. (Bug#9581)
1854
1855 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
1856
1857 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
1858 function that picks between cfengine 2 and 3 support
1859 automatically. Update docs accordingly.
1860
1861 2011-09-22 Kenichi Handa <handa@m17n.org>
1862
1863 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
1864 ZERO.
1865 (indian-itrans-v5-table-for-tamil): New variable.
1866 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
1867
1868 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
1869
1870 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
1871 that's true if the current command involved collapsing of text.
1872 It's reset to false at the beginning of the next command.
1873 (allout-post-command-business): Move the cursor to the beginning
1874 of entry if the cursor is hidden and collapsing activity just
1875 happened.
1876
1877 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
1878
1879 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
1880 tracking (Bug#9541).
1881
1882 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
1883
1884 * net/newst-reader.el (newsticker-html-renderer)
1885 (newsticker-show-news): Automatically
1886 load html rendering package if newsticker-html-renderer is set.
1887 Fixes "Warning: defvar ignored because w3m-fill-column is
1888 let-bound" and the error "Symbol's value as variable is void:
1889 w3m-fill-column".
1890
1891 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
1892
1893 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
1894 Release services only if they are defined. (Bug#9581)
1895
1896 2011-09-23 Richard Stallman <rms@gnu.org>
1897
1898 * textmodes/paragraphs.el (forward-sentence): For backwards case,
1899 distinguish start of paragraph from start of its text.
1900
1901 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
1902
1903 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
1904 (rmail-generate-viewer-buffer): Put that hook on view buffer.
1905 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
1906
1907 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
1908
1909 * international/mule-diag.el (mule-diag): Insert a newline after
1910 each fontset description.
1911
1912 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1913
1914 * simple.el (delete-trailing-whitespace):
1915 Document last change; simplify.
1916
1917 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
1918
1919 * simple.el (delete-trailing-whitespace): Also delete
1920 extra newlines at the end of the buffer.
1921
1922 * textmodes/picture.el: Make motion commands obey shift-select-mode.
1923 (picture-newline): Use forward-line so as to ignore fields.
1924
1925 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1926
1927 * subr.el (with-wrapper-hook): Fix edebug spec.
1928
1929 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
1930
1931 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
1932 (bug#4538).
1933
1934 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
1935
1936 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1937 Fix nasty bug using wrong cached values.
1938
1939 2011-09-23 Alan Mackenzie <acm@muc.de>
1940
1941 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
1942
1943 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
1944
1945 * window.el (pop-to-buffer): Ensure right window is selected if we
1946 chose another frame.
1947
1948 2011-09-22 Eli Zaretskii <eliz@gnu.org>
1949
1950 * simple.el (what-cursor-position): Use get-char-property-change
1951 and next-single-char-property-change, to be able to show display
1952 properties that come from overlays as well as text properties.
1953
1954 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
1955
1956 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
1957
1958 * cmuscheme.el (run-scheme, switch-to-scheme):
1959 * cus-edit.el (customize-group, custom-buffer-create)
1960 (customize-browse):
1961 * info.el (info):
1962 * shell.el (shell):
1963 * mail/sendmail.el (mail):
1964 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
1965
1966 2011-09-22 Richard Stallman <rms@gnu.org>
1967
1968 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
1969 move back only to line beg, don't move back over blank lines.
1970
1971 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
1972
1973 * files.el (copy-directory): Set directory attributes only in case
1974 they could be retrieved from the source directory. (Bug#9565)
1975
1976 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
1977
1978 * progmodes/hideshow.el (hs-looking-at-block-start-p)
1979 (hs-find-block-beginning, hs-hide-level-recursive):
1980 Ignore strings as well as comments. (Bug#9502)
1981
1982 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
1983
1984 * progmodes/sql.el (sql-comint-postgres):
1985 Convert port number to a string. (Bug#9566)
1986
1987 2011-09-22 Martin Rudalics <rudalics@gmx.at>
1988
1989 * window.el (quit-window): Undedicate window when switching to
1990 previous buffer. Reported by Thierry Volpiatto
1991 <thierry.volpiatto@gmail.com>.
1992 (special-display-popup-frame): When popping up a new frame reset
1993 its previous buffers to nil. Simplify code.
1994
1995 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
1996
1997 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
1998 and process filter, as done also in `shell-command'.
1999
2000 2011-09-21 Martin Rudalics <rudalics@gmx.at>
2001
2002 * window.el (set-window-buffer-start-and-point):
2003 Call set-window-start with NOFORCE argument t. Suggested by Thierry
2004 Volpiatto <thierry.volpiatto@gmail.com>.
2005 (quit-window): Reword doc-string. Handle new format of
2006 quit-restore parameter. Don't delete window if it has a
2007 previous buffer we can show instead of the present one.
2008 (display-buffer-record-window): Rewrite using a new format for
2009 the quit-restore window parameter
2010 (special-display-popup-frame, display-buffer-same-window)
2011 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2012 (display-buffer-pop-up-window, display-buffer-use-some-window):
2013 Adapt symbol passed to display-buffer-record-window.
2014 * help.el (help-window-setup): Handle new format of quit-restore
2015 parameter.
2016
2017 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
2018
2019 * faces.el (face-list): Fix docstring (bug#9564).
2020
2021 * window.el (display-buffer--action-function-custom-type):
2022 Don't include internal functions in the Custom interface.
2023
2024 2011-09-20 Juri Linkov <juri@jurta.org>
2025
2026 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
2027 (Info-forward-node, Info-backward-node, Info-next-preorder)
2028 (Info-last-preorder): Use it. (Bug#9528)
2029
2030 2011-09-20 Juri Linkov <juri@jurta.org>
2031
2032 * info.el (Info-last-preorder): Visit last menu item only when
2033 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
2034
2035 2011-09-20 Julien Danjou <julien@danjou.info>
2036
2037 * password-cache.el (password-cache-remove): Remove entries even if the
2038 value is nil, so that password with a nil value (negative caching) is
2039 possible to invalidate.
2040
2041 2011-09-20 Lawrence Mitchell <wence@gmx.li>
2042
2043 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
2044 all whitespace around breakpoint. (Bug#9553)
2045 (f90-find-breakpoint): Only break at whitespace inside a comment.
2046
2047 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2048
2049 * minibuffer.el (completion-file-name-table): Keep track of errors.
2050 (completion-table-with-predicate): Handle the case where pred1 is nil.
2051 * pcomplete.el (pcomplete-completions-at-point): Simplify.
2052
2053 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2054
2055 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
2056 (debugger-return-value): Signal an error if the debugging context does
2057 not await any return value.
2058
2059 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
2060 * image-mode.el (image-toggle-display-text)
2061 (image-toggle-display-image): Stay away from evil `intangible'.
2062
2063 2011-09-19 Leo Liu <sdl.web@gmail.com>
2064
2065 * replace.el (occur-revert-arguments): Make it permanent-local.
2066 (occur-mode): Don't call font-lock-defontify.
2067
2068 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
2069
2070 * net/ldap.el (ldap-search-internal): Don't push empty search
2071 result (Bug#9508).
2072
2073 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2074
2075 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
2076
2077 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
2078
2079 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
2080 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
2081
2082 2011-09-18 Juri Linkov <juri@jurta.org>
2083
2084 * buff-menu.el (Buffer-menu-mode-map):
2085 * dired.el (dired-mode-map):
2086 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
2087 (lisp-interaction-mode-map):
2088 * emacs-lisp/package.el (package-menu-mode-map):
2089 * epa.el (epa-key-list-mode-map):
2090 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
2091 (menu-bar-options-menu):
2092 * outline.el (outline-mode-menu-bar-map):
2093 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
2094 * vc/vc-dir.el (vc-dir-menu-map):
2095 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
2096 Capitalize non-function content words in menu item strings.
2097
2098 * dired.el (dired-mode-map): Add menu item for
2099 `image-dired-dired-toggle-marked-thumbs'.
2100
2101 2011-09-18 Juri Linkov <juri@jurta.org>
2102
2103 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
2104 to `isearch-case-fold-search' and restore its original value
2105 after the `isearch-mode' call.
2106
2107 2011-09-18 Juri Linkov <juri@jurta.org>
2108
2109 * progmodes/grep.el (grep-process-setup): Don't check code for 1
2110 because `zgrep' returns 1 for successful matches (bug#9226).
2111
2112 2011-09-18 Juri Linkov <juri@jurta.org>
2113
2114 * info.el (Info-extract-menu-node-name): Check the second match
2115 for empty string (second test-case of bug#9528).
2116 (Info-last-preorder): Let-bind `Info-history' to nil to not add
2117 intermediate nodes to the history (first test-case of bug#9528).
2118
2119 2011-09-18 Juri Linkov <juri@jurta.org>
2120
2121 * info.el (Info-mode-syntax-table): New variable.
2122 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table'. (Bug#3312)
2123
2124 2011-09-18 Juri Linkov <juri@jurta.org>
2125
2126 * info.el (Info-file-supports-index-cookies): Increment
2127 line-beginning-position's arg from 3 to 4 because makeinfo outputs
2128 one more line for long file names (bug#4142).
2129
2130 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
2131
2132 * newcomment.el (comment-normalize-vars): If prompting for
2133 comment-start, set comment-start-skip too (Bug#8424).
2134
2135 2011-09-18 Johan Bockgård <bojohan@gnu.org>
2136
2137 * icomplete.el: Fix previous fix of Bug#5849.
2138 (icomplete-mode): Don't set completion-show-inline-help.
2139 (icomplete-minibuffer-setup): Set completion-show-inline-help
2140 locally during icompletion.
2141
2142 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
2143
2144 * woman.el (woman2-process-escapes): Don't delete unrecognized
2145 escapes (Bug#7843).
2146
2147 * files.el (inhibit-first-line-modes-regexps): Add image files.
2148 (hack-local-variables-prop-line): Return nil for malformed
2149 prop-lines (Bug#9044).
2150
2151 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
2152
2153 * net/tramp.el (top): Don't require 'shell.
2154 (tramp-methods): Fix docstring.
2155 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
2156 Return complete remote file name. Handle "smb" case.
2157 Use `tramp-tmpdir', if defined for the respective method.
2158 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
2159
2160 * net/tramp-compat.el (top): Require 'shell.
2161
2162 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
2163 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
2164 `tramp-current-host'.
2165 (tramp-get-remote-tmpdir): Remove.
2166
2167 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
2168 `tramp-tmpdir' entries.
2169 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
2170 (tramp-smb-handle-file-attributes): Ignore errors.
2171 (tramp-smb-wait-for-output): Check also for process end.
2172
2173 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
2174
2175 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
2176 when sending QUIT (bug#9312).
2177
2178 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
2179
2180 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
2181 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
2182 occur-mode-display-occurrence.
2183 (occur-edit-mode): Add usage message.
2184 (occur-cease-edit): New command.
2185 (occur-after-change-function): Use text properties to find the
2186 position of the prefix text.
2187 (occur-engine): Set stickiness of prefix text properties.
2188
2189 2011-09-17 Glenn Morris <rgm@gnu.org>
2190
2191 * progmodes/etags.el (complete-tag):
2192 Fix call to completion-in-region. (Bug#9526)
2193
2194 2011-09-17 Juri Linkov <juri@jurta.org>
2195
2196 * textmodes/ispell.el (ispell-word): Add to the error message
2197 the word, ispell program name and current dictionary (bug#9121).
2198 (ispell-tex-arg-end): Capitalize "error" in the error message.
2199
2200 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
2201
2202 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
2203 check. (Bug#4251)
2204
2205 2011-09-17 Juri Linkov <juri@jurta.org>
2206
2207 * window.el (window-safe-min-height, window-safe-min-width):
2208 Fix typos (followup to bug#9522).
2209
2210 2011-09-17 Sven Joachim <svenjoac@gmx.de>
2211
2212 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
2213
2214 2011-09-16 Eli Zaretskii <eliz@gnu.org>
2215
2216 * simple.el (line-move): If goal-column is set, move by logical
2217 lines, not by display lines. (Bug#971)
2218 (next-line, previous-line, goal-column, line-move-visual): Doc fix
2219 to reflect the above change.
2220
2221 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
2222
2223 * image.el (imagemagick-register-types): Use regexp-opt.
2224
2225 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
2226
2227 * window.el (display-buffer-base-action): Rename from
2228 display-buffer-default-action. Make default value empty.
2229 (display-buffer-overriding-action): Convert to defvar.
2230 (display-buffer-fallback-action): New var.
2231
2232 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
2233
2234 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
2235 declaration.
2236 (package--add-to-archive-contents): If there is a duplicate entry
2237 with an older version, remove it.
2238 (package-menu-mark-delete, package-menu-mark-install)
2239 (package-menu-mark-unmark): Make unused args optional.
2240 (package-menu-mark-obsolete-for-deletion):
2241 Use package-menu-get-status instead of a regexp search.
2242 (package-menu-get-status): Use tabulated-list-entry.
2243 (package-menu-mark-upgrades): New command.
2244 (package-menu-mode-map): Bind it to U. Add it to menu bar.
2245 (package-menu-execute): Do installation before deletion.
2246 (package-menu-refresh, package-menu-execute): Use derived-mode-p
2247 instead of checking major-mode.
2248 (package-menu--find-upgrades): New function.
2249
2250 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2251
2252 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
2253 passwords in the log buffer.
2254 (smtpmail-process-filter): Update the process marker so that the
2255 "broken by peer" status message is inserted in the right place.
2256
2257 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2258
2259 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
2260 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
2261 bibtex-completion-at-point-function.
2262 (bibtex-completion-at-point-function): Use them.
2263
2264 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
2265
2266 * mpc.el (mpc-constraints-tag-lookup): New function.
2267 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
2268 also to browser "album|playlist".
2269
2270 2011-09-14 Juri Linkov <juri@jurta.org>
2271
2272 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
2273 (isearch-edit-string): Use length of `isearch-string' when
2274 `isearch-fail-pos' returns nil.
2275 (isearch-message): Remove duplicate code and call
2276 `isearch-fail-pos' with arg `t'.
2277
2278 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
2279
2280 * replace.el (occur-mode-goto-occurrence): Don't force using other
2281 window (Bug#9499).
2282
2283 * dired-aux.el (dired-do-chmod): Don't provide initial input.
2284
2285 2011-09-14 Martin Rudalics <rudalics@gmx.at>
2286
2287 * window.el (display-buffer-window): Remove.
2288 (display-buffer-record-window): Use help-setup window parameter
2289 instead of variable display-buffer-window.
2290 (display-buffer-function, special-display-buffer-names)
2291 (special-display-function): Mention help-setup parameter instead
2292 of display-buffer-window in doc-string.
2293 * help.el (help-window-setup): New argument help-window.
2294 Use help-window-setup parameter instead of display-buffer-window.
2295 Reword some messages.
2296 (with-help-window): Pass window used for displaying the buffer
2297 to help-window-setup. Don't set display-buffer-window.
2298
2299 2011-09-13 Glenn Morris <rgm@gnu.org>
2300
2301 * emacs-lisp/debug.el (debugger-make-xrefs):
2302 Preserve point. (Bug#9462)
2303
2304 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
2305
2306 * window.el (window-deletable-p): Use next-frame.
2307
2308 2011-09-13 Martin Rudalics <rudalics@gmx.at>
2309
2310 * window.el (window-auto-delete): Remove.
2311 (window-deletable-p): Remove argument FORCE. Don't deal with
2312 dedication and previous buffers.
2313 (switch-to-prev-buffer): Don't delete window.
2314 (delete-windows-on): Delete a window's frame if and only if the
2315 window is dedicated.
2316 (replace-buffer-in-windows): Delete buffer's window or frame if
2317 and only if window is dedicated.
2318 (quit-window): Handle quit-restore as before last change.
2319 (bury-buffer): Delete window only if window-deletable-p returns t.
2320
2321 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
2322
2323 * window.el (window-deletable-p): Never delete the last frame on a
2324 given terminal.
2325
2326 2011-09-13 Glenn Morris <rgm@gnu.org>
2327
2328 * help.el (describe-key-briefly): Copy previous standard-output change.
2329
2330 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
2331
2332 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
2333
2334 2011-09-13 Glenn Morris <rgm@gnu.org>
2335
2336 * emacs-lisp/lisp-mode.el (lisp-indent-function):
2337 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
2338
2339 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
2340
2341 * dired-aux.el (dired-mark-read-string): Don't return default
2342 value on empty input (Bug#9361).
2343 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
2344 Omit initial minibuffer contents.
2345 (dired-do-chmod): Signal an error on empty input.
2346 (dired-mark-read-string): Don't return default on empty input.
2347
2348 * files.el (file-modes-symbolic-to-number): Doc fix.
2349
2350 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2351
2352 * international/mule-cmds.el (ucs-completions): Remove.
2353 (read-char-by-name): Use complete-with-action instead; add metadata.
2354
2355 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
2356
2357 * window.el (display-buffer--action-function-custom-type)
2358 (display-buffer--action-custom-type): New vars.
2359 (display-buffer-alist, display-buffer-default-action)
2360 (display-buffer-overriding-action): Add defcustom types.
2361
2362 * frame.el (delete-other-frames): Doc fix (Bug#276).
2363
2364 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2365
2366 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
2367
2368 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
2369
2370 Change modes that used same-window-* vars to use switch-to-buffer.
2371
2372 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
2373 Use switch-to-buffer.
2374
2375 * cus-edit.el (customize-group, custom-buffer-create)
2376 (customize-browse, custom-buffer-create-other-window):
2377 Use switch-to-buffer or switch-to-buffer-other-window.
2378
2379 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
2380 (Info-prev, Info-up, Info-speedbar-goto-node)
2381 (info-display-manual): Use switch-to-buffer.
2382 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
2383
2384 * mail/sendmail.el (mail): Use switch-to-buffer.
2385 (mail-recover): Use switch-to-buffer-other-window.
2386
2387 * cmuscheme.el (run-scheme, switch-to-scheme):
2388 * ielm.el (ielm):
2389 * shell.el (shell):
2390 * net/rlogin.el (rlogin):
2391 * net/telnet.el (telnet, rsh):
2392 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
2393
2394 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
2395
2396 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
2397
2398 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2399
2400 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
2401 so don't mention it (bug#9301).
2402 (dired-sort-toggle-or-edit): Clarify string further.
2403
2404 * faces.el (face-spec-set-match-display): Make `(type graphic)'
2405 match `x', `w32' and `ns', like the manual says (bug#9029).
2406
2407 * subr.el (eval-after-load): Doc string clarification (bug#9125).
2408 (process-kill-buffer-query-function): Mention the buffer name in
2409 the query.
2410
2411 * image-mode.el (image-next-line): The line parameter is mandatory
2412 (bug#9258).
2413
2414 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
2415 which can be useful (bug#9301).
2416
2417 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
2418
2419 * subr.el (match-string): Mention that the current buffer should
2420 be the same as the search was done in (bug#9282).
2421
2422 * facemenu.el: Disable the remove-* commands if the mark isn't
2423 active (bug#9162).
2424
2425 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
2426
2427 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
2428 of display-buffer.
2429 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
2430
2431 * replace.el (occur-mode-goto-occurrence)
2432 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
2433 and display-buffer.
2434
2435 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
2436 display-buffer.
2437
2438 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
2439 special-display and same-window variables.
2440 (mail-other-window): Use switch-to-buffer-other-window.
2441 (mail-other-frame): USe switch-to-buffer-other-frame.
2442
2443 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
2444 Use display-buffer-other-frame.
2445 (gdb-display-gdb-buffer): Use pop-to-buffer.
2446
2447 * progmodes/gud.el (gud-goto-info): Use info-other-window.
2448
2449 * progmodes/python.el: Don't set same-window-buffer-names.
2450
2451 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
2452
2453 * window.el (display-buffer-alist): Add *Python*.
2454
2455 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
2456
2457 * window.el (display-buffer-alist): Add entry for buffers
2458 previously handled same-window-*.
2459 (display-buffer-alist, display-buffer-default-action)
2460 (display-buffer-overriding-action): Mark as risky.
2461 (display-buffer-alist): Document action function changes.
2462 (display-buffer--same-window-action)
2463 (display-buffer--other-frame-action): New variables.
2464 (switch-to-buffer, display-buffer-other-frame): Use them.
2465 (display-buffer): Rename reuse-frame entry to reusable-frames.
2466 (display-buffer-reuse-selected-window): Function deleted.
2467 (display-buffer-reuse-window): Handle reusable-frames alist entry.
2468 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
2469 (display-buffer-special): New function.
2470 (display-buffer--maybe-pop-up-frame-or-window): Rename from
2471 display-buffer-reuse-or-pop-window. Split off special-display
2472 part into display-buffer-special.
2473 (display-buffer-use-some-window): Don't perform any special
2474 pop-up-frames handling.
2475 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
2476 (display-buffer--maybe-same-window): Rename from
2477 display-buffer-maybe-same-window.
2478
2479 * info.el: Don't set same-window-regexps.
2480 (info-setup): New function.
2481 (info-other-window, info): Call it.
2482
2483 * cus-edit.el: Don't set same-window-regexps.
2484 (customize-group): New argument.
2485 (customize-group-other-window): Use it.
2486 (customize-face, customize-face-other-window): Likewise.
2487 (custom-buffer-create-other-window): Use pop-to-buffer directly.
2488
2489 * net/rlogin.el:
2490 * net/telnet.el:
2491 * progmodes/gud.el: Don't set same-window-regexps.
2492
2493 * cmuscheme.el:
2494 * ielm.el:
2495 * shell.el:
2496 * mail/sendmail.el:
2497 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
2498
2499 2011-09-10 Juri Linkov <juri@jurta.org>
2500
2501 * isearch.el (isearch-edit-string): Remove obsolete mention of
2502 `C-w' (`isearch-yank-word-or-char') from docstring.
2503 (isearch-query-replace): Fix typo in docstring (bug#9466).
2504
2505 2011-09-10 Juri Linkov <juri@jurta.org>
2506
2507 * paren.el (show-paren-function): Don't show escaped parens.
2508 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
2509
2510 2011-09-10 Eli Zaretskii <eliz@gnu.org>
2511
2512 * mail/sendmail.el (mml-to-mime, mml-attach-file)
2513 (mm-default-file-encoding): Remove autoload forms, they are
2514 replaced with autoload cookies in mml.el and mm-encode.el.
2515 (mail-add-attachment): New command.
2516 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
2517 (mail-mode): Mention mail-insert-file and mail-add-attachment in
2518 the doc string.
2519 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
2520
2521 2011-09-10 Reuben Thomas <rrt@sc3d.org>
2522
2523 * simple.el (count-words-region): Use buffer if there's no region
2524 (bug#9429).
2525
2526 2011-09-09 Juri Linkov <juri@jurta.org>
2527
2528 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
2529 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
2530 (wdired-isearch-filter-read-only): New function. (Bug#6362)
2531
2532 2011-09-09 Alan Mackenzie <acm@muc.de>
2533
2534 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
2535 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
2536
2537 2011-09-09 Eli Zaretskii <eliz@gnu.org>
2538
2539 Fix for Savannah bug#9392.
2540 * simple.el (mail-encode-mml): New defvar.
2541
2542 * mail/rmail.el (mail-encode-mml): Add a defvar.
2543 (rmail-enable-mime-composing): Default to t.
2544 (rmail-forward): Use MIME method of forwarding only if both
2545 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
2546 Set mail-encode-mml non-nil if the MIME method was used.
2547
2548 * mail/sendmail.el (mml-to-mime): Add autoload form.
2549 (mail-encode-mml): Add a defvar.
2550 (mail-mode): Make mail-encode-mml buffer-local and initialize it
2551 to nil.
2552 (mail-send): If mail-encode-mml is non-nil, run the outgoing
2553 message through mml-to-mime, and reset mail-encode-mml to nil.
2554
2555 2011-09-09 Glenn Morris <rgm@gnu.org>
2556
2557 * woman.el (woman-if-body): When processing an .el block,
2558 do not delete the next .el block as well. (Bug#9447)
2559 (woman-special-characters): Add oq, cq, and hy characters.
2560
2561 2011-09-08 Martin Rudalics <rudalics@gmx.at>
2562
2563 * window.el (window-deletable-p): Make sure window is live before
2564 invoking window-prev-buffers.
2565
2566 2011-09-08 Leo Liu <sdl.web@gmail.com>
2567
2568 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
2569
2570 2011-09-08 Juri Linkov <juri@jurta.org>
2571
2572 * progmodes/compile.el (compilation-environment): Make it
2573 a defcustom (bug#8340).
2574
2575 2011-09-08 Martin Rudalics <rudalics@gmx.at>
2576
2577 * window.el (frame-auto-delete): Rename to window-auto-delete.
2578 Make it control auto-deletion of windows and/or frames.
2579 (window-deletable-p): New argument FORCE. Rewrite conditions
2580 for deleting window/frame. (Bug#9419)
2581 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
2582 Rewrite handling of case when window/frame can be deleted.
2583 (delete-windows-on): Call window-deletable-p with new FORCE
2584 argument t. (Bug#9456)
2585
2586 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
2587
2588 * help-mode.el (help-mode): Restore autoload.
2589
2590 2011-09-07 Juri Linkov <juri@jurta.org>
2591
2592 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
2593 `compilation-environment'. Set buffer-local
2594 `compilation-environment' to `thisenv' later after (funcall mode).
2595 (Bug#8340)
2596
2597 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
2598 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
2599 instead of replacing its value. (Bug#8340)
2600
2601 2011-09-07 Juri Linkov <juri@jurta.org>
2602
2603 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
2604 based on text properties put by `grep-filter' instead of matching
2605 escape sequences.
2606 (grep-mode): Set buffer-local `compilation-error-screen-columns'
2607 to the value of `grep-error-screen-columns' (bug#9438).
2608
2609 2011-09-07 Juri Linkov <juri@jurta.org>
2610
2611 * simple.el (next-error-highlight, next-error-highlight-no-select):
2612 Doc fix (bug#9432).
2613
2614 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
2615
2616 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
2617 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
2618
2619 2011-09-07 Leo Liu <sdl.web@gmail.com>
2620
2621 * net/rcirc.el (rcirc-mode): Conditionally initialize
2622 rcirc-input-ring.
2623
2624 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2625
2626 * emacs-lisp/find-func.el (find-function-C-source): Only set
2627 find-function-C-source-directory after checking that we found a source
2628 file there (bug#9440).
2629
2630 2011-09-06 Alan Mackenzie <acm@muc.de>
2631
2632 * isearch.el (isearch-other-meta-char): Wherever a key list is
2633 unread, "unread" the prefix arg, too. This fixes bug #8901.
2634
2635 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
2636
2637 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
2638
2639 2011-09-05 Juri Linkov <juri@jurta.org>
2640
2641 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
2642
2643 2011-09-05 Juri Linkov <juri@jurta.org>
2644
2645 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
2646 keeping point where processing of grep matches begins, and
2647 continue to delete remaining escape sequences from the same point.
2648 (grep-filter): Make leading zero optional in "0?1;31m" because
2649 git-grep emits "\033[1;31m" escape sequences unlike expected
2650 "\033[01;31m" as GNU Grep does (bug#9408).
2651 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
2652
2653 2011-09-05 Juri Linkov <juri@jurta.org>
2654
2655 * subr.el (y-or-n-p): Capitalize "yes".
2656
2657 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
2658
2659 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
2660 `tramp-cache-unload-hook' where appropriate.
2661 (tramp-methods): Rename `tramp-remote-sh' to
2662 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
2663 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
2664
2665 * net/tramp-sh.el (top): Don't require 'shell.
2666 (tramp-methods): Add `tramp-remote-shell' and
2667 `tramp-remote-shell-args' entries.
2668 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
2669 (tramp-sh-handle-shell-command): Remove.
2670 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
2671 Use `tramp-remote-shell'.
2672
2673 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
2674
2675 * mail/sendmail.el (sendmail-query-once-function): Delete.
2676 (sendmail-query-once): Save directly to send-mail-function.
2677 Update message-send-mail-function too.
2678
2679 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
2680
2681 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
2682
2683 * progmodes/python.el (python-mode-map): Use correct function to
2684 start python interpreter from menu-bar (as reported by Geert
2685 Kloosterman).
2686 (inferior-python-mode-map): Fix typo.
2687 (python-shell-map): Remove.
2688
2689 2011-09-03 Deniz Dogan <deniz@dogan.se>
2690
2691 * net/rcirc.el (rcirc-print): Simplify code for
2692 rcirc-scroll-show-maximum-output. There is no need to walk
2693 through all windows to find the right one.
2694
2695 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
2696
2697 * help.el (help-return-method): Doc fix.
2698
2699 2011-09-03 Martin Rudalics <rudalics@gmx.at>
2700
2701 * window.el (window-deletable-p): Don't return a non-nil value
2702 when there's a buffer that was shown in the window before.
2703 (Bug#9419)
2704 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
2705 Set window's previous buffers to nil.
2706
2707 2011-09-03 Eli Zaretskii <eliz@gnu.org>
2708
2709 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
2710 newline before and after the tag line, so it doesn't interfere
2711 with determining the paragraph direction of bidirectional text.
2712
2713 2011-09-03 Leo Liu <sdl.web@gmail.com>
2714
2715 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
2716
2717 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
2718
2719 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
2720 (pop-to-buffer): Change interactive spec. Pass second argument
2721 directly to display-buffer.
2722 (display-buffer): Fix interactive spec. Use functionp to
2723 distinguish between a function and a list of functions.
2724
2725 * abbrev.el (edit-abbrevs):
2726 * arc-mode.el (archive-extract):
2727 * autoinsert.el (auto-insert):
2728 * bookmark.el (bookmark-bmenu-list):
2729 * files.el (find-file):
2730 * view.el (view-buffer):
2731 * progmodes/compile.el (compilation-goto-locus):
2732 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
2733
2734 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
2735
2736 * window.el (display-buffer-alist): Doc fix.
2737 (display-buffer): Add docstring. Don't treat
2738 display-buffer-default specially.
2739 (display-buffer-reuse-selected-window)
2740 (display-buffer-same-window, display-buffer-maybe-same-window)
2741 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2742 (display-buffer-pop-up-window)
2743 (display-buffer-reuse-or-pop-window)
2744 (display-buffer-use-some-window): New functions.
2745 (display-buffer-default-action): Use them.
2746 (display-buffer-default): Delete.
2747 (pop-to-buffer-1): Fix choice of actions.
2748
2749 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
2750
2751 * minibuffer.el (completion--insert-strings): Don't get confused by
2752 completion entries that end with an LF char.
2753
2754 2011-09-01 Eli Zaretskii <eliz@gnu.org>
2755
2756 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
2757
2758 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
2759
2760 * window.el (display-buffer): Restore interactive spec.
2761 (display-buffer-same-window, display-buffer-other-window):
2762 New functions.
2763 (pop-to-buffer-1): New function. Use the above.
2764 (pop-to-buffer, pop-to-buffer-same-window): Use it.
2765 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
2766
2767 * view.el (view-buffer-other-window, view-buffer-other-frame):
2768 Just use pop-to-buffer.
2769
2770 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2771
2772 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
2773
2774 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
2775
2776 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
2777
2778 2011-08-31 Richard Stallman <rms@gnu.org>
2779
2780 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
2781 of the separation of rmail-view-buffer from rmail-buffer.
2782 If you say no to "replace original", the decrypt is in the
2783 view buffer. If you say yes, the decrypt goes into the
2784 rmail buffer also.
2785
2786 2011-08-31 Martin Rudalics <rudalics@gmx.at>
2787
2788 * window.el (display-buffer-window): Rewrite doc-string.
2789 (display-buffer-record-window): New function.
2790 (display-buffer-macro-specifiers)
2791 (display-buffer-even-window-sizes, display-buffer-set-height)
2792 (display-buffer-set-width, display-buffer-in-window)
2793 (display-buffer-reuse-window, display-buffer-split-specifiers)
2794 (display-buffer-side-specifiers, display-buffer-split-window-1)
2795 (display-buffer-split-window, display-buffer-split-atom-window)
2796 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
2797 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
2798 (display-buffer-other-window-means-other-frame)
2799 (display-buffer-normalize-special)
2800 (display-buffer-normalize-default)
2801 (display-buffer-normalize-argument)
2802 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
2803 (display-buffer-normalize-specifiers, display-buffer-frame)
2804 (display-buffer-same-window, display-buffer-same-frame)
2805 (display-buffer-other-window)
2806 (display-buffer-same-frame-other-window)
2807 (display-buffer-other-frame, pop-to-buffer-same-window)
2808 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
2809 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
2810 (switch-to-buffer-same-frame)
2811 (switch-to-buffer-other-window-same-frame)
2812 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
2813 (display-buffer-alist-set-1, display-buffer-alist-set-2)
2814 (display-buffer-alist-set): Remove.
2815 (display-buffer-function, special-display-buffer-names)
2816 (special-display-regexps, special-display-function):
2817 In doc-string refer to display-buffer-window and quit-restore
2818 parameter.
2819 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
2820 (special-display-frame-alist, special-display-popup-frame)
2821 (same-window-buffer-names, same-window-regexps, same-window-p)
2822 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
2823 (split-window-preferred-function, split-height-threshold)
2824 (split-width-threshold, window-splittable-p)
2825 (split-window-sensibly, window--try-to-split-window)
2826 (window--frame-usable-p, even-window-heights)
2827 (window--even-window-heights, window--display-buffer-1)
2828 (window--display-buffer-2, display-buffer-other-frame):
2829 Restore old Emacs 23 code, order and doc-strings where applicable.
2830 (display-buffer-default, display-buffer-assq-regexp): New functions.
2831 (display-buffer-alist): Rewrite doc-string.
2832 (display-buffer-default-action)
2833 (display-buffer-overriding-action): New variables.
2834 (display-buffer, switch-to-buffer): Rewrite.
2835 (pop-to-buffer): Restore Emacs 23 behavior but use
2836 window-normalize-buffer-to-display.
2837 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
2838 Restore Emacs 23 behavior but use
2839 window-normalize-buffer-to-switch-to.
2840 (pop-to-buffer-same-window): Rewrite.
2841 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
2842 Rewrite using Emacs 23 options.
2843
2844 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
2845
2846 * net/tramp.el (tramp-root-regexp): Remove.
2847 (tramp-completion-file-name-regexp-unified)
2848 (tramp-completion-file-name-regexp-separate)
2849 (tramp-completion-file-name-regexp-url): Don't use leading volume
2850 letter on win32 systems. (Bug#5303, Bug#9311)
2851 (tramp-drop-volume-letter): Simplify definition.
2852 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
2853
2854 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
2855
2856 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
2857 (bug#9356).
2858
2859 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
2860
2861 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
2862
2863 2011-08-29 Juri Linkov <juri@jurta.org>
2864
2865 * isearch.el (isearch-done): Don't display message "Mark saved"
2866 when arg `edit' is non-nil to prevent its flicker in the echo area.
2867
2868 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
2869
2870 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
2871 obsolete packages for deletion.
2872
2873 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
2874
2875 * help-mode.el (help-mode-map): Add special-mode-map to parent.
2876 (help-mode): Derive help-mode from special-mode. Don't invoke
2877 view-mode from help-mode.
2878 (help-xref-override-view-map): Remove.
2879 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
2880 view-mode is not used anymore.
2881
2882 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
2883
2884 * server.el (server-port): Doc fix.
2885
2886 * cus-theme.el (custom-theme-choose-mode): Inherit from
2887 special-mode (Bug#9124).
2888 (custom-theme-choose-mode-map): Add special-mode to parent.
2889
2890 2011-08-28 Alan Mackenzie <acm@muc.de>
2891
2892 * progmodes/cc-fonts.el
2893 (c-make-font-lock-BO-decl-search-function): New function.
2894 (c-basic-matchers-after - "Fontify the clauses after various
2895 keywords"): Extract the three keyword lists for the 3 erroneous
2896 constructs from the list of four, and use the new function above
2897 in place of an old one.
2898
2899 2011-08-28 Deniz Dogan <deniz@dogan.se>
2900
2901 * net/rcirc.el (rcirc-insert-prev-input)
2902 (rcirc-insert-next-input): Remove unused argument.
2903
2904 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2905
2906 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
2907
2908 2011-08-27 Alan Mackenzie <acm@muc.de>
2909
2910 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
2911 handle function pointer parameters properly.
2912
2913 2011-08-27 Martin Rudalics <rudalics@gmx.at>
2914
2915 * window.el (display-buffer-reuse-window): Fix case where
2916 selected window was reused with non-nil OTHER-WINDOW argument.
2917 (Bug#9381)
2918
2919 2011-08-27 Deniz Dogan <deniz@dogan.se>
2920
2921 * net/rcirc.el (rcirc-check-auth-status): Adding support for
2922 oftc's NickServ messages.
2923
2924 2011-08-27 Glenn Morris <rgm@gnu.org>
2925
2926 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
2927
2928 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
2929
2930 * emacs-lisp/package.el (package-install): Call package-initialize
2931 if called interactively.
2932
2933 2011-08-26 Leo Liu <sdl.web@gmail.com>
2934
2935 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
2936
2937 2011-08-25 Juri Linkov <juri@jurta.org>
2938
2939 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
2940 `search-whitespace-regexp' (bug#9364).
2941
2942 2011-08-25 Juri Linkov <juri@jurta.org>
2943
2944 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
2945 `regexp-search-ring' to their global values to protect from
2946 updating by `read-from-minibuffer' (bug#9185).
2947
2948 2011-08-25 Juri Linkov <juri@jurta.org>
2949
2950 * textmodes/ispell.el (ispell-command-loop): Add newline
2951 at the end of the "Use option `i'..." line.
2952
2953 2011-08-25 Juri Linkov <juri@jurta.org>
2954
2955 * battery.el (display-battery-mode): If `battery-status-function'
2956 or `battery-mode-line-format' is nil, display the message and set
2957 `display-battery-mode' to nil (bug#9363).
2958
2959 2011-08-25 Eli Zaretskii <eliz@gnu.org>
2960
2961 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
2962 bidi-string-mark-left-to-right; they are unnecessary now.
2963
2964 2011-08-25 Deniz Dogan <deniz@dogan.se>
2965
2966 * net/quickurl.el: Documentation typo fixes.
2967
2968 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
2969
2970 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
2971
2972 2011-08-25 Glenn Morris <rgm@gnu.org>
2973
2974 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
2975
2976 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
2977 (smtpmail-via-smtp): Handle nil response from smtp.
2978
2979 2011-08-24 Juri Linkov <juri@jurta.org>
2980
2981 * proced.el (proced-marked): Inherit from `error' instead of
2982 `font-lock-warning-face'.
2983
2984 * ibuffer.el (ibuffer-marked-face): Change default face from
2985 `font-lock-warning-face' to `warning'.
2986 (ibuffer-deletion-face): Change default face from
2987 `font-lock-type-face' to `error'.
2988
2989 * battery.el (battery-update): Use the face `error' instead of
2990 `font-lock-warning-face' (bug#6117).
2991
2992 2011-08-24 Juri Linkov <juri@jurta.org>
2993
2994 * faces.el (success): Change face color from "Green3" to
2995 "ForestGreen" on light background (bug#9353).
2996
2997 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
2998
2999 * window.el (quit-window): Rename from quit-restore-window.
3000 Use same arglist as old quit-window.
3001 (frame-auto-delete): Doc fix.
3002
3003 * view.el (view-mode-exit): Use quit-window.
3004
3005 2011-08-24 Juri Linkov <juri@jurta.org>
3006
3007 * isearch.el (isearch-ring-adjust1): Start visiting previous
3008 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
3009 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
3010 for empty search string (when the last search string is reused
3011 automatically) to adjust the isearch ring to the last element and
3012 prepare the correct index for further M-p commands (bug#9185).
3013
3014 2011-08-24 Kenichi Handa <handa@m17n.org>
3015
3016 * international/ucs-normalize.el: If decomposition property of
3017 CHAR is the default one (i.e. a list of CHAR itself), treat it as
3018 nil.
3019 (nfd, nfkd): Likewise.
3020
3021 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
3022
3023 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
3024 from process filters aren't reliably transmitted to the surrounding
3025 accept-process-output.
3026 (mpc-proc-check): New function.
3027 (mpc-proc-sync): Use it (bug#8293)
3028
3029 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
3030
3031 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
3032 Add compatibility functions (bug#9313).
3033
3034 2011-08-23 Eli Zaretskii <eliz@gnu.org>
3035
3036 * cus-start.el (all): Add entry for bidi-paragraph-direction.
3037
3038 * international/uni-bidi.el: Regenerated.
3039
3040 2011-08-23 Kenichi Handa <handa@m17n.org>
3041
3042 * international/charprop.el:
3043 * international/uni-bidi.el:
3044 * international/uni-category.el:
3045 * international/uni-combining.el:
3046 * international/uni-comment.el:
3047 * international/uni-decimal.el:
3048 * international/uni-decomposition.el:
3049 * international/uni-digit.el:
3050 * international/uni-lowercase.el:
3051 * international/uni-mirrored.el:
3052 * international/uni-name.el:
3053 * international/uni-numeric.el:
3054 * international/uni-old-name.el:
3055 * international/uni-titlecase.el:
3056 * international/uni-uppercase.el: Regenerate.
3057
3058 2011-08-23 Martin Rudalics <rudalics@gmx.at>
3059
3060 * help.el (help-window-setup): Fix message displayed when other
3061 window is reused. (Bug#9341)
3062
3063 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
3064
3065 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
3066 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
3067
3068 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
3069 Mark obsolete.
3070 * shell.el (shell-parse-pcomplete-arguments): New function.
3071 (shell-completion-vars): Use it instead (bug#9160).
3072
3073 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
3074
3075 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
3076 strings and comments (bug#9333).
3077
3078 * emacs-lisp/debug.el (debug-arglist): New function.
3079 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
3080 (debug-on-entry-1): Handle interpreted closures (bug#9120).
3081
3082 2011-08-22 Juri Linkov <juri@jurta.org>
3083
3084 * progmodes/compile.el (compilation-mode-font-lock-keywords):
3085 Revert regexp that highlights output switches to its old
3086 pre-2010-10-28 value and remove one `?' from it (bug#9319).
3087
3088 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
3089 to check for empty output (bug#9226).
3090
3091 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
3092
3093 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
3094 symbol-constituent as the default, as that stops font-lock from
3095 working properly (Bug#8843).
3096
3097 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3098
3099 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
3100 `coding-system-for-*' around the process open call to avoid
3101 auth-source side effects.
3102 (smtpmail-try-auth-methods): Expand the secret password.
3103 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
3104 probe hangs.
3105
3106 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
3107
3108 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
3109
3110 * emacs-lisp/find-func.el (find-function-noselect): New arg
3111 lisp-only.
3112
3113 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
3114 signal an error for built-in functions (Bug#6664).
3115
3116 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3117
3118 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
3119 (smtpmail-try-auth-methods): Use it.
3120
3121 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
3122
3123 * font-lock.el (font-lock-fontify-region)
3124 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
3125 (font-lock-default-unfontify-buffer)
3126 (font-lock-default-fontify-region)
3127 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
3128
3129 * progmodes/compile.el (compilation-error-properties):
3130 Fix confusion between file struct and message struct (Bug#9319).
3131 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
3132 `ant' regexp.
3133
3134 * net/browse-url.el (browse-url-firefox): Don't call
3135 browse-url-firefox-sentinel unless using -remote (Bug#9328).
3136
3137 2011-08-20 Glenn Morris <rgm@gnu.org>
3138
3139 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
3140
3141 * tutorial.el (tutorial--default-keys): Update some default bindings.
3142
3143 * files.el (hack-local-variables): Fully ignore case for "mode:".
3144
3145 2011-08-20 Alan Mackenzie <acm@muc.de>
3146
3147 Resolve invalid use of a regexp in regexp-opt.
3148
3149 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
3150 detection for a java annotation.
3151
3152 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
3153 detection for a java annotation.
3154
3155 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
3156 handling for java.
3157 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
3158
3159 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
3160
3161 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
3162 (Bug#9274).
3163
3164 2011-08-20 Alan Mackenzie <acm@muc.de>
3165
3166 Fontify CPP expressions correctly when starting in the middle of
3167 such a construct. Mainly for when jit-lock etc. starts a chunk
3168 here.
3169
3170 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
3171 variable.
3172 (c-make-font-lock-search-form): New function, extracted from
3173 c-make-font-lock-search-function.
3174 (c-make-font-lock-search-function): Use the above function.
3175 (c-make-font-lock-context-search-function): New function.
3176 (c-cpp-matchers): Enhance the preprocessor expression case with
3177 the above function
3178 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
3179 which takes an expression.
3180
3181 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
3182
3183 2011-08-20 Martin Rudalics <rudalics@gmx.at>
3184
3185 * window.el (display-buffer-reuse-window)
3186 (display-buffer-pop-up-window): Don't reuse or split a side
3187 window.
3188
3189 2011-08-19 Glenn Morris <rgm@gnu.org>
3190
3191 * files.el (hack-local-variables-prop-line, hack-local-variables):
3192 Downcase "Mode:". (Bug#9331)
3193
3194 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
3195
3196 * international/characters.el: Add L and R categories.
3197
3198 * subr.el (bidi-string-mark-left-to-right): Rename from
3199 string-mark-left-to-right. Use category search.
3200
3201 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
3202
3203 2011-08-18 Juri Linkov <juri@jurta.org>
3204
3205 * faces.el (error, warning, success): New faces with definitions
3206 copied from old default values of `font-lock-warning-face',
3207 `compilation-warning', `compilation-info' (bug#6117).
3208
3209 * font-lock.el (font-lock-warning-face): Inherit from `error'.
3210
3211 * progmodes/compile.el (compilation-error): Inherit from `error'.
3212 (compilation-warning): Inherit from `warning'.
3213 (compilation-info): Inherit from `success'.
3214
3215 * dired.el (dired-marked): Inherit from `warning'.
3216 (dired-flagged): Inherit from `error'.
3217
3218 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3219
3220 * mail/smtpmail.el (auth-source): Require to avoid problems with
3221 binding variables (bug#9298). Also clean up some unused
3222 autoloads.
3223
3224 * net/network-stream.el (network-stream-open-starttls):
3225 Support using starttls.el without using gnutls-cli.
3226
3227 2011-08-17 Juri Linkov <juri@jurta.org>
3228
3229 * progmodes/grep.el (rgrep): Handle the case when
3230 `grep-find-command' is a cons cell (bug#9278).
3231
3232 2011-08-17 Martin Rudalics <rudalics@gmx.at>
3233
3234 * window.el (display-buffer-pop-up-frame): Run frame creation
3235 function with BUFFER current (as special-display-popup-frame
3236 does). Reported by Drew Adams.
3237
3238 2011-08-17 Daiki Ueno <ueno@unixuser.org>
3239
3240 * epa-mail.el: Simplify GnuPG group expansion using
3241 epg-expand-group.
3242 (epa-mail-group-alist, epa-mail-group-modtime)
3243 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
3244 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
3245 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
3246 Remove.
3247
3248 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
3249
3250 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
3251
3252 2011-08-16 Alan Mackenzie <acm@muc.de>
3253
3254 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
3255 Correct, to avoid the inside of macros.
3256
3257 2011-08-16 Richard Stallman <rms@gnu.org>
3258
3259 * epa-mail.el: Handle GnuPG group definitions.
3260 (epa-mail-group-alist, epa-mail-group-modtime)
3261 (epa-mail-gnupg-conf-file): New variables.
3262 (epa-mail-parse-groups, epa-mail-sync-groups)
3263 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
3264 (epa-mail-expand-recipients): New functions.
3265 (epa-mail-encrypt): Call epa-mail-expand-recipients.
3266
3267 * mail/rmail.el (rmail-epa-decrypt): New command.
3268
3269 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
3270 Don't bind buffer-read-only, just inhibit-read-only.
3271 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
3272 (epa-decrypt-armor-in-region): Make error message clearer.
3273
3274 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3275
3276 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
3277 and "a2b" to "ab" for `prefix'.
3278
3279 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
3280
3281 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
3282 filter groups.
3283 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
3284 Fourquet (Bug#8804).
3285
3286 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
3287
3288 * startup.el (argi): Declare as global variable (bug#9275).
3289
3290 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
3291
3292 * subr.el (string-mark-left-to-right): Search the entire string
3293 for RTL script, not just the terminating character. Doc fix.
3294
3295 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
3296
3297 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
3298 New function.
3299 (js--regexp-literal, js-syntax-propertize-function): Remove.
3300 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
3301 (js-mode-map): Don't rebind electric keys.
3302 (js-insert-and-indent): Remove.
3303 (js-mode): Setup electric-layout and electric-indent instead.
3304
3305 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
3306
3307 2011-08-12 Daiki Ueno <ueno@unixuser.org>
3308
3309 * epa.el (epa-progress-callback-function): Fix the logic of
3310 displaying progress.
3311 * epa-file.el (epa-file-insert-file-contents): Make progress
3312 display more user-friendly.
3313 (epa-file-write-region): Ditto.
3314
3315 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
3316
3317 * subr.el (string-mark-left-to-right): New function.
3318
3319 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
3320 Use string-mark-left-to-right.
3321 (list-buffers-noselect): Caller changed.
3322
3323 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
3324 Use string-mark-left-to-right.
3325 (tabulated-list-print): Recenter after moving point.
3326
3327 2011-08-10 Juri Linkov <juri@jurta.org>
3328
3329 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
3330 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
3331 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
3332
3333 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
3334
3335 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
3336 (Bug#7554).
3337
3338 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
3339
3340 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
3341 character. (Bug#6594)
3342
3343 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
3344
3345 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
3346 (image-dired--with-db-file): New macro.
3347 (image-dired-write-tags, image-dired-remove-tag)
3348 (image-dired-create-gallery-lists, image-dired-write-comments)
3349 (image-dired-get-comment, image-dired-mark-tagged-files)
3350 (image-dired-list-tags, image-dired-gallery-generate): Use it.
3351 (image-dired-gallery-generate): Use insert-file-contents.
3352
3353 * time.el (display-time-world-list, display-time-world-display):
3354 * time-stamp.el (time-stamp-string):
3355 * vc/add-log.el (add-change-log-entry): Use setenv instead of
3356 set-time-zone-rule (Bug#7337).
3357
3358 2011-08-08 Daiki Ueno <ueno@unixuser.org>
3359
3360 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
3361 (epg-error-to-string, epg-errors-to-string): New function.
3362 (epg-wait-for-completion): Reverse errors list.
3363 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
3364 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
3365 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
3366 (epg-sign-keys, epg-generate-key-from-file)
3367 (epg-generate-key-from-string): Format errors by using
3368 epg-errors-to-string (bug#9255).
3369 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
3370
3371 2011-08-07 Juri Linkov <juri@jurta.org>
3372
3373 * faces.el (list-faces-display): Remove extra angle bracket
3374 from `help-mode-map'.
3375
3376 * info.el (Info-history-toc-nodes): Doc fix.
3377
3378 * longlines.el (longlines-mode): Doc fix.
3379
3380 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
3381
3382 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
3383 of statements and in a few more cases (bug#9183).
3384
3385 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
3386 New functions.
3387 (cl-transform-lambda): Use them (bug#9239).
3388
3389 2011-08-05 Martin Rudalics <rudalics@gmx.at>
3390
3391 * window.el (display-buffer-same-window)
3392 (display-buffer-same-frame, display-buffer-other-window)
3393 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
3394 (pop-to-buffer-other-window)
3395 (pop-to-buffer-same-frame-other-window)
3396 (pop-to-buffer-other-frame): Make them defuns.
3397 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
3398
3399 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3400
3401 * subr.el (make-composed-keymap): Move from C. Change calling
3402 convention, and improve docstring to bring attention to a subtle point.
3403 * minibuffer.el (completing-read-default): Adjust accordingly.
3404
3405 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
3406
3407 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
3408 (tramp-open-shell): Use `tramp-shell-quote-argument'.
3409
3410 * net/trampver.el: Update release number.
3411
3412 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3413
3414 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
3415 "in" (bug#9190).
3416
3417 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
3418
3419 * mail/sendmail.el (sendmail-query-once): Restore the current
3420 buffer after querying (bug#9074).
3421
3422 * dired.el (dired-flagged): Use different faces for marked and
3423 flagged files (bug#6117).
3424
3425 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
3426 (bug#4433).
3427
3428 * ido.el (ido-mode): Switch off the message if called
3429 non-interactively.
3430
3431 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
3432 before 587, since it appears that that's more likely to work for
3433 more people.
3434
3435 * cus-edit.el (custom-file): When running under emacs -q, always
3436 refuse to save the customizations, even if the .emacs file doesn't
3437 exist.
3438
3439 * info.el: Remove the `Info-beginning-of-buffer' function
3440 (bug#8325).
3441
3442 * net/network-stream.el (network-stream-open-starttls):
3443 Use `starttls-available-p' to see whether starttls.el can be used.
3444
3445 2011-08-01 Martin Rudalics <rudalics@gmx.at>
3446
3447 * window.el (display-buffer-in-window): Don't set dedicated status
3448 of window here (Bug#9215).
3449 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
3450 (display-buffer-pop-up-side-window)
3451 (display-buffer-in-side-window): Set dedicated status of window here.
3452
3453 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3454
3455 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
3456 before binding generated-autoload-file.
3457
3458 2011-08-01 Deniz Dogan <deniz@dogan.se>
3459
3460 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
3461
3462 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
3463
3464 Sync with Tramp 2.2.2.
3465
3466 * net/trampver.el: Update release number.
3467
3468 2011-07-30 Juri Linkov <juri@jurta.org>
3469
3470 * dired-aux.el (dired-touch-initial): Remove function.
3471 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
3472 current time, and `default' to the last modification time of the
3473 current marked file (bug#6887).
3474
3475 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
3476
3477 * simple.el (goto-line): Use string-to-number to provide a
3478 numeric argument to read-number (bug#9163).
3479
3480 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
3481
3482 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
3483 connection process, it could be nil.
3484
3485 2011-07-27 Leo Liu <sdl.web@gmail.com>
3486
3487 Simplify url handling in rcirc-mode.
3488
3489 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
3490 (rcirc-browse-url-at-mouse): Remove.
3491 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
3492
3493 2011-07-26 Alan Mackenzie <acm@muc.de>
3494
3495 Fontify bitfield declarations properly.
3496
3497 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
3498 (c-symbol-chars): Now exported as a lang variable.
3499 (c-not-primitive-type-keywords): New lang variable.
3500
3501 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
3502 QT keyword "more" to prevent "more slots: ...." being spuriously
3503 parsed as a bitfield declaration.
3504
3505 * progmodes/cc-engine.el (c-beginning-of-statement-1):
3506 Refactor and enhance to handle bitfield declarations.
3507 (c-punctuation-in): New function.
3508 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
3509 declarations properly.
3510
3511 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
3512
3513 * calendar/icalendar.el (icalendar--all-events): Take care of
3514 multiple vcalendars in a single file.
3515 (icalendar--convert-float-to-ical): Checkdoc fixes.
3516
3517 2011-07-25 Deniz Dogan <deniz@dogan.se>
3518
3519 * image.el (insert-image): Clarifying docstring.
3520
3521 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
3522
3523 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
3524 `tramp-send-command-and-check' if there is no error.
3525 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
3526
3527 2011-07-22 Alan Mackenzie <acm@muc.de>
3528
3529 Prevent cc-langs.elc being loaded at run time.
3530
3531 * progmodes/cc-mode.el: Remove two autoload forms which loaded
3532 cc-langs.
3533
3534 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
3535 "(require 'cc-langs)". Quote a form so it will evaluate at
3536 (cc-mode's) compilation time.
3537
3538 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
3539
3540 * net/tramp.el (tramp-file-name-handler): Avoid recursive
3541 loading. (Bug#9114)
3542
3543 2011-07-21 Martin Rudalics <rudalics@gmx.at>
3544
3545 * window.el (display-buffer-pop-up-window)
3546 (display-buffer-pop-up-side-window)
3547 (display-buffer-in-side-window): Call display-buffer-set-height
3548 and display-buffer-set-width after setting the new window's
3549 buffer so `fit-window-to-buffer' and friends work on the right buffer.
3550
3551 2011-07-20 Sam Steingold <sds@gnu.org>
3552
3553 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
3554 (etags-tags-included-tables): Call `convert-standard-filename' on
3555 the file names contained in TAGS so that windows Emacs can handle
3556 TAGS files created by cygwin ctags.
3557
3558 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
3559
3560 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
3561 which apparently didn't work.
3562
3563 2011-07-19 Roland Winkler <winkler@gnu.org>
3564
3565 * proced.el (proced-send-signal): For *Marked Processes* buffer
3566 put point at beginning of buffer.
3567
3568 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
3569
3570 * proced.el (proced-format): Make header lines align with the text
3571 (bug#1779).
3572
3573 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3574
3575 * view.el (view-buffer): Allow running in `special' modes if we're
3576 visiting a file (bug#8615).
3577
3578 2011-07-19 Martin Rudalics <rudalics@gmx.at>
3579
3580 * window.el (display-buffer-alist-of-strings-p)
3581 (display-buffer-alist-set-1, display-buffer-alist-set-2):
3582 New functions.
3583 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
3584 more accurately.
3585
3586 2011-07-18 Alan Mackenzie <acm@muc.de>
3587
3588 Fontify declarators properly when, e.g., a jit-lock chunk begins
3589 inside a declaration.
3590
3591 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
3592
3593 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
3594 New function.
3595 (c-complex-decl-matchers): Insert reference to
3596 c-font-lock-enclosing-decls.
3597
3598 * progmodes/cc-engine.el (c-backward-single-comment):
3599 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
3600 to nil around calls to (forward-comment -1).
3601
3602 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3603
3604 * image.el (put-image): Doc typo fix.
3605
3606 * progmodes/etags.el (tags-search): Doc typo fix.
3607
3608 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
3609 password if we get errors 550 to 554.
3610
3611 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
3612
3613 * net/gnutls.el (gnutls-log-level): Remove.
3614
3615 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
3616 indentation character (bug#6380).
3617
3618 * files.el (buffer-offer-save): Made permanently local (bug#6241).
3619
3620 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
3621 to clarify what the problem is (bug#4291).
3622
3623 * simple.el (current-kill): Clarify what
3624 `interprogram-paste-function' does (bug#7500).
3625 (auto-fill-mode): Document `auto-fill-function' in relation to
3626 `auto-fill-mode' (bug#2470).
3627
3628 2011-07-16 Lawrence Mitchell <wence@gmx.li>
3629
3630 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
3631 method if slot is read-only (bug#9035).
3632
3633 2011-07-16 Martin Rudalics <rudalics@gmx.at>
3634
3635 * frame.el (select-frame-set-input-focus): New argument NORECORD.
3636 * window.el (pop-to-buffer): Select window used even if it was
3637 selected before, see discussion of (Bug#8615), (Bug#6954).
3638 Pass argument NORECORD on to select-frame-set-input-focus.
3639
3640 2011-07-15 Glenn Morris <rgm@gnu.org>
3641
3642 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
3643 Respect help-form.
3644
3645 2011-07-09 Lawrence Mitchell <wence@gmx.li>
3646
3647 * net/gnutls.el (gnutls-min-prime-bits): New variable.
3648 (gnutls-negotiate): Use it.
3649
3650 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
3651
3652 * net/gnutls.el (gnutls-negotiate):
3653 Upcase `gnutls-algorithm-priority'.
3654
3655 2011-07-15 Glenn Morris <rgm@gnu.org>
3656
3657 * jka-compr.el (jka-compr-verbose): Move from here...
3658 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
3659 Add missing :version tag.
3660 * info.el: No need to require jka-compr when compiling.
3661
3662 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
3663
3664 * net/gnutls.el (gnutls-algorithm-priority): New variable.
3665 (gnutls-negotiate): Use it.
3666
3667 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
3668
3669 * info.el (Info-beginning-of-buffer): New command.
3670 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
3671 announcing `b' as the key (bug#8325).
3672 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
3673
3674 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
3675
3676 * international/mule-cmds.el
3677 (describe-specified-language-support): Make the error message
3678 clearer (bug#8905).
3679
3680 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
3681
3682 * isearch.el (isearch-barrier): Add a doc string, since it's
3683 mentioned in a function doc string (bug#8678).
3684
3685 2011-07-15 Martin Rudalics <rudalics@gmx.at>
3686
3687 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
3688 buffer argument (Bug#9083) and self-identifying label argument.
3689
3690 2011-07-15 Glenn Morris <rgm@gnu.org>
3691
3692 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
3693
3694 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3695
3696 * man.el (Man-fontify-manpage): Fix message when formatting the
3697 man page (bug#7929).
3698
3699 2011-07-14 Eli Zaretskii <eliz@gnu.org>
3700
3701 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
3702 argument LRM; if non-nil, append an invisible LRM character to the
3703 buffer name.
3704 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
3705 last argument non-nil, when formatting buffer names.
3706 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
3707 paragraph direction.
3708
3709 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3710
3711 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
3712 the man page name (bug#7929).
3713
3714 * image.el (put-image): Mention the `put-image' overlay property
3715 (bug#7834).
3716
3717 * scroll-bar.el (set-scroll-bar-mode): Mention that
3718 `scroll-bar-mode' lists the values (bug#7772).
3719
3720 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
3721 command (bug#7729).
3722
3723 * rect.el (apply-on-rectangle): Return the point after the last
3724 operation.
3725 (string-rectangle): Go to the point after the last operation
3726 (bug#7522).
3727
3728 * printing.el (pr-toggle-region): Clarify the documentation
3729 slightly (bug#7493).
3730
3731 * time.el (display-time-update):
3732 Allow `display-time-mail-function' to return nil (bug#7158).
3733 Fix suggested by Detlev Zundel.
3734
3735 * vc/diff.el (diff): Clarify the order the file names are read
3736 (bug#7111).
3737
3738 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
3739 the doc string (bug#7015).
3740
3741 * font-lock.el (font-lock-maximum-decoration): Mention what
3742 numeric levels mean (bug#6935).
3743
3744 * startup.el (initial-buffer-choice): Don't mention the `none'
3745 selection, which is against policy.
3746
3747 2011-07-14 Martin Rudalics <rudalics@gmx.at>
3748
3749 * window.el (display-buffer-normalize-special):
3750 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
3751
3752 2011-07-14 Eli Zaretskii <eliz@gnu.org>
3753
3754 * subr.el (version<, version<=, version=): Mention "-CVS" and
3755 "-12345" alpha version numbers.
3756
3757 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
3758
3759 * bindings.el: Add advertised binding for set-mark-command
3760 (Bug#5772).
3761
3762 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
3763
3764 * bindings.el (mode-line-other-buffer):
3765 * bookmark.el (bookmark-bmenu-2-window):
3766 * bs.el (bs-cycle-next, bs-cycle-previous):
3767 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
3768 switch-to-buffer.
3769
3770 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
3771 Delete.
3772
3773 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
3774
3775 * follow.el (follow-debug-message, follow-redisplay):
3776 * jka-cmpr-hook.el (with-auto-compression-mode):
3777 Fix typos in docstrings.
3778
3779 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3780
3781 * subr.el (with-silent-modifications): Clarify somewhat what the
3782 macro inhibits (bug#6525).
3783
3784 * simple.el (eval-expression): Note what it does if called
3785 interactively (bug#6495).
3786
3787 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
3788
3789 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
3790 Use pop-to-buffer buffer-or-name if it is nil.
3791
3792 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
3793 Remove switch-to-buffer.
3794
3795 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3796
3797 * files.el (make-directory): Clarify that an error will be raised
3798 if there's an error (bug#6397).
3799
3800 * startup.el (initial-buffer-choice): Add `none' as a choice
3801 (bug#6234).
3802
3803 * subr.el (add-hook): Clarify section about buffer-local hooks
3804 (bug#6218).
3805
3806 * dired.el (dired-flagged): Clarify doc string (bug#6117).
3807
3808 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
3809
3810 * tabify.el (untabify): Preserve the current column so that point
3811 doesn't move (bug#6032).
3812
3813 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3814
3815 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
3816 Rewrite to avoid awkward possessive "s" (bug#5986).
3817
3818 2011-07-13 Glenn Morris <rgm@gnu.org>
3819
3820 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
3821 (dired-insert-directory): Give a message the first time
3822 if ls is found not to support --dired.
3823
3824 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3825
3826 * simple.el (toggle-truncate-lines): Clarify what is toggled
3827 (bug#5580). Text by Drew Adams.
3828
3829 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
3830
3831 * simple.el (blink-matching-open): Make the error message from the
3832 last change less verbose.
3833
3834 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
3835
3836 * font-lock.el (font-lock-comment-face): Use the high contrast
3837 "yellow" color for font-lock-comment-face on low color terminals
3838 using a dark background color (bug#4221).
3839
3840 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3841
3842 * dired.el (dired-insert-set-properties): Make the doc string
3843 reflect what it does now (bug#5325).
3844
3845 * simple.el (blink-matching-open): Say that we were unable to find
3846 the match within the limit, if we're limited (bug#5122).
3847
3848 * international/mule-cmds.el (prefer-coding-system): Add an
3849 example (bug#4869).
3850
3851 * progmodes/etags.el (tags-search): Document `file-list-form'
3852 (bug#4731).
3853
3854 2011-07-13 Lawrence Mitchell <wence@gmx.li>
3855
3856 * net/browse-url.el (browse-url-default-browser)
3857 (browse-url-browser-function): Make the default browser choice a
3858 bit more logical (bug#4300). Also clean up the doc string.
3859
3860 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
3861
3862 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
3863 binary endings (bug#4440).
3864
3865 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3866
3867 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
3868 which can be pretty annoying (bug#8971).
3869
3870 * jka-compr.el (jka-compr-verbose): New variable, and use
3871 throughout (bug#8971).
3872
3873 * info.el (Info-find-file): Fall back on the installation
3874 directory if we can't find the info node anywhere else.
3875
3876 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
3877
3878 * vc/vc.el (vc-revert-file):
3879 Don't set file time-stamp in the past. (Bug#5181)
3880
3881 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
3882
3883 * files.el (after-find-file): Give a better error message when
3884 trying to find a symlink that points to a file that doesn't exist
3885 (bug#4398).
3886
3887 * progmodes/cc-vars.el: Remove (probably) misleading comment
3888 (bug#4396).
3889
3890 2011-07-12 Johan Bockgård <bojohan@gnu.org>
3891
3892 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
3893
3894 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
3895
3896 * mouse-sel.el: Hack restoring functionality, while keeping
3897 compatibility with 2010-07-03 changes to mouse selection.
3898 (mouse-sel-primary-overlay): New var.
3899 (mouse-sel-selection-alist): Use it.
3900 (mouse-sel-mode): Doc fix; remove points that are default features
3901 of mouse.el.
3902
3903 2011-07-12 Johan Bockgård <bojohan@gnu.org>
3904
3905 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3906 Fix previous fix (bug#2490).
3907
3908 2011-07-12 Roland Winkler <winkler@gnu.org>
3909
3910 * textmodes/bibtex.el (bibtex-initialize):
3911 Use pop-to-buffer-same-window.
3912 (bibtex-search-entries): Fix interactive call.
3913
3914 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
3915
3916 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3917 Fontise bytecomp Error lines more correctly (bug#2490).
3918 Fix suggested by Johan Bockgård.
3919
3920 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
3921
3922 * dired-x.el (dired-guess-default): Use `delete-dups'.
3923
3924 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
3925
3926 * dired.el (dired-mark-prompt):
3927 * dired-aux.el (dired-read-shell-command): Doc fix.
3928
3929 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3930
3931 * mail/sendmail.el (sendmail-query-once):
3932 Use `customize-save-variable' unconditionally, now that it works under
3933 emacs -Q.
3934
3935 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
3936
3937 * cus-edit.el (custom-file): Take an optional no-error variable.
3938 (customize-save-variable): Set the variable, and give a warning if
3939 running under "emacs -q".
3940
3941 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
3942
3943 * loadhist.el (unload-feature-special-hooks):
3944 Add `auto-coding-functions', `fill-nobreak-predicate' and
3945 `find-directory-functions' (bug#5327).
3946
3947 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3948
3949 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
3950
3951 * cus-edit.el (custom-guess-name-alist): -alist variables should
3952 use the `alist' type (bug#3120). Suggested by Drew Adams.
3953
3954 * printing.el: Add documentation to all the `pr-toggle-' commands.
3955
3956 2011-07-11 Leo <sdl.web@gmail.com> (tiny change)
3957
3958 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
3959 backends where it makes sense (bug#2623).
3960
3961 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3962
3963 * dired-x.el (dired-guess-default): Remove duplicate shell command
3964 entries (bug#2028).
3965 (dired-guess-default): Fix grammar in doc string (bug#2028).
3966 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
3967
3968 * subr.el (remove-duplicates): New conveniency function.
3969
3970 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3971
3972 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
3973 (bug#1526).
3974
3975 2011-07-10 Martin Rudalics <rudalics@gmx.at>
3976
3977 * window.el (display-buffer-normalize-default): Don't invert
3978 meaning of even-window-heights. Reported by Eli Zaretskii
3979 <eliz@gnu.org>.
3980
3981 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
3982
3983 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
3984
3985 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
3986
3987 * window.el (display-buffer): Fix arguments to
3988 display-buffer-reuse-window in last change.
3989
3990 * faces.el (link): Use a less saturated blue on light backgrounds.
3991
3992 * startup.el (fancy-startup-text, fancy-about-text)
3993 (fancy-startup-tail): Use font-lock faces, for background safety.
3994
3995 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
3996
3997 * emulation/viper-cmd.el (viper-change-state-to-vi):
3998 Limit triggering of abbrev expansion (Bug#9038).
3999
4000 2011-07-09 Martin Rudalics <rudalics@gmx.at>
4001
4002 * window.el (display-buffer-default-specifiers): Remove.
4003 (display-buffer-macro-specifiers): Remove default specifiers.
4004 (display-buffer-alist): Default to nil.
4005 (display-buffer-reuse-window): New optional argument other-window.
4006 (display-buffer-pop-up-window): Allow splitting internal
4007 windows. Check whether a live window was created.
4008 (display-buffer-other-window-means-other-frame)
4009 (display-buffer-normalize-arguments): Rename to
4010 display-buffer-normalize-argument and rewrite. Set the
4011 other-window specifier.
4012 (display-buffer-normalize-special): New function.
4013 (display-buffer-normalize-options): Rename to
4014 display-buffer-normalize-default and rewrite.
4015 (display-buffer-normalize-options-inhibit): Remove.
4016 (display-buffer-normalize-specifiers): Rewrite.
4017 (display-buffer): Process other-window specifier and call
4018 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
4019 more faithfully.
4020 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4021 (display-buffer-alist-set): Don't handle 'unset default values.
4022 (display-buffer-in-window, display-buffer-alist-set):
4023 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4024 <tassilo@member.fsf.org>.
4025
4026 2011-07-09 Leo Liu <sdl.web@gmail.com>
4027
4028 * register.el (insert-register): Restore accidental change on
4029 2011-06-26. (Bug#9028)
4030
4031 2011-07-09 Glenn Morris <rgm@gnu.org>
4032
4033 * subr.el (remq): Handle the empty list. (Bug#9024)
4034
4035 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
4036
4037 * mail/sendmail.el (send-mail-function): No longer delay custom
4038 initialization.
4039 * custom.el (custom-initialize-delay): Doc fix.
4040
4041 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4042
4043 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
4044
4045 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
4046
4047 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
4048 human-friendly prompt.
4049
4050 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4051
4052 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
4053 provided by a particular plugin.
4054
4055 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4056
4057 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
4058 save customizations (with "emacs -Q"), just set the variable
4059 instead of erroring out.
4060
4061 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
4062
4063 2011-07-08 Juri Linkov <juri@jurta.org>
4064
4065 * arc-mode.el (archive-zip-expunge, archive-zip-update)
4066 (archive-zip-update-case): Use 7z if found by `executable-find'.
4067 The order of searching the available programs is the same as in
4068 `archive-zip-extract' (bug#8968).
4069
4070 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
4071
4072 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
4073 (menu-bar-options-menu): Tweak descriptions.
4074
4075 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4076
4077 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
4078 menu items into verb phrases (bug#1421). Also refill to fit under
4079 80 columns.
4080
4081 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
4082
4083 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
4084 (Info-read-node-name): Doc fix (Bug#1084).
4085
4086 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
4087 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
4088 (end-of-sexp, beginning-of-sexp)
4089 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
4090 (forward-symbol, forward-same-syntax, word-at-point)
4091 (sentence-at-point): Doc fix (Bug#1144).
4092
4093 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4094
4095 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
4096 should cover it (bug#1281).
4097
4098 * cus-edit.el (custom-show): Mark as obsolete.
4099
4100 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
4101 negotiation fails, then possibly try again with a non-encrypted
4102 connection (bug#9017).
4103
4104 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
4105 be used.
4106
4107 2011-07-07 Richard Stallman <rms@gnu.org>
4108
4109 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
4110 property, and handle its changed format.
4111 Look for the correct line number.
4112 Use file's line contents (but not past first =) to find
4113 correct line in message.
4114
4115 2011-07-07 Kenichi Handa <handa@m17n.org>
4116
4117 * international/characters.el (build-unicode-category-table):
4118 Delete it.
4119 (unicode-category-table): Set it by unicode-property-table-internal.
4120
4121 * international/mule-cmds.el (char-code-property-alist): Move to
4122 to src/chartab.c.
4123 (get-char-code-property): Call unicode-property-table-internal to
4124 load a file. Call get-unicode-property-internal where necessary.
4125 (put-char-code-property): Call unicode-property-table-internal to
4126 load a file. Call put-unicode-property-internal where necessary.
4127 put-unicode-property-internal where necessary.
4128 (char-code-property-description):
4129 Call unicode-property-table-internal to load a file.
4130
4131 * international/charprop.el:
4132 * international/uni-bidi.el:
4133 * international/uni-category.el:
4134 * international/uni-combining.el:
4135 * international/uni-comment.el:
4136 * international/uni-decimal.el:
4137 * international/uni-decomposition.el:
4138 * international/uni-digit.el:
4139 * international/uni-lowercase.el:
4140 * international/uni-mirrored.el:
4141 * international/uni-name.el:
4142 * international/uni-numeric.el:
4143 * international/uni-old-name.el:
4144 * international/uni-titlecase.el:
4145 * international/uni-uppercase.el: Regenerate.
4146
4147 * loadup.el: Load international/charprop.el before
4148 international/characters.
4149
4150 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
4151
4152 * window.el (next-buffer, previous-buffer): Signal an error if
4153 called from a minibuffer window.
4154
4155 * bindings.el: Revert 2011-07-04 change.
4156
4157 2011-07-06 Richard Stallman <rms@gnu.org>
4158
4159 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
4160 (rmail-mime-insert-bulk, rmail-mime-insert-text):
4161 Treat markers like ints.
4162 (rmail-mime-entity): Doc fix.
4163
4164 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
4165
4166 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
4167 defcustom again for backwards compatibility.
4168
4169 * simple.el (shell-command-on-region): Fill.
4170
4171 * dired-aux.el (dired-kill-line): Add a doc string.
4172
4173 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
4174 to "\\sw\\|\\s_" (bug#358).
4175
4176 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
4177 (dired-unmark-backward): Ditto.
4178 (dired-flag-backup-files): Ditto.
4179
4180 * dired-x.el (dired-mark-sexp): Ditto.
4181
4182 2011-07-06 Richard Stallman <rms@gnu.org>
4183
4184 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
4185 (rmail-mime-entity): New arg TRUNCATED.
4186 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
4187 New functions.
4188 (rmail-mime-save): Warn if entity is truncated.
4189 (rmail-mime-toggle-hidden): Likewise, for showing.
4190 (rmail-mime-process-multipart): Record when an entity is truncated.
4191
4192 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
4193 if ENTITY is a string.
4194
4195 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
4196
4197 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
4198 of faces when `M-C-x'-ing their definitions (bug#8378).
4199 Also clean up the code slightly.
4200
4201 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
4202 because that makes the colors go away.
4203
4204 * mail/sendmail.el (send-mail-function): Change the default to
4205 `sendmail-query-once'.
4206 (sendmail-query-once): Add an autoload cookie.
4207
4208 * net/network-stream.el (network-stream-open-starttls): Try using
4209 a plain connection even if the server offered STARTTLS, and we
4210 kinda wanted to use it, if Emacs doesn't have any STARTTLS
4211 capability. This should make smtpmail.el work in slightly more
4212 configurations.
4213
4214 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
4215
4216 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
4217 New defun.
4218 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
4219
4220 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
4221
4222 * progmodes/sql.el: Version 3.0
4223 (sql-product-alist): Add product :completion-object,
4224 :completion-column, and :statement attributes.
4225 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
4226 (sql-mode-syntax-table): Mark all punctuation.
4227 (sql-font-lock-keywords-builder): Temporarily remove fallback on
4228 ansi keywords.
4229 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
4230 (sql-mode-oracle-font-lock-keywords): Improve.
4231 (sql-oracle-show-reserved-words): New function for development.
4232 (sql-product-font-lock): Simplify for source code buffers.
4233 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
4234 New functions.
4235 (sql-highlight-product): Set product specific syntax table.
4236 (sql-mode-map): Add statement movement functions.
4237 (sql-ansi-statement-starters, sql-oracle-statement-starters):
4238 New variable.
4239 (sql-statement-regexp, sql-beginning-of-statement)
4240 (sql-end-of-statement, sql-signum): New functions.
4241 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
4242 (sql-show-sqli-buffer): Bug fix.
4243 (sql-interactive-mode): Store connection data as buffer local.
4244 (sql-connect): Add NEW-NAME parameter. Redesign interaction
4245 with sql-interactive-mode.
4246 (sql-save-connection): Save buffer local settings.
4247 (sql-connection-menu-filter): Change menu entry name.
4248 (sql-product-interactive): Bug fix.
4249 (sql-preoutput-hold): New variable.
4250 (sql-interactive-remove-continuation-prompt): Bug fixes.
4251 (sql-debug-redirect): New variable.
4252 (sql-str-literal): New function.
4253 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
4254 Redesign.
4255 (sql-oracle-save-settings, sql-oracle-restore-settings)
4256 (sql-oracle-list-all, sql-oracle-list-table): New functions.
4257 (sql-completion-object, sql-completion-column)
4258 (sql-completion-sqlbuf): New variables.
4259 (sql-build-completions-1, sql-build-completions)
4260 (sql-try-completion): New functions.
4261 (sql-read-table-name): Use them.
4262 (sql-contains-names): New buffer local variable.
4263 (sql-list-all, sql-list-table): Use it.
4264 (sql-oracle-completion-types): New variable.
4265 (sql-oracle-completion-object, sql-sqlite-completion-object)
4266 (sql-postgres-completion-object): New functions.
4267
4268 2011-07-06 Glenn Morris <rgm@gnu.org>
4269
4270 * window.el (pop-to-buffer): Doc fix.
4271
4272 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
4273
4274 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
4275
4276 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
4277
4278 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4279
4280 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
4281
4282 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
4283
4284 * button.el (button): Inherit from link face. Suggested by Dan
4285 Nicolaescu.
4286
4287 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4288
4289 * progmodes/gdb-mi.el: Fit in 80 columns.
4290 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
4291 switch-to-buffer.
4292
4293 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
4294 if imenu is simply not configured (bug#8941).
4295
4296 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
4297
4298 * allout.el (allout-post-undo-hook): New allout outline-change
4299 event hook to signal undo activity.
4300 (allout-post-command-business): Run allout-post-undo-hook if an
4301 undo just occurred.
4302 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
4303 * allout-widgets.el (allout-widgets-after-undo-function):
4304 Ensure the integrity of the current item's decoration after it has been
4305 in the vicinity of an undo.
4306 (allout-widgets-mode): Include allout-widgets-after-undo-function
4307 on the new allout-post-undo-hook.
4308
4309 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4310
4311 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
4312 Let define-derived-mode define it.
4313 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
4314 cycles of abbrev-table inheritance (bug#8998).
4315
4316 2011-07-05 Roland Winkler <winkler@gnu.org>
4317
4318 * textmodes/bibtex.el: Add support for biblatex.
4319 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
4320 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
4321 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
4322 (bibtex-entry-alist, bibtex-field-alist): New variables.
4323 (bibtex-entry-field-alist): Obsolete alias for
4324 bibtex-BibTeX-entry-alist.
4325 (bibtex-entry-alist, bibtex-field-alist): New widgets.
4326 (bibtex-set-dialect): New command.
4327 (bibtex-entry-type, bibtex-entry-head)
4328 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
4329 Bind via bibtex-set-dialect.
4330 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
4331 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
4332 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
4333 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
4334 Define via bibtex-set-dialect.
4335 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
4336 Obey bibtex-no-opt-remove-re.
4337 (bibtex-vec-push, bibtex-vec-incr): New functions.
4338 (bibtex-format-entry, bibtex-field-list)
4339 (bibtex-print-help-message, bibtex-validate)
4340 (bibtex-search-entries): Use new format of bibtex-entry-alist.
4341
4342 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
4343
4344 * progmodes/compile.el (compilation-goto-locus):
4345 * net/tramp-cmds.el (tramp-append-tramp-buffers):
4346 * bs.el (bs-cycle-next, bs-cycle-previous):
4347 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
4348 * bindings.el (mode-line-other-buffer):
4349 * autoinsert.el (auto-insert):
4350 * arc-mode.el (archive-extract):
4351 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
4352
4353 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
4354
4355 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
4356 Fix check of `emacs-lock-unlockable-modes'.
4357 Coerce true values of `emacs-lock--try-unlocking' to t.
4358
4359 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
4360
4361 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
4362 * emacs-lock.el: New file.
4363
4364 2011-07-05 Julien Danjou <julien@danjou.info>
4365
4366 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
4367 than `boundp' to check if face is set.
4368
4369 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
4370
4371 * register.el (registerv-make):
4372 * window.el (window-min-height): Fix typos in docstrings.
4373
4374 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
4375
4376 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
4377 Update doc string.
4378
4379 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
4380
4381 * server.el (server-execute): Catch quit and call
4382 `server-return-error' to pass the error back to emacsclient and
4383 close the connection (bug#8942).
4384
4385 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
4386
4387 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
4388 insecure exception for current topic. Also note that auto-saves
4389 are handled differently.
4390
4391 (allout-auto-save-temporarily-disabled), (allout-just-did-undo):
4392 State variables for tracking auto-save inhibition situation.
4393
4394 (allout-write-contents-hook-handler): Rename from
4395 'allout-write-file-hook-handler', and describe how it depends on
4396 write-contents-functions sensitivity to non-nil value to prevent
4397 file write.
4398
4399 (allout-auto-save-hook-handler): Remove. auto-save does not check
4400 this in individual buffers, only in the starting buffer, so this
4401 is not the right way for us to inhibit auto-save in a buffer
4402 according to its condition.
4403
4404 (allout-mode): Use new allout-write-contents-hook-handler, and
4405 only with write-contents-functions. Remove auto-save provisions -
4406 they're implemented elsewhere.
4407
4408 (allout-before-change-handler): If undo is in progress, note that
4409 for attention of allout-post-command-business.
4410
4411 (allout-post-command-business): If the command we're following was
4412 an undo, check for change in the status of encrypted items and
4413 adjust auto-save inhibitions accordingly.
4414
4415 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
4416 according to whether there are or aren't any plain-text topics
4417 pending encryption.
4418
4419 (allout-inhibit-auto-save-info-for-decryption):
4420 Adjust buffer-saved-size and some allout state to inhibit auto-saves if
4421 there are plain-text topics pending encryption.
4422
4423 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
4424 buffer-saved-size and some allout state to not inhibit auto-saves
4425 if there are no longer any plain-text topics pending encryption.
4426
4427 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
4428 No longer provide for exemption of the current topic.
4429
4430 2011-07-04 Juri Linkov <juri@jurta.org>
4431
4432 Add 7z operations to delete and save changed members (bug#8968).
4433 * arc-mode.el (archive-7z-expunge, archive-7z-update):
4434 New defcustoms.
4435 (archive-7z-write-file-member): New function.
4436 (archive-7z-summarize): Fix the number of dashes in the
4437 listing output.
4438
4439 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
4440
4441 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
4442 (bug#8958).
4443
4444 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
4445
4446 * bindings.el: Ignore next-buffer and previous-buffer in
4447 minibuffer-local-map.
4448
4449 * font-lock.el (font-lock-builtin-face): Change light background
4450 color to dark slate blue (Bug#6693).
4451
4452 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
4453
4454 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
4455
4456 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
4457
4458 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
4459 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4460 Add switch-to-buffer.
4461
4462 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4463
4464 * isearch.el (isearch-search-fun-function): Clarify further the
4465 meaning of the function returned.
4466
4467 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
4468
4469 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
4470
4471 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
4472 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
4473 Use it.
4474 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
4475 `tramp-default-remote-path' does not exist.
4476 (tramp-send-command-and-read): New optional argument NOERROR.
4477 (tramp-open-connection-setup-interactive-shell)
4478 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
4479 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
4480 (tramp-process-sentinel): Flush also process' connection property.
4481 (tramp-sh-handle-start-file-process): Do not set process
4482 sentinel. It is done now ...
4483 (tramp-maybe-open-connection): ... here. (Bug#8929)
4484
4485 2011-07-04 MON KEY <monkey@sandpframing.com>
4486
4487 * play/animate.el (animate-string): Doc fixes and allow changing
4488 the buffer name (bug#5417).
4489
4490 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4491
4492 * play/animate.el (animation-buffer-name): Rename from *animate*.
4493
4494 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
4495
4496 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
4497 This is simpler and helps future-proof the code.
4498 (timer-until): Use time-subtract and float-time.
4499 (timer--time-less-p): Use time-less-p.
4500
4501 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
4502
4503 * type-break.el (timep): Use the value of `float-time' to avoid a
4504 byte-compiler warning.
4505
4506 * server.el (server-eval-and-print): Return any result, even nil.
4507
4508 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
4509
4510 * type-break.el: Accept time formats that the builtins accept.
4511 (timep, type-break-time-difference): Accept any format that
4512 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
4513 This is simpler and helps future-proof the code.
4514 (type-break-time-difference): Round rather than ignoring
4515 subseconds components.
4516
4517 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4518
4519 * info.el (Info-apropos-matches): Make non-interactive, since it
4520 doesn't seem to do anything useful as a command (bug#8829).
4521
4522 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
4523
4524 * frame.el (frame-background-mode, frame-set-background-mode):
4525 Move from faces.el.
4526 (frame-default-terminal-background): New function.
4527
4528 * custom.el (custom-push-theme): Don't record faces in `changed'
4529 theme; this doesn't work correctly for per-frame face settings.
4530 (disable-theme): Use face-set-after-frame-default to reset faces.
4531 (custom--frame-color-default): New function.
4532
4533 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4534
4535 * dired.el (dired-flagging-regexp): Remove unused variable
4536 (bug#8769).
4537
4538 2011-03-29 Kevin Ryde <user42@zip.com.au>
4539
4540 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4541 `perl-Test2' extend to match possible "fail #N" rep count
4542 (bug#8377).
4543
4544 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4545
4546 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
4547 `smtpmail-via-smtp' now returns the error instead of nil.
4548
4549 * isearch.el (isearch-search-fun-function): Clarify the doc string
4550 (bug#8101).
4551
4552 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
4553
4554 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
4555 unnecessary spaces (bug#8987).
4556
4557 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4558
4559 * net/network-stream.el (open-network-stream): Use the
4560 :end-of-capability command thoughout.
4561
4562 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
4563
4564 * net/network-stream.el (open-network-stream): Add the
4565 :end-of-capability command parameter, used by pop3.el.
4566
4567 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4568
4569 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
4570
4571 * fringe.el (fringe-query-style): Remove redundant text " (type ?
4572 for list)" (bug#6475).
4573
4574 * files.el (file-expand-wildcards): Ignore non-readable
4575 sub-directories while trying to find matches instead of signaling
4576 an error (bug#6297).
4577
4578 * man.el (Man-reference-regexp): Allow matching possible
4579 word-wrapped references (bug#6289).
4580
4581 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
4582 for consistency with the other vc buffers (bug#6197).
4583 (vc-checkin): Ditto.
4584
4585 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
4586
4587 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
4588
4589 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4590
4591 * custom.el (defcustom): Clarify that :set is only used in the
4592 Customize user interface (bug#6089).
4593
4594 * progmodes/flymake.el (flymake-mode): If the buffer isn't
4595 associated with a file, refuse to run instead of erroring out
4596 (bug#6084).
4597
4598 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
4599 the doc string, since it appears that using `fill-column' always
4600 controls the width (bug#7845).
4601
4602 * simple.el (shell-command-on-region): Say where the error output
4603 went if `shell-command-default-error-buffer' is set (bug#6857).
4604
4605 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
4606
4607 * allout.el (allout-yank-processing): Adjust cursor position for
4608 backwards-deleted space.
4609
4610 (allout-rebullet-heading): Register changes with
4611 allout-exposure-changed-hook, so the modified topic is properly
4612 decorated.
4613
4614 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4615
4616 * minibuffer.el (completion-in-region): Document PREDICATE
4617 (bug#7136).
4618
4619 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
4620 of keyword/argument pairs (bug#6904).
4621
4622 * replace.el (multi-occur):
4623 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
4624
4625 2011-07-02 Drew Adams <drew.adams@oracle.com>
4626
4627 * dired.el (dired-mark-if): Make the message about whether it's
4628 marking or unmarking clearer (bug#8523).
4629
4630 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4631
4632 * disp-table.el (display-table-print-array): New function.
4633 (describe-display-table): Use it to print the vectors more pretty
4634 (Bug#8859).
4635
4636 2011-07-02 Martin Rudalics <rudalics@gmx.at>
4637
4638 * window.el (window-state-get-1): Don't assign clone numbers.
4639 Add clone-of item to list of window parameters.
4640 (window-state-put-2): Don't process clone numbers.
4641 (display-buffer-alist): Fix doc-string.
4642
4643 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
4644
4645 * subr.el (remq): Don't allocate if it's not needed.
4646 (keymap--menu-item-binding, keymap--menu-item-with-binding)
4647 (keymap--merge-bindings): New functions.
4648 (keymap-canonicalize): Use them to refine the canonicalization.
4649 * minibuffer.el (minibuffer-local-completion-map)
4650 (minibuffer-local-must-match-map): Move initialization from C.
4651 (minibuffer-local-filename-completion-map): Move initialization from C;
4652 don't inherit from anything here.
4653 (minibuffer-local-filename-must-match-map): Make obsolete.
4654 (completing-read-default): Use make-composed-keymap to combine
4655 minibuffer-local-filename-completion-map with either
4656 minibuffer-local-must-match-map or
4657 minibuffer-local-filename-completion-map.
4658
4659 2011-07-01 Glenn Morris <rgm@gnu.org>
4660
4661 * type-break.el (type-break-time-sum): Use dolist.
4662
4663 * textmodes/flyspell.el (flyspell-word-search-backward):
4664 Replace CL function.
4665
4666 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4667
4668 * mouse.el (mouse--strip-first-event): New function.
4669 (function-key-map): Use it to map fringe clicks to normal clicks
4670 by default.
4671
4672 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
4673 (vc-bzr-revision-completion-table): Add support for annotate and date.
4674
4675 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
4676 inherit from parent.
4677
4678 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
4679
4680 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
4681 (dired-show-file-type): Doc fixup (bug#8818).
4682
4683 * dired.el (dired-mode): Fix up the doc string as suggested by
4684 Drew Adams (bug#8817).
4685
4686 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
4687 cookie, since the manual says that it should be possible to add
4688 this function to `find-file-hook' (bug#8709).
4689
4690 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
4691
4692 * progmodes/cfengine.el: Moved all cfengine3.el functionality
4693 here. Noted Ted Zlatanov as the maintainer.
4694 (cfengine-common-settings, cfengine-common-syntax): New functions
4695 to set up common things between `cfengine-mode' and
4696 `cfengine3-mode'.
4697 (cfengine3-mode): New mode.
4698 (cfengine3-defuns cfengine3-defuns-regex
4699 (cfengine3-class-selector-regex cfengine3-category-regex)
4700 (cfengine3-vartypes cfengine3-font-lock-keywords)
4701 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
4702 (cfengine3-indent-line): Add from cfengine3.el.
4703
4704 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
4705
4706 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
4707
4708 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
4709
4710 2011-07-01 Martin Rudalics <rudalics@gmx.at>
4711
4712 * window.el (same-window-buffer-names, same-window-regexps)
4713 (same-window-p, special-display-frame-alist)
4714 (special-display-popup-frame, special-display-function)
4715 (special-display-buffer-names, special-display-regexps)
4716 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
4717 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
4718 (split-window-preferred-function, split-height-threshold)
4719 (split-width-threshold, even-window-heights)
4720 (display-buffer-mark-dedicated, window-splittable-p)
4721 (split-window-sensibly, window-safely-shrinkable-p):
4722 Un-obsolete.
4723 (display-buffer): Don't spread args with function specifier
4724 because special-display-popup-frame won't like it.
4725
4726 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
4727
4728 Time-stamp simplifications and fixes.
4729 These improve accuracy slightly, and future-proof the code
4730 against some potential changes to current-time format.
4731
4732 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
4733 by using time-since and float-time.
4734
4735 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
4736 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
4737 + NNN microseconds".
4738
4739 * type-break.el (type-break-time-sum): Rewrite using time-add.
4740
4741 * play/hanoi.el (hanoi-current-time-float): Remove.
4742 All uses replaced by float-time.
4743
4744 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
4745 This yields a more-accurate answer.
4746 (rng-time-to-float): Remove; no longer needed.
4747
4748 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
4749
4750 * calendar/timeclock.el (timeclock-seconds-to-time):
4751 Defalias to seconds-to-time, since they're the same thing.
4752
4753 * emacs-lisp/elp.el (elp-elapsed-time):
4754 * emacs-lisp/benchmark.el (benchmark-elapse):
4755 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
4756
4757 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4758
4759 * window.el (bury-buffer): Don't iconify the only frame.
4760 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
4761 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
4762
4763 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
4764
4765 * eshell/em-smart.el (eshell-smart-display-navigate-list):
4766 Add mouse-yank-primary.
4767
4768 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
4769
4770 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
4771
4772 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
4773
4774 * emacs-lisp/find-func.el (find-library--load-name): New fun.
4775 (find-library-name): Use it to find relative load names when provided
4776 absolute file name (bug#8803).
4777
4778 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4779
4780 * textmodes/flyspell.el (flyspell-word): Consider words that
4781 differ only in case as potential doublons (bug#5687).
4782
4783 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
4784 Remove two rather uninteresting debugging-like messages to make
4785 debbugs.el more silent.
4786
4787 * comint.el (comint-password-prompt-regexp): Accept "Response" as
4788 a password-like phrase.
4789
4790 2011-06-30 Mastake YAMATO <yamato@redhat.com>
4791
4792 * progmodes/cc-guess.el: New file.
4793
4794 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
4795
4796 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
4797 derived from `c-basic-common-init'.
4798
4799 * progmodes/cc-mode.el (top-level): Require cc-guess.
4800 (c-basic-common-init): Use `cc-choose-style-for-mode'.
4801
4802 2011-06-30 Lawrence Mitchell <wence@gmx.li>
4803
4804 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
4805
4806 2011-06-30 Alan Mackenzie <acm@muc.de>
4807
4808 * progmodes/cc-engine.el (c-guess-continued-construct):
4809 Correct the handling of template-args-cont, particularly for when font
4810 lock is disabled. Name this case as "CASE G".
4811
4812 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
4813
4814 * allout.el (allout-yank-processing): Fix injection of extra space
4815 between bullet and non-whitespace character in first topic when
4816 pasting, ensuring that the actual spacing in the pasted topic
4817 following the bullet char is preserved. This extra space was
4818 causing pasted encrypted topics to get a decrypted status even
4819 when the content was actually still encrypted. Now the decryption
4820 status from before the paste is preserved.
4821
4822 (allout-flag-region): Set all allout overlays so they evaporate
4823 when reduced to zero length (evanescent), to prevent overlay
4824 leakage.
4825
4826 2011-06-30 Glenn Morris <rgm@gnu.org>
4827
4828 * w32-fns.el (w32-charset-info-alist): Declare.
4829
4830 * find-dired.el (find-grep-options): Simplify.
4831
4832 * term/ns-win.el (ns-set-resource): Declare.
4833
4834 * ses.el (row, col): Declare dynamic variables honestly.
4835
4836 * textmodes/reftex-parse.el (index-tags): Declare.
4837
4838 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
4839
4840 * cus-edit.el (customize-push-and-save): New function.
4841
4842 * files.el (hack-local-variables-confirm): Use it.
4843
4844 * custom.el (load-theme): New arg NO-CONFIRM.
4845 Use customize-push-and-save (Bug#8720).
4846 (custom-enabled-themes): Doc fix.
4847
4848 * cus-theme.el (customize-create-theme)
4849 (custom-theme-merge-theme): Callers to load-theme changed.
4850
4851 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4852
4853 * thingatpt.el (thing-at-point-short-url-regexp): Require that
4854 short URLs have at least one dot in them (bug #7614).
4855
4856 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
4857 nil, because using a pty is apparently too slow (bug #895).
4858
4859 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
4860
4861 * mail/sendmail.el (sendmail-query-once): New function.
4862 (sendmail-query-once-function): New variable.
4863
4864 2011-06-29 Glenn Morris <rgm@gnu.org>
4865
4866 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
4867
4868 * ses.el (top-level): Require cl when compiling.
4869 (ses-set-localvars): Fix error statement.
4870 Call it at compile time to silence a storm of warnings.
4871
4872 2011-06-29 Martin Rudalics <rudalics@gmx.at>
4873
4874 * window.el (normalize-live-buffer): Rename to
4875 window-normalize-buffer.
4876 (normalize-live-frame): Rename to window-normalize-frame.
4877 (normalize-any-window): Rename to window-normalize-any-window.
4878 (normalize-live-window): Rename to window-normalize-live-window.
4879 (make-window-atom): Rename to window-make-atom.
4880 (window-resize-reset): Rename to window--resize-reset.
4881 (window-resize-reset-1): Rename to window--resize-reset-1.
4882 (resize-mini-window): Rename to window--resize-mini-window.
4883 (resize-subwindows-skip-p): Rename to
4884 window--resize-subwindows-skip-p.
4885 (resize-subwindows-normal): Rename to
4886 window--resize-subwindows-normal.
4887 (resize-subwindows): Rename to window--resize-subwindows.
4888 (resize-other-windows): Rename to window--resize-siblings.
4889 (resize-this-window): Rename to window--resize-this-window.
4890 (resize-root-window): Rename to window--resize-root-window.
4891 (resize-root-window-vertically): Rename to
4892 window--resize-root-window-vertically.
4893 (normalize-buffer-to-display): Rename to
4894 window-normalize-buffer-to-display.
4895 (normalize-buffer-to-switch-to): Rename to
4896 window-normalize-buffer-to-switch-to.
4897 Correspondingly update all callers of the functions listed
4898 above.
4899 (display-buffer-alist, display-buffer-normalize-arguments)
4900 (display-buffer-normalize-options, display-buffer)
4901 (display-buffer-alist-set): Use "function" instead of
4902 "fun-with-args".
4903
4904 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
4905
4906 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
4907 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
4908 debbugs.gnu.org. Mention acknowledgment email.
4909
4910 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
4911
4912 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
4913 buffer multibyteness, since it shouldn't matter.
4914
4915 2011-06-28 Martin Rudalics <rudalics@gmx.at>
4916
4917 * window.el (display-buffer-in-side-window): Handle dedicated
4918 windows as in display-buffer-reuse-window.
4919 (display-buffer-normalize-alist): Use value of override
4920 specifier.
4921 (display-buffer-normalize-specifiers): Use value of
4922 other-window-means-other-frame specifier.
4923 (display-buffer-alist): Rewrite some texts in widgets.
4924 (display-buffer): Spread arguments when calling function
4925 specified by fun-with-args.
4926
4927 2011-06-28 Deniz Dogan <deniz@dogan.se>
4928
4929 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
4930 Unnest `let'.
4931
4932 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
4933 selectors (Bug#5732).
4934 (css-proprietary-nmstart-re): Use `regexp-opt'.
4935
4936 2011-06-27 Jari Aalto <jari.aalto@cante.net>
4937
4938 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
4939 (eshell-ls-date-format): New defcustom.
4940 (eshell-ls-file): Use it.
4941
4942 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
4943
4944 * help-fns.el (describe-variable): Fix message for terminal-local vars.
4945
4946 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
4947
4948 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
4949 (ange-ftp-make-tmp-name): New arg.
4950 (ange-ftp-file-local-copy): Use it.
4951
4952 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
4953
4954 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
4955 no-conversion (Bug#8870).
4956
4957 2011-06-27 Martin Rudalics <rudalics@gmx.at>
4958
4959 * window.el (window-right, window-left, window-child)
4960 (window-child-count, window-last-child)
4961 (window-iso-combination-p, walk-window-tree-1)
4962 (window-atom-check-1, window-tree-1, delete-window)
4963 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
4964 new naming conventions - window-vchild, window-hchild,
4965 window-next and window-prev are now called window-top-child,
4966 window-left-child, window-next-sibling and window-prev-sibling
4967 respectively.
4968 (resize-window-reset): Rename to window-resize-reset.
4969 (resize-window-reset-1): Rename to window-resize-reset-1.
4970 (resize-window): Rename to window-resize.
4971 (window-min-height, window-min-width)
4972 (resize-mini-window, resize-this-window, resize-root-window)
4973 (resize-root-window-vertically, adjust-window-trailing-edge)
4974 (enlarge-window, shrink-window, maximize-window)
4975 (minimize-window, delete-window, quit-restore-window)
4976 (split-window, balance-windows, balance-windows-area-adjust)
4977 (balance-windows-area, window-state-put-2)
4978 (display-buffer-even-window-sizes, display-buffer-set-height)
4979 (display-buffer-set-width, set-window-text-height)
4980 (fit-window-to-buffer): Rename all "resize-window" prefixed
4981 calls to use the "window-resize" prefix convention.
4982 (display-buffer-alist): Fix symbol for label specifier.
4983 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
4984 corresponding specifier.
4985 Reported by Juanma Barranquero <lekktu@gmail.com>.
4986
4987 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
4988
4989 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
4990 convention.
4991 (ses-call-printer): Does not pass an empty string to formatter when the
4992 cell is empty to keep from barking printer Calc math-format-value.
4993
4994 2011-06-27 Richard Stallman <rms@gnu.org>
4995
4996 * battery.el (battery-mode-line-limit): New variable.
4997 (battery-update): Handle it.
4998
4999 * mail/rmailmm.el (rmail-mime-process-multipart):
5000 Handle truncated messages.
5001
5002 2011-06-27 Glenn Morris <rgm@gnu.org>
5003
5004 * progmodes/flymake.el (flymake-err-line-patterns):
5005 Allow for column numbers in the ant/javac pattern. (Bug#8866)
5006
5007 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
5008
5009 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
5010 (ses--clean-!, ses--clean-_): New functions.
5011 (ses-range): Add configurability of readout order, and conversion
5012 to Calc vector.
5013
5014 * ses.el (ses-repair-cell-reference-all): New function.
5015 (ses-cell-symbol): Set macro as safe, so that it can be used in
5016 formulas.
5017
5018 * ses.el: Update cycle detection algorithm.
5019 (ses-localvars): Add ses--Dijkstra-attempt-nb and
5020 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
5021 (ses-set-localvars): New function.
5022 (ses-make-cell): Add property-list as a cell element.
5023 (ses-cell-property-get-fun, ses-cell-property-get)
5024 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
5025 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
5026 New functions.
5027 (ses-cell-property-set, ses-cell-property-pop)
5028 (ses-cell-property-get-handle): New macro.
5029 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
5030 New aliases, used for code readability.
5031 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
5032 cycle detection.
5033 (ses-self-reference-early-detection): New defcustom.
5034 (ses-formula-references): Robustify against self-refering cells.
5035 (ses-mode): Use ses-set-localvars.
5036 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
5037 before lauching the update processing.
5038 (ses-initialize-Dijkstra-attempt): New function.
5039 (ses-recalculate-cell): Update for cycle detection based on
5040 Dijkstra algorithm.
5041
5042 * ses.el: Fix commenting and indenting convention.
5043
5044 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5045
5046 * bs.el (bs-cycle-next): Complete last change.
5047
5048 2011-06-27 Drew Adams <drew.adams@oracle.com>
5049
5050 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
5051
5052 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
5053
5054 * net/network-stream.el (network-stream-open-starttls):
5055 Don't re-get capabilities unless we've reestablished connection.
5056 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
5057
5058 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
5059 to binary to possibly avoid line encoding issues on Windows (among
5060 other things).
5061
5062 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5063
5064 * net/network-stream.el (open-network-stream): Return an :error
5065 saying what the problem was, if possible.
5066
5067 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
5068 server.
5069
5070 * net/network-stream.el (network-stream-open-starttls): If we
5071 wanted to use STARTTLS, and the server offered it, but we weren't
5072 able to because we had no STARTTLS support, then close the connection.
5073 (open-network-stream): Return an :error element, if present.
5074
5075 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
5076
5077 * hl-line.el (hl-line-sticky-flag): Doc fix.
5078 (global-hl-line-sticky-flag): New option (Bug#8323).
5079 (global-hl-line-highlight): Obey it.
5080
5081 * vc/vc.el (vc-revert-show-diff): Default to t.
5082
5083 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
5084
5085 * allout-widgets.el (allout-widgets-post-command-business):
5086 Stop decorating intermediate isearch matches. They're not being
5087 undecorated when an isearch is continued past, and isearch
5088 automatically collapses them. This leads to "widget leaks", where
5089 decorated items accumulate in collapsed areas. Lines with lots of
5090 hidden widgets can slow down cursor travel, substantially.
5091 Too much complicated machinery would be needed to ensure undecoration,
5092 so we're doing without this nicety.
5093
5094 (allout-widgets-tally-string): Don't try to do a hash-table-count
5095 of allout-widgets-tally when it's nil. This eliminates spurious "Error
5096 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
5097 *Messages* when allout-widgets-maintain-tally is t.
5098
5099 2011-06-26 Martin Rudalics <rudalics@gmx.at>
5100
5101 * window.el (display-buffer-normalize-argument): Rename to
5102 display-buffer-normalize-arguments. Handle special meaning of
5103 LABEL argument. Respect special-display-function when popping up
5104 a new frame. Fix code searching for a window showing the buffer
5105 on another frame.
5106 (display-buffer-normalize-specifiers):
5107 Call display-buffer-normalize-arguments.
5108 (display-buffer-in-window): Don't undedicate the window if its
5109 buffer remains the same.
5110 Reported by Drew Adams <drew.adams@oracle.com>.
5111 (display-buffer-alist): Add choice for same-window macro
5112 specfier.
5113 (display-buffer): Mention special meaning of LABEL argument in
5114 doc-string. Fix quoting. Don't pop up a new frame even as
5115 fallback.
5116
5117 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
5118
5119 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
5120 avoid deleting the current window in some cases (bug#8911).
5121
5122 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
5123
5124 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
5125 (Bug#8934)
5126
5127 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5128
5129 * net/network-stream.el (network-stream-open-starttls):
5130 Use built-in TLS support if `gnutls-available-p' is true.
5131 (network-stream-open-tls): Ditto.
5132
5133 2011-06-26 Leo Liu <sdl.web@gmail.com>
5134
5135 * register.el (registerv): New struct.
5136 (registerv-make): New function.
5137 (jump-to-register, describe-register-1, insert-register):
5138 Support the jump-func, print-func and insert-func slot of a registerv
5139 struct. (Bug#8415)
5140
5141 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
5142
5143 * vc/vc.el (vc-revert-show-diff): New defcustom.
5144 (vc-diff-internal): New arg specifying diff buffer.
5145 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
5146 reuse an existing *vc-diff* buffer (Bug#8927).
5147
5148 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
5149
5150 2011-06-26 Glenn Morris <rgm@gnu.org>
5151
5152 * progmodes/f90.el (f90-critical-indent): New option.
5153 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
5154 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
5155 (f90-mode): Doc fix.
5156 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
5157 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
5158 (f90-beginning-of-block, f90-next-block, f90-indent-region)
5159 (f90-match-end): Handle block, critical.
5160
5161 2011-06-25 Glenn Morris <rgm@gnu.org>
5162
5163 * calendar/diary-lib.el (diary-included-files): Doc fix.
5164 (diary-include-files): New function, extracted from
5165 diary-include-other-diary-files and diary-mark-included-diary-files.
5166 (diary-include-other-diary-files, diary-mark-included-diary-files):
5167 Just call diary-include-files.
5168 (diary-mark-entries): Reset diary-included-files on first call.
5169
5170 * calendar/diary-lib.el (diary-mark-entries)
5171 (diary-mark-included-diary-files):
5172 Visit included diary-files in temp buffers.
5173
5174 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
5175 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
5176 (f90-start-block-re, f90-imenu-generic-expression)
5177 (f90-looking-at-program-block-start, f90-no-block-limit):
5178 Add support for submodules.
5179
5180 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
5181 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
5182
5183 2011-06-25 Eli Zaretskii <eliz@gnu.org>
5184
5185 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
5186 buffer-file-type before setting its value, to avoid disastrous
5187 global effects on decoding files for DOS/Windows systems. (Bug#8780)
5188
5189 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
5190
5191 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
5192
5193 * ses.el (ses-unload-function):
5194 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
5195
5196 * proced.el (proced-unload-function):
5197 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
5198
5199 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
5200
5201 * server.el (server-create-window-system-frame): Add parameters arg.
5202 (server-process-filter): Doc fix. Handle frame-parameters.
5203
5204 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
5205
5206 Fix bug#8730, bug#8781.
5207
5208 * loadhist.el (unload--set-major-mode): New function.
5209 (unload-feature): Use it.
5210
5211 * progmodes/python.el (python-after-info-look): Add autoload cookie.
5212 (python-unload-function): New function.
5213
5214 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5215
5216 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
5217
5218 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
5219
5220 * net/browse-url.el (browse-url-firefox-program): Add icecat to
5221 the candidates list.
5222
5223 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
5224
5225 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
5226
5227 2011-06-23 Richard Stallman <rms@gnu.org>
5228
5229 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
5230 (rmail-variables): Set next-error-move-function.
5231 (rmail-what-message): Take argument POS.
5232 (rmail-next-error-move): New function.
5233
5234 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5235
5236 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
5237 messages for adjacent non-terminals.
5238
5239 2011-06-23 Richard Stallman <rms@gnu.org>
5240
5241 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
5242 (rmail-show-message-1): Preserve buffer modified flag.
5243 (rmail-start-mail): Don't specify use of rmail-mail-return;
5244 that's done by mail-bury now.
5245 (rmail-mail-return): Handle arg NEWBUF.
5246
5247 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
5248
5249 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
5250 SIZE is a number.
5251
5252 2011-06-23 Martin Rudalics <rudalics@gmx.at>
5253
5254 * window.el (get-lru-window, get-mru-window)
5255 (get-largest-window): Never return a minibuffer window.
5256 (display-buffer-pop-up-window): Fix a bug that could lead to
5257 reusing the minibuffer window.
5258 (display-buffer): Pass original specifier argument to
5259 display-buffer-function instead of the normalized one.
5260 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
5261
5262 2011-06-22 Leo Liu <sdl.web@gmail.com>
5263
5264 * minibuffer.el (completing-read-function)
5265 (completing-read-default): Move from minibuf.c
5266
5267 2011-06-22 Richard Stallman <rms@gnu.org>
5268
5269 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
5270 to Rmail even if not started by a special Rmail command.
5271
5272 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
5273 Copy the buffer currently showing just one message.
5274
5275 2011-06-22 Roland Winkler <winkler@gnu.org>
5276
5277 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
5278 (bibtex-clean-entry): First delete the old key so that a
5279 customized algorithm for generating the new key does not get
5280 confused by the old key.
5281 (bibtex-url): Obey regexp of first step.
5282 (bibtex-search-entries): Do not use add-to-list with local
5283 list-var.
5284
5285 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5286
5287 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
5288 stored a user name, then query for the password first, instead of
5289 waiting for SMTP to give an error message and the trying again.
5290
5291 2011-06-22 Lawrence Mitchell <wence@gmx.li>
5292
5293 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
5294 BUFFER in call-process.
5295
5296 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5297
5298 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
5299 QUIT twice.
5300 (smtpmail-try-auth-methods): Require user name and password from
5301 auth-source.
5302
5303 2011-06-22 Martin Rudalics <rudalics@gmx.at>
5304
5305 * window.el (display-buffer-default-specifiers)
5306 (display-buffer-alist): Remove entries for pop-up-frame-alist.
5307 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
5308 (split-window): Normalize SIDE argument (Bug#8916).
5309
5310 * frame.el (pop-up-frame-alist, pop-up-frame-function)
5311 (special-display-frame-alist, special-display-popup-frame):
5312 Remove duplicate declarations. These are now in window.el.
5313
5314 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5315
5316 * mail/smtpmail.el (smtpmail-via-smtp):
5317 Set :use-starttls-if-possible so that we always use STARTTLS if the
5318 server supports it. SMTP servers that support STARTTLS commonly
5319 require it.
5320
5321 * net/network-stream.el (network-stream-open-starttls): Support
5322 upgrading to STARTTLS always, even if we don't have built-in support.
5323 (open-network-stream): Add the :always-query-capabilies keyword.
5324
5325 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
5326 upgrades with `open-network-stream', and rely solely on
5327 auth-source for all credentials. Big changes throughout the file,
5328 but in particular:
5329 (smtpmail-auth-credentials): Remove.
5330 (smtpmail-starttls-credentials): Remove.
5331 (smtpmail-via-smtp): Check for servers saying they want AUTH after
5332 MAIL FROM, too.
5333
5334 * net/network-stream.el (network-stream-open-starttls):
5335 Provide support for client certificates both for external and built-in
5336 STARTTLS.
5337 (auth-source): Require.
5338 (open-network-stream): Document the :client-certificate keyword.
5339 (network-stream-certificate): Change cert-cert to cert and
5340 cert-key to key.
5341
5342 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
5343
5344 * net/tramp-cache.el (top): Don't load the persistency file when
5345 "emacs -Q" has been called.
5346
5347 2011-06-21 Tim Harper <timcharper@gmail.com>
5348
5349 * term/ns-win.el (ns-initialize-window-system):
5350 Set application-specific `ApplePressAndHoldEnabled' system
5351 resource to NO as it is not yet supported by the NS port.
5352
5353 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
5354
5355 * misc.el (list-dynamic-libraries--refresh): Compute header here...
5356 (list-dynamic-libraries): ...not here.
5357
5358 2011-06-21 Leo Liu <sdl.web@gmail.com>
5359
5360 * subr.el (sha1): Implement sha1 using secure-hash.
5361
5362 2011-06-21 Martin Rudalics <rudalics@gmx.at>
5363
5364 * window.el (display-buffer-alist): In default value do not
5365 enforce searching a window on any but the selected frame.
5366 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
5367 (display-buffer-select-window): Remove function.
5368 (display-buffer-in-window): When a window on another frame gets
5369 reused, do not select it any more but just raise its frame if
5370 necessary (Bug#8851) and (Bug#8856).
5371 (display-buffer-normalize-options): Handle pop-up-frames related
5372 options more faithfully.
5373 (pop-to-buffer): Don't rely on `display-buffer' selecting the
5374 window if it is on another frame.
5375 (display-buffer-alist, display-buffer-default-specifiers):
5376 Don't make new frame unsplittable by default.
5377 (display-buffer-normalize-argument): Fix doc-string typo and use
5378 'same-frame-other-window instead of 'other-window when associating
5379 with display-buffer-macro-specifiers.
5380
5381 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
5382
5383 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
5384 New functions.
5385 (5x5-mode-map, 5x5-mode-menu): Bind them.
5386 (5x5-draw-grid): Tweak the solver's rendering.
5387
5388 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5389
5390 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
5391 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
5392
5393 2011-06-21 Drew Adams <drew.adams@oracle.com>
5394
5395 * menu-bar.el: Use function variable instead of switch-to-buffer.
5396 (menu-bar-select-buffer-function): New variable.
5397 (menu-bar-update-buffers): Use it (bug#8876).
5398
5399 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5400
5401 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
5402 variable's status.
5403
5404 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
5405
5406 * x-dnd.el (x-dnd-version-from-flags)
5407 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
5408 and long as number (Bug#8899).
5409 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
5410
5411 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5412
5413 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
5414 (completion-try-completion, completion-all-completions): Compute the
5415 metadata argument if it's missing; make it optional (bug#8795).
5416
5417 * wid-edit.el: Use lex-bind and move towards completion-at-point.
5418 (widget-complete): Use new :completion-function property.
5419 (widget-completions-at-point): New function.
5420 (default): Use :completion-function instead of :complete.
5421 (widget-default-completions): Rename from widget-default-complete;
5422 Rewrite.
5423 (widget-string-complete, widget-file-complete, widget-color-complete):
5424 Remove functions.
5425 (file, symbol, function, variable, coding-system, color):
5426 * international/mule-cmds.el (default-input-method, charset)
5427 (language-info-custom-alist):
5428 * cus-edit.el (face): Use new property :completions.
5429
5430 * progmodes/pascal.el (pascal-completions-at-point): New function.
5431 (pascal-mode): Use it.
5432 (pascal-mode-map): Use completion-at-point.
5433 (pascal-toggle-completions): Make obsolete.
5434 (pascal-complete-word, pascal-show-completions):
5435 * progmodes/octave-mod.el (octave-complete-symbol):
5436 Redefine as obsolete alias.
5437 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
5438 Signal absence of completion info for old Octave,
5439 (inferior-octave-complete): Redefine as obsolete alias.
5440 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
5441 (meta-completions-at-point): Rename from meta-complete-symbol and
5442 adapt it for use on completion-at-point-functions.
5443 (meta-common-mode): Use it.
5444 (meta-looking-at-backward, meta-match-buffer): Remove.
5445 (meta-complete-symbol): Redefine as obsolete alias.
5446 (meta-common-mode-map): Use completion-at-point.
5447 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
5448 (makefile-mode-map): Use completion-at-point.
5449 (makefile-completions-at-point): Rename from makefile-complete and
5450 adapt it for use on completion-at-point-functions.
5451 (makefile-mode): Use it.
5452 (makefile-complete): Redefine as obsolete alias.
5453
5454 2011-06-20 Deniz Dogan <deniz@dogan.se>
5455
5456 * net/rcirc.el: Delete trailing whitespaces once and for all.
5457
5458 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
5459
5460 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
5461
5462 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
5463
5464 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
5465
5466 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
5467
5468 2011-06-19 Martin Rudalics <rudalics@gmx.at>
5469
5470 * window.el (display-buffer-other-window-means-other-frame):
5471 Call display-buffer-normalize-alist.
5472 (display-buffer-normalize-specifiers-1): Rename to
5473 display-buffer-normalize-argument. New argument other-frame.
5474 Rewrite.
5475 (display-buffer-normalize-specifiers-2): Rename to
5476 display-buffer-normalize-options.
5477 (display-buffer-normalize-alist-1): New function.
5478 (display-buffer-normalize-specifiers-3): Rename to
5479 display-buffer-normalize-alist.
5480 Call display-buffer-normalize-alist-1.
5481 (display-buffer-normalize-options-inhibit): New variable.
5482 (display-buffer-normalize-specifiers): Rewrite calling
5483 display-buffer-normalize-alist,
5484 display-buffer-normalize-argument, and
5485 display-buffer-normalize-options. Don't call the latter if
5486 display-buffer-normalize-options-inhibit is non-nil.
5487 (frame-auto-delete): New option.
5488 (window-deletable-p): Use frame-auto-delete.
5489 (window-list-no-nils, window-state-ignored-parameters)
5490 (window-state-get-1, window-state-get, window-state-put-list)
5491 (window-state-put-1, window-state-put-2, window-state-put):
5492 New functions.
5493 (display-buffer-normalize-options): Move special-display-p group
5494 after pop-up-frame group (Bug#8851) and (Bug#8856).
5495
5496 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
5497
5498 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
5499 groups (Bug#8776).
5500 (rx-submatch-n): New function.
5501 (rx): Document it.
5502
5503 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
5504 (Bug#8768).
5505
5506 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
5507
5508 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
5509
5510 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
5511 anytime existing face settings are present (Bug#8889).
5512
5513 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
5514 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
5515 Remove unused argument.
5516
5517 2011-06-18 Martin Rudalics <rudalics@gmx.at>
5518
5519 * window.el (display-buffer-default-specifiers):
5520 Remove pop-up-frame. Add pop-up-window-min-height,
5521 pop-up-window-min-width, and another reuse-window specifier
5522 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
5523 (display-buffer-normalize-specifiers-2):
5524 Handle split-height-threshold and split-width-threshold also when
5525 pop-up-windows is unset. Add a reuse-window specifier for the
5526 case popping up a new window fails.
5527 (special-display-popup-frame): Remove double quoting.
5528 (display-buffer-normalize-specifiers-1): Fix thinko.
5529
5530 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5531
5532 * shell.el (shell-completion-vars): Set pcomplete-termination-string
5533 according to comint-completion-addsuffix.
5534
5535 * pcomplete.el: Convert to lexical binding and fix bug#8819.
5536 (pcomplete-suffix-list): Mark as obsolete.
5537 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
5538 pcomplete-seen in the closure.
5539 (pcomplete-comint-setup): Setup completion-at-point as well.
5540 (pcomplete--entries): New function.
5541 (pcomplete--env-regexp): New var.
5542 (pcomplete-entries): Rewrite to work with partial-completion and
5543 without relying on pcomplete-suffix-list.
5544 (pcomplete-pare-list): Remove, unused.
5545
5546 2011-06-17 Martin Rudalics <rudalics@gmx.at>
5547
5548 * window.el (display-buffer-alist): Set pop-up-window-min-height
5549 and pop-up-window-min-width in default value. Reported by
5550 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
5551 other-window-means-other-frame.
5552 (display-buffer-macro-specifiers): Comment out entry for
5553 other-window specifier.
5554 (display-buffer-other-window-means-other-frame): New function.
5555 (display-buffer-normalize-specifiers-1): New arguments
5556 buffer-name and label. Treat other-window case specially.
5557 (display-buffer-normalize-specifiers-2): Treat other-window case
5558 specially.
5559 (display-buffer-normalize-specifiers-3): New function.
5560 (display-buffer-normalize-specifiers):
5561 Call display-buffer-normalize-specifiers-3.
5562
5563 2011-06-17 Martin Rudalics <rudalics@gmx.at>
5564
5565 * window.el (same-window-p): Fix two typos introduced when
5566 adding with-no-warnings.
5567 (display-buffer-normalize-specifiers-1): Don't check
5568 pop-up-frames for 'unset initialization.
5569 (display-buffer-normalize-specifiers-2): Major rewrite using
5570 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
5571 (pop-up-frames, display-buffer-reuse-frames)
5572 (display-buffer-mark-dedicated): Don't initialize to 'unset.
5573 Suggested by David Engster <deng@randomsample.de>.
5574 (even-window-heights): Initialize to 'unset.
5575 (display-buffer-alist-set): Handle new 'unset initializations.
5576 (display-buffer-macro-specifiers): Don't pop up a new frame in the
5577 other window case.
5578
5579 2011-06-16 Martin Rudalics <rudalics@gmx.at>
5580
5581 * window.el (display-buffer-normalize-specifiers-1):
5582 Respect current value of pop-up-frames for most reasonable values of
5583 second argument of display-buffer (Bug#8865).
5584 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
5585 (switch-to-buffer-other-window-same-frame)
5586 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
5587 Adams (Bug#8875).
5588 (display-buffer): Don't check noninteractive when calling
5589 display-buffer-pop-up-frame.
5590 (display-buffer-pop-up-frame): Never pop up a frame in
5591 noninteractive mode (Bug#8857).
5592 (enlarge-window, shrink-window): Don't report an error when the
5593 window can't be resized as requested (Bug#8862).
5594
5595 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5596
5597 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
5598
5599 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
5600
5601 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
5602
5603 2011-06-15 Alan Mackenzie <acm@muc.de>
5604
5605 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
5606 for declarators, disable knr checking to speed up for normal files.
5607 2: Refactor, replacing a sequence of nested if forms by a cond form.
5608
5609 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
5610
5611 * net/network-stream.el (open-network-stream): Add the keyword
5612 :always-query-capabilities for the case where you want to force a
5613 `plain' network connection, but the protocol still requires the
5614 capabilitiy command (i.e., SMTP and EHLO).
5615
5616 * subr.el (process-live-p): Rename from `process-alive-p' for
5617 consistency with other `-live-p' functions.
5618
5619 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5620
5621 * window.el (same-window-buffer-names, same-window-regexps)
5622 (special-display-frame-alist, special-display-popup-frame)
5623 (special-display-function, special-display-buffer-names)
5624 (special-display-regexps, pop-up-frame-alist)
5625 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
5626 (pop-up-windows, split-window-preferred-function)
5627 (split-height-threshold, split-width-threshold, even-window-heights)
5628 (display-buffer-mark-dedicated): Don't encourage the use of
5629 display-buffer-alist from Elisp code.
5630
5631 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
5632
5633 * progmodes/python.el (python-mode): Derive from prog-mode.
5634 * progmodes/ps-mode.el (ps-mode):
5635 * progmodes/mixal-mode.el (mixal-mode):
5636 * progmodes/cfengine.el (cfengine-mode):
5637 * progmodes/ld-script.el (ld-script-mode): Likewise.
5638
5639 2011-06-15 Martin Rudalics <rudalics@gmx.at>
5640
5641 * window.el (display-buffer-alist): Trim default value to avoid
5642 popping up a new frame (Bug#8857) or reusing an arbitrary window
5643 on another frame.
5644 (display-buffer): Do not fall back on popping up a new frame in
5645 batch mode (Bug#8857).
5646
5647 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
5648
5649 * cus-theme.el (describe-theme-1): Use custom-theme-p.
5650 (custom-theme-summary): New function.
5651 (customize-themes): Use it.
5652
5653 2011-06-13 Glenn Morris <rgm@gnu.org>
5654
5655 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
5656
5657 2011-06-13 Martin Rudalics <rudalics@gmx.at>
5658
5659 * help.el (help-window): Remove variable.
5660 (help-window-point-marker, temp-buffer-max-height)
5661 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
5662 (help-print-return-message): Don't set help-window.
5663 (resize-temp-buffer-window): Rewrite cod eand doc-string.
5664 (help-window-setup-finish): Remove.
5665 (help-window-display-message, help-window-setup)
5666 (with-help-window): Major rewrite based on new
5667 display-buffer-window variable.
5668
5669 * help-mode.el (help-mode-finish): Remove help-window related
5670 code.
5671
5672 * view.el (view-exits-all-viewing-windows): Remove reference to
5673 view-return-to-alist in doc-string.
5674 (view-return-to-alist): Make obsolete.
5675 (view-buffer): Call pop-to-buffer-same-window and remove
5676 undo-window code.
5677 (view-buffer-other-window): Call pop-to-buffer-other-window and
5678 simplify code. Ignore second argument.
5679 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
5680 simplify code. Ignore second argument.
5681 (view-return-to-alist-update): Make obsolete.
5682 (view-mode-enter): Rename second argument to QUIT-RESTORE.
5683 Rewrite using quit-restore window parameters.
5684 (view-mode-exit): Rename second argument to EXIT-ONLY.
5685 Rewrite using quit-restore-window.
5686 (View-exit, View-exit-and-edit, View-leave, View-quit)
5687 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
5688 appropriate arguments.
5689 (view-end-message): Use quit-restore window parameter.
5690
5691 * window.el (display-buffer-function): Rewrite doc-string.
5692 (display-buffer-window, display-buffer-alist): New variables.
5693 (display-buffer-split-specifiers)
5694 (display-buffer-side-specifiers)
5695 (display-buffer-macro-specifiers): New constants.
5696 (display-buffer-even-window-sizes, display-buffer-set-height)
5697 (display-buffer-set-width, display-buffer-select-window)
5698 (display-buffer-in-window, display-buffer-reuse-window)
5699 (display-buffer-split-window-1, display-buffer-split-window)
5700 (display-buffer-split-atom-window, display-buffer-pop-up-window)
5701 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
5702 (display-buffer-in-side-window, normalize-buffer-to-display)
5703 (display-buffer-normalize-specifiers-1)
5704 (display-buffer-normalize-specifiers-2)
5705 (display-buffer-normalize-specifiers, display-buffer-frame):
5706 New functions.
5707 (display-buffer): Major rewrite.
5708 (display-buffer-other-window, display-buffer-other-frame)
5709 (pop-to-buffer, switch-to-buffer-other-window)
5710 (switch-to-buffer-other-frame): Rewrite.
5711 (display-buffer-same-window, display-buffer-same-frame)
5712 (display-buffer-same-frame-other-window)
5713 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
5714 (pop-to-buffer-other-window)
5715 (pop-to-buffer-same-frame-other-window)
5716 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
5717 (switch-to-buffer-other-window-same-frame): New functions.
5718 (same-window-p, special-display-p): Rewrite disabling warnings.
5719 Make obsolete.
5720 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
5721 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
5722 Make obsolete
5723 (same-window-buffer-names, same-window-regexps)
5724 (special-display-frame-alist, special-display-popup-frame)
5725 (special-display-function, special-display-buffer-names)
5726 (special-display-regexps, pop-up-frame-alist)
5727 (pop-up-frame-function, split-window-preferred-function)
5728 (split-height-threshold, split-width-threshold)
5729 (even-window-heights): Make obsolete.
5730
5731 2011-06-12 Glenn Morris <rgm@gnu.org>
5732
5733 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
5734 Misc simplifications.
5735
5736 2011-06-12 Martin Rudalics <rudalics@gmx.at>
5737
5738 * window.el (window-safely-shrinkable-p): Restore function which
5739 was inadvertently removed in change from 2011-06-11. Declare as
5740 obsolete.
5741
5742 * calendar/calendar.el (calendar-generate-window):
5743 Use window-iso-combined-p instead of combination of one-window-p and
5744 window-safely-shrinkable-p.
5745
5746 2011-06-12 Glenn Morris <rgm@gnu.org>
5747
5748 * progmodes/fortran.el (fortran-mode-syntax-table):
5749 * progmodes/f90.el (f90-mode-syntax-table):
5750 Set % to punctuation. (Bug#8820)
5751 (f90-find-tag-default): Remove, no longer needed.
5752
5753 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
5754
5755 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
5756
5757 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
5758
5759 * image.el (image-animated-p): Return animation delay in seconds.
5760 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
5761 (image-animate-timeout): Remove DELAY argument. Don't assume
5762 every subimage has the same delay; get it from image-animated-p.
5763 (image-animate): Caller changed.
5764
5765 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
5766
5767 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
5768 to ignored backtrace functions.
5769
5770 2011-06-11 Glenn Morris <rgm@gnu.org>
5771
5772 * calendar/appt.el (appt-disp-window-function): Doc fix.
5773 (appt-check): Handle overlapping appointments. (Bug#8337)
5774
5775 2011-06-11 Martin Rudalics <rudalics@gmx.at>
5776
5777 * window.el (window-tree-1, window-tree): New functions, moving
5778 the latter to window.el.
5779 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
5780 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
5781 (bw-refresh-edges): Remove.
5782 (balance-windows-1, balance-windows-2): New functions.
5783 (balance-windows): Rewrite in terms of window tree functions,
5784 balance-windows-1 and balance-windows-2.
5785 (bw-adjust-window): Remove.
5786 (balance-windows-area-adjust): New function with functionality of
5787 bw-adjust-window but using resize-window.
5788 (set-window-text-height): Rewrite doc-string.
5789 Use normalize-live-window and resize-window.
5790 (enlarge-window-horizontally, shrink-window-horizontally):
5791 Rename argument to DELTA.
5792 (window-buffer-height): New function.
5793 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
5794 Rewrite using new window resize routines.
5795 (kill-buffer-and-window, mouse-autoselect-window-select):
5796 Use ignore-errors instead of condition-case.
5797 (quit-window): Call delete-frame instead of delete-windows-on
5798 for the only buffer on frame.
5799
5800 2011-06-10 Martin Rudalics <rudalics@gmx.at>
5801
5802 * loadup.el (top-level): Load window before files for the sake
5803 of replace-buffer-in-windows.
5804
5805 * files.el (read-buffer-to-switch)
5806 (switch-to-buffer-other-window)
5807 (switch-to-buffer-other-frame, display-buffer-other-frame):
5808 Move to window.el.
5809
5810 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
5811 (previous-buffer): Move to window.el.
5812
5813 * bindings.el (unbury-buffer): Move to window.el.
5814
5815 * window.el (delete-other-windows-vertically): Move after
5816 definition of delete-other-windows.
5817 (other-window, delete-windows-on, replace-buffer-in-windows):
5818 Move here from window.c.
5819 (record-window-buffer, unrecord-window-buffer)
5820 (set-window-buffer-start-and-point, switch-to-prev-buffer)
5821 (switch-to-next-buffer): New functions.
5822 (get-next-valid-buffer, last-buffer, next-buffer): Move here
5823 from simple.el. Call switch-to-next-buffer.
5824 (previous-buffer): Move here from simple.el.
5825 Call switch-to-prev-buffer.
5826 (bury-buffer): Move here from buffer.c. Switch to previous
5827 buffer when window cannot be deleted.
5828 (unbury-buffer): Move here from bindings.el.
5829 (ctl-x-map): Move binding for other-window from window.c to
5830 here.
5831 (read-buffer-to-switch, switch-to-buffer-other-window)
5832 (switch-to-buffer-other-frame): Move here from files.el.
5833 (normalize-buffer-to-switch-to): New functions.
5834 (switch-to-buffer): Move here from buffer.c.
5835 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
5836
5837 2011-06-10 Martin Rudalics <rudalics@gmx.at>
5838
5839 * window.el (window-min-height, window-min-width): Move here
5840 from window.c. Add defcustoms and rewrite doc-strings.
5841 (resize-mini-window, resize-window): New functions.
5842 (adjust-window-trailing-edge, enlarge-window, shrink-window):
5843 Move here from window.c.
5844 (maximize-window, minimize-window): New functions.
5845 (delete-window, delete-other-windows, split-window): Move here
5846 from window.c.
5847 (window-split-min-size): New function.
5848 (split-window-keep-point): Mention split-window-above-each-other
5849 instead of split-window-vertically.
5850 (split-window-above-each-other, split-window-vertically):
5851 Rename split-window-vertically to split-window-above-each-other and
5852 provide defalias for old definition.
5853 (split-window-side-by-side, split-window-horizontally): Rename
5854 split-window-horizontally to split-window-side-by-side and provide
5855 defalias for the old definition.
5856 (ctl-x-map): Move bindings for delete-window,
5857 delete-other-windows and enlarge-window here from window.c.
5858 Replace bindings for split-window-vertically and
5859 split-window-horizontally by bindings for
5860 split-window-above-each-other and split-window-side-by-side.
5861
5862 * cus-start.el (all): Remove entries for window-min-height and
5863 window-min-width. Add entries for window-splits and
5864 window-nest.
5865
5866 2011-06-09 Glenn Morris <rgm@gnu.org>
5867
5868 * calendar/appt.el (appt-mode-line): New function.
5869 (appt-check, appt-disp-window): Use it.
5870
5871 * files.el (hack-one-local-variable-eval-safep):
5872 Allow minor-modes with explicit +/-1 arguments.
5873
5874 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
5875
5876 * term/xterm.el (xterm): Add defgroup.
5877 (xterm-extra-capabilities): Add defcustom to supply known xterm
5878 capabilities, skip querying them, or query them (default).
5879 (terminal-init-xterm): Use it.
5880 (terminal-init-xterm-modify-other-keys): New function to set up
5881 modifyOtherKeys support to simplify `terminal-init-xterm'.
5882
5883 2011-06-09 Martin Rudalics <rudalics@gmx.at>
5884
5885 * window.el (resize-window-reset, resize-window-reset-1)
5886 (resize-subwindows-skip-p, resize-subwindows-normal)
5887 (resize-subwindows, resize-other-windows, resize-this-window)
5888 (resize-root-window, resize-root-window-vertically)
5889 (window-deletable-p, window-or-subwindow-p)
5890 (frame-root-window-p): New functions.
5891
5892 2011-06-09 Glenn Morris <rgm@gnu.org>
5893
5894 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
5895 (ange-ftp-get-files): Use it.
5896
5897 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
5898
5899 * mail/sendmail.el (mail-recover-1, mail-recover):
5900 * files.el (recover-file, recover-session):
5901 Handle dired-listing-switches not being just a single short option.
5902
5903 2011-06-09 Glenn Morris <rgm@gnu.org>
5904
5905 * calendar/appt.el (appt-display-message, appt-disp-window):
5906 Handle lists of appointments.
5907
5908 2011-06-08 Martin Rudalics <rudalics@gmx.at>
5909
5910 * window.el (one-window-p): Move down in code.
5911 Rewrite doc-string.
5912 (window-current-scroll-bars): Rewrite doc-string.
5913 Normalize live window argument.
5914 (walk-windows, get-window-with-predicate, count-windows):
5915 Rewrite doc-string. Use window-list-1.
5916 (window-in-direction-2, window-in-direction, get-mru-window):
5917 New functions.
5918
5919 2011-06-08 Reuben Thomas <rrt@sc3d.org>
5920
5921 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
5922 Doc fix (Bug#8713).
5923
5924 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
5925
5926 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
5927
5928 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
5929
5930 * loadhist.el (unload-feature-special-hooks):
5931 Add `comint-output-filter-functions'.
5932
5933 2011-06-08 Ivan Kanis <gnu@kanis.fr>
5934
5935 * calendar/appt.el (appt-check): Move some initializations into the let.
5936
5937 2011-06-08 Martin Rudalics <rudalics@gmx.at>
5938
5939 * window.el (window-height): Defalias to window-total-height.
5940 (window-width): Defalias to window-body-width.
5941
5942 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
5943
5944 * image-mode.el (image-toggle-animation): New command.
5945 (image-mode-map): Bind it to RET.
5946 (image-mode): Update message.
5947 (image-toggle-display-image): Avoid a spurious cache flush.
5948 (image-transform-rotation): Doc fix.
5949 (image-transform-properties): Return quickly in the normal case.
5950 (image-animate-loop): Rename from image-animate-max-time.
5951
5952 * image.el (image-animate-max-time): Move to image-mode.el.
5953 (create-animated-image): Remove unnecessary function.
5954 (image-animate): Rename from image-animate-start. New arg.
5955 (image-animate-stop): Remove; just use image-animate-timer.
5956 (image-animate-timer): Use car-safe.
5957 (image-animate-timeout): Rename argument.
5958
5959 2011-06-07 Martin Rudalics <rudalics@gmx.at>
5960
5961 * window.el (get-lru-window, get-largest-window): Move here from
5962 window.c. Rename first argument to ALL-FRAMES.
5963 Rephrase doc-strings.
5964 (get-buffer-window-list): Rewrite using window-list-1.
5965 Rephrase doc-string.
5966 (window-safe-min-height, window-safe-min-width): New constants.
5967 (window-size-ignore, window-min-size, window-min-size-1)
5968 (window-sizable, window-sizable-p, window-size-fixed-1)
5969 (window-size-fixed-p, window-min-delta-1, window-min-delta)
5970 (window-max-delta-1, window-max-delta, window-resizable)
5971 (window-resizable-p, window-total-height, window-total-width)
5972 (window-body-width): New functions.
5973 (window-full-height-p, window-full-width-p): Rewrite using
5974 window-total-size.
5975 (window-body-height): Rewrite using window-body-size.
5976
5977 2011-06-06 Martin Rudalics <rudalics@gmx.at>
5978
5979 * window.el (window-right, window-left, window-child)
5980 (window-child-count, window-last-child, window-any-p)
5981 (normalize-live-buffer, normalize-live-frame)
5982 (normalize-any-window, normalize-live-window)
5983 (window-iso-combination-p, window-iso-combined-p)
5984 (window-iso-combinations)
5985 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
5986 (windows-with-parameter, window-with-parameter)
5987 (window-atom-root, make-window-atom, window-atom-check-1)
5988 (window-atom-check, window-side-check, window-check):
5989 New functions.
5990 (ignore-window-parameters, window-sides, window-sides-vertical)
5991 (window-sides-slots): New variables.
5992 (window-size-fixed): Move down in code. Minor doc-string fix.
5993
5994 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
5995
5996 * comint.el (comint-dynamic-complete-as-filename)
5997 (comint-dynamic-complete-filename): Correctly call
5998 completion-in-region.
5999
6000 2011-06-05 Deniz Dogan <deniz@dogan.se>
6001
6002 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
6003 in last change.
6004
6005 2011-06-05 Deniz Dogan <deniz@dogan.se>
6006
6007 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
6008 (rcirc): Use it to prompt for encryption.
6009
6010 2011-06-05 Roland Winkler <winkler@gnu.org>
6011
6012 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
6013 (bibtex-search-entries): New command bound to C-c C-a.
6014 (bibtex-display-entries): New function.
6015
6016 2011-06-05 Roland Winkler <winkler@gnu.org>
6017
6018 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
6019 (bibtex-insert-kill): After yanking insert newline if necessary.
6020 (bibtex-initialize): Call bibtex-string-files-init only once.
6021 (bibtex-mode): Do not call easy-menu-add.
6022 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
6023 (bibtex-yank): Set arg properly if nil.
6024
6025 2011-06-05 Roland Winkler <winkler@gnu.org>
6026
6027 * textmodes/bibtex.el (bibtex-search-entry-globally):
6028 New variable.
6029 (bibtex-search-entry): Use it.
6030
6031 2011-06-05 Roland Winkler <winkler@gnu.org>
6032
6033 * textmodes/bibtex.el (bibtex-entry-format): New option
6034 sort-fields.
6035 (bibtex-format-entry, bibtex-reformat): Honor this option.
6036 (bibtex-parse-entry): Return fields in proper order.
6037
6038 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
6039
6040 * doc-view.el (doc-view-remove-if): Move computation of result out
6041 of `dolist' to silence misleading lexical-binding warning.
6042
6043 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
6044
6045 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
6046 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
6047
6048 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
6049
6050 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
6051 "SunOS 5.10".
6052
6053 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
6054
6055 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
6056 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
6057 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
6058 (tramp-parse-putty):
6059 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
6060 (tramp-completion-function-alist-ssh)
6061 (tramp-completion-function-alist-telnet)
6062 (tramp-completion-function-alist-su)
6063 (tramp-completion-function-alist-putty): Set `tramp-autoload'
6064 cookie.
6065
6066 * net/tramp-ftp.el:
6067 * net/tramp-sh.el:
6068 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
6069 load "tramp.el" `tramp-set-completion-function'.
6070
6071 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
6072
6073 * shell.el: Require and use pcomplete.
6074 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
6075 (shell-completion-vars): Set pcomplete-default-completion-function.
6076
6077 2011-06-04 Deniz Dogan <deniz@dogan.se>
6078
6079 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
6080 `memq' (Bug#8799).
6081
6082 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6083
6084 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
6085
6086 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
6087
6088 * bs.el (bs--mark-unmark, bs--nth-wrapper):
6089 * mpc.el (mpc-select-extend, mpc-songpointer-context):
6090 * vc/log-view.el (log-view-beginning-of-defun):
6091 * vc/smerge-mode.el (smerge-apply-resolution-patch)
6092 (smerge-refine-forward, smerge-refine-chopup-region):
6093 Silence warning for unused `dotimes' counter variables.
6094
6095 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6096
6097 * net/tramp.el (tramp-with-progress-reporter): Rename from
6098 with-progress-reporter. Use `declare'.
6099 * net/tramp-smb.el:
6100 * net/tramp-sh.el:
6101 * net/tramp-gvfs.el: Update all uses.
6102
6103 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
6104
6105 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
6106 buffer isn't killed before making it current.
6107
6108 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6109
6110 Silence various byte-compiler warnings.
6111 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
6112 `access-type' and new obsolescence format.
6113 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
6114 new format.
6115 (byte-compile-check-variable): New `access-type' argument.
6116 Only warn if the access-type is obsolete.
6117 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
6118 (byte-compile-variable-set): Adjust callers.
6119 * help-fns.el (describe-variable): Adjust to new obsolescence format.
6120 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
6121 setting it as obsolete.
6122 * simple.el (minibuffer-completing-symbol):
6123 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
6124 access as obsolete.
6125 * minibuffer.el (minibuffer-completing-file-name): Don't make it
6126 obsolete yet.
6127 * international/quail.el (quail-mouse-choose-completion): Remove unused
6128 code referring to obsolete var.
6129 (quail-choose-completion-string): Remove.
6130 * server.el (server-clients-with, server-kill-buffer-query-function)
6131 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
6132 * proced.el (proced-send-signal):
6133 * emacs-lisp/lisp.el (lisp-complete-symbol):
6134 Replace completion-annotate-function with completion-extra-properties.
6135
6136 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6137
6138 * simple.el (goto-line): Use read-number.
6139 (overriding-map-is-bound): Remove.
6140 (saved-overriding-map): Change default.
6141 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
6142 Take the map as argument.
6143 (universal-argument, negative-argument, digit-argument): Use it.
6144 (restore-overriding-map): Adjust.
6145 (do-auto-fill): Use fill-forward-paragraph.
6146 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
6147
6148 * minibuffer.el (minibuffer-inactive-mode-map): New var.
6149 (minibuffer-inactive-mode): New major mode.
6150 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
6151 the *Messages* buffer" hack.
6152 (mouse-popup-menubar): Don't burp if the event is a normal key.
6153
6154 Miscellaneous tweaks.
6155 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
6156 lexical scoping as in subr.el's dolist and dotimes.
6157 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
6158 Silence compiler warning.
6159 * thingatpt.el (forward-whitespace): Trivial coding style fix.
6160 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
6161 * international/ccl.el (ccl-compile): Trivial simplification.
6162 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
6163 * emacs-lisp/testcover.el (testcover-end): Remove spurious
6164 `printflag' argument.
6165 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
6166 Purecopy the whole obsolescence data.
6167
6168 2011-06-01 Leo Liu <sdl.web@gmail.com>
6169
6170 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
6171 improve doc-string as suggested by Marco Pessotto
6172 <melmothx@gmail.com>.
6173 (rcirc-print): Fix last change.
6174
6175 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6176
6177 * minibuffer.el (complete-with-action): Return nil for the metadata and
6178 boundaries of non-functional tables.
6179 (completion-table-dynamic): Return nil for the metadata.
6180 (completion-table-with-terminator): Add default case, using
6181 complete-with-action.
6182 (completion--metadata): New function.
6183 (completion-all-sorted-completions, minibuffer-completion-help): Use it
6184 to try and avoid pathological performance problems.
6185 (completion--embedded-envvar-table): Return `category' metadata.
6186
6187 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
6188
6189 * subr.el (process-alive-p): New tiny convenience function.
6190
6191 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6192
6193 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
6194 content but also its previous major mode.
6195
6196 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
6197
6198 * emacs-lisp/debug.el (debug): Restore the previous content of the
6199 *Backtrace* buffer when we exit with C-M-c.
6200
6201 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6202
6203 * minibuffer.el: Add metadata method to completion tables.
6204 (completion-category-overrides): New defcustom.
6205 (completion-metadata, completion--field-metadata)
6206 (completion-metadata-get, completion--styles)
6207 (completion--cycle-threshold): New functions.
6208 (completion-try-completion, completion-all-completions):
6209 Add `metadata' argument to choose completion-styles.
6210 (completion--do-completion): Use metadata to choose cycling.
6211 (completion-all-sorted-completions): Use metadata for sorting.
6212 Remove :completion-cycle-penalty which is not needed any more.
6213 (completion--try-word-completion): Add `metadata' argument.
6214 (minibuffer-completion-help): Check metadata for annotation function
6215 and sorting.
6216 (completion-file-name-table): Return `category' metadata.
6217 (minibuffer-completing-file-name): Make obsolete.
6218 * simple.el (minibuffer-completing-symbol): Make obsolete.
6219 * icomplete.el (icomplete-completions): Pass new `metadata' param to
6220 completion-try-completion.
6221
6222 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6223
6224 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
6225
6226 2011-05-30 Leo Liu <sdl.web@gmail.com>
6227
6228 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
6229 (rcirc-print): Decode all incoming messages (bug#8744).
6230 (rcirc-decode-coding-system): Allow value nil for automatic coding
6231 system detection.
6232
6233 2011-06-01 Glenn Morris <rgm@gnu.org>
6234
6235 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
6236
6237 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
6238
6239 * image.el (image-animate-max-time): Allow nil and t values.
6240 Default to nil.
6241 (create-animated-image): Doc fix.
6242 (image-animate-start): Remove second arg; just use
6243 image-animate-max-time.
6244 (image-animate-timeout): Doc fix. Args changed.
6245
6246 * image-mode.el (image-toggle-display-image): Ensure that the
6247 image spec passed to the animate timer is the same object as in
6248 the buffer's display property (Bug#6981).
6249 (image-transform-properties): Doc fix.
6250
6251 * image.el (image-animate-max-time): Default to nil.
6252
6253 2011-05-29 Martin Rudalics <rudalics@gmx.at>
6254
6255 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
6256 entire buffer list (Bug#8184).
6257
6258 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
6259
6260 * image.el (imagemagick-types-inhibit)
6261 (imagemagick-register-types): Doc fix.
6262
6263 2011-05-29 Deniz Dogan <deniz@dogan.se>
6264
6265 * net/rcirc.el (rcirc): Use the user's stored encryption method by
6266 default.
6267
6268 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
6269
6270 * select.el: Don't perform clipboard-manager saving in hooks;
6271 leave the hooks empty.
6272
6273 2011-05-28 Leo Liu <sdl.web@gmail.com>
6274
6275 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
6276 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
6277 (occur-edit-mode): New major mode (Bug#8463).
6278 (occur-after-change-function): New function.
6279 (occur-engine): Give Occur tags a read-only property.
6280
6281 2011-05-28 Kevin Ryde <user42@zip.com.au>
6282
6283 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
6284
6285 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
6286
6287 * bindings.el (help-echo): Make the initial non-indicator dash
6288 empty on graphical terminals (Bug#7295).
6289
6290 * files.el (auto-mode-alist): Move config rule after the
6291 in-stripping one (Bug#8547).
6292
6293 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
6294
6295 * startup.el (normal-splash-screen): Remove gratuitous mode-line
6296 setting (Bug#8740).
6297
6298 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
6299
6300 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
6301 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
6302 (Bug#8539).
6303
6304 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
6305
6306 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
6307
6308 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
6309
6310 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
6311 (hs-hide-block-at-point, hs-find-block-beginning)
6312 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
6313 (Bug#8279).
6314
6315 2011-05-28 Glenn Morris <rgm@gnu.org>
6316
6317 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
6318
6319 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
6320
6321 * help-fns.el (describe-function-1): If the function is a derived
6322 major mode, print the parent mode.
6323
6324 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
6325 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
6326
6327 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
6328
6329 * minibuffer.el (completion--capf-wrapper): Check applicability before
6330 returning non-nil for non-exclusive completion data.
6331 * progmodes/etags.el (tags-completion-at-point-function):
6332 * info-look.el (info-lookup-completions-at-point): Mark as
6333 non-exclusive.
6334 (info-complete): Adjust accordingly.
6335
6336 * info-look.el: Convert to lexical-binding and completion-at-point.
6337 (info-lookup-completions-at-point): New function.
6338 (info-complete): Use it and completion-in-region.
6339
6340 2011-05-28 Drew Adams <drew.adams@oracle.com>
6341
6342 * isearch.el: Let M-e start with point at the first mismatched char.
6343 (isearch-fail-pos): New function.
6344 (isearch-edit-string): Use it.
6345
6346 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
6347
6348 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
6349
6350 2009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
6351
6352 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
6353 traversal functions for avl-trees.
6354 (avl-tree--stack): New struct.
6355 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
6356 (avl-tree-enter): Add optional `updatefun' arg.
6357 (avl-tree--do-enter): Add optional `updatefun' arg.
6358 Change return value.
6359 (avl-tree-delete): Add optional `test' and `nilflag' args.
6360 (avl-tree--do-delete): Add `test' and `nilflag' args.
6361 Change return value.
6362 (avl-tree-member): Add optional `nilflag'
6363 (avl-tree-member-p): New function.
6364 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
6365 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
6366 (avl-tree-stack-empty-p): New functions.
6367
6368 2009-11-23 Toby Cubitt <toby-predictive@dr-qubit.org>
6369
6370 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
6371 avl-tree--del-balance1 and make it work both ways.
6372 (avl-tree--del-balance2): Remove.
6373 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
6374 make it work both ways.
6375 (avl-tree--enter-balance2): Remove.
6376 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
6377 New macros.
6378 (avl-tree--mapc, avl-tree-map): Add direction argument.
6379
6380 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
6381
6382 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
6383
6384 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
6385
6386 * select.el: Support clipboard managers with built-in function
6387 x-clipboard-manager-save, via delete-frame-functions and
6388 kill-emacs-hook.
6389 (xselect-convert-to-targets): Add MULTIPLE target to list.
6390 (xselect-convert-to-save-targets): New function.
6391
6392 2011-05-27 Kenichi Handa <handa@m17n.org>
6393
6394 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
6395 let-binding rfc2047-encode-encoded-words to nil.
6396
6397 2011-05-27 Glenn Morris <rgm@gnu.org>
6398
6399 * mail/emacsbug.el: Don't require url-util.
6400
6401 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
6402
6403 * files.el (set-auto-mode):
6404 Also respect mode: entries at the end of the file. (Bug#8586)
6405
6406 2011-05-26 Glenn Morris <rgm@gnu.org>
6407
6408 * files.el (hack-local-variables-prop-line, hack-local-variables):
6409 Downcase mode names, as seems to be traditional.
6410 (hack-local-variables, hack-local-variables-apply): Doc fixes.
6411
6412 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
6413 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
6414
6415 2011-05-25 Julien Danjou <julien@danjou.info>
6416
6417 * textmodes/rst.el (rst-define-level-faces): Do not define face
6418 symbol if it is already defined.
6419
6420 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
6421
6422 * play/5x5.el (5x5-new-game, 5x5-randomize):
6423 Reset 5x5-solver-output to nil when a new grid is cast.
6424 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
6425 these debugging traces, as defmacro breaks the compiled code.
6426
6427 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
6428
6429 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
6430
6431 2011-05-24 Leo Liu <sdl.web@gmail.com>
6432
6433 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
6434 (vc-bzr-sha1): Adapt.
6435
6436 * sha1.el: Remove. Function `sha1' is now builtin.
6437
6438 * bindings.el: Provide sha1 feature.
6439
6440 2011-05-24 Kenichi Handa <handa@m17n.org>
6441
6442 * mail/sendmail.el: Require `rfc2047'.
6443 (mail-insert-from-field): Do not perform RFC2047 encoding.
6444 (mail-encode-header): New function.
6445 (sendmail-send-it): Set buffer-file-coding-system of the work
6446 buffer to the return value of select-message-coding-system.
6447 Call mail-encode-header.
6448
6449 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
6450
6451 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
6452
6453 * mail/supercite.el (sc-default-cite-frame):
6454 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
6455
6456 2011-05-24 Glenn Morris <rgm@gnu.org>
6457
6458 * progmodes/python.el (brm-menu): Declare.
6459
6460 * emulation/viper.el (viper-set-hooks): Declare.
6461
6462 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
6463 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
6464 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
6465 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
6466 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
6467 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
6468
6469 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6470
6471 Add an :exit-function for completion-at-point.
6472
6473 * minibuffer.el (completion--done): New fun.
6474 (completion--do-completion): Use it. New arg `expect-exact'.
6475 (minibuffer-complete, minibuffer-complete-word): Don't output message,
6476 since completion--do-completion does it for us now.
6477 (minibuffer-force-complete): Use completion--done and
6478 completion--replace. Handle sole-completion case with more care.
6479 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
6480 (completion-extra-properties): New var.
6481 (completion-annotate-function): Make obsolete.
6482 (minibuffer-completion-help): Adjust accordingly.
6483 Use completion-list-insert-choice-function.
6484 (completion-at-point, completion-help-at-point):
6485 Bind completion-extra-properties.
6486 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
6487 * simple.el (completion-list-insert-choice-function): New var.
6488 (completion-setup-function): Preserve it.
6489 (choose-completion): Pay attention to it, shuffle the code a bit.
6490 (choose-completion-string): New arg `insert-function'.
6491
6492 * textmodes/bibtex.el: Convert to lexical binding.
6493 (bibtex-mode-map): Use completion-at-point.
6494 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
6495 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
6496 (bibtex-complete): Define as obsolete alias.
6497 (bibtex-complete-internal): Remove.
6498 (bibtex-format-entry): Remove unused sub-group in regexp.
6499 * shell.el (shell--command-completion-data)
6500 (shell-environment-variable-completion):
6501 * pcomplete.el (pcomplete-completions-at-point):
6502 * comint.el (comint--complete-file-name-data): Use :exit-function
6503 instead of completion-table-with-terminator so it also works for
6504 choose-completion.
6505
6506 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6507
6508 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
6509
6510 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
6511 (bug#8710).
6512
6513 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
6514
6515 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
6516
6517 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
6518 customization variable and implement: If non-nil, auto-fill will
6519 be inhibited while on topic's header line.
6520
6521 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
6522
6523 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
6524 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
6525 always have a solution in grid size = 5 cases.
6526 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
6527 (5x5-solver-output, 5x5-log-buffer): New vars.
6528 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
6529 Make these variables buffer local to achieve 5x5 multi-session-ness.
6530 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
6531 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
6532 (5x5-solve-suggest): New funs.
6533 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
6534 randomize a grid so that we ensure that there is always a solution.
6535 (5x5-make-random-grid): Allow other movement than flipping.
6536
6537 2011-05-23 Kevin Ryde <user42@zip.com.au>
6538
6539 * emacs-lisp/advice.el (ad-read-advised-function):
6540 Use `function-called-at-point' as the default default, if it has
6541 advice and passes PREDICATE.
6542
6543 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6544
6545 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
6546 byte-compile-lambda if it's actually a lambda.
6547
6548 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
6549 Fix function quoting. Use backquote better.
6550
6551 2011-05-22 Yuanle Song <sylecn@gmail.com>
6552
6553 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
6554 matching (Bug#8516).
6555
6556 2011-01-22 Jari Aalto <jari.aalto@cante.net>
6557
6558 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
6559 different face (Bug#8178).
6560
6561 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
6562
6563 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
6564 defface (Bug#8144).
6565
6566 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
6567
6568 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
6569 funcall as well (bug#8712). Warn when performing those conversions.
6570 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
6571
6572 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
6573
6574 2011-05-22 Glenn Morris <rgm@gnu.org>
6575
6576 * files.el (hack-local-variables-prop-line): Small simplifications.
6577 (hack-local-variables, hack-local-variables-prop-line):
6578 If MODE-ONLY, return the mode, rather than just `t'.
6579
6580 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
6581
6582 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
6583
6584 2011-05-21 Glenn Morris <rgm@gnu.org>
6585
6586 * files.el (hack-local-variables-prop-line, hack-local-variables):
6587 If only interested in the mode, don't bother doing the other stuff.
6588
6589 * image-mode.el (image-after-revert-hook):
6590 Redraw all frames on which the image is visible. (Bug#8567)
6591
6592 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
6593
6594 * wid-edit.el (widget-checklist-match-inline):
6595 Fix 2011-04-19 change. (Bug#8649)
6596
6597 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
6598
6599 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
6600 Also allow singlespace after single-letter capitals followed by a dot.
6601
6602 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
6603 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
6604
6605 2011-05-20 Nix <nix@esperi.org.uk>
6606
6607 * files.el (basic-save-buffer-2):
6608 Fix handling of break-hardlink-on-save with non-existent files.
6609
6610 2011-05-19 Deniz Dogan <deniz@dogan.se>
6611
6612 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
6613 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
6614
6615 2011-05-19 Glenn Morris <rgm@gnu.org>
6616
6617 * progmodes/f90.el (f90-type-def-re):
6618 Handle "type, bind(c)". (Bug#8691)
6619
6620 * emacs-lisp/autoload.el (batch-update-autoloads):
6621 Set autoload-excludes by parsing loadup.el rather than Makefiles.
6622
6623 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
6624
6625 * net/tramp.el (tramp-process-actions): Set "first-password-request"
6626 property for the correct connection in case of multihops.
6627
6628 2011-05-18 Glenn Morris <rgm@gnu.org>
6629
6630 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
6631 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
6632
6633 Rationalize calendar handling of day and month abbrev-arrays.
6634 * calendar/calendar.el (calendar-customized-p): New function.
6635 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
6636 (calendar-day-name-array, calendar-month-name-array): Doc fix.
6637 Add :set function.
6638 (calendar-abbrev-length, calendar-day-abbrev-array)
6639 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
6640 (calendar-day-abbrev-array, calendar-month-abbrev-array):
6641 Elements may no longer be nil.
6642 (calendar-day-name, calendar-month-name):
6643 Update for changed nature of abbrev arrays.
6644 * calendar/diary-lib.el (diary-name-pattern):
6645 Update for changed nature of abbrev arrays.
6646 (diary-mark-entries-1): Update calendar-make-alist calls.
6647 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
6648 * calendar/cal-html.el (cal-html-day-abbrev-array):
6649 Simply inherit from calendar-day-abbrev-array.
6650
6651 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
6652
6653 * progmodes/grep.el (grep-mode): Disable default
6654 compilation-directory-matcher setting (bug#8684).
6655
6656 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
6657
6658 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
6659 instead of "head" and "tail". There were problems with SunOS 5.9,
6660 and it performs better.
6661
6662 2011-05-17 Glenn Morris <rgm@gnu.org>
6663
6664 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
6665
6666 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
6667 Replace obsolete function.
6668
6669 * shell.el (pcomplete-parse-arguments-function): Declare.
6670
6671 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
6672 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
6673 (appt-check): Doc fixes.
6674 (appt-disp-window-function, appt-delete-window-function):
6675 Remove needless special case in custom :type.
6676 (appt-display-count): Default to 0, not nil.
6677 (appt-check): Reset appt-display-count to 0, not nil.
6678
6679 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
6680
6681 * progmodes/python.el (python-font-lock-keywords):
6682 Add the Python 3.X keyword "nonlocal" (bug#8639).
6683
6684 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
6685
6686 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
6687
6688 2011-05-16 Kevin Ryde <user42@zip.com.au>
6689
6690 * info-look.el (makefile-automake-mode): New setups, looking in
6691 automake manual, then makefile-mode.
6692 (makefile-mode): Remove automake manual, have it just in
6693 makefile-automake-mode since there's various things different or
6694 not relevant to plain make.
6695 (makefile-mode): Remove "other-modes" non-existent automake-mode,
6696 believe a hypothetical automake-mode would go to makefile-mode,
6697 not the other way around.
6698
6699 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
6700
6701 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
6702 hunk-end tags (Bug#8672).
6703
6704 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
6705 vc-annotate-show-diff-revision-at-line (Bug#8671).
6706
6707 2011-05-14 Glenn Morris <rgm@gnu.org>
6708
6709 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
6710 in the middle of an existing one with multiple authors. (Bug#8645)
6711 (change-log-font-lock-keywords): Also handle multiple author lines
6712 with leading tabs. (Bug#8644)
6713
6714 * calendar/appt.el (appt-check): Rename some local variables.
6715 Some simplification/reordering.
6716
6717 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
6718 (feedmail-sendmail-f-doesnt-sell-me-out)
6719 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
6720 (feedmail-debug-sit-for, feedmail-queue-express-hook)
6721 (feedmail-queue-runner-message-sender): Set :version.
6722 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
6723 (bbdb-dwim-net-address, vm-mail): Declare.
6724 (feedmail-binmail-gnulinuxish-template):
6725 Rename from feedmail-binmail-linuxish-template.
6726 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
6727 Use insert-buffer-substring.
6728
6729 2011-05-14 Bill Carpenter <bill@carpenter.org>
6730
6731 * mail/feedmail.el (feedmail-patch-level): Increase.
6732 (feedmail-debug): New custom group.
6733 (feedmail-confirm-outgoing-timeout)
6734 (feedmail-sendmail-f-doesnt-sell-me-out)
6735 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
6736 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
6737 (feedmail-sender-line, feedmail-from-line)
6738 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
6739 (feedmail-spray-this-address)
6740 (feedmail-spray-address-fiddle-plex-list)
6741 (feedmail-queue-use-send-time-for-date)
6742 (feedmail-queue-use-send-time-for-message-id)
6743 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
6744 (feedmail-buffer-eating-function):
6745 Doc fixes.
6746 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
6747 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
6748 (feedmail-message-action-scroll-down): New functions.
6749 (feedmail-queue-directory, feedmail-queue-draft-directory):
6750 Use expand-file-name.
6751 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
6752 Remove C-v help entry.
6753 (feedmail-queue-buffer-file-name): New variable.
6754 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
6755 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
6756 (feedmail-message-action-send-strong, feedmail-message-action-edit)
6757 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
6758 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
6759 (feedmail-message-action-toggle-spray)
6760 (feedmail-run-the-queue-no-prompts)
6761 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
6762 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
6763 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
6764 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
6765 (feedmail-envelope-deducer, feedmail-fiddle-from)
6766 (feedmail-fiddle-sender, feedmail-default-date-generator)
6767 (feedmail-fiddle-date, feedmail-fiddle-message-id)
6768 (feedmail-fiddle-spray-address)
6769 (feedmail-fiddle-list-of-spray-fiddle-plexes)
6770 (feedmail-fiddle-list-of-fiddle-plexes)
6771 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
6772 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
6773 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
6774 Change default. Doc fix.
6775 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
6776 (feedmail-binmail-linuxish-template): New constant.
6777 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
6778 Respect feedmail-sendmail-f-doesnt-sell-me-out.
6779 (feedmail-send-it): Add debug call.
6780 Use feedmail-queue-buffer-file-name, and
6781 feedmail-send-it-immediately-wrapper.
6782 (feedmail-message-action-send): Add debug call.
6783 Use feedmail-send-it-immediately-wrapper.
6784 (feedmail-queue-express-to-queue): Add debug call.
6785 Run feedmail-queue-express-hook.
6786 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
6787 (feedmail-message-action-help-blat):
6788 Rename from feedmail-queue-send-edit-prompt-help-first.
6789 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
6790 Check line-endings. Handle errors better.
6791 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
6792 Doc fix. Add debug call.
6793 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
6794 Use feedmail-queue-send-edit-prompt-inner.
6795 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
6796 (feedmail-queue-send-edit-prompt-inner): New function, extracted
6797 from feedmail-queue-send-edit-prompt.
6798 (feedmail-queue-send-edit-prompt-help)
6799 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
6800 (feedmail-tidy-up-slug): Add debug call.
6801 Respect feedmail-queue-slug-suspect-regexp.
6802 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
6803 (feedmail-dump-message-to-queue): Add debug call.
6804 Expand queue-directory.
6805 (feedmail-dump-message-to-queue): Change message slightly.
6806 Use feedmail-say-chatter.
6807 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
6808 (feedmail-send-it-immediately-wrapper): New function.
6809 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
6810 Insert empty string rather than newline. Handle full-frame case.
6811 Use catch/throw. Use feedmail-say-chatter.
6812 (feedmail-fiddle-from): Try mail-host-address.
6813 (feedmail-default-message-id-generator): Doc fix.
6814 Bind system-time-locale. Handle missing end.
6815 (feedmail-fiddle-x-mailer): Add debug call.
6816 Handle feedmail-x-mailer-line being nil.
6817 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
6818 Add debug call. Use buffer-substring-no-properties.
6819 (feedmail-say-debug, feedmail-say-chatter): New functions.
6820 (feedmail-find-eoh): Give an explicit error.
6821
6822 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
6823
6824 * net/newst-treeview.el (newsticker-treeview-face): Change default
6825 family from helvetica to sans.
6826 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
6827 etc/images/newsticker.
6828
6829 * net/newst-reader.el (newsticker-feed-face): Change default
6830 family from helvetica to sans.
6831
6832 * net/newst-plainview.el (newsticker-new-item-face)
6833 (newsticker-old-item-face, newsticker-immortal-item-face)
6834 (newsticker-obsolete-item-face, newsticker-date-face)
6835 (newsticker-statistics-face): Change default family from
6836 helvetica to sans.
6837 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
6838 etc/images/newsticker.
6839
6840 * net/newst-backend.el (newsticker--do-run-auto-mark-filter),
6841 (newsticker--process-auto-mark-filter-match): : Tell user about
6842 auto-marking.
6843
6844 2011-05-13 Didier Verna <didier@xemacs.org>
6845
6846 Common Lisp indentation improvements on defmethod and lambda-lists.
6847 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
6848 TODO entries.
6849 (lisp-lambda-list-keyword-parameter-indentation)
6850 (lisp-lambda-list-keyword-parameter-alignment)
6851 (lisp-lambda-list-keyword-alignment): New customizable user options.
6852 (lisp-indent-defun-method): Improve docstring.
6853 (extended-loop-p): Fix comment.
6854 (lisp-indent-lambda-list-keywords-regexp): New variable.
6855 (lisp-indent-lambda-list): New function.
6856 (lisp-indent-259): Use it.
6857 (lisp-indent-defmethod): Support for more than one
6858 method qualifier and properly indent methods lambda-lists.
6859 (defgeneric): Provide a missing common-lisp-indent-function property.
6860
6861 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
6862
6863 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
6864 bounds for the empty string (bug#8667).
6865
6866 2011-05-13 Glenn Morris <rgm@gnu.org>
6867
6868 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
6869
6870 * mail/sendmail.el (sendmail-program): Try executable-find first.
6871 (sendmail-send-it): `sendmail-program' cannot be unbound.
6872
6873 * calendar/appt.el (appt-make-list): Simplify.
6874 (appt-time-msg-list): Doc fix.
6875 (appt-check): Change mode-line message at the time of the appointment.
6876
6877 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
6878
6879 * progmodes/ld-script.el (ld-script-keywords)
6880 (ld-script-builtins): Update keywords list.
6881
6882 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6883
6884 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
6885
6886 * shell.el (shell-completion-vars): New function.
6887 (shell-mode):
6888 * simple.el (read-shell-command): Use it.
6889 (blink-matching-open): No need for " [...]" in minibuffer-message.
6890
6891 2011-05-12 Glenn Morris <rgm@gnu.org>
6892
6893 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
6894 (appt-check): Simplify.
6895
6896 2011-05-12 Eli Zaretskii <eliz@gnu.org>
6897
6898 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
6899 literal "/dev/null".
6900
6901 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6902
6903 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
6904 Fix typo.
6905
6906 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6907
6908 * progmodes/which-func.el (which-function):
6909 Use add-log-current-defun instead of add-log-current-defun-function,
6910 which might not be defined (Bug#8260).
6911
6912 2011-05-12 Glenn Morris <rgm@gnu.org>
6913
6914 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
6915 Let byte-compile-initial-macro-environment always take precedence.
6916
6917 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6918
6919 * net/rcirc.el: Add support for SSL/TLS connections.
6920 (rcirc-server-alist): New field `encryption'.
6921 (rcirc): Check `encryption' settings.
6922 (rcirc-connect): New arg `encryption'. Use open-network-stream.
6923 Merge make-local-variable into `set'.
6924 (rcirc--connection-open-p): New function.
6925 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
6926 the process is not a network process (e.g. running gnutls-cli).
6927 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
6928 Make rcirc-(en|de)code-coding-system local here.
6929 (rcirc-mode): Merge make-local-variable into `set'.
6930 (rcirc-parent-buffer): Make permanent buffer-local.
6931 (rcirc-multiline-minor-mode): Don't do it here.
6932 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
6933 there's no server buffer.
6934
6935 2011-05-11 Glenn Morris <rgm@gnu.org>
6936
6937 * newcomment.el (comment-kill): Prefix "unused" local.
6938
6939 * term/w32console.el (get-screen-color): Declare.
6940
6941 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
6942 Handle symbol elements of byte-compile-initial-macro-environment.
6943
6944 2011-05-10 Leo Liu <sdl.web@gmail.com>
6945
6946 * bookmark.el (bookmark-bmenu-mode-map):
6947 Bind bookmark-bmenu-search to `/'.
6948
6949 * mail/footnote.el: Convert to utf-8 encoding.
6950 (footnote-unicode-string, footnote-unicode-regexp): New variable.
6951 (Footnote-unicode): New function.
6952 (footnote-style-alist): Add unicode style to the list.
6953 (footnote-style): Doc fix.
6954
6955 2011-05-10 Jim Meyering <meyering@redhat.com>
6956
6957 Fix doubled-word typos.
6958 * international/quail.el (quail-insert-kbd-layout): and and -> and
6959 * kermit.el: and and -> and
6960 * net/ldap.el (ldap-search-internal): to to -> to
6961 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
6962 * progmodes/js.el (js-mode): and and -> and
6963 * textmodes/artist.el (artist-move-to-xy): at at -> at
6964 (artist-draw-region-trim-line-endings): if if -> if
6965 And Safetyc -> Safety.
6966 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
6967
6968 2011-05-10 Glenn Morris <rgm@gnu.org>
6969 Stefan Monnier <monnier@iro.umontreal.ca>
6970
6971 * files.el (hack-one-local-variable-eval-safep):
6972 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
6973
6974 2011-05-10 Glenn Morris <rgm@gnu.org>
6975
6976 * calendar/diary-lib.el (diary-list-entries-hook)
6977 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
6978 (diary-nongregorian-marking-hook, diary-list-entries)
6979 (diary-include-other-diary-files, diary-mark-entries)
6980 (diary-mark-included-diary-files): Doc fixes.
6981
6982 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
6983
6984 * misc.el: Require tabulated-list.el during compilation.
6985
6986 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
6987
6988 * progmodes/compile.el (compilation-start):
6989 Run compilation-filter-hook for the async case too.
6990 (compilation-filter-hook): Doc fix.
6991
6992 2011-05-09 Deniz Dogan <deniz@dogan.se>
6993
6994 * wdired.el: Remove outdated installation comment. Fix usage
6995 comment.
6996
6997 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
6998
6999 * misc.el: Implement new command `list-dynamic-libraries'.
7000 (list-dynamic-libraries--loaded-only-p): New variable.
7001 (list-dynamic-libraries--refresh): New function.
7002 (list-dynamic-libraries): New command.
7003
7004 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
7005
7006 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7007 Fix the ant regexp to handle end-line and end-column info from jikes.
7008 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
7009 higher priority to avoid clobbering by gnu.
7010
7011 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
7012
7013 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
7014 if the face has existing theme settings (Bug#8454).
7015
7016 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
7017
7018 * progmodes/perl-mode.el (perl-imenu-generic-expression):
7019 Only match variables declared via `my' or `our' (Bug#8261).
7020
7021 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
7022 special file names `.' and `..' (Bug#8259).
7023
7024 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
7025
7026 * progmodes/grep.el (grep-mode-font-lock-keywords):
7027 Remove buffer-changing entries.
7028 (grep-filter): New function.
7029 (grep-mode): Add it to compilation-filter-hook.
7030
7031 * progmodes/compile.el (compilation-filter-hook)
7032 (compilation-filter-start): New defvars.
7033 (compilation-filter): Call compilation-filter-hook prior to
7034 updating the process mark.
7035
7036 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7037
7038 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
7039
7040 2011-05-07 Eli Zaretskii <eliz@gnu.org>
7041
7042 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
7043 mailclient-send-it even if window-system is nil. (Bug#8595)
7044
7045 * term/w32console.el (terminal-init-w32console):
7046 Call get-screen-color and use its output to set the frame
7047 background-mode. (Bug#8597)
7048
7049 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7050
7051 Make bytecomp.el understand that defmethod defines funs (bug#8631).
7052 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
7053 New functions.
7054 (defgeneric, eieio--defmethod): Use them.
7055 (eieio-defgeneric): Remove.
7056 (defmethod): Call defgeneric in a way visible to the byte-compiler.
7057
7058 2011-05-07 Glenn Morris <rgm@gnu.org>
7059
7060 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
7061 Use let rather than let*.
7062 (timeclock-find-discrep): Remove unused local.
7063
7064 * calendar/diary-lib.el (diary-comment-start): Doc fix.
7065
7066 * calendar/appt.el (appt-time-msg-list): Doc fix.
7067
7068 2011-05-06 Noah Friedman <friedman@splode.com>
7069
7070 * apropos.el (apropos-print-doc): Only use
7071 emacs-lisp-docstring-fill-column when it is bound to an integer,
7072 per that variable's documentation.
7073
7074 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7075
7076 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
7077 and warnings are not silently discarded (e.g. use -d instead of -P).
7078
7079 2011-05-06 Glenn Morris <rgm@gnu.org>
7080
7081 * calendar/appt.el (appt-message-warning-time): Doc fix.
7082 (appt-warning-time-regexp): New option.
7083 (appt-make-list): Respect appt-message-warning-time.
7084
7085 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
7086 New options.
7087 (diary-add-to-list): Strip comments from the displayed string.
7088 (diary-mode): Set comment-start and comment-end.
7089
7090 * vc/diff-mode.el (smerge-refine-subst): Declare.
7091 (diff-refine-hunk): Don't require smerge-mode when compiling.
7092
7093 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
7094
7095 * simple.el (list-processes): Return nil as the docstring says.
7096
7097 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
7098
7099 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
7100 to "".
7101 (ange-ftp-write-region, ange-ftp-insert-file-contents)
7102 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
7103 determining of binary transfer. (Bug#7383)
7104
7105 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
7106
7107 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7108 Fix port computation bug. (Bug#8618)
7109
7110 2011-05-05 Glenn Morris <rgm@gnu.org>
7111
7112 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
7113
7114 * simple.el (shell-dynamic-complete-functions)
7115 (comint-dynamic-complete-functions): Declare.
7116
7117 * net/network-stream.el (gnutls-negotiate):
7118 * simple.el (tabulated-list-print): Fix declarations.
7119
7120 * progmodes/gud.el (syntax-symbol, syntax-point):
7121 Remove unnecessary and incorrect declarations.
7122
7123 * emacs-lisp/check-declare.el (check-declare-scan):
7124 Handle byte-compile-initial-macro-environment in bytecomp.el
7125
7126 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7127
7128 Fix earlier half-done eieio-defmethod change (bug#8338).
7129 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
7130 Streamline and change calling convention.
7131 (defmethod): Adjust accordingly and simplify.
7132 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
7133 new eieio--defmethod.
7134 (slot-boundp): Minor CSE simplification.
7135
7136 2011-05-05 Milan Zamazal <pdm@zamazal.org>
7137
7138 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
7139 (glasses-make-readable): Use glasses-separate-capital-groups.
7140
7141 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
7142
7143 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
7144 (warning-series): Doc fix.
7145 (display-warning): Don't try to create the buffer if we just found it.
7146
7147 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
7148
7149 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
7150 (autoload-find-generated-file): New function.
7151 (generate-file-autoloads): Bind generated-autoload-file to
7152 buffer-file-name.
7153 (update-file-autoloads, update-directory-autoloads):
7154 Use autoload-find-generated-file. If called interactively, prompt for
7155 output file (Bug#7989).
7156 (batch-update-autoloads): Doc fix.
7157
7158 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
7159
7160 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
7161
7162 2011-05-04 Glenn Morris <rgm@gnu.org>
7163
7164 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
7165 function, so it follows changes in calendar-date-style.
7166 (diary-fancy-date-matcher): New function.
7167 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
7168 (diary-fancy-font-lock-fontify-region-function):
7169 Use diary-fancy-date-pattern as a function.
7170
7171 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
7172 non-numbers for `year' etc pseudo-variables. (Bug#8583)
7173
7174 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
7175
7176 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
7177 instead of positional arguments. Allow :keylist and :crlfiles
7178 arguments.
7179 (open-gnutls-stream): Call it.
7180
7181 * net/network-stream.el (network-stream-open-starttls): Adjust to
7182 call `gnutls-negotiate' with :process and :hostname arguments.
7183
7184 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7185
7186 * minibuffer.el (completion--message): New function.
7187 (completion--do-completion, minibuffer-complete)
7188 (minibuffer-force-complete, minibuffer-complete-word): Use it.
7189 (completion--do-completion): Don't ignore completion-auto-help when in
7190 icomplete-mode.
7191
7192 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
7193 internal encoding (e.g. tibetan zero is not whitespace).
7194 (global-whitespace-mode): Prefer save-current-buffer.
7195 (whitespace-trailing-regexp): Remove useless save-match-data.
7196 (whitespace-empty-at-bob-regexp): Minor simplification.
7197
7198 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
7199
7200 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
7201
7202 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7203
7204 * textmodes/ispell.el (ispell-add-per-file-word-list):
7205 Use `concat' to create string for insertion.
7206
7207 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7208
7209 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
7210 Avoid open-line which runs post-self-insert-hook.
7211 (bibtex-fill-entry): Remove unused `end' var.
7212
7213 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
7214
7215 * textmodes/ispell.el (ispell-add-per-file-word-list):
7216 Protect against `nil' value of `comment-start' (Bug#8579).
7217
7218 2011-05-03 Leo Liu <sdl.web@gmail.com>
7219
7220 * isearch.el (isearch-yank-pop): New command.
7221 (isearch-mode-map): Bind it to `M-y'.
7222 (isearch-forward): Mention it.
7223
7224 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
7225
7226 * simple.el (minibuffer-complete-shell-command): Remove.
7227 (minibuffer-local-shell-command-map): Use completion-at-point.
7228 (read-shell-command): Setup completion vars here instead.
7229 (read-expression-map): Bind TAB to symbol completion.
7230
7231 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
7232 error directly rather via storing it into `results'.
7233
7234 2011-05-02 Leo Liu <sdl.web@gmail.com>
7235
7236 * vc/diff.el: Fix description.
7237
7238 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
7239
7240 * server.el (server-eval-at): New function.
7241
7242 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
7243
7244 * net/network-stream.el (open-network-stream): Take a :nowait
7245 parameter and pass it on to `make-network-process'.
7246 (network-stream-open-plain): Ditto.
7247
7248 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
7249
7250 * faces.el (face-spec-set-match-display): Don't match toolkit
7251 options on terminal frames.
7252
7253 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
7254
7255 * progmodes/pascal.el: Use lexical binding.
7256 (pascal-mode-map): Remove author preferences.
7257
7258 * pcomplete.el (pcomplete-std-complete): Don't abuse
7259 completion-at-point.
7260
7261 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
7262
7263 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
7264 removing code that has been dead since 1991 or so.
7265
7266 * startup.el (command-line): When warning about "_emacs", use a
7267 delayed warning to allow the user to filter it out.
7268
7269 2011-04-28 Deniz Dogan <deniz@dogan.se>
7270
7271 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
7272 user has not joined.
7273
7274 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7275
7276 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
7277 aren't any completions at point.
7278
7279 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
7280
7281 * subr.el (display-delayed-warnings): New function.
7282 (delayed-warnings-hook): New variable.
7283
7284 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
7285
7286 * minibuffer.el (completion-at-point, completion-help-at-point):
7287 Don't presume that a given completion-at-point-function will always
7288 use the same calling convention.
7289
7290 * pcomplete.el (pcomplete-completions-at-point):
7291 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
7292 pcomplete-seen is non-nil.
7293 (pcomplete-comint-setup): Also recognize the new comint/shell
7294 completion functions.
7295 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
7296 pcomplete-seen is non-nil.
7297
7298 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
7299
7300 * calendar/icalendar.el (diary-lib): Add require statement.
7301 (icalendar--create-uid): Read out a uid from a text-property on
7302 the first character in the entry. This allows for code to add its
7303 own uid to the entry.
7304 (icalendar--convert-float-to-ical): Add export of
7305 `diary-float'-entries save for those with the optional DAY
7306 argument.
7307
7308 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
7309
7310 * subr.el (shell-quote-argument): Use alternate escaping strategy
7311 when we spot a variable reference in a string.
7312
7313 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
7314
7315 * cus-start.el (all): Define customization for debug-on-event.
7316
7317 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
7318
7319 * subr.el (shell-quote-argument): Escape correctly under Windows.
7320
7321 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7322
7323 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
7324
7325 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
7326
7327 * net/tramp.el (tramp-process-actions): Add POS argument.
7328 Delete region between POS and (pos).
7329
7330 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7331 Use `nil' position in `tramp-process-actions' call.
7332 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
7333
7334 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
7335 position in `tramp-process-actions' call.
7336
7337 * net/trampver.el: Update release number.
7338
7339 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7340
7341 * custom.el (defcustom): Obey lexical-binding.
7342
7343 Fix octave-inf completion problems reported by Alexander Klimov.
7344 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
7345 Inherit from octave-mode-syntax-table.
7346 (inferior-octave-mode): Set info-lookup-mode.
7347 (inferior-octave-completion-at-point): New function.
7348 (inferior-octave-complete): Use it and completion-in-region.
7349 (inferior-octave-dynamic-complete-functions): Use it as well, and use
7350 comint-filename-completion.
7351 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
7352 symbol elements which shouldn't be word elements.
7353 (octave-font-lock-keywords, octave-beginning-of-defun)
7354 (octave-function-header-regexp): Adjust regexps accordingly.
7355 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
7356
7357 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
7358
7359 * net/gnutls.el (gnutls-errorp): Declare before first use.
7360
7361 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
7362
7363 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
7364 verify-error, and verify-hostname-error parameters. Check whether
7365 default trustfile exists before going to use it. Add missing
7366 argument to gnutls-message-maybe call. Return return value.
7367 Reported by Claudio Bley <claudio.bley@gmail.com>.
7368 (open-gnutls-stream): Add usage example.
7369
7370 * net/network-stream.el (network-stream-open-starttls): Give host
7371 parameter to `gnutls-negotiate'.
7372 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
7373 * subr.el (shell-quote-argument): Escape correctly under Windows.
7374
7375 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
7376
7377 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
7378 Use correct match group (bug#8438).
7379
7380 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
7381
7382 * emacs-lisp/package.el (package-built-in-p): Fix typo.
7383 (package-menu--generate): New arg specifying packages to show.
7384 (package-menu-refresh, package-menu-execute, list-packages):
7385 Callers changed.
7386 (package-show-package-list): New function, replacing deleted
7387 package--list-packages (renamed because it is non-internal).
7388
7389 * finder.el (finder-list-matches): Use package-show-package-list
7390 instead of deleted package--list-packages.
7391
7392 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
7393 Based on a previous implementation by Juanma Barranquero (Bug#8366).
7394 (vc-annotate-mode-map): Bind it to RET.
7395
7396 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
7397
7398 * progmodes/etags.el (next-file): Don't use set-buffer to change
7399 buffers (Bug#8478).
7400
7401 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
7402
7403 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
7404
7405 * apropos.el (apropos-label-face): Avoid variable-pitch face.
7406 (apropos-accumulator): Doc fix.
7407 (apropos-function, apropos-macro, apropos-command)
7408 (apropos-variable, apropos-face, apropos-group, apropos-widget)
7409 (apropos-plist): Add face property.
7410 (apropos-symbols-internal): Fix indentation.
7411 (apropos-print): Simplify help, and recognize apropos-multi-type.
7412 (apropos-print-doc): Use button-type-get to extract the button's
7413 face property. Fill docstring (Bug#8352).
7414
7415 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
7416
7417 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
7418
7419 * play/mpuz.el (mpuz-silent): Doc fix.
7420 (mpuz-mode-map): Use mapc.
7421 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
7422 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
7423 Fix typos in docstrings.
7424
7425 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
7426 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
7427
7428 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
7429
7430 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
7431
7432 * minibuffer.el (completion--do-completion): Avoid the "Next char
7433 not unique" prompt if icomplete-mode is enabled (Bug#5849).
7434
7435 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
7436 mouse-2 into unread-command-events, it is interpreted correctly.
7437
7438 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
7439 (image-toggle-display): Doc fix.
7440
7441 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
7442
7443 * textmodes/page.el (what-page): Use line-number-at-pos to
7444 calculate line number (Bug#6825).
7445
7446 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
7447
7448 * eshell/esh-mode.el (find-tag-interactive): Declare function.
7449 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
7450 Pass argument NO-DEFAULT to `find-tag-interactive'.
7451
7452 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
7453
7454 Lexical-binding cleanup.
7455
7456 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
7457 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
7458 * progmodes/ada-prj.el (ada-prj-initialize-values)
7459 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
7460 (ada-prj-show-value):
7461 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
7462 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
7463 (antlr-invalidate-context-cache, antlr-options-menu-filter)
7464 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
7465 * progmodes/bug-reference.el (bug-reference-push-button):
7466 * progmodes/fortran.el (fortran-line-length):
7467 * progmodes/glasses.el (glasses-change):
7468 * progmodes/octave-mod.el (octave-fill-paragraph):
7469 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
7470 (python-pdbtrack-grub-for-buffer, python-sentinel):
7471 * progmodes/sql.el (sql-save-connection):
7472 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
7473 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
7474 Mark unused parameters.
7475
7476 * progmodes/compile.el (compilation--flush-directory-cache)
7477 (compilation--flush-parse, compile-internal): Mark unused parameters.
7478 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
7479 (compilation-next-error-function): Remove unused variable `timestamp'.
7480
7481 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
7482 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
7483
7484 * progmodes/dcl-mode.el (dcl-end-of-command):
7485 Remove unused variable `start'.
7486 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
7487 (dcl-option-value-basic, dcl-option-value-offset)
7488 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
7489 Mark unused parameters.
7490 (dcl-save-local-variable): Remove unused variable `val'.
7491 (mode): Declare.
7492
7493 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
7494 Mark unused parameters.
7495 (delphi-ignore-changes): Move before first use.
7496 (delphi-charset-token-at): Remove unused variable `start'.
7497 (delphi-else-start): Remove unused variable `if-count'.
7498 (delphi-comment-block-start, delphi-comment-block-end):
7499 Remove unused variable `kind'.
7500 (delphi-indent-line): Remove unused variable `new-point'.
7501
7502 * progmodes/ebrowse.el (ebrowse-files-list)
7503 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
7504 Mark unused parameters. Don't quote `lambda'.
7505 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
7506 Don't quote `lambda'.
7507 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
7508 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
7509 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
7510 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
7511 Use `ignore-errors'.
7512 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
7513 (ebrowse-view/find-file-and-search-pattern)
7514 (ebrowse-view/find-member-declaration/definition):
7515 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
7516 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
7517 Rename parameter PREFIX-ARG to PREFIX.
7518 (ebrowse-tags-read-name): Remove unused variables `start' and
7519 `member-info'.
7520 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
7521 to `tags-file'.
7522
7523 * progmodes/etags.el (local-find-tag-hook): Declare.
7524 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
7525 Mark unused parameters.
7526
7527 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
7528 (executable-interpret): Mark unused parameter.
7529
7530 * progmodes/flymake.el (flymake-process-sentinel)
7531 (flymake-after-change-function)
7532 (flymake-create-temp-with-folder-structure)
7533 (flymake-get-include-dirs-dot): Mark unused parameters.
7534 (flymake-safe-delete-directory): Remove unused variable `err'.
7535
7536 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
7537 (speedbar-timer-fn, speedbar-line-text)
7538 (speedbar-change-expand-button-char, speedbar-delete-subblock)
7539 (speedbar-center-buffer-smartly): Declare functions.
7540 (gdb-find-watch-expression): Remove unused variable `array'.
7541 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
7542 (gdb-starting): Mark unused parameters.
7543 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
7544 (gdb-table-string): Remove unused variable `res'.
7545 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
7546 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
7547 (gdb-display-buffer): Remove unused variable `cur-size'.
7548
7549 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
7550 allow lexical-binding compilation.
7551 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
7552 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
7553 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
7554 Mark unused parameters.
7555 (gud-gdb-marker-filter): Remove unused variable `match'.
7556 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
7557 lambda expressions and funcall them, instead of using `fset'.
7558
7559 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
7560 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
7561
7562 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
7563 variable `header-beg'; use `let'.
7564
7565 * progmodes/icon.el (indent-icon-exp): Remove unused variables
7566 `restart', `last-sexp' and `at-do'.
7567
7568 * progmodes/js.el (js--debug): Mark unused parameter.
7569 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
7570 (js--splice-into-items): Remove unused variable `item'.
7571 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
7572
7573 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
7574 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
7575 (makefile-complete): Remove unused variable `try'.
7576 (makefile-fill-paragraph, makefile-match-function-end):
7577 Mark unused parameters.
7578
7579 * progmodes/octave-inf.el (inferior-octave-complete):
7580 Remove unused variable `proc'.
7581 (inferior-octave-output-digest): Mark unused parameter.
7582
7583 * progmodes/perl-mode.el (perl-calculate-indent):
7584 Remove unused variable `err'.
7585
7586 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
7587 (prolog-indent-line): Mark unused parameters.
7588 (prolog-indent-line): Remove unused variable `beg'.
7589
7590 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
7591 (reporter-dont-compact-list): Declare.
7592
7593 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
7594 Remove unused variable `char'.
7595 (sh-debug): Mark unused parameter.
7596 (sh-get-indent-info): Remove unused variable `start'.
7597 (sh-calculate-indent): Remove unused variable `var'.
7598
7599 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
7600 (simula-electric-keyword): Remove unused variable `null'.
7601 (simula-search-backward, simula-search-forward): Remove unused
7602 variables `begin' and `end'.
7603
7604 * progmodes/vera-mode.el (vera-guess-basic-syntax):
7605 Remove unused variable `pos'.
7606 (vera-electric-tab, vera-comment-uncomment-region):
7607 Mark unused parameters.
7608 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
7609
7610 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
7611
7612 * emacs-lisp/package.el (package--builtins, package-alist)
7613 (package-load-descriptor, package-built-in-p, package-activate)
7614 (define-package, package-installed-p)
7615 (package-compute-transaction, package-buffer-info)
7616 (package--push): Doc fix. Distinguish more clearly between
7617 version strings and version lists.
7618
7619 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
7620
7621 Lexical-binding cleanup.
7622
7623 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
7624 (5x5-make-mutate-best):
7625 * play/fortune.el (fortune-in-buffer):
7626 * play/gomoku.el (gomoku-init-display):
7627 * play/solitaire.el (solitaire, solitaire-do-check):
7628 * play/tetris.el (tetris-default-update-speed-function):
7629 Mark unused parameters.
7630
7631 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
7632 (bubbles--shift): Remove unused variable `char-org'.
7633 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
7634 (bubbles--show-images): Remove unused variable `char'.
7635
7636 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
7637 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
7638 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
7639 (decipher-analyze-buffer): Use ?\s.
7640 (decipher-make-checkpoint): Remove unused variable `mapping'.
7641
7642 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
7643
7644 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
7645 Remove unused variable `result'; use `let'.
7646
7647 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
7648 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
7649 (gametree-children-shown-p, gametree-compute-reduced-score):
7650 Use `ignore-errors'.
7651
7652 * play/handwrite.el (ps-lpr-switches): Declare.
7653 (handwrite): Remove unused variables `pmin' and `lastp'.
7654
7655 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
7656
7657 * play/landmark.el (landmark-init-display)
7658 (landmark-update-naught-weights): Mark unused parameters.
7659 (landmark-y): Remove unused variable `noise'. Simplify.
7660 (landmark-human-plays): Remove unused variable `score'.
7661
7662 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
7663 (mpuz-try-proposal): Remove unused variable `game'.
7664
7665 * play/zone.el (life-patterns): Declare.
7666
7667 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
7668
7669 * vc/vc.el (ediff-vc-internal): Declare function.
7670
7671 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7672
7673 * shell.el: Use lexical-binding and std completion UI.
7674 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
7675 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
7676 comint-preoutput-filter-functions rather than on
7677 comint-output-filter-functions.
7678 (shell-command-completion, shell--command-completion-data)
7679 (shell-filename-completion, shell-environment-variable-completion)
7680 (shell-c-a-p-replace-by-expanded-directory): New functions.
7681 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
7682 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
7683 (shell-dynamic-complete-environment-variable): Use them.
7684 (shell-dynamic-complete-as-environment-variable)
7685 (shell-dynamic-complete-as-command): Remove.
7686 (shell-match-partial-variable): Match past point.
7687 * comint.el: Clean up use of completion-at-point-functions.
7688 (comint-completion-at-point): New function.
7689 (comint-mode): Use it completion-at-point-functions.
7690 (comint-dynamic-complete): Make it obsolete.
7691 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
7692 (comint-c-a-p-replace-by-expanded-history): New function.
7693 (comint-dynamic-complete-functions)
7694 (comint-replace-by-expanded-history): Use it.
7695 * minibuffer.el (completion-table-with-terminator): Allow dynamic
7696 termination strings. Try harder to avoid second try-completion.
7697 (completion-in-region-mode-map): Disable bindings that don't work yet.
7698
7699 * comint.el: Use lexical-binding. Require CL.
7700 (comint-dynamic-complete-functions): Use comint-filename-completion.
7701 (comint-completion-addsuffix): Tweak custom type.
7702 (comint-filename-completion, comint--common-suffix)
7703 (comint--common-quoted-suffix, comint--table-subvert)
7704 (comint--complete-file-name-data): New functions.
7705 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
7706 (comint-dynamic-list-filename-completions): Use them.
7707 (comint-dynamic-simple-complete): Make obsolete.
7708
7709 * minibuffer.el (completion-in-region-mode):
7710 Keep completion-in-region-mode--predicate global.
7711 (completion-in-region--postch):
7712 Assume completion-in-region-mode--predicate is not null.
7713
7714 * progmodes/flymake.el (flymake-start-syntax-check-process):
7715 Obey `dir'. Simplify.
7716
7717 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
7718 we're in VC after all.
7719
7720 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
7721
7722 * vc/vc.el (vc-diff-build-argument-list-internal)
7723 (vc-version-ediff, vc-ediff): New commands.
7724 (vc-version-diff): Use vc-diff-build-argument-list-internal.
7725
7726 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7727
7728 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
7729 add sanity check.
7730
7731 * obsolete/erc-hecomplete.el: Make obsolete.
7732 * obsolete/: Standardize obsolescence info in the header.
7733
7734 2011-04-20 Glenn Morris <rgm@gnu.org>
7735
7736 * calendar/solar.el (solar-horizontal-coordinates):
7737 Use the longitude argument rather than `calendar-longitude'.
7738 (solar-date-next-longitude): Remove unused locals.
7739
7740 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7741
7742 * whitespace.el: New version 13.2.1.
7743
7744 2011-04-20 felix <EmacsWiki> (tiny change)
7745
7746 * whitespace.el (global-whitespace-mode): Keep highlight when
7747 switching between major modes on a file.
7748
7749 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
7750
7751 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
7752 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
7753 multi-line comments as well.
7754
7755 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
7756
7757 Lexical-binding cleanup.
7758
7759 * arc-mode.el (archive-mode-revert):
7760 * cmuscheme.el (scheme-interactively-start-process):
7761 * custom.el (custom-initialize-delay):
7762 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
7763 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
7764 * emacs-lock.el (emacs-lock-clear-sentinel):
7765 * ezimage.el (defezimage):
7766 * follow.el (follow-avoid-tail-recenter):
7767 * fringe.el (set-fringe-mode-1):
7768 * generic-x.el (bat-generic-mode-compile):
7769 * help-mode.el (help-info-variable, help-do-xref)
7770 (help-mode-revert-buffer):
7771 * help.el (view-emacs-todo):
7772 * iswitchb.el (iswitchb-completion-help):
7773 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
7774 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
7775 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
7776 * locate.el (locate-update):
7777 * longlines.el (longlines-encode-region)
7778 (longlines-after-change-function):
7779 * outline.el (outline-isearch-open-invisible):
7780 * ps-def.el (declare-function, charset-dimension, char-width)
7781 (encode-char):
7782 * ps-mule.el (ps-mule-plot-string):
7783 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
7784 (recentf-edit-list-select, recentf-edit-list-validate)
7785 (recentf-open-files-action):
7786 * rect.el (delete-whitespace-rectangle-line)
7787 (rectangle-number-line-callback):
7788 * register.el (window-configuration-to-register)
7789 (frame-configuration-to-register):
7790 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
7791 * select.el (xselect-convert-to-string, xselect-convert-to-length)
7792 (xselect-convert-to-targets, xselect-convert-to-delete)
7793 (xselect-convert-to-filename, xselect-convert-to-charpos)
7794 (xselect-convert-to-lineno, xselect-convert-to-colno)
7795 (xselect-convert-to-os, xselect-convert-to-host)
7796 (xselect-convert-to-user, xselect-convert-to-class)
7797 (xselect-convert-to-name, xselect-convert-to-integer)
7798 (xselect-convert-to-atom, xselect-convert-to-identity):
7799 * subr.el (declare, ignore, process-kill-without-query)
7800 (text-clone-maintain):
7801 * terminal.el (te-get-char, te-tic-sentinel):
7802 * tool-bar.el (tool-bar-make-keymap):
7803 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
7804 * type-break.el (type-break-mode, type-break-noninteractive-query):
7805 * view.el (View-back-to-mark):
7806 * wid-browse.el (widget-browse-action, widget-browse-widget)
7807 (widget-browse-widgets, widget-browse-sexp):
7808 * widget.el (define-widget-keywords):
7809 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
7810 Mark unused parameters.
7811
7812 * align.el (align-adjust-col-for-rule): Mark unused parameter.
7813 (align-areas): Remove unused variable `look'.
7814 (align-region): Remove unused variables `real-end' and `pos-list'.
7815
7816 * apropos.el (apropos-score-doc): Remove unused variable `i'.
7817
7818 * bindings.el (mode-line-modified, mode-line-remote):
7819 Mark unused parameters.
7820 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
7821
7822 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
7823 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
7824
7825 * comint.el (comint-history-isearch-pop-state)
7826 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
7827 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
7828 (comint-substitute-in-file-name): Doc fix.
7829
7830 * completion.el (cmpl-statistics-block): Mark unused parameter.
7831 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
7832 (save-completions-to-file, load-completions-from-file):
7833 Remove unused local variable `e'.
7834
7835 * composite.el (compose-chars): Remove unused variable `len'.
7836 (lgstring-insert-glyph): Remove unused variable `g'.
7837 (compose-glyph-string): Remove unused variables `ascent',
7838 `descent', `lbearing' and `rbearing'.
7839 (compose-glyph-string-relative): Remove unused variables
7840 `lbearing', `rbearing' and `wadjust'.
7841 (compose-gstring-for-graphic): Remove unused variables `header',
7842 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
7843 (compose-gstring-for-terminal): Remove unused variables `header'
7844 and `nchars'. Use `let', not `let*'.
7845
7846 * cus-edit.el (Custom-set, Custom-save, custom-reset)
7847 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
7848 (Custom-buffer-done, custom-buffer-create-internal)
7849 (custom-browse-visibility-action, custom-browse-group-tag-action)
7850 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
7851 (widget-magic-mouse-down-action, custom-toggle-parent)
7852 (custom-add-parent-links, custom-toggle-hide-variable)
7853 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
7854 (custom-toggle-hide-face, face, hook, custom-group-link-action)
7855 (custom-face-menu-create, custom-variable-menu-create, get)
7856 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
7857 (custom-reset-standard-save-and-update): Remove unused variable `value'.
7858 (customize-apropos): Remove unused variable `tests'.
7859 (custom-group-value-create): Remove unused variable `hidden-p'.
7860 (sort-fold-case): Declare.
7861
7862 * cus-theme.el (custom-reset-standard-faces-list)
7863 (custom-reset-standard-variables-list): Declare.
7864 (customize-create-theme, custom-theme-revert, custom-theme-write)
7865 (custom-theme-choose-mode, customize-themes, custom-theme-save):
7866 Mark unused parameters.
7867
7868 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
7869
7870 * delim-col.el (delimit-columns-max): Move defvar before first use.
7871
7872 * descr-text.el (describe-char-categories): Don't quote `lambda'.
7873 (describe-char): Don't quote `lambda'. Mark unused parameter.
7874
7875 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
7876 (auto-insert): Declare.
7877 (desktop-restore-file-buffer): Rename desktop-* parameters;
7878 mark unused ones.
7879 (desktop-create-buffer): Rename desktop-* parameters and bind them.
7880 (desktop-buffer): Rename desktop-* parameters.
7881
7882 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
7883 (dframe-reposition-frame-xemacs, dframe-help-echo)
7884 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
7885 Mark unused parameters.
7886
7887 * dired-aux.el (backup-extract-version-start, overwrite-query)
7888 (overwrite-backup-query, rename-regexp-query)
7889 (rename-non-directory-query): Declare.
7890 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
7891 (dired-add-entry): Remove unused variable `orig-file-name'.
7892 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
7893 Use parameter PRESERVE-TIME instead of accessing dynamic variable
7894 `dired-copy-preserve-time' directly.
7895 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
7896 (dired-insert-subdir-newpos): Rename unused variable `pos'.
7897
7898 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
7899 (dired-virtual-revert, dired-make-relative-symlink):
7900 Mark unused parameters.
7901 (manual-program): Declare.
7902 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
7903 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
7904 wrapped in `with-no-warnings' to avoid replacing one warning by another.
7905
7906 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
7907
7908 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
7909
7910 * echistory.el (electric-history-in-progress, Helper-return-blurb):
7911 Declare.
7912
7913 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
7914
7915 * electric.el (Electric-command-loop): Rename parameter
7916 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
7917
7918 * expand.el (expand-in-literal): Remove unused variable `here'.
7919
7920 * facemenu.el (facemenu-add-new-color):
7921 Remove unused variable `docstring'.
7922
7923 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
7924 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
7925 (face-attr-construct): Mark unused parameter. Doc fix.
7926 (read-color): Remove unused variable `hex-string'.
7927
7928 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
7929 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
7930 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
7931 (display-buffer-other-frame): Remove unused variable `old-window'.
7932 (kill-buffer-hook): Declare.
7933 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
7934 Mark unused parameters.
7935 (after-find-file): Pass 1 to `auto-save-mode', not t.
7936
7937 * files-x.el (auto-insert): Declare.
7938 (modify-file-local-variable-prop-line): Remove unused variable `val'.
7939
7940 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
7941 variable `buf'. Mark unused parameter.
7942 (find-lisp-insert-directory): Mark unused parameter.
7943
7944 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
7945 (format-encode-region): Remove unused variables `cur-buf' and `result'.
7946 (format-common-tail): Remove, unused.
7947 (format-deannotate-region): Remove unused variable `loc'.
7948 (format-annotate-region): Remove unused variable `p'.
7949 (format-annotate-single-property-change): Remove unused variables
7950 `default' and `tail'.
7951
7952 * forms.el (read-file-filter): Declare.
7953 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
7954
7955 * frame.el (frame-creation-function-alist): Mark unused parameter.
7956 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
7957
7958 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
7959 Remove unused parameters.
7960 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
7961 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
7962
7963 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
7964 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
7965 (hfy-prepare-tag-map): Mark unused parameters.
7966 (htmlfontify-buffer): Use `called-interactively-p'.
7967
7968 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
7969 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
7970 (ibuffer-do-occur): Mark unused parameters.
7971 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
7972 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
7973
7974 * ibuffer.el: Don't quote `lambda'.
7975 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
7976 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
7977 Mark unused parameters.
7978
7979 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
7980 (ido-completing-read): Mark unused parameters.
7981 (ido-copy-current-word): Mark unused parameters;
7982 remove unused variable `name'.
7983 (ido-sort-merged-list): Remove unused parameter `dirs'.
7984
7985 * ielm.el (ielm-input-sender): Mark unused parameter.
7986 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
7987 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
7988 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
7989 `ielm-string' as a dynamic variable accessible from the IELM prompt.
7990 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
7991
7992 * image-dired.el (image-dired-display-thumbs): Remove unused
7993 variables `curr-file' and `count'.
7994 (image-dired-remove-tag): Remove unused variable `start'.
7995 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
7996 variable `curr-file'
7997 (image-dired-rotate-original): Remove unused variable `temp-file'.
7998 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
7999 Remove unused variable `file'.
8000 (image-dired-gallery-generate): Remove unused variable `curr'.
8001 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
8002
8003 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
8004
8005 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
8006
8007 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
8008
8009 * isearch.el (minibuffer-history-symbol): Declare.
8010 (isearch-edit-string): Remove unused variable `err'.
8011 (isearch-message-prefix, isearch-message-suffix):
8012 Mark unused parameters.
8013
8014 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
8015
8016 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
8017
8018 * makesum.el (double-column): Remove unused variable `cnt'.
8019
8020 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
8021 (ido-ignore-item-temp-list): Declare.
8022
8023 * mouse-drag.el (mouse-drag-throw): Remove unused variables
8024 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
8025 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
8026 (mouse-drag-drag): Remove unused variables `mouse-delta' and
8027 `mouse-col-delta'.
8028
8029 * mouse-sel.el (mouse-extend-internal):
8030 Remove unused variable `orig-window-frame'.
8031
8032 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
8033 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
8034 Move declarations before first use.
8035 (pcomplete-opt): Mark unused parameters; doc fix.
8036
8037 * proced.el (proced-revert): Mark unused parameter.
8038 (proced-send-signal): Remove unused variable `err'.
8039
8040 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
8041 Rename parameter PREFIX-ARG to ARG.
8042 (ps-basic-plot-string, ps-basic-plot-whitespace):
8043 Mark unused parameters.
8044
8045 * replace.el (replace-count): Define.
8046 (occur-revert-function): Mark unused parameters.
8047 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
8048 (isearch-case-fold-search, isearch-string): Declare.
8049 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
8050 bind `case-fold-search'. Remove unused variables `beg' and `end',
8051 and simplify.
8052 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
8053 COUNT and bind `replace-count'.
8054 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
8055 to COUNT.
8056
8057 * savehist.el (print-readably, print-string-length): Declare.
8058
8059 * shadowfile.el (shadow-expand-cluster-in-file-name):
8060 Remove unused variable `cluster'.
8061 (shadow-copy-file): Remove unused variable `i'.
8062 (shadow-noquery, shadow-clusters, shadow-site-cluster)
8063 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
8064 (shadow-define-literal-group, shadow-define-regexp-group)
8065 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
8066
8067 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
8068 (shell): Use `called-interactively-p'.
8069 (shell-directory-tracker): Remove unused variable `chdir-failure'.
8070
8071 * simple.el (compilation-context-lines, comint-file-name-quote-list)
8072 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
8073 (delete-backward-char): Remove unused variable `ocol'.
8074 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
8075 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
8076 (event-apply-hyper-modifier, event-apply-shift-modifier)
8077 (event-apply-control-modifier, event-apply-meta-modifier):
8078 Mark unused parameters.
8079 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
8080 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
8081
8082 * speedbar.el (speedbar-ignored-directory-expressions)
8083 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
8084 (speedbar-find-file, speedbar-dir-follow)
8085 (speedbar-directory-buttons-follow, speedbar-tag-find)
8086 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
8087 (speedbar-buffers-line-directory, speedbar-buffer-click):
8088 Mark unused parameters.
8089 (speedbar-tag-file): Remove unused variable `mode'.
8090 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
8091
8092 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
8093
8094 * talk.el (talk): Remove unused variable `display'.
8095
8096 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
8097 (tar-write-region-annotate): Mark unused parameter.
8098
8099 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
8100 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
8101 Declare them, wrapped in `with-no-warnings' to avoid replacing one
8102 warning by another.
8103
8104 * time-stamp.el (time-stamp-string-preprocess):
8105 Remove unused variable `require-padding'.
8106
8107 * tree-widget.el (widget-glyph-enable): Declare.
8108 (tree-widget-action): Mark unused parameter.
8109
8110 * w32-fns.el (x-get-selection): Mark unused parameter.
8111 (autoload-make-program, generated-autoload-file): Declare.
8112
8113 * wdired.el (wdired-revert): Mark unused parameters.
8114 (wdired-xcase-word): Remove unused variable `err'.
8115
8116 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
8117 (whitespace-help-scroll): Remove unused variable `data-help'.
8118
8119 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
8120 (widget-image-insert, widget-after-change, default)
8121 (widget-default-format-handler, widget-default-notify)
8122 (widget-default-prompt-value, widget-info-link-action)
8123 (widget-url-link-action, widget-function-link-action)
8124 (widget-variable-link-action, widget-file-link-action)
8125 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
8126 (widget-field-prompt-internal, widget-field-action, widget-field-match)
8127 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
8128 (widget-insert-button-action, widget-delete-button-action, visibility)
8129 (widget-documentation-link-action, widget-documentation-string-action)
8130 (widget-const-prompt-value, widget-regexp-match, symbol)
8131 (widget-coding-system-prompt-value)
8132 (widget-key-sequence-value-to-external, sexp)
8133 (widget-sexp-value-to-internal, character, vector, cons)
8134 (widget-choice-prompt-value, widget-boolean-prompt-value)
8135 (widget-color--choose-action): Mark unused parameters.
8136 (widget-item-match-inline, widget-choice-match-inline)
8137 (widget-checklist-match, widget-checklist-match-inline)
8138 (widget-group-match): Rename parameter VALUES to VALS.
8139 (widget-field-value-set): Remove unused variable `size'.
8140 (widget-color-action): Remove unused variables `value' and `start'.
8141
8142 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
8143 variable `dir'. Doc fix.
8144 (windmove-find-other-window): Don't pass it.
8145
8146 * window.el (count-windows): Mark unused parameter.
8147 (bw-adjust-window): Remove unused variable `err'.
8148
8149 * woman.el (woman-file-name): Remove unused variable `default'.
8150 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
8151 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
8152 (global-font-lock-mode): Declare.
8153 (woman-decode-region): Mark unused parameter.
8154 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
8155
8156 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
8157 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
8158 (x-dnd-handle-moz-url): Remove unused variable `title'.
8159 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
8160
8161 * xml.el (xml-parse-tag, xml-parse-attlist):
8162 Remove unused variable `pos'.
8163
8164 2011-04-19 Glenn Morris <rgm@gnu.org>
8165
8166 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
8167 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
8168 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8169 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
8170 * calendar/cal-html.el (cal-html-insert-minical):
8171 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
8172 (calendar-mark-date-pattern):
8173 Prefix "unused" locals.
8174
8175 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
8176 optional argument `style'.
8177
8178 * calendar/appt.el (appt-make-list):
8179 * calendar/cal-china.el (calendar-chinese-date-string):
8180 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
8181 (diary-hebrew-yahrzeit):
8182 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
8183 * calendar/calendar.el (calendar-generate-window):
8184 * calendar/time-date.el (time-to-days):
8185 Remove unused local variables.
8186
8187 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
8188
8189 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
8190 glyphless-char-display table.
8191 (tabulated-list-glyphless-char-display): New var.
8192
8193 2011-04-18 Sam Steingold <sds@gnu.org>
8194
8195 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
8196 to acknowledgments.
8197
8198 2011-04-17 Glenn Morris <rgm@gnu.org>
8199
8200 * calendar/diary-lib.el (diary-sexp-entry):
8201 * calendar/holidays.el (holiday-sexp):
8202 Set debug-on-error rather than the removed stack-trace-on-error.
8203
8204 2011-04-16 Glenn Morris <rgm@gnu.org>
8205
8206 * progmodes/f90.el: Use lexical-binding.
8207 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
8208
8209 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8210
8211 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
8212 (mail-mode): Setup mailalias completion here instead.
8213 * mail/mailalias.el: Use lexical-binding.
8214 (pattern, mailalias-done): Declare dynamic.
8215 (mail-completion-at-point-function): New function, from mail-complete.
8216 (mail-complete): Use it.
8217 (mail-completion-expand): New function.
8218 (mail-get-names): Use it.
8219 (mail-directory, mail-directory-process, mail-directory-stream):
8220 Don't use `pattern' for lexically bound arg.
8221
8222 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
8223
8224 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
8225 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
8226 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
8227
8228 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
8229 (byte-save-window-excursion, byte-temp-output-buffer-setup)
8230 (byte-interactive-p): Define them again, for use when inlining
8231 old code.
8232
8233 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
8234
8235 * loadup.el: Use `string-to-number', not `string-to-int'.
8236
8237 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8238
8239 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
8240 gud-gdb-complete-command.
8241 (gud-gdb-completions): New function, from gud-gdb-complete-command.
8242 (gud-gdb-completion-at-point): New function.
8243 (gud-gdb-completions): Remove.
8244
8245 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
8246
8247 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
8248 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
8249 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
8250 whether `executable-find' is bound.
8251
8252 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
8253
8254 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8255
8256 * minibuffer.el (completion-in-region-mode-predicate)
8257 (completion-in-region-mode--predicate): New vars.
8258 (completion-in-region, completion-in-region--postch)
8259 (completion-in-region-mode): Use them.
8260 (completion--capf-wrapper): Also return the hook function.
8261 (completion-at-point, completion-help-at-point):
8262 Adjust and provide a predicate.
8263
8264 Preserve arg names for advice of subr and lexical functions (bug#8457).
8265 * help-fns.el (help-function-arglist): Consolidate the subr and
8266 new-byte-code cases. Add argument `preserve-names' to extract names
8267 from the docstring when needed.
8268 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
8269 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
8270 (ad-arglist): Use help-function-arglist's new arg.
8271 (ad-definition-type): Use cond.
8272
8273 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
8274
8275 * autorevert.el (auto-revert-handler):
8276 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
8277 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
8278 Don't quote lambda.
8279
8280 * image-mode.el (image-transform-set-scale):
8281 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
8282
8283 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
8284
8285 * net/network-stream.el (network-stream-open-starttls): Only do
8286 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
8287 Upgrades via gnutls-cli are too slow to be done opportunistically.
8288
8289 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
8290
8291 * dframe.el (dframe-current-frame): Remove spurious quote.
8292
8293 2011-04-12 Glenn Morris <rgm@gnu.org>
8294
8295 * calendar/cal-tex.el (cal-tex-end-document):
8296 Try to automatically use latin1 input if needed.
8297
8298 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
8299 Don't try to cons a mark onto an empty element.
8300
8301 2011-04-11 Leo Liu <sdl.web@gmail.com>
8302
8303 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
8304 buffers.
8305 (ido-kill-buffer-at-head): Support killing virtual buffers.
8306
8307 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
8308
8309 * minibuffer.el (completion-show-inline-help): New var.
8310 (completion--do-completion, minibuffer-complete)
8311 (minibuffer-force-complete, minibuffer-complete-word):
8312 Inhibit minibuffer messages if completion-show-inline-help is nil.
8313
8314 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
8315 to avoid interference from inline help (Bug#5849).
8316
8317 2011-04-10 Leo Liu <sdl.web@gmail.com>
8318
8319 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
8320 Fix typo.
8321
8322 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
8323
8324 * image-mode.el (image-toggle-display-image): Signal an error if
8325 not in Image mode.
8326 (image-transform-mode, image-transform-resize)
8327 (image-transform-set-rotation): Doc fix.
8328 (image-transform-set-resize): Delete.
8329 (image-transform-set-scale, image-transform-fit-to-height)
8330 (image-transform-fit-to-width): Handle image-toggle-display-image
8331 and image-transform-resize directly.
8332
8333 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
8334
8335 * doc-view.el (doc-view-fit-width-to-window)
8336 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
8337 New functions for fitting the shown image to the Emacs window size.
8338 (doc-view-mode-map): Add bindings for the new functions.
8339
8340 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
8341
8342 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
8343 Fix typo in docstring.
8344
8345 2011-04-08 Eli Zaretskii <eliz@gnu.org>
8346
8347 * files.el (file-size-human-readable): Produce one digit after
8348 decimal, like "ls -lh" does.
8349
8350 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
8351 the file size representation.
8352
8353 * simple.el (list-processes): If async subprocesses are not
8354 available, error out with a clear error message.
8355
8356 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
8357
8358 * help.el (help-form-show): New function, to be called from C.
8359 Put help-form output in a buffer named differently than *Help*.
8360
8361 2011-04-08 Eli Zaretskii <eliz@gnu.org>
8362
8363 * files.el (file-size-human-readable): New function.
8364
8365 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
8366 computing the representation inline. Don't require `cl'.
8367
8368 2011-04-08 Glenn Morris <rgm@gnu.org>
8369
8370 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
8371
8372 * net/browse-url.el (browse-url-firefox):
8373 Test system-type, not system-configuration.
8374
8375 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
8376 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
8377 Use log-edit-empty-buffer-p. (Bug#7598)
8378
8379 * net/rlogin.el (rlogin-process-connection-type): Simplify.
8380 (rlogin-mode-map): Initialize in the defvar.
8381 (rlogin): Use ignore-errors.
8382
8383 * replace.el (occur-mode-map): Some fixes for menu items.
8384
8385 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8386
8387 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
8388
8389 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
8390
8391 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
8392 issuing unused warnings.
8393
8394 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
8395 macro directly.
8396
8397 * simple.el: Lisp reimplement of list-processes. Based on an
8398 earlier reimplementation by Leo Liu, but using tabulated-list.el.
8399 (process-menu-mode): New major mode.
8400 (list-processes--refresh, list-processes):
8401 (process-menu-visit-buffer): New functions.
8402
8403 * files.el (save-buffers-kill-emacs): Don't assume any return
8404 value of list-processes, which is undocumented anyway.
8405
8406 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
8407
8408 * emacs-lisp/tabulated-list.el: New file.
8409
8410 * emacs-lisp/package.el: Use Tabulated List mode.
8411 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
8412 (package-menu-mode): Derive from tabulated-list-mode. Set up the
8413 table format using Tabulated List mode variables.
8414 (package--push): New macro, replacing package-list-maybe-add.
8415 (package-menu--generate): Use package--push. Renamed from
8416 package--generate-package-list.
8417 (package-menu-refresh, list-packages): Use it.
8418 (package-menu--print-info): Rename from package-print-package.
8419 Return insertion data instead of inserting it directly.
8420 (package-menu-describe-package, package-menu-execute):
8421 Use tabulated-list-get-id.
8422 (package-menu-mark-delete, package-menu-mark-install)
8423 (package-menu-mark-unmark, package-menu-backup-unmark)
8424 (package-menu-mark-obsolete-for-deletion):
8425 Use tabulated-list-put-tag.
8426 (package--list-packages, package-menu-revert)
8427 (package-menu-get-package, package-menu-get-version)
8428 (package-menu-sort-by-column): Functions deleted.
8429 (package-menu-package-list, package-menu-sort-key): Vars deleted.
8430 (package-menu--status-predicate, package-menu--version-predicate)
8431 (package-menu--name-predicate)
8432 (package-menu--description-predicate): Handle arguments in the
8433 Tabulated List format.
8434 (package-list-packages-no-fetch): Call list-packages.
8435
8436 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
8437
8438 * files.el (after-find-file-from-revert-buffer): Remove variable.
8439 (after-find-file): Don't bind it.
8440 (revert-buffer-in-progress-p): New variable.
8441 (revert-buffer): Bind it.
8442 Pass nil for `after-find-file-from-revert-buffer'.
8443
8444 * saveplace.el (save-place-find-file-hook): Use new variable
8445 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
8446
8447 2011-04-06 Glenn Morris <rgm@gnu.org>
8448
8449 * Makefile.in (AUTOGEN_VCS): New variable.
8450 (autoloads): Use $AUTOGEN_VCS.
8451
8452 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
8453 * calendar/calendar.el (calendar-mode-map):
8454 Check for toolkit scroll bars. (Bug#8305)
8455
8456 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
8457
8458 * minibuffer.el (completion-in-region--postch)
8459 (completion-in-region-mode): Remove unnecessary messages.
8460
8461 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
8462
8463 * font-lock.el (font-lock-refresh-defaults):
8464 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
8465 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
8466
8467 * info.el (Info-directory-list, Info-read-node-name-2)
8468 (Info-split-parameter-string): Doc fixes.
8469 (Info-virtual-nodes): Reflow docstring.
8470 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
8471 (Info-apropos-toc-nodes, info-finder, Info-get-token)
8472 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
8473 Fix typos in docstrings.
8474 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
8475 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
8476 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
8477 (Info-restore-desktop-buffer): Mark unused parameters.
8478 (Info-directory-find-file, Info-directory-find-node)
8479 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
8480 (Info-virtual-index-find-node, Info-apropos-find-file)
8481 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
8482 Mark unused parameters; fix typos in docstrings.
8483 (Info-virtual-index): Remove unused local variable `nodename'.
8484
8485 2011-04-05 Deniz Dogan <deniz@dogan.se>
8486
8487 * net/rcirc.el: Update my e-mail address.
8488 (rcirc-mode-map): Remove M-o binding.
8489
8490 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
8491
8492 * startup.el (command-line): Save the cursor's theme-face
8493 directly, instead of using face-override-spec.
8494
8495 * custom.el (load-theme): Minor optimization in assigning faces.
8496
8497 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
8498
8499 * help-fns.el (describe-variable): Complete all variables having
8500 documentation, including keywords.
8501 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
8502
8503 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
8504
8505 Convert to lexical-binding.
8506
8507 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
8508 (bs--get-marked-string, bs--get-modified-string)
8509 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
8510 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
8511 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
8512
8513 * ehelp.el (electric-help-execute-extended)
8514 (electric-help-ctrl-x-prefix):
8515 * hexl.el (hexl-revert-buffer-function):
8516 * linum.el (linum-after-change, linum-after-scroll):
8517 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
8518
8519 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
8520
8521 2011-04-04 Daiki Ueno <ueno@unixuser.org>
8522
8523 * epa-dired.el:
8524 * epa-mail.el:
8525 * epa-hook.el:
8526 * epa-file.el:
8527 * epa.el:
8528 * epg.el: Use lexical binding.
8529
8530 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
8531
8532 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
8533
8534 * textmodes/flyspell.el (flyspell-word): Recognize default
8535 dictionary case for flyspell-mark-duplications-exceptions.
8536 Use regexp matching for languages.
8537 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
8538 default dictionary (Bug#7926).
8539
8540 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
8541
8542 * emacs-lisp/package.el (package--with-work-buffer):
8543 Recognize https URLs.
8544
8545 * net/network-stream.el: Move from gnus/proto-stream.el.
8546 Change prefix to network-stream throughout.
8547 (open-protocol-stream): Merge into open-network-stream, leaving
8548 open-protocol-stream as an alias. Handle nil BUFFER args.
8549
8550 * subr.el (open-network-stream): Move to net/network-stream.el.
8551
8552 2011-04-02 Glenn Morris <rgm@gnu.org>
8553
8554 * find-dired.el (find-exec-terminator): New option.
8555 (find-ls-option): Test for -ls support.
8556 (find-ls-subdir-switches): Test for -b in find-ls-option.
8557 (find-dired, find-grep-dired): Doc fixes.
8558 (find-dired): Use find-exec-terminator.
8559
8560 * find-dired.el (find-ls-option, find-ls-subdir-switches)
8561 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
8562 (find-name-arg): Remove purecopy.
8563
8564 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
8565 (grep-compute-defaults): Check for `-exec COMMAND +' support.
8566 Set grep-find-use-xargs, grep-find-command, and grep-find-template
8567 accordingly. Don't add the null-device if not needed.
8568
8569 * files.el (save-some-buffers): Doc fix.
8570
8571 2011-04-02 Eli Zaretskii <eliz@gnu.org>
8572
8573 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
8574
8575 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
8576
8577 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
8578 Use `dolist' rather than `mapcar'.
8579
8580 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
8581
8582 Add lexical binding.
8583
8584 * subr.el (apply-partially): Use new closures rather than CL.
8585 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
8586 (dolist, dotimes): Use slightly different expansion for lexical code.
8587 (functionp): Move to C.
8588 (letrec): New macro.
8589 (with-wrapper-hook): Use it and apply-partially instead of CL.
8590 (eval-after-load): Preserve lexical-binding.
8591 (save-window-excursion, with-output-to-temp-buffer): Turn them
8592 into macros.
8593
8594 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
8595
8596 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
8597 than the arglist.
8598 (help-add-fundoc-usage): Don't add `Not documented'.
8599 (help-function-arglist): Handle closures, subroutines, and new
8600 byte-code-functions.
8601 (help-make-usage): Remove leading underscores.
8602 (describe-function-1): Handle closures.
8603 (describe-variable): Use special-variable-p for completion.
8604
8605 * files.el (lexical-binding): Declare safe.
8606
8607 * emacs-lisp/pcase.el: Don't use destructuring-bind.
8608 (pcase--memoize): Rename from pcase-memoize. Change weakness.
8609 (pcase): Add `let' pattern.
8610 Change memoization so it actually works.
8611 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
8612 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
8613 <let>: New case.
8614
8615 * emacs-lisp/macroexp.el: Use lexical binding.
8616 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
8617 Don't convert ' to #' without checking that it's indeed quoting
8618 a lambda.
8619
8620 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
8621 Use eval-sexp-add-defvars.
8622 (eval-sexp-add-defvars): New fun.
8623
8624 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
8625
8626 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
8627 Don't autoload.
8628 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
8629 than the internal `byte-compile-lambda'.
8630 (defmethod): Don't hide code under quotes.
8631 (eieio-defmethod): New `code' argument.
8632
8633 * emacs-lisp/eieio-comp.el: Remove.
8634
8635 * emacs-lisp/edebug.el (edebug-eval-defun)
8636 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
8637 (edebug-toggle): Avoid `eval'.
8638
8639 * emacs-lisp/disass.el (disassemble-internal): Handle new
8640 `closure' objects.
8641 (disassemble-1): Handle new byte codes.
8642
8643 * emacs-lisp/cl.el (pushnew): Silence warning.
8644
8645 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
8646 (cl-byte-compile-throw): Remove.
8647 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
8648
8649 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
8650 closures.
8651
8652 * emacs-lisp/cconv.el: New file.
8653
8654 * emacs-lisp/bytecomp.el: Use lexical binding instead of
8655 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
8656 (byte-compile-initial-macro-environment):
8657 Handle declare-function here.
8658 (byte-compile--lexical-environment): New var.
8659 (byte-stack-ref, byte-stack-set, byte-discardN)
8660 (byte-discardN-preserve-tos): New lap codes.
8661 (byte-interactive-p): Don't use any more.
8662 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
8663 New macros.
8664 (byte-compile-lapcode): Use them and handle new lap codes.
8665 (byte-compile-obsolete): Remove.
8666 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
8667 (byte-compile-arglist-warn): Check late def of inlinable funs.
8668 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
8669 since they should have been expanded by now.
8670 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
8671 (byte-compile-from-buffer): Remove unused second arg.
8672 (byte-compile-preprocess): New function.
8673 (byte-compile-toplevel-file-form): New function to distinguish
8674 file-form calls from outside from file-form calls from hunk-handlers.
8675 (byte-compile-file-form): Simplify.
8676 (byte-compile-file-form-defsubst): Remove.
8677 (byte-compile-file-form-defmumble): Simplify now that
8678 byte-compile-lambda always returns a byte-code-function.
8679 (byte-compile): Preprocess.
8680 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
8681 Remove, not used any more.
8682 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
8683 (byte-compile-make-args-desc): New funs.
8684 (byte-compile-lambda): Handle lexical functions. Always return
8685 a byte-code-function.
8686 (byte-compile-reserved-constants): New var, to make up room for
8687 closed-over variables.
8688 (byte-compile-constants-vector): Obey it.
8689 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
8690 (byte-compile-macroexpand-declare-function): New function.
8691 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
8692 byte-code-functions.
8693 (byte-compile-form): Check obsolescence here.
8694 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
8695 (byte-compile-variable-ref): Remove.
8696 (byte-compile-dynamic-variable-op): New fun.
8697 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
8698 (byte-compile-variable-set): New funs.
8699 (byte-compile-discard): Add 2 args.
8700 (byte-compile-stack-ref, byte-compile-stack-set)
8701 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
8702 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
8703 macroexpand-all instead.
8704 (byte-compile-quote-form): Remove.
8705 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
8706 (byte-compile-bind, byte-compile-unbind): New funs.
8707 (byte-compile-let): Handle let* and lexical binding.
8708 (byte-compile-let*): Remove.
8709 (byte-compile-catch, byte-compile-unwind-protect)
8710 (byte-compile-track-mouse, byte-compile-condition-case):
8711 Handle a new :fun-body form, used for lexical scoping.
8712 (byte-compile-save-window-excursion)
8713 (byte-compile-with-output-to-temp-buffer): Remove.
8714 (byte-compile-defun): Simplify.
8715 (byte-compile-stack-adjustment): New fun.
8716 (byte-compile-out): Use it.
8717 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
8718
8719 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
8720 handler any more.
8721
8722 * emacs-lisp/byte-opt.el: Use lexical binding.
8723 (byte-inline-lapcode): Remove (to bytecomp).
8724 (byte-compile-inline-expand): Pay attention to inlining to/from
8725 lexically bound code.
8726 (byte-compile-unfold-lambda): Don't handle byte-code-functions
8727 any more.
8728 (byte-optimize-form-code-walker): Don't handle save-window-excursion
8729 any more and don't call compiler-macros.
8730 (byte-compile-splice-in-already-compiled-code): Remove.
8731 (byte-code): Don't inline any more.
8732 (disassemble-offset): Receive `bytes' as argument rather than via
8733 dynamic scoping.
8734 (byte-compile-tag-number): Declare before first use.
8735 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
8736 `return' even if make-spliceable.
8737 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
8738 obsolete interactive-p.
8739 (byte-optimize-lapcode): Optimize new lap-codes.
8740 Don't trip up on new form of `byte-constant' lap code.
8741
8742 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
8743
8744 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
8745
8746 * custom.el (custom-initialize-default, custom-declare-variable):
8747 Use `defvar'.
8748
8749 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
8750 New variables.
8751 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
8752 (COMPILE_FIRST): Add macroexp and cconv.
8753 * makefile.w32-in: Mirror changes in Makefile.in.
8754
8755 * vc/cvs-status.el:
8756 * vc/diff-mode.el:
8757 * vc/log-edit.el:
8758 * vc/log-view.el:
8759 * vc/smerge-mode.el:
8760 * textmodes/bibtex-style.el:
8761 * textmodes/css.el:
8762 * startup.el:
8763 * uniquify.el:
8764 * minibuffer.el:
8765 * newcomment.el:
8766 * reveal.el:
8767 * server.el:
8768 * mpc.el:
8769 * emacs-lisp/smie.el:
8770 * doc-view.el:
8771 * dired.el:
8772 * abbrev.el: Use lexical binding.
8773
8774 2011-04-01 Eli Zaretskii <eliz@gnu.org>
8775
8776 * info.el (info-display-manual): New function.
8777
8778 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8779
8780 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
8781
8782 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
8783
8784 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
8785 an entry for that server in rcirc-authinfo. (Bug#8385)
8786
8787 2011-03-31 Glenn Morris <rgm@gnu.org>
8788
8789 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
8790
8791 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
8792
8793 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
8794
8795 * progmodes/python.el (python-default-interpreter)
8796 (python-python-command-args, python-jython-command-args)
8797 (python-which-shell, python-which-args, python-which-bufname)
8798 (python-file-queue, python-comint-output-filter-function)
8799 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
8800 variables and functions.
8801
8802 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
8803
8804 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
8805 (completion-in-region-mode): New minor mode.
8806 (completion-in-region): Use it.
8807 (completion-in-region--data, completion-in-region-mode-map): New vars.
8808 (completion-in-region--postch): New function.
8809 (completion--capf-misbehave-funs, completion--capf-safe-funs):
8810 New vars.
8811 (completion--capf-wrapper): New function.
8812 (completion-at-point): Use it to track well-behavedness of
8813 hook functions.
8814 (completion-help-at-point): New command.
8815
8816 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
8817
8818 * vc/add-log.el (add-change-log-entry): Don't use whitespace
8819 syntax class to search for whitespace on a single line
8820 (Message-ID: <4D938140.4030905@redhat.com>).
8821
8822 2011-03-30 Leo Liu <sdl.web@gmail.com>
8823
8824 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
8825 New commands.
8826 (edit-abbrevs-map): Bind them here.
8827 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
8828
8829 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
8830
8831 * allout.el (allout-hide-by-annotation, allout-flag-region):
8832 Reduce possibility of overlay leakage by making them volatile.
8833
8834 * allout-widgets.el (allout-widgets-tally): Define as nil so the
8835 hash is not shared between buffers. Mode initialization is
8836 responsible for giving it a useful starting value.
8837 (allout-item-span): Reduce possibility of overlay leakage by
8838 making them volatile.
8839 (allout-widgets-count-buttons-in-region): Add diagnostic function
8840 for tracking down button overlay leaks.
8841
8842 2011-03-29 Leo Liu <sdl.web@gmail.com>
8843
8844 * ido.el (ido-read-internal): Use the default history var
8845 minibuffer-history if no HISTORY is specified.
8846
8847 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
8848
8849 * net/imap.el (imap-shell-open, imap-process-connection-type):
8850 Use imap-process-connection-type for 'shell' streams as well as
8851 Kerberos, SSL, other subprocesses.
8852
8853 2011-03-28 Leo Liu <sdl.web@gmail.com>
8854
8855 * abbrev.el (abbrev-table-empty-p): New function.
8856 (prepare-abbrev-list-buffer): Place empty abbrev tables after
8857 nonempty ones. (Bug#5937)
8858
8859 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
8860
8861 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
8862
8863 2011-03-27 Leo Liu <sdl.web@gmail.com>
8864
8865 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
8866 for foreground and background colors.
8867 (ansi-color-make-color-map): Adapt.
8868
8869 2011-03-25 Leo Liu <sdl.web@gmail.com>
8870
8871 * midnight.el (midnight-time-float): Remove. Note it calculates
8872 the microsecond component incorrectly and seconds-to-time does the
8873 same job.
8874 Remove redundant (require 'timer).
8875
8876 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
8877 (ido-completions): Remove unused arguments. (Bug#8329)
8878
8879 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
8880
8881 * minibuffer.el (completion--flush-all-sorted-completions):
8882 Remove itself from hook.
8883 (completion-at-point): Let the functions perform the completion
8884 immediately and return nil or t.
8885 * comint.el (comint-dynamic-complete-functions): Now identical to
8886 completion-at-point-functions.
8887 (comint-dynamic-list-input-ring): Remove unused var `index'.
8888 (comint--match-partial-filename, comint--unquote&expand-filename):
8889 New funs, split from comint-match-partial-filename.
8890 (comint-dynamic-complete): Use completion-at-point.
8891 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
8892
8893 2011-03-24 Drew Adams <drew.adams@oracle.com>
8894
8895 * thingatpt.el: Support `defun'.
8896
8897 2011-03-23 Leo Liu <sdl.web@gmail.com>
8898
8899 * abbrevlist.el: Move to obsolete/abbrevlist.el.
8900
8901 * help-mode.el (help-mode-finish): Tweak regexp.
8902
8903 2011-03-23 Glenn Morris <rgm@gnu.org>
8904
8905 * eshell/esh-opt.el (eshell-eval-using-options):
8906 Do not bind unused local variable `eshell-option-stub'.
8907
8908 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
8909
8910 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
8911
8912 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
8913 keymap variable in `with-no-warnings' to avoid a warning when the
8914 keymap has been already `defconst'ed.
8915
8916 2011-03-22 Leo Liu <sdl.web@gmail.com>
8917
8918 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
8919 encode all chars in abbrevs; otherwise use emacs-mule or
8920 utf-8-emacs. (Bug#8308)
8921
8922 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
8923
8924 * simple.el (backward-delete-char-untabify):
8925 Avoid warning about using `delete-backward-char'.
8926
8927 * image.el (image-type-file-name-regexps): Make it variable.
8928 `imagemagick-register-types' modifies it, and the user may want
8929 to add new extensions for known image types.
8930 (imagemagick-register-types): Throw error if not using ImageMagick.
8931
8932 2011-03-22 Leo Liu <sdl.web@gmail.com>
8933
8934 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
8935 located before rcirc-prompt-end-marker.
8936 (rcirc-complete): Error if point is not after rcirc prompt.
8937 Handle the case when table is nil.
8938 (rcirc-user-authenticated): Define to fix compiler warning.
8939
8940 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
8941
8942 * custom.el (custom--inhibit-theme-enable): Make it affect only
8943 custom-theme-set-variables and custom-theme-set-faces.
8944 (provide-theme): Ignore custom--inhibit-theme-enable.
8945 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
8946 (custom-enabling-themes): Delete variable.
8947 (enable-theme): Accept only loaded themes as arguments.
8948 Ignore the special custom-enabled-themes variable.
8949 (custom-enabled-themes): Forbid themes from setting this.
8950 Eliminate use of custom-enabling-themes.
8951 (custom-push-theme): Quote "changed" custom var entry.
8952
8953 2011-03-21 Leo Liu <sdl.web@gmail.com>
8954
8955 * ido.el (ido-read-internal): Add ido-selected to history instead
8956 of user input.
8957
8958 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
8959
8960 * subr.el (deferred-action-list, deferred-action-function):
8961 Mark obsolete.
8962
8963 2011-03-21 Leo Liu <sdl.web@gmail.com>
8964
8965 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
8966 change on 2011-02-13 (bug#8309).
8967
8968 * minibuffer.el (read-file-name-function): Change default value.
8969 (read-file-name--defaults): Rename from read-file-name-defaults.
8970 (read-file-name-default): Rename from read-file-name.
8971 (read-file-name): Call read-file-name-function.
8972
8973 2011-03-21 Glenn Morris <rgm@gnu.org>
8974
8975 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
8976 Doc fixes.
8977
8978 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
8979
8980 * cus-theme.el: Add missing provide statement.
8981 (customize-create-theme): Extract theme value correctly.
8982 (custom-theme-visit-theme): Autoload.
8983 (customize-create-theme): Prompt before inserting default faces.
8984
8985 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
8986
8987 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
8988 units and musical notes.
8989
8990 2011-03-20 Leo <sdl.web@gmail.com>
8991
8992 * ido.el (ido-read-internal): Use completing-read-default.
8993 (ido-completing-read): Fix compatibility with completing-read.
8994
8995 2011-03-20 Christian Ohler <ohler@gnu.org>
8996
8997 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
8998 (ert-delete-all-tests): Use `called-interactively-p' rather than
8999 `interactive-p'.
9000 (ert--make-xrefs-region): Respect END.
9001
9002 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
9003
9004 * dired-aux.el (dired-create-directory): Signal an error if the
9005 directory already exists (Bug#8246).
9006
9007 * facemenu.el (list-colors-display): Call list-faces-display
9008 inside with-help-window.
9009 (list-colors-print): Use display property to align the final
9010 column, instead of checking window-width.
9011
9012 2011-03-19 Eli Zaretskii <eliz@gnu.org>
9013
9014 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
9015 windows-nt systems.
9016 (emerge-protect-metachars): Quote correctly for ms-dos and
9017 windows-nt systems.
9018
9019 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
9020
9021 * info.el (info-initialize): Replace all uses of `:' with
9022 path-separator for compatibility with non-Unix systems.
9023 Cache quoting of path-separator. (Bug#8258)
9024
9025 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
9026
9027 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
9028 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
9029 (mouse-avoidance-mode): Fix typos in docstrings.
9030
9031 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
9032
9033 * startup.el (package-subdirectory-regexp): Move from package.el.
9034 Omit \\` and \\', and let callers add them.
9035
9036 * emacs-lisp/package.el (package-strip-version)
9037 (package-load-all-descriptors): Add \\` and \\' to
9038 package-subdirectory-regexp before using it.
9039 (package-untar-buffer): New arg DIR; ensure that file untars only
9040 into this expected directory. Remove superfluous delete-region.
9041 (package-unpack): Caller changed.
9042 (package-tar-file-info): Use package-subdirectory-regexp.
9043
9044 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
9045
9046 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
9047 diff-mode-shared-map (bug#8284).
9048 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
9049
9050 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
9051
9052 * calendar/time-date.el (format-seconds): Use assoc instead of
9053 assoc-string, since assoc-string doesn't exist in XEmacs.
9054
9055 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
9056
9057 * custom.el (custom-known-themes): Reflow docstring.
9058 (custom-theme-load-path): Fix typo in docstring.
9059 (load-theme): Fix typo in error message.
9060 (custom-available-themes, custom-variable-theme-value):
9061 Use `let', not `let*'.
9062
9063 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
9064
9065 * calc/README: Mention inclusion of musical notes.
9066
9067 * calc/calc-units.el (calc-lu-quant): Rename from
9068 `calc-logunits-quantity'.
9069 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
9070 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
9071 (calc-db): Rename from `calc-dblevel'.
9072 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
9073 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
9074 (calc-np): Rename from `calc-nplevel'.
9075 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
9076 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
9077 (calc-lu-plus): Rename from `calc-logunits-add'.
9078 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
9079 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
9080 (calc-lu-minus): Rename from `calc-logunits-sub'.
9081 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
9082 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
9083 (calc-lu-times): Rename from `calc-logunits-mul'.
9084 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
9085 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
9086 (calc-lu-divide): Rename from `calc-logunits-div'.
9087 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
9088 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
9089
9090 * calc/calc-ext.el (calc-init-extensions): Update the names of the
9091 functions being autoloaded.
9092
9093 * calc/calc.el (calc-lu-power-reference): Rename from
9094 `calc-logunits-power-reference'.
9095 (calc-lu-field-reference): Rename from
9096 `calc-logunits-field-reference'.
9097
9098 * calc/calc-help (calc-l-prefix-help): Mention musical note functions.
9099
9100 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
9101
9102 * minibuffer.el (completion-all-sorted-completions):
9103 Use :completion-cycle-penalty text property if present.
9104
9105 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
9106
9107 * allout.el (allout-yank-processing): Adjust for new rebulleting
9108 regime so bullet being yanked is used without prompting the user
9109 for a choice.
9110
9111 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
9112
9113 * startup.el (command-line): Warn the user that _emacs is deprecated.
9114
9115 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
9116
9117 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
9118 (delphi-verbose, delphi-comment-face, delphi-string-face)
9119 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
9120 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
9121 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
9122 (delphi-new-comment-line, delphi-font-lock-defaults)
9123 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
9124 Fix typos in docstrings.
9125
9126 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
9127
9128 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
9129 Invert the roles of character and string values for INSTEAD, so a
9130 string is used for the more common case of a defaulting prompt.
9131
9132 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9133
9134 * progmodes/ruby-mode.el (ruby-backward-sexp):
9135 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
9136 * play/gamegrid.el (gamegrid-make-face):
9137 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
9138 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
9139 * notifications.el (notifications-notify):
9140 * net/xesam.el (xesam-search-engines):
9141 * net/quickurl.el (quickurl-list-insert):
9142 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
9143
9144 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
9145
9146 * startup.el (command-line): Update package subdirectory regexp.
9147
9148 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9149
9150 * allout.el (allout-abbreviate-flattened-numbering)
9151 (allout-mode-deactivate-hook): Fix up obsolescence "date".
9152
9153 * subr.el (read-char-choice): Only show the cursor after the prompt,
9154 not after the answer.
9155
9156 2011-03-15 Kevin Ryde <user42@zip.com.au>
9157
9158 * help-fns.el (variable-at-point): Skip leading quotes, if any
9159 (bug#8253).
9160
9161 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
9162
9163 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
9164 warning message.
9165
9166 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
9167
9168 * shell.el (shell): When called interactively, offer to change the
9169 shell file name on remote hosts.
9170
9171 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
9172
9173 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
9174 integration for LDAP parameters. The host, base, user or binddn,
9175 and secret tokens can be specified in a netrc file, for instance.
9176 This is optional because an `auth-source' parameter must be
9177 specified in the search attributes.
9178
9179 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
9180
9181 * help.el (describe-mode): Link to the mode's definition (bug#8185).
9182
9183 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9184
9185 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
9186 into declaration. Remove redundant and harmful binding.
9187
9188 2011-03-12 Eli Zaretskii <eliz@gnu.org>
9189
9190 * files.el (file-ownership-preserved-p): Pass `integer' as an
9191 explicit 2nd argument to `file-attributes'. If the file's owner
9192 is the Administrators group on Windows, and the current user is
9193 Administrator, consider that a match.
9194
9195 * server.el (server-ensure-safe-dir): Consider server directory
9196 safe on MS-Windows if its owner is the Administrators group while
9197 the current Emacs user is Administrator. Use `=' to compare
9198 numerical UIDs, since they could be integers or floats.
9199
9200 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
9201
9202 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
9203
9204 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
9205
9206 Sync with Tramp 2.2.1.
9207
9208 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
9209
9210 * net/trampver.el: Update release number.
9211
9212 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9213
9214 * progmodes/compile.el (compilation--previous-directory): Fix up
9215 various nil/dead-marker mismatches (bug#8014).
9216 (compilation-directory-properties, compilation-error-properties):
9217 Don't call it at a position past the one we're about to change.
9218
9219 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
9220 Disable obsolescence warnings in the file that declares it.
9221
9222 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
9223
9224 * allout-widgets.el (allout-widgets-tally):
9225 Initialize allout-widgets-tally as a hash table rather than nil to
9226 prevent mode-line redisplay warnings. Also, clarify the module
9227 description and fix a comment typo.
9228
9229 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
9230
9231 * help-fns.el (describe-variable): Don't complete keywords.
9232 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
9233
9234 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
9235
9236 * emacs-lisp/package.el (package-version-join): Impose a standard
9237 string representation for pre/alpha/beta version lists.
9238 (package-unpack-single): Standardize the directory name by passing
9239 it through package-version-join.
9240 (package-strip-rcs-id): Accept any version string that does not
9241 signal an error in version-to-list.
9242
9243 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
9244
9245 * simple.el (delete-trailing-whitespace): Return nil for the
9246 benefit of `write-file-functions'.
9247
9248 2011-03-10 Glenn Morris <rgm@gnu.org>
9249
9250 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
9251
9252 * vc/vc-git.el (vc-git-program): New option.
9253 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
9254 (vc-git--call): Use it.
9255
9256 * eshell/esh-util.el (eshell-condition-case): Doc fix.
9257
9258 * cus-edit.el (Custom-newline): If no button at point, look
9259 for a subgroup button at start-of-line. (Bug#2298)
9260
9261 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
9262
9263 2011-03-10 Julien Danjou <julien@danjou.info>
9264
9265 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
9266 `cursor-type' is nil.
9267
9268 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
9269
9270 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
9271
9272 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
9273
9274 * allout.el Summary: Change so yank of distinctive-bullet items
9275 preserves the existing header prefix, rebulleting it if necessary,
9276 rather than replacing it. This is necessary for proper operation
9277 of cooperative addons like allout-widgets.
9278 (allout-make-topic-prefix, allout-rebullet-heading): Change
9279 SOLICIT arg to INSTEAD, and interpret additionally a string value
9280 as alternate bullet to be used, instead of prompting the user for
9281 a bullet character.
9282
9283 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
9284
9285 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
9286 Do not use `tramp-file-name-port', because this returns also
9287 `tramp-default-port'.
9288
9289 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9290
9291 * net/rcirc.el (rcirc-handler-001): Remove useless
9292 with-rcirc-process-buffer.
9293 (rcirc-check-auth-status): Swap arguments to string-match.
9294
9295 2011-03-09 Glenn Morris <rgm@gnu.org>
9296
9297 * shell.el (shell-mode):
9298 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
9299
9300 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
9301 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
9302
9303 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
9304
9305 * emacs-lisp/package.el (package-refresh-contents)
9306 (package-menu-execute): Use condition-case-no-debug.
9307
9308 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
9309
9310 * simple.el (shell-command-to-string): Use `process-file'.
9311
9312 * emacs-lisp/package.el (package-tar-file-info): Handle also
9313 remote files.
9314
9315 * emacs-lisp/package-x.el (package-upload-buffer-internal):
9316 Use `equal' for upload base check.
9317
9318 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
9319
9320 * textmodes/texinfo.el (texinfo-environments):
9321 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
9322
9323 2011-03-08 Glenn Morris <rgm@gnu.org>
9324
9325 * cus-start.el (cursor-in-non-selected-windows):
9326 Fix :set quoting oddness. (Bug#8192)
9327
9328 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
9329 in some setf expressions. (Bug#2159)
9330
9331 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
9332
9333 * custom.el (custom-available-themes): Return themes in
9334 alphabetical order.
9335
9336 See ChangeLog.15 for earlier changes.
9337
9338 ;; Local Variables:
9339 ;; coding: utf-8
9340 ;; End:
9341
9342 Copyright (C) 2011 Free Software Foundation, Inc.
9343
9344 This file is part of GNU Emacs.
9345
9346 GNU Emacs is free software: you can redistribute it and/or modify
9347 it under the terms of the GNU General Public License as published by
9348 the Free Software Foundation, either version 3 of the License, or
9349 (at your option) any later version.
9350
9351 GNU Emacs is distributed in the hope that it will be useful,
9352 but WITHOUT ANY WARRANTY; without even the implied warranty of
9353 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9354 GNU General Public License for more details.
9355
9356 You should have received a copy of the GNU General Public License
9357 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.