]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Pacify byte compiler
[gnu-emacs] / lisp / ChangeLog
1 2007-10-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2
3 * printing.el: Pacify byte compiler, that is, no compiler warnings.
4 Move (again) some variable definitions before use, define some fun
5 aliases, no code change.
6 (pr-version): New version 6.9.2.
7 (pr-path-style, pr-auto-region, pr-menu-char-height)
8 (pr-menu-char-width, pr-menu-lock, pr-ps-printer-alist)
9 (pr-txt-printer-alist, pr-ps-utility-alist): Options declaration
10 via (defvar VAR).
11 (pr-menu-lookup, pr-menu-lock, pr-menu-alist, pr-even-or-odd-pages)
12 (pr-menu-get-item, pr-menu-set-item-name, pr-menu-set-utility-title)
13 (pr-menu-set-ps-title, pr-menu-set-txt-title, pr-region-active-p)
14 (pr-do-update-menus, pr-update-mode-line, pr-f-read-string)
15 (pr-f-set-keymap-parents, pr-keep-region-active): Fun aliases.
16 (defvar pr-menu-print-item, pr-ps-printer-menu-modified)
17 (pr-txt-printer-menu-modified, pr-ps-utility-menu-modified)
18 (pr-even-or-odd-alist): Vars definition moved.
19
20 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
21
22 * emulation/pc-select.el (next-line-mark, next-line-nomark)
23 (previous-line-mark, previous-line-nomark): Wrap with-no-warnings
24 around uses of previous-line and next-line.
25
26 * diff.el (diff-old-file, diff-new-file, diff-extra-args): New
27 defvars.
28
29 * textmodes/css-mode.el (comment-continue):
30 * net/browse-url.el (url-handler-regexp):
31 * progmodes/idlw-help.el (idlwave-system-routines): Pacify
32 byte-compiler.
33
34 * textmodes/fill.el (fill-nobreak-p): Replace obsolete alias
35 line-move-invisible-p it's former definition:
36 invisible-p. line-move-invisible-p was removed on 2007-08-29.
37
38 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
39
40 * files.el (kill-emacs-query-functions): Doc fix;
41 `save-buffers-kill-emacs' is no longer bound to a key.
42
43 2007-10-26 Richard Stallman <rms@gnu.org>
44
45 * isearch-multi.el (isearch-buffers-multi): New option.
46 (isearch-buffers-search-fun): Test it.
47
48 * progmodes/ps-mode.el (ps-mode-map): Delete C-c v binding.
49 Put ps-run-clear on C-c C-l.
50
51 * newcomment.el (comment-styles): New style indent-or-triple.
52 (comment-style): Make that the default.
53 (comment-add defvar): Doc fix.
54 (comment-add): Delete arg EXTRA.
55 (comment-region-default): Open code call to comment-add.
56 Handle indent-or-triple style which uses `multi-char' for INDENT.
57
58 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
59
60 * eshell/em-unix.el (nil-blank-string): Doc fix.
61
62 2007-10-26 John Wiegley <johnw@newartisans.com>
63
64 * eshell/em-unix.el (eshell/diff): Before calling the `diff'
65 function, ensure that the third argument is turned into a nil if
66 the string is otherwise completely empty (either no characters, or
67 all tabs/spaces). This fixes a bug from a user who found himself
68 unable to customize `diff-switches' and still use Eshell's diff
69 command.
70
71 2007-10-26 Glenn Morris <rgm@gnu.org>
72
73 * emacs-lisp/bytecomp.el (byte-compile-warnings): Autoload the
74 safe-local-variable property.
75
76 2007-10-26 Gwern Branwen <gwern0@gmail.com> (tiny change)
77
78 * net/browse-url.el (browse-url-browser-function): Delete grail.
79 (browse-url-grail): Function and variable deleted.
80 (browse-url-browser-function): Delete IXI Mosaic.
81 (browse-url-default-browser): Don't try IXI Mosaic.
82 (browse-url-iximosaic): Function deleted.
83 (browse-url-browser-function): Delete MMM.
84 (browse-url-default-browser): Don't try MMM.
85 (browse-url-mmm): Function deleted.
86
87 2007-10-26 Drew Adams <drew.adams@oracle.com>
88
89 * custom.el (custom-note-var-changed): New function.
90
91 2007-10-25 Dan Nicolaescu <dann@ics.uci.edu>
92
93 * emulation/edt-mapper.el (edt-emacs-variant): Replace the only
94 use with the definition. Remove.
95
96 * add-log.el (change-log-start-entry-re): New defconst.
97 (change-log-sortable-date-at): Use it.
98 (change-log-beginning-of-defun, change-log-end-of-defun):
99 New functions.
100 (change-log-mode): Use them for beginning-of-defun-function and
101 end-of-defun-function.
102
103 2007-10-25 Jonathan Yavner <jyavner@member.fsf.org>
104
105 * ses.el: Make `ses--symbolic-formulas' a safe local variable.
106 (ses-mode-print-map): Add `c' and `t' (suggested by Gareth Rees).
107 (ses-recalculate-cell): Deal with point being just beyond end of
108 data area (why does this happen?)
109 (ses-set-curcell): Ditto.
110 (ses-column-letter): Handle columns beyond 702. Code written by
111 Gareth Rees.
112
113 2007-10-25 Carsten Dominik <dominik@science.uva.nl>
114
115 * textmodes/org.el (org-agenda-get-restriction-and-command):
116 Use `mapc' instead of `mapcar'.
117 (org-agenda-list): Numeric prefix argument can specify the number
118 of days.
119 (remember-register, remember-buffer): Prevent byte compiler from
120 complaining.
121 (org-todo): Save and restore match data.
122 (org-no-warnings): New macro.
123 (org-columns-eval): Use `org-no-warnings'.
124
125 2007-10-25 Chris Moore <christopher.ian.moore@gmail.com>
126
127 * comint.el (comint-password-prompt-regexp):
128 Handle `[sudo] password'-style prompt.
129
130 2007-10-25 Glenn Morris <rgm@gnu.org>
131
132 * custom.el (custom-declare-variable): Add :risky and :safe keywords.
133 (defcustom): Doc fix.
134
135 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re):
136 Add `non_intrinsic'.
137 (f90-constants-re): Add ieee modules.
138 (f90-typedef-matcher, f90-typedec-matcher)
139 (f90-imenu-type-matcher): New functions.
140 (f90-font-lock-keywords-1): Give module procedures function-name face.
141 Use `f90-typedef-matcher' for derived types. Fix `abstract interface'.
142 Add `use, intrinsic'.
143 (f90-font-lock-keywords-2): Use `f90-typedec-matcher' for derived types.
144 Move start of `enum' blocks to separate entry.
145 (f90-start-block-re): Fix `type', `abstract interface'.
146 (f90-imenu-generic-expression): Use `f90-imenu-type-matcher' for
147 derived types.
148 (f90-mode-abbrev-table): Add `abstract interface', `asynchronous',
149 `elemental', change `enumerator'.
150 (f90-no-block-limit): Fix `abstract interface'.
151
152 * progmodes/f90.el (f90-indented-comment-re)
153 (f90-directive-comment-re, f90-break-delimiters):
154 * progmodes/fortran.el (fortran-comment-line-start-skip)
155 (fortran-directive-re):
156 * textmodes/conf-mode.el (conf-space-keywords): Mark these regexps
157 as safe if they are strings.
158
159 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
160
161 * startup.el (window-system): Remove. Don't make it frame-local.
162
163 2007-10-24 Dan Nicolaescu <dann@ics.uci.edu>
164
165 * textmodes/org-publish.el (org-publish-attachment): Re-install
166 accidentally deleted change.
167
168 2007-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
169
170 * term/iris-ansi.el (iris-function-map): Move init into declaration.
171
172 2007-10-24 Juanma Barranquero <lekktu@gmail.com>
173
174 * buff-menu.el (Buffer-menu-sort-column): Doc fix.
175 (Buffer-menu-mode-map): Initialize in the declaration.
176 (Buffer-menu-mode): Define with `define-derived-mode'.
177
178 2007-10-24 Carsten Dominik <dominik@science.uva.nl>
179
180 * textmodes/org.el (org-version): Change to 5.13e.
181 (org-agenda-file-regexp): Fix typo in docstring.
182 (org-add-planning-info): Fix bug in parenthesis settings.
183 (org-scan-tags): Catch the case of indirect buffers with no filename.
184 (org-fast-tag-selection, org-export-as-ascii, org-export-as-html):
185 Re-install switch to mapc, had been removed by accident.
186 (org-columns-map): New binding `C-c C-o'.
187 (org-columns-menu): Change menu text and added new entry.
188 (org-columns-eval): Document the use of `next-line'.
189 (org-columns-open-link): New function.
190 (org-columns-follow-link): Remove function.
191 (org-open-link-from-string): New function.
192 (org-read-date-get-relative): Fix typo in docstring.
193 (org-read-date-get-relative): Leading +/- is not optional.
194 (org-agenda-get-restriction-and-command): Always resize window on
195 first loop cycle.
196 (org-agenda-open-link): Make sure the link abbreviations are
197 present in the agenda buffer.
198 (org-agenda-copy-local-variable): New function.
199
200 2007-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
201
202 * vc.el (vc-update-changelog-rcs2log): Remove incorrect `backend' arg.
203
204 2007-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
205
206 * simple.el (reindent-then-newline-and-indent): Use a `move after
207 insert' kind of marker in the save-excursion.
208
209 2007-10-23 Michael Albinus <michael.albinus@gmx.de>
210
211 * net/tramp.el (tramp-set-file-uid-gid): Protect `call-process'
212 when we are local.
213
214 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
215
216 * progmodes/python.el (python-current-defun): Remove left-over
217 assignment to `start'.
218
219 2007-10-23 Juanma Barranquero <lekktu@gmail.com>
220
221 * ibuf-ext.el (ibuffer-auto-update-changed): Use `dolist' rather
222 than `mapcar'; return value is not used.
223
224 2007-10-23 Dan Nicolaescu <dann@ics.uci.edu>
225
226 * progmodes/gud.el (gdb-source-window, gud-tooltip-mode)
227 (hl-line-mode, hl-line-sticky-flag): Pacify byte compiler.
228
229 2007-10-23 Juanma Barranquero <lekktu@gmail.com>
230
231 * ibuf-ext.el (ibuffer-switch-to-saved-filters)
232 (ibuffer-switch-to-saved-filter-groups): Doc fixes.
233
234 2007-10-23 Dan Nicolaescu <dann@ics.uci.edu>
235
236 * term/xterm.el (terminal-init-xterm): Experiment with a longer timeout.
237
238 2007-10-23 Katsumi Yamaoka <yamaoka@jpl.org>
239
240 * emacs-lisp/advice.el (ad-make-advised-docstring):
241 Add ad-advice-info text property to doc string.
242
243 2007-10-23 Glenn Morris <rgm@gnu.org>
244
245 * progmodes/f90.el (f90-do-indent, f90-if-indent)
246 (f90-type-indent, f90-program-indent, f90-associate-indent)
247 (f90-continuation-indent, f90-comment-region)
248 (f90-beginning-ampersand, f90-smart-end)
249 (f90-break-before-delimiters, f90-auto-keyword-case)
250 (f90-leave-line-no, f90-mode-hook):
251 Give an appropriate safe-local-variable property.
252
253 * progmodes/fortran.el (fortran-tab-mode-default)
254 (fortran-tab-mode-string, fortran-do-indent, fortran-if-indent)
255 (fortran-structure-indent, fortran-continuation-indent)
256 (fortran-comment-indent, fortran-comment-line-extra-indent)
257 (fortran-comment-line-start)
258 (fortran-minimum-statement-indent-fixed)
259 (fortran-minimum-statement-indent-tab)
260 (fortran-comment-indent-char, fortran-line-number-indent)
261 (fortran-check-all-num-for-matching-do)
262 (fortran-blink-matching-if, fortran-continuation-string)
263 (fortran-comment-region, fortran-electric-line-number)
264 (fortran-column-ruler-fixed, fortran-column-ruler-tab)
265 (fortran-analyze-depth, fortran-break-before-delimiters):
266 Give an appropriate safe-local-variable property.
267
268 2007-10-23 Dan Nicolaescu <dann@ics.uci.edu>
269
270 * printing.el: Move variable definitions before use.
271 (pr-menu-char-width, pr-menu-char-height): Pacify byte compiler.
272
273 2007-10-22 Juri Linkov <juri@jurta.org>
274
275 * isearch-multi.el: New file.
276
277 * isearch.el (isearch-search-string): After finding the next
278 occurrence switch to buffer isearch-buffers-current-buffer when
279 isearch-buffers-next-buffer-function is non-nil and
280 isearch-buffers-current-buffer is live.
281
282 * add-log.el (change-log-mode): Make and set buffer-local variable
283 isearch-buffers-next-buffer-function to change-log-next-buffer.
284 Call isearch-buffers-minor-mode.
285 (change-log-next-buffer): New function.
286
287 2007-10-22 Carsten Dominik <dominik@science.uva.nl>
288
289 * textmodes/org.el (org-read-date-get-relative): New function.
290 (org-agenda-file-regexp): New variable.
291 (org-agenda-files): Allow directories in the variable.
292 (org-agenda-get-restriction-and-command): New function.
293 (org-agenda): Use `org-agenda-get-restriction-and-command'.
294 (org-todo-blocker-hook, org-todo-trigger-hook): New hooks.
295 (org-entry-is-todo-p, org-entry-is-done-p, org-get-todo-state):
296 New functions.
297 (org-entry-add-to-multivalued-property)
298 (org-entry-remove-from-multivalued-property)
299 (org-entry-member-in-multivalued-property): New functions.
300 (org-remember-apply-template): Catch C-g and make sure window
301 configuration is restored.
302 (org-agenda-open-link): Make it work with several links in the line.
303 (org-drawers, org-set-regexps-and-options)
304 (org-get-current-options): Add support for a DRAWERS in-buffer option.
305 (org-agenda-window-frame-fractions): New option.
306 (org-fit-agenda-window): Use `org-agenda-window-frame-fractions'.
307 (org-columns-cleanup-item, org-find-entry-with-id)
308 (org-insert-columns-dblock, org-listtable-to-string)
309 (org-dblock-write:columnview, org-columns-capture-view)
310 (org-edit-headline): New functions.
311 (org-agenda-to-appt): Require calendar.
312 (org-entry-get-with-inheritance): Widen for search.
313 (org-columns-display-here): Don't mark buffer as modified when
314 adding space characters to accomodate column overlays.
315 (org-export-as-html): Better formatting of tags in the toc.
316 (org-columns-display-here): Make the ITEM column as compact as possible.
317 (org-remember-templates): Customization interface improved.
318 (org-export-with-property-drawer): Variable removed.
319 (org-export-with-drawers): New option.
320 (org-complex-heading-regexp): New variable.
321 (org-sort-entries): Rewrite using `sort-subr'.
322 (org-set-property): More appropriate completion during interactive use.
323 (org-sort-entries): Allow sorting by property.
324 (org-additional-option-like-keywords): Add more values.
325 (org-sort-entries-or-items): Rename from `org-sort-entries'.
326
327 2007-10-22 Carsten Dominik <dominik@science.uva.nl>
328
329 * textmodes/org.el (org-get-date-from-calendar): New function.
330 (org-at-timestamp-p, org-timestamp-change)
331 (org-remember-templates): First element of each entry is now a
332 name for the template.
333 (org-store-log-note): Check for `org-note-abort'.
334 (org-kill-note-or-show-branches): New command.
335 (org-fontify-priorities): New option.
336 (org-fontify-priorities): New function.
337 (org-cut-subtree, org-copy-subtree): New argument N to
338 act on N sequential subtrees.
339 (org-paste-subtree): Fix the level at which a tree is pasted.
340 (org-fit-agenda-window): Limitations on window size removed.
341 (org-agenda-find-same-or-today-or-agenda): Rename from
342 `org-agenda-find-today-or-agenda'.
343 (org-scheduled-past-days): New option.
344 (org-agenda-scheduled-leaders)
345 (org-agenda-deadline-leaders): New options.
346 (org-agenda-get-deadlines): Use `org-agenda-deadline-leaders'.
347 (org-agenda-get-scheduled): Use `org-agenda-scheduled-leaders'.
348 (org-export-with-tags, org-export-plist-vars)
349 (org-infile-export-plist): New "tags" option.
350 (org-use-property-inheritance): New option.
351 (org-cached-entry-get): Use `org-use-property-inheritance'.
352 (org-remember-apply-template): Fix typo.
353
354 2007-10-22 Michael Albinus <michael.albinus@gmx.de>
355
356 * net/tramp.el (tramp-find-shell)
357 (tramp-open-connection-setup-interactive-shell): Improve sending
358 initial commands.
359 (tramp-action-terminal): Send debug message.
360 (tramp-wait-for-shell-prompt, tramp-send-command-internal): Remove.
361 (tramp-barf-if-no-shell-prompt): Insert code of
362 `tramp-wait-for-shell-prompt'.
363
364 2007-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
365
366 * term/AT386.el (terminal-init-AT386): Use input-decode-map.
367
368 * term/vt200.el (terminal-init-vt200):
369 * term/vt201.el (terminal-init-vt201):
370 * term/vt220.el (terminal-init-vt220):
371 * term/vt240.el (terminal-init-vt240):
372 * term/vt300.el (terminal-init-vt300):
373 * term/vt320.el (terminal-init-vt320):
374 * term/vt400.el (terminal-init-vt400):
375 * term/vt420.el (terminal-init-vt420): Use input-decode-map.
376
377 * term/wyse50.el (wyse50-terminal-map): New var.
378 (terminal-init-wyse50): Use it and input-decode-map.
379 (enable-arrow-keys): Emasculate.
380
381 * term/tvi970.el (tvi970-terminal-map): New var.
382 (terminal-init-tvi970): Use it and input-decode-map.
383 (tvi970-keypad-numeric): Remove.
384 (tvi970-set-keypad-mode): Use a terminal-parameter rather than var.
385
386 * term/sun.el (sun-raw-prefix): Fill as part of declaration.
387 (terminal-init-sun): Use it and input-decode-map.
388
389 * term/news.el (terminal-init-news):
390 * term/lk201.el (terminal-init-lk201):
391 * term/iris-ansi.el (terminal-init-iris-ansi): Use input-decode-map.
392
393 2007-10-22 Sean O'Rourke <sorourke@cs.ucsd.edu>
394
395 * complete.el (PC-expand-many-files): Remove.
396 (PC-do-completion): Call file-expand-wildcards instead of
397 PC-expand-many-files.
398
399 * net/tramp.el (tramp-handle-expand-many-files): Remove.
400 (PC-expand-many-files): Remove advice.
401
402 2007-10-22 Glenn Morris <rgm@gnu.org>
403
404 * progmodes/f90.el: Remove leading "*" from defcustom doc-strings.
405 Add some support for Fortran 2003 syntax:
406 (f90-type-indent): Now also applies to `enum'.
407 (f90-associate-indent): New user option.
408 (f90-keywords-re, f90-keywords-level-3-re, f90-procedures-re):
409 Add some F2003 keywords.
410 (f90-constants-re): New constant.
411 (f90-font-lock-keywords-1): Add `associate' blocks, and `abstract
412 Interface'.
413 (f90-font-lock-keywords-2): Add `enumerator', `generic', `procedure',
414 `class'. Arguments for `type'/`class' may have spaces. Add a new
415 element for functions with specified types. Add `end enum' and
416 `select type'. Add `implicit enumerator' and `procedure'.
417 Add `class default' and `type is', `class is'. Fix `go to' regexp.
418 (f90-font-lock-keywords-3): Add `asynchronous' attribute.
419 (f90-font-lock-keywords-4): Add `f90-constants-re'.
420 (f90-blocks-re): Add `enum' and `associate'.
421 (f90-else-like-re): Add `class is', `type is', and `class default'.
422 (f90-end-type-re): Add `enum'.
423 (f90-end-associate-re, f90-typeis-re): New constants.
424 (f90-end-block-re): Add `enum' and `associate'. Change from
425 optional whitespace to end-of-word, to avoid `enumerator'.
426 (f90-start-block-re): Add `select type', `abstract interface', and
427 `enum'. Avoid `type is', and `type (sometype)'.
428 (f90-mode-abbrev-table): Add `enumerator', `protected', and `volatile'.
429 (f90-mode): Doc fix.
430 (f90-looking-at-select-case): Doc fix. Add `select type'.
431 (f90-looking-at-associate): New function.
432 (f90-looking-at-type-like): Avoid `type is' and `type (sometype)'.
433 Add `enum' and `abstract interface'.
434 (f90-no-block-limit): Add `select type' and `abstract interface'.
435 (f90-get-correct-indent, f90-calculate-indent)
436 (f90-end-of-block, f90-beginning-of-block, f90-next-block)
437 (f90-indent-region, f90-match-end): Handle `associate' blocks.
438
439 2007-10-22 Martin Rudalics <rudalics@gmx.at>
440
441 * progmodes/fortran.el (fortran-mode-map, fortran-window-create):
442 Use window-full-width-p.
443
444 2007-10-22 Dan Nicolaescu <dann@ics.uci.edu>
445
446 * mail/vms-pmail.el (insert-signature): Don't use end-of-buffer.
447
448 * tooltip.el: Use featurep 'xemacs.
449
450 * printing.el: Move variable definitions before use, no code change.
451
452 2007-10-22 Juri Linkov <juri@jurta.org>
453
454 * simple.el (goto-history-element): Allow minibuffer-default to be
455 a list of default values accessible by typing M-n in the minibuffer.
456
457 * dired-x.el (dired-guess-shell-command): Put all guesses to the
458 minibuffer default value list instead of pushing them temporarily
459 to the history list.
460
461 2007-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
462
463 * emacs-lisp/byte-opt.el (byte-optimize-featurep): Fix paren typo.
464
465 2007-10-21 Dan Nicolaescu <dann@ics.uci.edu>
466
467 * w32-fns.el (w32-quote-process-args):
468 * dos-w32.el (print-region-function, lpr-headers-switches)
469 (ps-print-region-function): Pacify byte-compiler.
470
471 * emulation/edt-mapper.el (function-key-map):
472 (edt-map-key): Make it a function instead of using fset.
473 Inline edt-gnu-map-key and edt-lucid-map-key. Use featurep 'xemacs.
474 (edt-gnu-map-key, edt-lucid-map-key): Remove.
475 (edt-x-emacs-p): Remove.
476 (edt-emacs-variant, edt-window-system, edt-xserver):
477 Use featurep 'xemacs.
478
479 * net/eudc.el: Use (featurep 'xemacs) instead of the string test.
480 Replace eudc-xemacs-p with its definition.
481 (eudc-xemacs-p, eudc-emacs-p, eudc-xemacs-mule-p)
482 (eudc-emacs-mule-p): Remove.
483 (eudc-install-menu, eudc-mode): Replace eudc-emacs-p and
484 eudc-xemacs-p with feature tests.
485
486 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-mail-keymap)
487 (eudc-bob-url-keymap, eudc-bob-sound-keymap)
488 (eudc-bob-generic-keymap, eudc-bob-popup-menu)
489 (eudc-bob-toggle-inline-display):
490 * net/eudc-hotlist.el (eudc-hotlist-emacs-menu):
491 Replace eudc-emacs-p and eudc-xemacs-p with feature tests.
492
493 * net/eudcb-ph.el (eudc-ph-open-session):
494 Replace eudc-xemacs-mule-p with its former definition.
495
496 * progmodes/octave-mod.el (octave-xemacs-p): Remove.
497 (octave-abbrev-start): Replace octave-xemacs-p with (featurep 'xemacs).
498
499 * progmodes/vera-mode.el (vera-xemacs): Remove.
500 (vera-mode-syntax-table): Replace vera-xemacs with (featurep 'xemacs).
501
502 * progmodes/vhdl-mode.el (vhdl-xemacs): Remove.
503 (vhdl-doc-mode, vhdl-doc-variable, vhdl-compile-init)
504 (vhdl-speedbar-initialize, vhdl-ps-print-init)
505 (vhdl-forward-comment, vhdl-mode-map-init, vhdl-show-messages)
506 (vhdl-emacs-22, vhdl-emacs-21): Replace vhdl-xemacs
507 with (featurep 'xemacs).
508
509 * progmodes/antlr-mode.el (cond-emacs-xemacs-macfn, defunx)
510 (save-buffer-state-x):
511 * obsolete/fast-lock.el (fast-lock-verbose):
512 * emulation/viper-init.el (viper-xemacs-p)
513 (viper-cond-compile-for-xemacs-or-emacs):
514 * emacs-lisp/checkdoc.el (checkdoc-minor-mode-map):
515 * ps-print.el (case-fold-search):
516 * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs):
517 * calculator.el (calculator-help): Use featurep 'xemacs.
518
519 * progmodes/prolog.el: Undo previous change.
520 (comint-prompt-regexp, comint-process-echoes): Pacify byte-compiler.
521
522 * progmodes/dcl-mode.el:
523 * play/yow.el:
524 * calendar/todo-mode.el:
525 * calendar/cal-hebrew.el:
526 * vc-hg.el: Undo previous change.
527
528 * vms-patch.el: Likewise.
529 (print-region-function): Pacify byte-compiler.
530
531 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
532
533 * files.el (backup-buffer-copy): Call `copy-file' with non-nil
534 preserve-uid-gid.
535
536 * net/ange-ftp.el (ange-ftp-copy-file): Add PRESERVE-UID-GID for
537 compatibility. It is not used, though.
538
539 * net/tramp.el (top): Put load of all tramp-* files into a dolist.
540 Require tramp-cmds.el.
541 (tramp-make-tramp-temp-file): We can get rid of DONT-CREATE.
542 (tramp-handle-file-name-all-completions): Expand DIRECTORY.
543 (tramp-do-copy-or-rename-file-directly): Make more rigid checks.
544 (tramp-do-copy-or-rename-file-out-of-band)
545 (tramp-maybe-open-connection): Use `make-temp-name'. This is
546 possible, because we don't need to create the temporary file, but
547 we need a prefix for ssh, which has its own temporary file handling.
548 (tramp-handle-delete-directory): Add "-f" to rmdir.
549 (tramp-handle-dired-recursive-delete-directory): Call "rm -rf".
550 (tramp-handle-insert-file-contents): Don't raise a tramp-error but
551 a signal, in order to give the callee a chance to suppress.
552 (tramp-handle-write-region): Set owner also in case of short
553 track. Don't use compatibility calls for `write-region' anymore.
554 (tramp-clear-passwd): Add parameter VEC. Adapt all callees.
555 (tramp-append-tramp-buffers): Apply `tramp-list-tramp-buffers'.
556
557 * net/tramp-cmds.el: New file.
558
559 * net/tramp-gw.el (tramp-gw-basic-authentication): Apply VEC to
560 `tramp-clear-passwd'.
561
562 * net/trampver.el: Update release number.
563
564 2007-10-21 Dan Nicolaescu <dann@ics.uci.edu>
565
566 * progmodes/gud.el (gud-target-name): Move definition before use.
567
568 * progmodes/dcl-mode.el: Require imenu at compile time.
569
570 * progmodes/cc-engine.el (c-maybe-stale-found-type):
571 Pacify byte-compiler.
572
573 * obsolete/fast-lock.el: Use featurep test instead of string-match.
574
575 * eshell/esh-mode.el (eshell-handle-ansi-color):
576 Require ansi-color at compile time too.
577
578 * eshell/em-unix.el (eshell/info): Require info at compile time too.
579
580 * w32-fns.el: Require w32-vars.
581
582 * diff-mode.el (diff-refine-hunk): Require smerge-mode at compile
583 time too.
584
585 2007-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
586
587 * double.el ([ignore]): Use `ignore'.
588 (double-setup): Inline into double-mode.
589 (double-mode): Use define-minor-mode.
590
591 2007-10-21 Dan Nicolaescu <dann@ics.uci.edu>
592
593 * textmodes/reftex.el: Move require easymenu before first use.
594 (reftex-info): Require info at compile too.
595
596 * textmodes/org-publish.el (org-publish-org-to-html)
597 (org-publish-org-to): Require org at compile time too.
598 (org-publish-attachment): Require at compile time too.
599
600 * term/tty-colors.el (w32-tty-standard-colors):
601 Pacify byte-compiler.
602
603 * term/pc-win.el (frame-creation-function-alist): Add to this
604 instead of setting frame-creation-function.
605
606 * play/blackbox.el (bb-up, bb-down): Use forward-line.
607
608 * net/rcirc.el (rcirc-markup-text-functions): Move definition earlier.
609
610 * calendar/todo-mode.el: Require calendar at compile time.
611
612 * calendar/cal-hebrew.el: Require holidays at compile time.
613
614 * w32-vars.el: Provide w32-vars.
615
616 * term/w32-win.el: Require w32-vars.
617 (w32-color-map): Pacify byte-compiler.
618
619 * loadup.el: Load w32-vars before term/w32-win.
620
621 2007-10-20 Juri Linkov <juri@jurta.org>
622
623 * textmodes/fill.el (fill-paragraph): When the region is active,
624 don't try other `or' branches regardless of the value returned by
625 fill-region; just return t.
626
627 2007-10-20 Eric S. Raymond <esr@snark.thyrsus.com>
628
629 * vc.el (vc-do-command): Condition out a misleading message when
630 running asynchronously.
631 (vc-deduce-fileset): New argument enables using an unregistered
632 visited file as a singleton fileset if nothing else is available.
633 (vc-next-action): Restore file-registering behavior.
634
635 2007-10-20 Jay Belanger <jay.p.belanger@gmail.com>
636
637 * calc/README: Add recent news.
638
639 2007-10-20 Dan Nicolaescu <dann@ics.uci.edu>
640
641 * term/x-win.el (x-gtk-stock-map, icon-map-list)
642 (x-gtk-map-stock): Delete duplicated definitions from merge.
643
644 * progmodes/compile.el (compilation-skip-to-next-location)
645 (compilation-skip-threshold, compilation-skip-visited):
646 Move definitions earlier.
647
648 * play/decipher.el (decipher-keypress):
649 * play/zone.el (zone-fall-through-ws):
650 * play/landmark.el (lm-move-down, lm-move-up):
651 * play/handwrite.el (handwrite):
652 * mail/mspools.el (mspools-visit-spool):
653 * wdired.el (wdired-next-line, wdired-previous-line):
654 * tar-mode.el (tar-subfile-save-buffer):
655 * scroll-lock.el (scroll-lock-next-line)
656 (scroll-lock-previous-line):
657 * image-dired.el (image-dired-next-line)
658 (image-dired-previous-line):
659 * ediff-help.el (ediff-help-message-line-length):
660 Use forward-line.
661
662 * smerge-mode.el (smerge-auto-refine):
663 * diff-mode.el (diff-auto-refine): Add :group.
664
665 * play/yow.el: Require doctor at compile time.
666
667 * vmsproc.el: Provide vmsproc.
668 (command-send-input): Use forward-line.
669
670 * vms-patch.el: Require ps-print and vmsproc at compile time.
671
672 * vc-mtn.el (log-view-message-re, log-view-file-re)
673 (log-view-font-lock-keywords): Pacify byte-compiler.
674
675 * vc-hg.el: Require log-view at compile time.
676
677 2007-10-20 Eric S. Raymond <esr@snark.thyrsus.com>
678
679 * log-view.el (log-view-diff): Adapt log-view-diff for new VC API.
680
681 2007-10-20 Glenn Morris <rgm@gnu.org>
682
683 * progmodes/f90.el (f90-font-lock-keywords-2)
684 (f90-looking-at-type-like): Fix regexp typos.
685
686 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
687
688 * bs.el (bs--track-window-changes): Don't refresh the whole list.
689 (bs-mode): Set mode-class property to special.
690
691 2007-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
692
693 * diff-mode.el (diff-auto-refine): New var.
694 (diff-hunk): Use it.
695 (diff-ignore-whitespace-hunk): Rename diff-refine-ignore-spaces-hunk.
696 (diff-refine-change): Rename from diff-fine-change. Change it.
697 (diff-refine-preproc): Rename from diff-fine-highlight-preproc.
698 (diff-refine-hunk): Rename from diff-fine-highlight.
699
700 2007-10-20 John Paul Wallington <jpw@pobox.com>
701
702 * help-fns.el (describe-variable-custom-version-info): New function
703 to return variable's version or package version note.
704 (describe-variable): Use it, display result.
705
706 2007-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
707
708 * smerge-mode.el (smerge-auto-refine): New var.
709 (smerge-next, smerge-prev): Use it.
710 (smerge-batch-resolve): Ad-hoc trick for Arch's .rej files.
711
712 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
713 Add `body' arg. Cleanup the check-narrow-maybe/re-narrow-maybe mess.
714
715 * vc-bzr.el (vc-bzr-diff-tree):
716 * vc-git.el (vc-git-diff-tree):
717 * vc-hg.el (vc-hg-diff-tree):
718 * vc-mcvs.el (vc-mcvs-diff-tree):
719 * vc-mtn.el (vc-mtn-diff-tree):
720 * vc-svn.el (vc-svn-diff-tree): Remove.
721
722 * vc-mtn.el (vc-mtn-revision-completion-table):
723 * vc-cvs.el (vc-cvs-revision-completion-table):
724 * vc-arch.el (vc-arch-revision-completion-table):
725 * vc-hg.el (vc-hg-revision-completion-table, vc-hg-revision-table):
726 * vc-git.el (vc-git-revision-completion-table, vc-git-revision-table):
727 Make it work when the arg is a list of files.
728
729 2007-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
730
731 * vc.el: Remove `diff-tree' operation, now subsumed by `diff'.
732 Also `revision-completion-table' now takes a list of files.
733 (vc-deduce-fileset): Remove unused var `regexp'.
734 Only obey allow-directory-wildcard in dired buffers.
735 (vc-default-diff-tree): Remove.
736 (vc-diff-added-files): New var.
737 (vc-diff-internal): Use it. Remove arg `backend'. Update callers.
738 (vc-version-diff): Revert from `vc-history-diff' to the original name.
739 Remove the `backend' arg.
740 (vc-contains-version-controlled-file): Remove.
741 (vc-diff): Bring it closer to the version in Emacs-22.
742 (vc-revert): Fix typo in let-binding.
743 (vc-default-unregister): Remove.
744 (vc-dired-buffers-for-dir): Remove N^2 behavior.
745
746 2007-10-19 Dan Nicolaescu <dann@ics.uci.edu>
747
748 * textmodes/two-column.el (2C-split, 2C-merge):
749 * textmodes/bib-mode.el (bib-find-key, mark-bib):
750 * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
751 * progmodes/etags.el (find-tag-in-order, etags-tags-apropos)
752 * progmodes/ada-xref.el (ada-get-all-references):
753 * obsolete/mlsupport.el (ml-next-line, ml-previous-line):
754 * emulation/vi.el (vi-previous-line-first-nonwhite)
755 (vi-effective-range, vi-put-before):
756 * emulation/edt.el (edt-next-line, edt-previous-line)
757 (edt-paragraph-forward): Use forward-line.
758
759 * progmodes/etags.el (tags-apropos): Require apropos at compile
760 time too.
761
762 * progmodes/prolog.el: Require comint when compiling.
763 (inferior-prolog-flavor): Move defvar before use.
764
765 2007-10-19 Richard Stallman <rms@gnu.org>
766
767 * font-core.el (turn-on-font-lock-if-desired):
768 Rename from `turn-on-font-lock-if-enabled'.
769 Fully obey `font-lock-global-modes'.
770
771 2007-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
772
773 * diff-mode.el (diff-fine-highlight-preproc): Stick to minimal changes
774 which will not affect the behavior of things like forward-word.
775 (diff-fine-highlight): Preserve point.
776
777 * doc-view.el (doc-view-mode-map): Use remapping.
778 Don't rebind C-v, M-v to their default value.
779 Don't bind mouse-4 and mouse-5: it's mwheel.el's job.
780
781 * smerge-mode.el: Add word-granularity refinement.
782 (smerge-refine-forward-function, smerge-refine-ignore-whitespace)
783 (smerge-refine-weight-hack): New vars.
784 (smerge-refine-forward): New fun.
785 (smerge-refine-chopup-region, smerge-refine-highlight-change): Use them.
786 (smerge-refine-subst): Use them as well. Preserve point.
787
788 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
789
790 * follow.el (follow-unload-function): New function.
791
792 * loadhist.el (unload-function-features-list):
793 Rename from `unload-hook-features-list'.
794 (unload-hook-features-list): Add as obsolete alias.
795 (unload-feature): Use `unload-function-features-list'
796 and new FEATURE-unload-function.
797
798 2007-10-19 Glenn Morris <rgm@gnu.org>
799
800 * bindings.el (mouse-minor-mode-menu)
801 (minor-mode-menu-from-indicator): Move to mouse.el.
802 * mouse.el (mouse-minor-mode-menu, minor-mode-menu-from-indicator):
803 Move here from bindings.el.
804
805 2007-10-19 Richard Stallman <rms@gnu.org>
806
807 * help-fns.el (describe-function-1): Don't use the advice origname
808 if it has no function definition.
809
810 2007-10-18 Johan Bockg\e,Ae\e(Brd <bojohan@gnu.org>
811
812 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Save excursion.
813 Use `save-restriction' rather than `widen'.
814
815 2007-10-18 Richard Stallman <rms@gnu.org>
816
817 * time.el (display-time-world-time-format): Display day # not month #.
818
819 2007-10-18 Reiner Steib <Reiner.Steib@gmx.de>
820
821 * files.el (auto-mode-alist): Don't use doc-view for PS and EPS.
822
823 * doc-view.el: Remove version keyword.
824 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
825 (doc-view-ps2pdf-program): Use executable-find. Simplify custom type.
826 (doc-view-ghostscript-options): Improve custom type.
827 (doc-view-cache-directory, doc-view-conversion-buffer)
828 (doc-view-conversion-refresh-interval): Simplify custom type.
829
830 2007-10-18 Tassilo Horn <tassilo@member.fsf.org>
831
832 * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
833 (doc-view-pdf/ps->png-sentinel, doc-view-pdf/ps->png)
834 (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
835 (doc-view-ps->pdf-sentinel, doc-view-ps->pdf):
836 Remove superfluous messages.
837 (doc-view-mode-map): Use the image-mode scrolling commands.
838 Don't rebind C-x k.
839
840 2007-10-18 Reiner Steib <Reiner.Steib@gmx.de>
841
842 * doc-view.el (doc-view-ghostscript-options, doc-view-ps->pdf):
843 Add comment about "-dSAFER".
844
845 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
846
847 * term/xterm.el: Don't require xt-mouse.
848 (terminal-init-xterm): Run terminal-init-xterm-hook rather than
849 calling turn-on-xterm-mouse-tracking-on-terminal directly.
850
851 * xt-mouse.el: Don't change the global function-key-map anny more.
852 (xterm-mouse-mode): Use terminal-init-xterm-hook.
853 Don't use after-make-frame-functions now that term/xterm.el calls
854 us directly.
855 (turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking):
856 Use turn-*-xterm-mouse-tracking-on-terminal. Only once per terminal.
857 (turn-on-xterm-mouse-tracking-on-terminal): Make param optional.
858 Setup input-decode-map and remember that xterm-mouse-mode was
859 enabled in this terminal.
860 (turn-off-xterm-mouse-tracking-on-terminal): Only disable on those
861 terminals where it has been enabled.
862
863 * faces.el (tty-create-frame-with-faces): Make sure not only
864 tty-run-terminal-initialization but also set-locale-environment
865 are run only once per terminal.
866 (tty-run-terminal-initialization): Don't check if the terminal was
867 already initted.
868
869 * international/encoded-kb.el (encoded-kbd-setup-display): Be careful
870 not to remove keymaps that just happen to inherit from one of ours.
871 When setting up our keymap, make sure it won't be accidentally
872 modified by someone else.
873
874 2007-10-18 Thien-Thi Nguyen <ttn@gnuvola.org>
875
876 * textmodes/artist.el (artist-previous-line, artist-next-line):
877 * dired.el (dired-next-line, dired-previous-line):
878 * progmodes/delphi.el (delphi-newline):
879 * textmodes/org.el (org-columns-eval):
880 Use forward-line.
881
882 * emerge.el (emerge-setup): Use insert-buffer-substring.
883 (emerge-prepare-error-list, emerge-setup-with-ancestor): Likewise.
884
885 2007-10-18 Juanma Barranquero <lekktu@gmail.com>
886
887 * textmodes/fill.el (fill-individual-paragraphs): Doc fix.
888 (adaptive-fill-function): Doc fix. Remove * from docstring.
889
890 2007-10-18 Tom Horsley <tom.horsley@att.net>
891
892 * simple.el (interprogram-paste-function): Doc fix.
893 (current-kill): Accept list of strings as well
894 as single string from `interprogram-paste-function'.
895
896 2007-10-18 Glenn Morris <rgm@gnu.org>
897
898 * ibuf-ext.el (ibuffer-saved-filter-groups): Doc fix.
899
900 2007-10-18 Drew Adams <drew.adams@oracle.com>
901
902 * bindings.el (mode-line-minor-mode-keymap):
903 Add mouse-minor-mode-menu on mouse-1.
904 (mode-line-modes): Add mouse-1 to help-echo text.
905 (mouse-minor-mode-menu, minor-mode-menu-from-indicator):
906 New functions.
907 (mode-line-minor-mode-help): Doc fix.
908
909 2007-10-17 Juri Linkov <juri@jurta.org>
910
911 * textmodes/fill.el (fill-paragraph-or-region): Remove function
912 at the request of RMS.
913 (fill-paragraph): Change `arg' to optional `justify'. Add interactive
914 arg `region'. Fix docstring. At the first `or' branch add call to
915 `fill-region' if it the region is active in transient-mark-mode.
916
917 * bindings.el (esc-map): Bind M-q to fill-paragraph
918 instead of fill-paragraph-or-region.
919
920 * tutorial.el (tutorial--default-keys): Replace fill-paragraph-or-region
921 with fill-paragraph.
922
923 * textmodes/ispell.el (ispell-word): Add interactive arg `region'.
924 Fix docstring.
925
926 * indent.el (indent-for-tab-command): Change interactive spec from
927 "P" to "p". Add check for interactive arg before indenting the
928 active region.
929
930 * files.el (auto-mode-alist): Add \\. before PDF/PS/DVI extensions.
931 Regroup.
932
933 2007-10-17 Juanma Barranquero <lekktu@gmail.com>
934
935 * emacs-lisp/find-func.el: Don't require loadhist.
936
937 * loadhist.el (feature-symbols, file-provides, file-requires)
938 (file-set-intersect, file-dependents): Simplify.
939 (unload-feature-special-hooks): Update list of special hooks.
940
941 2007-10-17 Tassilo Horn <tassilo@member.fsf.org>
942
943 * bindings.el (completion-ignored-extensions): Remove pdf and dvi
944 extensions since they can be viewed with doc-view.
945
946 * files.el (auto-mode-alist): Make doc-view-mode the default mode
947 for pdf, ps and dvi files.
948
949 * doc-view.el: Make doc-view-mode the standard mode for viewing
950 pdf, [e]ps and dvi files and add binding C-c C-c to toggle between
951 text and image display. Add binding C-c C-e to switch to an
952 editing mode.
953 (doc-view-ghostscript-options, doc-view-ps->pdf): Add "-dSAFER" to
954 avoid security problems when rendering files from untrusted sources.
955
956 2007-10-17 Aaron Hawley <aaronh@garden.org>
957
958 * tutorial.el (tutorial--save-tutorial): Display message when tutorial
959 position is not saved.
960
961 2007-10-17 Reiner Steib <Reiner.Steib@gmx.de>
962
963 * doc-view.el: Mention xpdf. Fix spelling of Ghostscript.
964 (doc-view-ghostscript-options): Fix typo in doc string.
965
966 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
967
968 * progmodes/compile.el (compilation-next-error-function): Fix timestamp
969 handling, so compilation-fake-loc works again.
970
971 * server.el (server-select-display): Nop if we do not support m-f-o-d.
972 (server-process-filter): Revert last change.
973
974 * vc.el (vc-diff-sentinel, vc-diff-internal): Revert some change in the
975 behavior unrelated to filesets.
976
977 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
978
979 * longlines.el (longlines-wrap-follows-window-size): Integer value
980 specifies wrapping margin.
981 (longlines-mode, longlines-window-change-function):
982 Set window-specific wrapping margin based on the above.
983
984 2007-10-17 John Wiegley <johnw@newartisans.com>
985
986 * eshell/esh-cmd.el (eshell-complex-commands): Add "ls".
987
988 2007-10-17 Dan Nicolaescu <dann@ics.uci.edu>
989
990 * server.el (server-process-filter): Only set display if X11 is
991 supported.
992
993 2007-10-17 Glenn Morris <rgm@gnu.org>
994
995 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression):
996 Tweak regexp to avoid stack overflow.
997
998 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
999
1000 * simple.el (reindent-then-newline-and-indent): Don't assume that
1001 indent-according-to-mode preserves point.
1002
1003 2007-10-16 Juanma Barranquero <lekktu@gmail.com>
1004
1005 * bs.el (bs--make-header-match-string, bs-show-in-buffer)
1006 (bs--nth-wrapper): Simplify.
1007 (bs-select, bs--insert-one-entry): Simplify. Use `when'.
1008 (bs-buffer-list): Simplify. Use `when'. Use `string-match-p'.
1009 (bs-sort-buffer-interns-are-last): Use `string-match-p'.
1010 (bs-attributes-list, bs-max-window-height, bs-must-always-show-regexp)
1011 (bs-maximal-buffer-name-column, bs-minimal-buffer-name-column)
1012 (bs-configurations, bs-default-configuration)
1013 (bs-alternative-configuration, bs-cycle-configuration-name)
1014 (bs-string-show-always, bs-string-show-never, bs-string-current)
1015 (bs-string-current-marked, bs-string-marked, bs-string-show-normally)
1016 (bs-sort-functions, bs-default-sort-name): Remove * in docstrings.
1017 (bs--redisplay, bs--goto-current-buffer, bs--current-buffer, bs-delete)
1018 (bs-apply-sort-faces, bs-next-config-aux): Use `when'.
1019 (bs--window-config-coming-from): Revert 2006-11-09 change.
1020 (bs--restore-window-config): Keep the selected frame.
1021 (bs--track-window-changes, bs--remove-hooks): New functions.
1022 (bs-mode): Use `define-derived-mode'. Set hook to track window changes.
1023 (bs--create-header): Remove.
1024 (bs--create-header-line): New function, based on `bs--create-header'.
1025 (bs--show-header): Use `bs--create-header-line'.
1026 (bs--show-with-configuration): Revert 2006-11-09 change.
1027 Don't reuse window unless it is visible on the selected frame.
1028 Restore window configuration (possibly in a different frame)
1029 before creating any window.
1030
1031 2007-10-16 Glenn Morris <rgm@gnu.org>
1032
1033 * simple.el (blink-matching-open): Don't report false errors with
1034 the `$' syntax class.
1035
1036 2007-10-16 Richard Stallman <rms@gnu.org>
1037
1038 * emacs-lisp/advice.el (ad-get-advice-info): Change to a function.
1039 (ad-get-advice-info-macro): New macro, like old ad-get-advice-info.
1040 (ad-is-advised, ad-get-advice-info-field)
1041 (ad-set-advice-info-field): Use ad-get-advice-info-macro.
1042
1043 2007-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
1044
1045 * vc-hooks.el (vc-workfile-version): Compatibility alias.
1046 (vc-default-working-revision): Compatibility for backends.
1047
1048 2007-10-15 Juanma Barranquero <lekktu@gmail.com>
1049
1050 * filesets.el (filesets-alist-get): Use `let' rather than `let*'.
1051 (filesets-ormap, filesets-sort-case-sensitive-flag)
1052 (filesets-remake-shortcut, filesets-ingroup-collect-files):
1053 Fix typos in docstrings.
1054 (filesets-conditional-sort, filesets-find-or-display-file)
1055 (filesets-data-get-name, filesets-data-get-data)
1056 (filesets-data-set, filesets-cmd-query-replace-getargs)
1057 (filesets-ingroup-collect): Doc fixes.
1058
1059 2007-10-15 Sam Steingold <sds@gnu.org>
1060
1061 * mail/sendmail.el (sendmail-error-reporting-interactive)
1062 (sendmail-error-reporting-non-interactive): New variables for
1063 sendmail error reporting options to simplify support for imperfect
1064 sendmail emulators.
1065 (sendmail-send-it): Use them instead of list literals.
1066
1067 2007-10-15 Juanma Barranquero <lekktu@gmail.com>
1068
1069 * help-fns.el: Revert previous change; it creates a
1070 dependency loop between advice.el and help-fns.el.
1071
1072 2007-10-15 Juanma Barranquero <lekktu@gmail.com>
1073
1074 * help-fns.el: Require advice when compiling.
1075
1076 2007-10-14 Drew Adams <drew.adams@oracle.com>
1077
1078 * emacs-lisp/ring.el (ring-convert-sequence-to-ring)
1079 (ring-insert+extend, ring-remove+insert+extend, ring-member)
1080 (ring-next, ring-previous): New functions.
1081
1082 2007-10-14 Richard Stallman <rms@gnu.org>
1083
1084 * emacs-lisp/advice.el (documentation): Advice deleted.
1085 Doc for advised functions is now handled at C level.
1086 (ad-stop-advice, ad-start-advice): Don't enable or disable
1087 advice for `documentation'.
1088 (ad-advised-definition-docstring-regexp): Var deleted.
1089 (ad-make-advised-definition-docstring): Store orig name
1090 as text property of string.
1091 (ad-advised-definition-p): Check for text property of docstring.
1092
1093 * help-fns.el (describe-function-1): Find source of advised functions.
1094
1095 2007-10-14 Juri Linkov <juri@jurta.org>
1096
1097 * faces.el (describe-face): Allow handling a string as the face name.
1098
1099 * textmodes/ispell.el (ispell-word): Call `ispell-region' on the
1100 active region in transient-mark-mode.
1101 (ispell-region): Change messages displayed at the start and end of
1102 the spell-checking to be the same.
1103
1104 * startup.el (fancy-startup-tail): Say exactly what does the button
1105 dismiss ("Dismiss this startup screen"). Use text "Never show
1106 it again" for the checkbox after this button.
1107 (fancy-startup-screen, fancy-about-screen): Put point before the
1108 first link, so the user can quickly select links with the keyboard.
1109 (normal-mouse-startup-screen): Add more useful text describing how
1110 to follow a link.
1111
1112 2007-10-14 Glenn Morris <rgm@gnu.org>
1113
1114 * progmodes/etags.el (select-tags-table): Disable undo in the
1115 `*Tags Table List*' buffer.
1116
1117 2007-10-13 Eli Zaretskii <eliz@gnu.org>
1118
1119 * dired.el (dired-warn-writable): New face.
1120 (dired-warn-writable-face): New variable.
1121 (dired-font-lock-keywords): Use dired-warn-writable-face, instead
1122 of dired-warning-face, for group- and world-writable files.
1123
1124 2007-10-13 Richard Stallman <rms@gnu.org>
1125
1126 * files.el (directory-abbrev-alist): Doc fix.
1127
1128 2007-10-13 Jari Aalto <jari.aalto@cante.net>
1129
1130 * comint.el (comint-password-prompt-regexp): Add 'LDAP'.
1131
1132 2007-10-12 Martin Rudalics <rudalics@gmx.at>
1133
1134 * frame.el (set-frame-configuration): Assign name parameter only
1135 if it has been set explicitly before.
1136
1137 2007-10-11 Tom Tromey <tromey@redhat.com>
1138
1139 * progmodes/gdb-ui.el (gdb-info-stack-custom): Ensure current
1140 frame is visible.
1141
1142 2007-10-10 Richard Stallman <rms@gnu.org>
1143
1144 * emacs-lisp/debug.el (debugger-setup-buffer): Disable undo
1145 in *Backtrace*.
1146
1147 * faces.el (face-font-selection-order): Doc fix.
1148
1149 * loadhist.el (unload-feature): Doc fix.
1150
1151 2007-10-13 Glenn Morris <rgm@gnu.org>
1152
1153 * progmodes/octave-mod.el (octave-looking-at-kw): Add doc string.
1154 (octave-re-search-forward-kw, octave-re-search-backward-kw):
1155 Add doc string, and an explicit COUNT argument.
1156 (octave-scan-blocks, octave-beginning-of-defun): Explicitly pass
1157 `inc' to search functions.
1158
1159 * faces.el (face-spec-set): When FRAME is nil, set the default for
1160 new frames (restores pre-2007-09-17 behavior). Doc fix.
1161
1162 2007-10-13 John W. Eaton <jwe@octave.org>
1163
1164 * progmodes/octave-mod.el (octave-looking-at-kw)
1165 (octave-re-search-forward-kw, octave-re-search-backward-kw):
1166 New functions.
1167 (octave-in-defun-p, calculate-octave-indent)
1168 (octave-blink-matching-block-open, octave-beginning-of-defun)
1169 (octave-auto-fill): Use octave-looking-at-kw instead of looking-at,
1170 to search for regexps that contain case-sensitive keywords.
1171 (octave-beginning-of-defun): Likewise, for octave-re-search-backward-kw.
1172 (octave-scan-blocks): Likewise, for octave-re-search-forward-kw.
1173
1174 2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
1175
1176 * frame.el (select-frame-set-input-focus): Fix typo "max" -> "mac".
1177 Do not use a single clause cond.
1178
1179 * cus-start.el (all): Use test that does not match the X11 version
1180 for mac.
1181
1182 2007-10-13 Markus Gritsch <m.gritsch@gmail.com> (tiny change)
1183
1184 * progmodes/ebrowse.el (ebrowse-tree-mode): Disable undo in the
1185 BROWSE buffer.
1186
1187 2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
1188
1189 * cus-start.el (all): Undo previous change.
1190
1191 2007-10-13 Glenn Morris <rgm@gnu.org>
1192
1193 * woman.el (woman0-rename): Fix paren typo.
1194
1195 * mail/feedmail.el (feedmail-run-the-queue)
1196 (feedmail-look-at-queue-directory):
1197 * mail/reporter.el (reporter-dump-state):
1198 * net/eudc-hotlist.el (eudc-edit-hotlist):
1199 * net/eudc.el (eudc-display-records)
1200 (eudc-filter-duplicate-attributes)
1201 (eudc-distribute-field-on-records, eudc-query-form, eudc-process-form):
1202 * net/eudcb-bbdb.el (eudc-bbdb-filter-non-matching-record)
1203 (eudc-bbdb-query-internal):
1204 * net/eudcb-ldap.el (eudc-ldap-simple-query-internal):
1205 * net/socks.el (socks-build-auth-list):
1206 * progmodes/cc-cmds.el (top level):
1207 * progmodes/cc-styles.el (c-make-styles-buffer-local, c-set-style):
1208 * progmodes/cperl-mode.el (top level, cperl-imenu-addback)
1209 (cperl-write-tags, cperl-tags-treeify):
1210 * progmodes/ebnf-yac.el (ebnf-yac-token-table):
1211 * progmodes/ebnf2ps.el (ebnf-map-name, ebnf-dimensions):
1212 * progmodes/idlw-shell.el (idlwave-shell-filter-bp, top level):
1213 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
1214 (idlwave-toolbar-remove-everywhere):
1215 * progmodes/idlwave.el (idlwave-indent-line)
1216 (idlwave-sintern-keyword-list, idlwave-scan-user-lib-files)
1217 (idlwave-write-paths, idlwave-all-method-classes)
1218 (idlwave-all-method-keyword-classes, idlwave-entry-keywords)
1219 (idlwave-fix-keywords, idlwave-display-calling-sequence)
1220 (idlwave-complete-in-buffer):
1221 * textmodes/org.el (org-export-as-html, org-export-as-ascii)
1222 (org-fast-tag-selection):
1223 * textmodes/reftex-sel.el (reftex-select-item): Use mapc rather
1224 than mapcar.
1225
1226 2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
1227
1228 * diff-mode.el (diff-fine-change): Add :group.
1229
1230 2007-10-12 Dan Nicolaescu <dann@ics.uci.edu>
1231
1232 * cus-start.el (all): Use the same test as the 22.2 branch.
1233
1234 2007-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1235
1236 * diff-mode.el (diff-current-defun): Force recomputation of
1237 change-log-default-name.
1238
1239 2007-10-12 Chong Yidong <cyd@stupidchicken.com>
1240
1241 * startup.el (fancy-startup-screen): Remove an unnecessary newline
1242 and some leftover logic regarding dedicated frames. If showing
1243 concise startup screen, fit window to buffer.
1244 (command-line-1): If we will be using the splash screen, use
1245 find-file instead of find-file-other-window to find additional files.
1246 Comment out unused code for coping with the old sit-for behavior.
1247
1248 2007-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1249
1250 * term/xterm.el (xterm-function-map, xterm-alternatives-map): Use the
1251 `meta' modifier consistently, rather than using sometimes meta
1252 sometimes alt.
1253
1254 2007-10-12 Martin Rudalics <rudalics@gmx.at>
1255
1256 * window.el (handle-select-window): Revert part of 2007-10-08
1257 change setting the input focus.
1258
1259 2007-10-12 Glenn Morris <rgm@gnu.org>
1260
1261 * startup.el (command-line): Do not read abbrev file in batch mode.
1262
1263 * emacs-lisp/byte-opt.el (top level):
1264 * mail/rmail.el (rmail-list-to-menu):
1265 * obsolete/hilit19.el (hilit-mode):
1266 * progmodes/cc-mode.el (c-postprocess-file-styles)
1267 (c-submit-bug-report):
1268 * textmodes/org-publish.el (org-publish-get-plist-from-filename):
1269 * textmodes/reftex.el (reftex-erase-all-selection-and-index-buffers)
1270 (reftex-access-parse-file):
1271 * textmodes/reftex-cite.el (reftex-do-citation)
1272 (reftex-insert-bib-matches):
1273 * textmodes/reftex-ref.el (reftex-offer-label-menu):
1274 * textmodes/reftex-sel.el (reftex-select-unmark):
1275 * textmodes/reftex-toc.el (reftex-toc-do-promote):
1276 * vc-mcvs.el (vc-mcvs-checkin): Use mapc rather than mapcar.
1277
1278 * cus-edit.el (custom-variable-menu, custom-face-menu)
1279 (custom-group-menu): Check init-file-user rather than
1280 user-init-file, in case cus-edit is loaded by site-run-file.
1281
1282 2007-10-11 Dan Nicolaescu <dann@ics.uci.edu>
1283
1284 * vc.el (vc-deduce-fileset): Delete unused code.
1285 (vc-next-action): Fix typos.
1286
1287 2007-10-11 Juanma Barranquero <lekktu@gmail.com>
1288
1289 * bs.el (bs--mark-unmark): New function.
1290 (bs-mark-current, bs-unmark-current): Use it.
1291
1292 2007-10-11 Eric S. Raymond <esr@snark.thyrsus.com>
1293
1294 * vc.el (vc-diff):
1295 (vc-diff-internal): Merge a patch by Juanma Barranquero. Also,
1296 temporarily disable the check for his edge case of
1297 vc-diff (stopping it from grinding when called from $HOME), as
1298 it's calling some brittle code in vc-hooks.el.
1299 (with-vc-properties): Fix evaluation time of a macro argument.
1300 * ediff-vers.el (ediff-vc-internal):
1301 * vc-hooks.el:
1302 * loaddefs.el: Follow up on VC terminology change.
1303
1304 2007-10-11 Juanma Barranquero <lekktu@gmail.com>
1305
1306 * follow.el (follow-stop-intercept-process-output):
1307 Use `follow-call-process-filter' rather than `process-filter'.
1308 Simplify.
1309 * vc.el (vc0iff): Prevent errors in an edge case.
1310
1311 2007-10-11 Eric S. Raymond <esr@snark.thyrsus.com>
1312
1313 * vc-hooks.el (vc-registered): Robustify this function a bit
1314 against filenames with no directory component.
1315
1316 2007-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1317
1318 * international/characters.el: Undo unwanted and unexplained change.
1319
1320 2007-10-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
1321
1322 * ps-print.el: Fix the usage of :foreground and :background face
1323 attributes. Reported by Nikolaj Schumacher <n_schumacher@web.de>.
1324 (ps-print-version): New version 6.7.6.
1325 (ps-face-attributes, ps-face-attribute-list, ps-face-background):
1326 Fix code.
1327 (ps-face-foreground-color-p, ps-face-background-color-p)
1328 (ps-face-color-p): New inline funs.
1329
1330 2007-10-10 Carsten Dominik <dominik@science.uva.nl>
1331
1332 * textmodes/org.el (org-additional-option-like-keywords): New constant.
1333 (org-complete): Use `org-additional-option-like-keywords'.
1334 (org-parse-local-options): New function.
1335
1336 2007-10-10 Carsten Dominik <dominik@science.uva.nl>
1337
1338 * textmodes/org.el (org-in-clocktable-p): New function.
1339 (org-clock-report): Only update the table at point, or insert a new one.
1340 (org-clock-goto): New function.
1341 (org-open-file): Use `start-process-shell-command' instead of
1342 `shell-command' with an ampersand.
1343 (org-deadline, org-schedule): New argument REMOVE to remove the
1344 date from the entry.
1345 (org-agenda-schedule, org-agenda-deadline): Pass the prefix
1346 argument to `org-schedule' and `org-deadline'.
1347 (org-trim): Use the correct expressions for beginning and end of
1348 the string.
1349 (org-get-cleaned-entry): Trim the string before returning it.
1350 (org-clock-find-position): New function.
1351 (org-clock-into-drawer): New option.
1352 (org-agenda-tags-column): Rename from
1353 `org-agenda-align-tags-to-column'.
1354 (org-agenda-align-tags): Allow negative values for
1355 `org-agenda-tags-column'.
1356 (org-insert-labeled-timestamps-before-properties-drawer): Remove var.
1357 (org-agenda-to-appt): New optional argument FILTER.
1358 (org-completion-fallback-command): New variable.
1359 (org-complete): Use `org-completion-fallback-command'.
1360 (org-find-base-buffer-visiting): Catch the case that there is no
1361 buffer visiting the file.
1362 (org-property-or-variable-value): New function.
1363 (org-todo): Use `org-property-or-variable-value'
1364 (org-agenda-compact-blocks): New option.
1365 (org-prepare-agenda, org-agenda-list): Use `org-agenda-compact-blocks'.
1366 (org-agenda-schedule, org-agenda-deadline):
1367 Call `org-agenda-show-new-time'.
1368 (org-agenda-show-new-time): New argument PREFIX.
1369 (org-colgroup-info-to-vline-list): Fix but that cause a
1370 shift in the vertical lines.
1371 (org-buffer-property-keys): New argument INCLUDE-DEFAULTS.
1372 (org-maybe-renumber-ordered-list, org-cycle-list-bullet)
1373 (org-indent-item): No arg in call to `org-fix-bullet-type'.
1374 (org-fix-bullet-type): Remove argument.
1375 (org-read-date): Check for am/pm twice, to catch the end time.
1376 (org-goto-map): Use `suppress-keymap'.
1377 (org-remember-apply-template): Respect the dynamically scoped
1378 selection character.
1379
1380 2007-10-10 Bastien Guerry <Bastien.Guerry@ens.fr>
1381
1382 * textmodes/org-export-latex.el (org-export-latex-protect-string):
1383 Renaming of `org-latex-protect'.
1384 (org-export-latex-emphasis-alist): By default, don't protect
1385 any emphasis formatter from further conversion.
1386 (org-export-latex-tables): Honor column grouping for tables.
1387 (org-export-latex-title-command): New option.
1388 (org-export-latex-treat-backslash-char): Use \textbackslash{} to
1389 export backslash character.
1390
1391 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
1392
1393 * frame.el (frame-inherited-parameters): Remove unused `environment'
1394 parameter, and let server.el add `client' when needed.
1395
1396 * server.el (server-create-tty-frame)
1397 (server-create-window-system-frame): Set frame-inherited-parameters.
1398
1399 * frame.el (frame-inherited-parameters): New var.
1400 (make-frame): Use it.
1401
1402 * font-lock.el (lisp-font-lock-keywords-2): Remove let-environment.
1403
1404 * env.el (let-environment): Remove. Unused.
1405 (read-envvar-name): Simplify.
1406 (setenv): Remove unused arg `frame'.
1407
1408 * help-fns.el (describe-variable): Add missing " " for multiline
1409 obsolescence info and missing EOL after global value.
1410
1411 2007-10-10 Eric S. Raymond <esr@snark.thyrsus.com>
1412
1413 * add-log.el:
1414 * ediff-vers.el:
1415 * log-view.el:
1416 * pcvs.el:
1417 * vc-arch.el:
1418 * vc-bzr.el:
1419 * vc-cvs.el:
1420 * vc.el:
1421 * vc-git.el:
1422 * vc-hg.el:
1423 * vc-hooks.el:
1424 * vc-mcvs.el:
1425 * vc-mtn.el:
1426 * vc-rcs.el:
1427 * vc-sccs.el:
1428 * vc-svn.el: Terminology cleanup: workfile-version -> working-revision,
1429 {find,init,next,previous,annotate-*,log}-version ->
1430 {find,init,next,previous,annotate-*,log}-revision,
1431 annotate-focus-version -> annotate-working-revision, The term
1432 'focus' is gone. The term 'revision' is now used consistently
1433 everywhere that reference to a revision ID is intended, replacing
1434 older use of 'version'.
1435
1436 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
1437
1438 * follow.el: Change all instances of "Follow Mode" to "Follow
1439 mode" in docstrings and messages.
1440 (follow-menu-filter): Fix arg passed to `bound-and-true-p'.
1441
1442 2007-10-10 Eric S. Raymond <esr@snark.thyrsus.com>
1443
1444 * vc.el (vc-next-action): Rewrite completely; this principal
1445 entry point now operates on a current fileset selected either
1446 explicitly via VC-Dired or implicitly by visiting a file buffer,
1447 rather than always operating on the file of the current buffer as
1448 in older versions. Rewrite the rest of the mode to match.
1449 (with-vc-properties): Rewrite to operate on a file list.
1450 (with-vc-file): vc-checkin takes a file list argument now.
1451 (vc-post-command-functions): This hook now receives a file list.
1452 (vc-do-command): Take a either a file or a file list as argument.
1453 (vc-deduce-fileset): New function for deducing a file list to
1454 operate on.
1455 (vc-next-action-on-file, vc-next-action-dired): Remove.
1456 Merge into vc-next-action.
1457 (vc-register): Adapt to the fact that vc-start-entry now takes a
1458 file list.
1459 (vc-register-with): New function.
1460 (vc-start-entry): Take a file list argument rather than a
1461 file argument.
1462 (vc-checkout): Cope with vc-start-entry taking a file list.
1463 (vc-steal-lock): Cope with with-vc-properties taking a
1464 file list.
1465 (vc-checkin): Take a file list argument rather than a file argument.
1466 (vc-finish-logentry): Use the filelist passed by vc-start-entry.
1467 (vc-diff-internal): Rewrite for filesets.
1468 (vc-diff-sentinel): New function, tests whether changes were
1469 written into a diff buffer.
1470 (vc-diff): Rewrite for filesets.
1471 (vc-version-diff): Rewrite for filesets.
1472 (vc-print-log): Take a fileset argument.
1473 (vc-revert): Revert the entire selected fileset, not just the
1474 current buffer.
1475 (vc-rollback): Roll back the entire selected fileset, if
1476 possible. No longer accepts a prefix argument.
1477 (vc-update): Merge new changes for the entire selected
1478 fileset, not just the current buffer.
1479 (vc-revert-file): Cope with with-vc-properties taking a file list.
1480 (vc-default-dired-state-info): Add + status suffix if the file is
1481 modified.
1482 (vc-annotate-warp-version): Use the new diff machinery.
1483 (vc-log-edit): Take a file list argument rather than a file argument.
1484
1485 2007-10-10 Michael Albinus <michael.albinus@gmx.de>
1486
1487 Sync with Tramp 2.1.11.
1488
1489 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
1490 Pacify byte compiler.
1491
1492 * net/trampver.el: Update release number.
1493
1494 2007-10-09 Richard Stallman <rms@gnu.org>
1495
1496 * play/gamegrid.el (gamegrid-setup-default-font): Use face-spec-set.
1497
1498 2007-10-09 Juanma Barranquero <lekktu@gmail.com>
1499
1500 * follow.el: Require easymenu.
1501 (follow-mode-hook, follow-mode): Doc fixes.
1502 (follow-mode-off-hook): Mark as obsolete.
1503
1504 2007-10-08 Martin Rudalics <rudalics@gmx.at>
1505
1506 * window.el (mouse-autoselect-window-cancel): Don't cancel for
1507 select-window or select-frame events.
1508 (handle-select-window): When autoselecting window set input
1509 focus. Restructure.
1510
1511 * frame.el (focus-follows-mouse): Move to frame.c.
1512 * cus-start.el (all): Add focus-follows-mouse.
1513
1514 2007-10-08 Juanma Barranquero <lekktu@gmail.com>
1515
1516 * bs.el (bs-mode): Make sure global-font-lock-mode doesn't
1517 activate font-locking in the *buffer-selection* buffer.
1518 (bs-show-sorted): Doc fix.
1519
1520 * bs.el (bs--get-marked-string, bs--get-modified-string)
1521 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
1522 (bs--get-mode-name, bs-mode): Fix typos in docstrings.
1523 (bs--format-aux): Doc fix.
1524
1525 2007-10-08 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
1526
1527 * progmodes/gud.el (gud-gud-gdb-command-name): Fix typo in docstring.
1528
1529 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
1530
1531 * progmodes/gud.el (gud-gud-gdb-command-name): New option.
1532 (gud-gdb): New function for old M-x gdb (text command mode).
1533 (gud-gdb-command-name, gdb): Move to...
1534
1535 * progmodes/gdb-ui.el: ...here and adapt doc string.
1536 (gud-gdba-command-name, gdba): Delete.
1537
1538 2007-10-08 Juanma Barranquero <lekktu@gmail.com>
1539
1540 * bs.el: Don't defvar `font-lock-verbose'.
1541 (bs-config-clear, bs-kill, bs-string-show-normally, bs-sort-functions)
1542 (bs--get-file-name): Fix typos in docstrings.
1543 (bs--show-header): Use `dolist' instead of `mapcar'.
1544 (bs-mode): Set `show-trailing-whitespace' to nil.
1545 (bs-buffer-sort-function, bs-mouse-select-other-frame)
1546 (bs-visits-non-file, bs-sort-buffer-interns-are-last, bs-show):
1547 Doc fixes.
1548
1549 2007-10-08 Adam Hupp <adam@hupp.org> (tiny change)
1550
1551 * progmodes/gdb-ui.el (pdb): Specify file for gud-break.
1552
1553 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
1554
1555 * progmodes/gud.el (gdb): Make graphical mode the default and
1556 switch to text command mode if appropriate, i.e., reverse previous
1557 arrangement.
1558 (gud-gdb-marker-filter): Adapt for above change.
1559
1560 * progmodes/gdb-ui.el (gdb-init-1): Don't set the values
1561 gud-minor-mode and gud-marker-filter.
1562 (gdb-fullname-regexp): New variable.
1563 (gud-gdba-marker-filter): Use it to switch to text command
1564 mode if appropriate.
1565
1566 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
1567
1568 * progmodes/gud.el (gud-display-line): Find source buffer even when
1569 GUD buffer has its own frame.
1570
1571 2007-10-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1572
1573 * term/x-win.el (icon-map-list): Set to nil for 22.1 compatibility.
1574
1575 2007-10-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1576
1577 * term/x-win.el (x-gtk-stock-map): Version is 22.2.
1578
1579 2007-10-08 Martin Rudalics <rudalics@gmx.at>
1580
1581 * allout.el (allout-before-change-handler): Replace got-char by
1582 goto-char.
1583
1584 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1585
1586 * vc-svn.el (vc-svn-resolve-when-done, vc-svn-find-file-hook): New funs.
1587 Used to try and automatically enabled smerge-mode in the presence of
1588 conflicts and to call `svn resolved' when the conflicts are gone.
1589 (vc-svn-parse-status): Remember the svn-specific status.
1590
1591 2007-10-08 Eli Zaretskii <eliz@gnu.org>
1592
1593 * menu-bar.el (menu-bar-search-documentation-menu): Rename from
1594 menu-bar-apropos-menu. All users changed.
1595 (menu-bar-help-menu): Change menu symbols to better match the text
1596 displayed by the menu.
1597
1598 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
1599
1600 * files.el (file-name-sans-versions): Use [:alnum:] and also allow
1601 #, @, : and ^.
1602
1603 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
1604
1605 * pcvs-defs.el (cvs-mode-map): Bind TAB and backtab.
1606
1607 * log-view.el (log-view-mode-map): Likewise.
1608
1609 * diff-mode.el (diff-mode-shared-map): Likewise.
1610
1611 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
1612
1613 * files.el (file-name-sans-versions): Also allow `A-Z'.
1614
1615 * vc.el: Mention all supported VC backends.
1616
1617 2007-10-08 Richard Stallman <rms@gnu.org>
1618
1619 * wid-edit.el (widget-specify-button): Don't merge mouse-face with
1620 neighbouring buttons.
1621
1622 2007-10-08 Andreas Schwab <schwab@suse.de>
1623
1624 * files.el (file-name-sans-versions): Also allow `_'.
1625
1626 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
1627
1628 * files.el (file-name-sans-versions): Allow - and a-z in version names.
1629
1630 * log-view.el (log-view-mode-map, log-view-mode-menu):
1631 Bind log-view-annotate-version.
1632 (log-view-beginning-of-defun, log-view-end-of-defun)
1633 (log-view-annotate-version): New functions.
1634 (log-view-mode): Use log-view-beginning-of-defun and
1635 log-view-end-of-defun.
1636
1637 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1638
1639 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix staging.
1640
1641 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1642
1643 * wid-edit.el (widget-image-insert): Don't merge mouse-face with
1644 neighbouring buttons.
1645
1646 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1647 Recognize gcc's use of "note" for informational messages.
1648
1649 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1650
1651 * textmodes/css-mode.el (css-electric-keys): electrick->electric.
1652 (css-mode): Update correspondingly.
1653
1654 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
1655
1656 * vc-git.el (vc-git-log-view-mode): Add font-lock patterns for
1657 Signed-off-by, Acked-by and Merge.
1658
1659 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1660
1661 * ediff-init.el (ediff-verbose-p): This var is not a constant.
1662
1663 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1664
1665 * vc-mtn.el: New file.
1666
1667 * vc-hooks.el (vc-handled-backends): Add Mtn.
1668
1669 2007-10-08 Eli Zaretskii <eliz@gnu.org>
1670
1671 * files.el (find-file, find-file-other-window)
1672 (find-file-other-frame, find-file-existing, find-file-read-only)
1673 (find-file-read-only-other-window)
1674 (find-file-read-only-other-frame)
1675 (find-alternate-file-other-window, find-alternate-file): Doc fixes.
1676
1677 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
1678
1679 * progmodes/gud.el (gdb-ready): New variable.
1680 (gdb): Set it to nil. Set gud-running to nil here...
1681 (gud-common-init): ...instead of here.
1682
1683 * progmodes/gdb-ui.el (gdba, gdb-send, gdb-source-info):
1684 Use gdb-ready. Discard input until GDB is ready to accept it.
1685
1686 2007-10-08 Martin Rudalics <rudalics@gmx.at>
1687
1688 * dired.el (dired-warning): Inherit from font-lock-warning-face to
1689 make it show up with eight colors.
1690
1691 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1692
1693 * diff-mode.el (diff-sanity-check-hunk): Fix up the case when unified
1694 diffs are concatenated with no intervening line.
1695
1696 2007-10-08 Dave Love <fx@gnu.org>
1697
1698 * progmodes/python.el: Merge changes from Dave Love's v2007-Sep-10.
1699 (python-font-lock-keywords): Update to the 2.5 version of the language.
1700 (python-quote-syntax): Let-bind font-lock-syntactic-keywords to nil.
1701 (python-backspace): Only behave funny in code.
1702 (python-compilation-regexp-alist): Add PDB stack trace regexp.
1703 (inferior-python-mode): Add PDB prompt regexp.
1704 (python-fill-paragraph): Refine the fenced-string regexp.
1705 (python-find-imports): Handle imports spanning several lines.
1706 (python-mode): Add `class' to hideshow support.
1707
1708 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1709
1710 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
1711 Use add-log-buffer-file-name-function rather than binding
1712 buffer-file-name, so we don't end up calling change-log-mode in *cvs*
1713 when `fi' is the ChangeLog file itself.
1714
1715 * outline.el (outline-flag-region): Use front-advance.
1716
1717 2007-10-08 Ilya Zakharevich <ilyaz@cpan.org>
1718
1719 * progmodes/cperl-mode.el: Merge upstream 5.23.
1720 (cperl-where-am-i): Remove function.
1721 (cperl-backward-to-noncomment): Don't go too far when skipping POD/HEREs
1722 (cperl-sniff-for-indent): De-invert [string] and [comment].
1723 When looking for label, skip s:m:y:tr.
1724 (cperl-indent-line): Likewise.
1725 (cperl-mode): Don't assume `font-lock-multiline' is auto-local.
1726 (cperl-windowed-init): Wrong `ps-print' handling.
1727 Both thanks to Chong Yidong.
1728 (cperl-look-at-leading-count): Could fail with unfinished RExen.
1729 (cperl-find-pods-heres): If the second part of s()[] is missing,
1730 don't try to highlight delimiters...
1731
1732 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1733
1734 * progmodes/compile.el (compilation-get-file-structure): Complete last
1735 change by also using spec-directory in the puthash.
1736
1737 2007-10-08 Riccardo Murri <riccardo.murri@gmail.com>
1738
1739 * vc-bzr.el (vc-bzr-file-name-relative): Use 'when' instead of 'and'.
1740 (vc-bzr-status): Fix shadowing of variable 'status'.
1741 (vc-bzr-workfile-version): Use correct path to 'last-revision' file.
1742 Use `expand-file-name' instead of `concat'.
1743 (vc-bzr-annotate-command): Use option name '--long' instead of '-l'.
1744 Update annotation line regexp. Fixes launchpad.net [Bug 137435].
1745
1746 2007-10-08 Jason Rumney <jasonr@gnu.org>
1747
1748 * frame.el (focus-follows-mouse): Doc-fix. Change default on w32.
1749
1750 2007-10-08 Richard Stallman <rms@gnu.org>
1751
1752 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Make defcustom.
1753 Add `safe-local-variable' property.
1754 (lisp-body-indent): Likewise.
1755
1756 2007-10-08 Richard Stallman <rms@gnu.org>
1757
1758 * files.el (hack-local-variables-confirm): Rename arg VARS to ALL-VARS.
1759 Add doc string.
1760
1761 2007-10-08 Martin Rudalics <rudalics@gmx.at>
1762
1763 * files.el (backup-buffer-copy): Try to overwrite old backup first.
1764
1765 2007-10-08 Martin Rudalics <rudalics@gmx.at>
1766
1767 * repeat.el (repeat): Use last-repeatable-command instead of
1768 real-last-command. Run pre- and post-command hooks for
1769 self-insertion. Update doc-string.
1770
1771 2007-10-08 Alexandre Julliard <julliard@winehq.org>
1772
1773 * vc-git.el (vc-git-state): Call git-add --refresh to update the
1774 state of the file.
1775 (vc-git-workfile-unchanged-p): Delegate implementation to vc-git-state.
1776 (vc-git-create-repo): Fix invalid command.
1777
1778 2007-10-08 Richard Stallman <rms@gnu.org>
1779
1780 * textmodes/flyspell.el (flyspell-mode):
1781 Catch errors in flyspell-mode-on.
1782
1783 2007-10-09 Juanma Barranquero <lekktu@gmail.com>
1784
1785 * term/x-win.el (x-alternatives-map): Remove spurious parenthesis.
1786
1787 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1788
1789 * international/encoded-kb.el (encoded-kbd-setup-display):
1790 Use input-decode-map rather than local-key-translation-map.
1791
1792 * term/rxvt.el (rxvt-alternatives-map): New map.
1793 (terminal-init-rxvt): Use it.
1794 Bind rxvt-function-map in input-decode-map.
1795
1796 * term/xterm.el (xterm-alternatives-map): New map.
1797 (terminal-init-xterm): Use it.
1798 Bind xterm-function-map in input-decode-map.
1799
1800 * term/x-win.el (x-alternatives-map): New var.
1801 (x-setup-function-keys): Use it.
1802
1803 * help-fns.el (describe-variable): Slightly change the layout of
1804 meta-info to separate it better from the docstring.
1805 Standardize insertion of extra empty lines in various circumstances.
1806
1807 * diff-mode.el (diff-hunk-style): New fun.
1808 (diff-end-of-hunk): Use it.
1809 (diff-context->unified): Use the new `apply' undo element,
1810 if applicable, so as to save undo-log space.
1811 (diff-fine-change): New face.
1812 (diff-fine-highlight-preproc): New function.
1813 (diff-fine-highlight): New command.
1814 (diff-mode-map, diff-mode-menu): Add diff-fine-highlight.
1815
1816 * smerge-mode.el (smerge-refine-chopup-region): Add `preproc' argument.
1817 (smerge-refine-highlight-change): Add `props' argument.
1818 (smerge-refine-subst): New function holding most of smerge-refine.
1819 (smerge-refine): Use it.
1820
1821 2007-10-08 Eric S. Raymond <esr@snark.thyrsus.com>
1822
1823 * vc.el (vc-default-wash-log): Remove unused code, the
1824 log washers all live in the backends now.
1825 (vc-default-comment-history): Correct for the fact
1826 that wash-log is argumentless in the new API.
1827
1828 2007-10-08 Michael Albinus <michael.albinus@gmx.de>
1829
1830 * net/tramp.el (tramp-find-foreign-file-name-handler): Check also host.
1831 (tramp-maybe-send-script): Apply `member' but `memq'.
1832 (tramp-advice-file-expand-wildcards): Simplify implementation.
1833
1834 2007-10-08 Juanma Barranquero <lekktu@gmail.com>
1835
1836 * follow.el (follow-mode): Don't run hooks twice. Use `when'.
1837
1838 * mb-depth.el (minibuf-depth-indicator-function): New variable.
1839 (minibuf-depth-setup-minibuffer): Use it.
1840
1841 2007-10-07 Glenn Morris <rgm@gnu.org>
1842
1843 * simple.el (bad-packages-alist): Clarify Semantic and CEDET
1844 version numbers.
1845
1846 2007-10-06 Juri Linkov <juri@jurta.org>
1847
1848 * textmodes/fill.el (fill-paragraph-or-region): New function.
1849
1850 * bindings.el (esc-map): Bind M-q to fill-paragraph-or-region
1851 instead of fill-paragraph.
1852
1853 * tutorial.el (tutorial--default-keys): Replace fill-paragraph
1854 with fill-paragraph-or-region. Suspend command is now the same
1855 `suspend-frame' on window systems and on tty.
1856
1857 * image.el (image-type): Check if image-types is bound to not fail
1858 on tty.
1859
1860 * delsel.el (delete-selection-pre-hook):
1861 * emulation/cua-base.el (cua-paste): Check if mouse-region-match
1862 is fbound to not fail on mouseless tty.
1863
1864 2007-10-06 Michael Albinus <michael.albinus@gmx.de>
1865
1866 * net/tramp.el (top): Move loading of tramp-util.el and
1867 tramp-vc.el to tramp-compat.el.
1868 (tramp-make-tramp-temp-file): Complete rewrite. Create remote
1869 temporary file if possible, in order to avoid a security hole.
1870 (tramp-do-copy-or-rename-file-out-of-band)
1871 (tramp-maybe-open-connection): Call `tramp-make-tramp-temp-file'
1872 with DONT-CREATE, because the connection is not setup yet.
1873 (tramp-handle-process-file): Rewrite temporary file handling.
1874 (tramp-completion-mode): New defvar.
1875 (tramp-completion-mode-p): Use it.
1876
1877 * net/tramp-compat.el (top): Load tramp-util.el and tramp-vc.el.
1878
1879 * net/tramp-fish.el (tramp-fish-handle-process-file):
1880 Rewrite temporary file handling.
1881
1882 2007-10-06 Eric S. Raymond <esr@snark.thyrsus.com>
1883
1884 * vc.el: Workfile version -> focus version change. Port various
1885 comments from new VC to reduce the noise in the diff.
1886 Patch in the new vc-create-repo function to go with the
1887 header comment about it already present.
1888 There are no changes to existing logic in this patch.
1889 (vc-revert-buffer1): Rename to vc-revert-buffer-internal.
1890
1891 2007-10-06 Aaron Hawley <aaronh@garden.org>
1892
1893 * autoinsert.el (auto-insert-alist): Add a Texinfo entry.
1894
1895 2007-10-05 Chris Moore <dooglus@gmail.com>
1896
1897 * server.el (server-kill-new-buffers): Doc fix.
1898
1899 2007-10-05 John W. Eaton <jwe@octave.org>
1900
1901 * progmodes/octave-mod.el (octave-abbrev-table): Add "until".
1902 (octave-begin-keywords): Add "do".
1903 (octave-end-keywords): Remove "end".
1904 (octave-reserved-words): Add "end". Remove "all_va_args",
1905 "gplot", and 'gsplot".
1906 (octave-text-functions): Remove "gset", "gshow", "set", and "show".
1907 (octave-variables): Remove "IMAGEPATH", "INFO_FILE",
1908 "INFO_PROGRAM", "LOADPATH", "__error_text__", "automatic_replot",
1909 "default_return_value", "define_all_return_values",
1910 "do_fortran_indexing", "empty_list_elements_ok",
1911 "gnuplot_has_multiplot", "implicit_str_to_num_ok",
1912 "ok_to_lose_imaginary_part", "prefer_column_vectors",
1913 "prefer_zero_one_indexing", "propagate_empty_matrices",
1914 "resize_on_range_error", "treat_neg_dim_as_zero",
1915 "warn_assign_as_truth_value", "warn_comma_in_global_decl",
1916 "warn_divide_by_zero", "warn_function_name_clash",
1917 "warn_missing_semicolon", "whitespace_in_literal_matrix".
1918 Add "DEFAULT_EXEC_PATH", "DEFAULT_LOADPATH", "IMAGE_PATH",
1919 "crash_dumps_octave_core", "sighup_dumps_octave_core",
1920 "sigterm_dumps_octave_core".
1921 (octave-block-match-alist): Remove "end" from block-end keywords.
1922 (octave-mode): Update ftp site address.
1923
1924 2007-10-05 Dan Nicolaescu <dann@ics.uci.edu>
1925
1926 * vc.el: Reorder functions, no code changes.
1927
1928 2007-10-04 Michael Albinus <michael.albinus@gmx.de>
1929
1930 * net/tramp.el (tramp-make-temp-file): Move to tramp-compat.el.
1931 (tramp-do-copy-or-rename-file-directly): Handle tmpfile only in
1932 the cond clauses where needed.
1933 (tramp-handle-write-region): Rearrange code for proper handling of
1934 tmpfile.
1935
1936 * net/tramp-compat.el (tramp-compat-make-temp-file): New defsubst.
1937
1938 * net/tramp.el:
1939 * net/tramp-fish.el:
1940 * net/tramp-ftp.el:
1941 * net/tramp-smb.el: Rename `tramp-make-temp-file' to
1942 `tramp-compat-make-temp-file'.
1943
1944 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
1945
1946 * image-dired.el (image-dired-image-at-point-p): Fix typo in docstring.
1947
1948 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1949
1950 * emacs-lisp/copyright.el (copyright-update): Don't update if the file
1951 already uses a more recent copyright version than the "current" one.
1952
1953 2007-10-03 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
1954
1955 * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-reset-slice)
1956 (doc-view-insert-image): Minor aesthetical docstring changes.
1957
1958 2007-10-03 Tassilo Horn <tassilo@member.fsf.org>
1959
1960 * doc-view.el (doc-view): Don't ignore pdf and dvi files when
1961 completing filename.
1962 (doc-view-search-internal): Docstring change.
1963
1964 2007-10-03 Michael Albinus <michael.albinus@gmx.de>
1965
1966 * net/tramp.el (top): Add tramp-compat to `tramp-unload-hook'.
1967 (tramp-file-name-handler-alist):
1968 Add `tramp-handle-insert-file-contents-literally'. Needed for XEmacs.
1969 (tramp-make-temp-file): Use `make-temp-name'. `make-temp-file',
1970 used before, creates the file already, which is not desired.
1971 (tramp-do-copy-or-rename-file-directly): Simplify handling of
1972 temporary file.
1973 (tramp-handle-insert-file-contents): Assign the result in the
1974 short track case.
1975 (tramp-handle-insert-file-contents-literally): New defun.
1976 (tramp-completion-mode-p): Revert change from 2007-09-24.
1977 Checking for `return' etc as last character is not sufficient, for
1978 example in dired-mode when entering <g> (revert-buffer) or
1979 <s> (dired-sort).
1980
1981 * net/tramp-compat.el (top): Add also compatibility code for loading
1982 appropriate timer package.
1983 (tramp-compat-copy-tree): Check for `subrp' and `symbol-file' in
1984 order to avoid autoloading problems.
1985
1986 * net/tramp-fish.el:
1987 * net/tramp-smb.el: Move further compatibility code to tramp-compat.el.
1988
1989 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Handle the case
1990 where the second parameter of `copy-file' or `rename-file' is a
1991 remote file but not via ftp.
1992
1993 2007-10-02 Richard Stallman <rms@gnu.org>
1994
1995 * frame.el (cursor-in-non-selected-windows): Doc fix.
1996
1997 2007-10-01 Thien-Thi Nguyen <ttn@gnuvola.org>
1998
1999 * play/zone.el (zone): Let-bind show-trailing-whitespace to nil.
2000 Suggested by Chris Moore <christopher.ian.moore@gmail.com>.
2001
2002 2007-10-01 Jay Belanger <jay.p.belanger@gmail.com>
2003
2004 * calc/calc-math.el (math-largest-emacs-expt): Handle the cases
2005 when `expt' doesn't give range errors.
2006
2007 2007-10-01 Markus Triska <markus.triska@gmx.at>
2008
2009 * calc/calc-math.el (math-smallest-emacs-expt):
2010 Make the computation more robust.
2011
2012 2007-09-30 David Kastrup <dak@gnu.org>
2013
2014 * startup.el (argv): Alias for `command-line-args-left' to use as
2015 `(pop argv)' inside of --eval command sequences. Allows for
2016 passing shell commands into Emacs verbatim without need for Lisp
2017 quoting.
2018
2019 * autorevert.el (auto-revert-handler): In `auto-revert-tail-mode',
2020 check only for changed size.
2021 (auto-revert-tail-handler): Get size from caller. If the file has
2022 shrunk, tail the whole file again (the file presumably has been
2023 rewritten).
2024
2025 * woman.el (woman-topic-all-completions, woman-mini-help):
2026 Fix fallout from 2007-09-07 introduction of `dolist' when the list
2027 actually was being manipulated in the loop.
2028 (woman-Cyg-to-Win, woman-pre-process-region)
2029 (woman-horizontal-escapes, woman-if-body, woman-unescape)
2030 (woman-strings, woman-special-characters, woman1-hc)
2031 (woman-change-fonts, woman-find-next-control-line):
2032 Use `match-beginning' rather than `match-string' when the result is
2033 just used as a flag.
2034
2035 2007-09-30 Michael Albinus <michael.albinus@gmx.de>
2036
2037 * net/tramp-compat.el: New file.
2038
2039 * net/tramp.el:
2040 * net/tramp-fish.el:
2041 * net/tramp-smb.el:
2042 * net/tramp-uu.el:
2043 * net/trampver.el: Move compatibility code to tramp-compat.el.
2044 Apply `mapc' instead of `mapcar' when the code needs side effects
2045 only. Move utf-8 coding cookie to the second line.
2046
2047 2007-09-30 Reiner Steib <Reiner.Steib@gmx.de>
2048
2049 * term/x-win.el (x-gtk-stock-map): Add Gnus and MH-E icons.
2050 Improve custom type.
2051 (icon-map-list): Make it customizable. Document how to disable
2052 stock icons.
2053
2054 2007-09-30 Richard Stallman <rms@gnu.org>
2055
2056 * play/zone.el (zone-hiding-modeline): Use mode-line-format.
2057
2058 2007-09-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2059
2060 * term/x-win.el (x-gtk-stock-map): Version is 22.2.
2061
2062 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2063
2064 * t-mouse.el (gpm-mouse-mode): Rename from t-mouse-mode. Rewrite.
2065 (t-mouse-mode): New compatibility alias.
2066
2067 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
2068
2069 * server.el (server-delete-client): Only delete the terminal if it
2070 is non-nil.
2071
2072 2007-09-28 Michael Albinus <michael.albinus@gmx.de>
2073
2074 * net/tramp.el (with-file-property, with-connection-property):
2075 Highlight as keyword.
2076 (tramp-rfn-eshadow-setup-minibuffer)
2077 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
2078 (tramp-set-file-uid-gid, tramp-do-copy-or-rename-file-via-buffer)
2079 (tramp-do-copy-or-rename-file-directly)
2080 (tramp-do-copy-or-rename-file-out-of-band)
2081 (tramp-handle-shell-command, tramp-get-debug-buffer)
2082 (tramp-send-command-and-read, tramp-equal-remote)
2083 (tramp-get-local-gid): Pacify byte-compiler.
2084 (tramp-handle-file-name-directory): Result shall not be expanded.
2085 (tramp-find-foreign-file-name-handler): Rewrite.
2086 (tramp-dissect-file-name): Add optional parameter NODEFAULT.
2087
2088 * net/tramp-cache.el (tramp-cache-print): Pacify byte-compiler.
2089
2090 * net/tramp-fish.el (tramp-fish-handle-expand-file-name):
2091 Apply `tramp-completion-mode-p'.
2092 (tramp-fish-handle-set-file-times)
2093 (tramp-fish-handle-executable-find)
2094 (tramp-fish-handle-process-file, tramp-fish-get-file-entries)
2095 (tramp-fish-retrieve-data): Pacify byte-compiler.
2096
2097 * net/tramp-gw.el (tramp-gw-basic-authentication):
2098 Call `tramp-read-passwd' with first parameter `nil'.
2099
2100 2007-09-28 Glenn Morris <rgm@gnu.org>
2101
2102 * mail/supercite.el (sc-attribs-filter-namelist): Use mapc rather
2103 than mapcar.
2104
2105 * textmodes/tex-mode.el (tex-suscript-height-ratio)
2106 (tex-suscript-height-minimum): New customizable variables.
2107 (tex-suscript-height): New function.
2108 (superscript, subscript): Set height using tex-suscript-height
2109 rather than fixing at 0.8.
2110 (tex-fontify-script, tex-font-script-display): Add :version tag.
2111
2112 2007-09-27 Juanma Barranquero <lekktu@gmail.com>
2113
2114 * progmodes/python.el (python-eldoc-function): Doc fix.
2115
2116 2007-09-27 Glenn Morris <rgm@gnu.org>
2117
2118 * image.el (image-type-auto-detected-p): Doc fix. Don't detect an
2119 image if it is not in image-type-auto-detectable, or is there with
2120 a nil value.
2121
2122 2007-09-27 Michael Albinus <michael.albinus@gmx.de>
2123
2124 * net/tramp.el (tramp-maybe-open-connection): Make test for alive
2125 connection more robust.
2126
2127 2007-09-26 Juanma Barranquero <lekktu@gmail.com>
2128
2129 * emacs-lisp/eldoc.el (eldoc-function-argstring-format):
2130 Deal with the case that special &keywords are at the beginning or
2131 end of the argument list. Also add some (incomplete) support for
2132 non-standard arglists.
2133
2134 2007-09-26 Juanma Barranquero <lekktu@gmail.com>
2135
2136 * emacs-lisp/eldoc.el (eldoc-message-commands-table-size)
2137 (eldoc-message-commands, eldoc-current-idle-delay)
2138 (eldoc-function-argstring-format): Fix typos in docstrings.
2139
2140 2007-09-26 Jay Belanger <jay.p.belanger@gmail.com>
2141
2142 * calc/calc-units.el (calc-convert-units)
2143 (calc-convert-temperature): Remove unnecessary colons.
2144
2145 2007-09-26 Bastien Guerry <bzg@altern.org>
2146
2147 * textmodes/org-export-latex.el (org-export-latex-tables-verbatim):
2148 New function.
2149 (org-export-latex-remove-from-headlines): Name changed because of typo.
2150 (org-export-latex-quotation-marks-convention): Option removed.
2151 (org-export-latex-make-preamble): Handle the DATE option.
2152 (org-export-latex-cleaned-string): Now the only cleaning function,
2153 synched up with org.el.
2154 (org-export-latex-lists, org-export-latex-parse-list)
2155 (org-export-list-to-latex): New functions.
2156
2157 2007-09-26 Carsten Dominik <dominik@science.uva.nl>
2158
2159 * textmodes/org.el (org-kill-is-subtree-p): Use `org-outline-regexp'.
2160 (org-outline-regexp): New constant.
2161 (org-remember-handler): Throw error when the target file is not in
2162 org-mode.
2163 (org-cleaned-string-for-export): No longer call
2164 `org-export-latex-cleaned-string' with an argument.
2165 (org-get-tags): Returns now a list, not a string.
2166 (org-get-tags-string): New function.
2167 (org-archive-subtree): No need to split return of `org-get-tags'.
2168 (org-set-tags, org-entry-properties): Call `org-get-tags-string'
2169 instead of `org-get-tags'.
2170 (org-agenda-format-date): Rename from `org-agenda-date-format'.
2171 (org-time-from-absolute, org-agenda-format-date-aligned): New funs.
2172 (org-compatible-face): New argument INHERITS. Inherit from this
2173 face if possible.
2174 (org-level-1, org-level-2, org-level-3, org-level-4)
2175 (org-level-5, org-level-6, org-level-7, org-level-8)
2176 (org-special-keyword, org-drawer, org-column, org-warning)
2177 (org-archived, org-todo, org-done, org-headline-done, org-table)
2178 (org-formula, org-code, org-agenda-structure)
2179 (org-scheduled-today, org-scheduled-previously)
2180 (org-upcoming-deadline, org-time-grid): Call `org-compatible-face'
2181 in the new way.
2182 (org-get-heading): New argument NO-TAGS.
2183 (org-fast-tag-selection-include-todo): Made defvar instead of
2184 defcustom, feature is not deprecated.
2185 (org-remember-store-without-prompt): New default value t.
2186 (org-todo-log-states): New variable.
2187 (org-set-regexps-and-options): #+TODO is an alias for SEQ_TODO.
2188 Compute the log states.
2189 (org-goto-map): More commands copied from global map. Also bind
2190 `org-occur'.
2191 (org-goto): Made into a general lookup command.
2192 (org-get-location): Complete rewrite.
2193 (org-goto-exit-command): New variable.
2194 (org-goto-selected-point): New variable.
2195 (org-goto-ret, org-goto-left, org-goto-right, org-goto-quit):
2196 Set the new variables.
2197 (org-paste-subtree): Whitespace insertion strategy revised.
2198 (org-remember-apply-template): Protect v-A from the possibility
2199 that v-a might be nil.
2200 (org-remember-handler): Insertion rules revised.
2201 (org-todo): Respect org-todo-log-states.
2202 (org-up-heading-safe): New function.
2203 (org-entry-get-with-inheritance): Use `org-up-heading-safe'.
2204
2205 2007-09-26 Dan Nicolaescu <dann@ics.uci.edu>
2206
2207 * progmodes/cc-cmds.el (c-indent-line-or-region): Only indent the
2208 region if in transient-mark-mode.
2209
2210 2007-09-26 Juanma Barranquero <lekktu@gmail.com>
2211
2212 * calc/calc-ext.el (calc-init-extensions, calc-reset):
2213 * calc/calc-help.el (calc-full-help):
2214 * calc/calc-misc.el (another-calc):
2215 * calc/calc-store.el (calc-var-name-map):
2216 * calc/calc-stuff.el (calc-flush-caches):
2217 * calc/calc-units.el (math-build-units-table):
2218 * calc/calc.el (calc-digit-map, calc-dispatch-map, calc-mode)
2219 (calc-quit):
2220 * calendar/icalendar.el (icalendar--format-ical-event)
2221 (icalendar--convert-ical-to-diary):
2222 * emacs-lisp/authors.el (authors):
2223 * emacs-lisp/cust-print.el (custom-print-install)
2224 (custom-print-uninstall):
2225 * emacs-lisp/disass.el (disassemble-1):
2226 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
2227 * emacs-lisp/edebug.el (byte-compile-resolve-functions):
2228 * emacs-lisp/elint.el (elint-current-buffer, elint-check-defun-form)
2229 (elint-check-let-form, elint-check-condition-case-form)
2230 (elint-initialize):
2231 * emacs-lisp/elp.el (elp-results):
2232 * emacs-lisp/generic.el (generic-mode-internal):
2233 * emacs-lisp/re-builder.el (reb-delete-overlays):
2234 * emacs-lisp/regi.el (regi-interpret):
2235 * emacs-lisp/sregex.el (sregex--char-aux):
2236 * emulation/cua-rect.el (cua--deactivate-rectangle)
2237 (cua--highlight-rectangle, cua--rectangle-post-command):
2238 * emulation/viper-keym.el (viper-toggle-key, viper-ESC-key):
2239 * emulation/viper-macs.el (viper-describe-kbd-macros)
2240 (viper-describe-one-macro):
2241 * emulation/viper-util.el (viper-setup-master-buffer):
2242 * emulation/viper.el (set-viper-state-in-major-mode):
2243 * international/mule-diag.el (describe-current-coding-system):
2244 * language/ethio-util.el (ethio-fidel-to-sera-buffer):
2245 * mail/emacsbug.el (report-emacs-bug):
2246 * net/ange-ftp.el (ange-ftp-call-chmod, ange-ftp-parse-bs2000-listing):
2247 * obsolete/hilit19.el (hilit-unhighlight-region)
2248 (hilit-set-mode-patterns):
2249 * play/solitaire.el (solitaire-check, solitaire-solve):
2250 * play/zone.el (zone-pgm-rotate):
2251 * progmodes/ada-mode.el (ada-save-exceptions-to-file):
2252 * progmodes/ada-prj.el (ada-prj-display-page):
2253 * progmodes/delphi.el (delphi-search-directory, delphi-find-unit-file)
2254 (delphi-debug-mode-map, delphi-mode-map, delphi-mode):
2255 * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-view-exit-fn)
2256 (ebrowse-member-mode, ebrowse-save-tree-as, ebrowse-save-class):
2257 * progmodes/sh-script.el (sh-make-vars-local)
2258 (sh-reset-indent-vars-to-global-values):
2259 * progmodes/sql.el (top):
2260 * progmodes/vhdl-mode.el (vhdl-set-style, vhdl-regress-line):
2261 * progmodes/xscheme.el (top):
2262 * textmodes/artist.el (artist-mt-get-symbol-from-keyword-sub)
2263 (artist-go-retrieve-from-symbol-sub, artist-go-get-symbol-shift-sub)
2264 (artist-fc-retrieve-from-symbol-sub, artist-vaporize-line)
2265 (artist-vaporize-lines, artist-ellipse-compute-fill-info)
2266 (artist-submit-bug-report):
2267 * textmodes/flyspell.el (flyspell-delay-commands)
2268 (flyspell-deplacement-commands):
2269 * textmodes/table.el (table--generate-source-epilogue, table-insert)
2270 (table--generate-source-cells-in-a-row, table--make-cell-map)
2271 (*table--cell-describe-bindings): Use `mapc' rather than `mapcar'.
2272
2273 2007-09-25 Juanma Barranquero <lekktu@gmail.com>
2274
2275 * allout.el (produce-allout-mode-map, allout-process-exposed):
2276 * ansi-color.el (ansi-color-make-color-map):
2277 * autoinsert.el (auto-insert):
2278 * bookmark.el (bookmark-bmenu-list, bookmark-show-all-annotations):
2279 * dired-aux.el (dired-create-files):
2280 * dired.el (dired-restore-desktop-buffer):
2281 * ediff-diff.el (ediff-setup-fine-diff-regions):
2282 * ediff-mult.el (ediff-intersect-directories)
2283 (ediff-redraw-directory-group-buffer, ediff-dir-diff-copy-file)
2284 (ediff-redraw-registry-buffer):
2285 * ediff-ptch.el (ediff-fixup-patch-map):
2286 * ediff-util.el (ediff-toggle-multiframe, ediff-toggle-use-toolbar)
2287 (ediff-really-quit, ediff-clear-diff-vector):
2288 * emerge.el (emerge-really-quit):
2289 * ffap.el (ffap-replace-file-component):
2290 * filecache.el (file-cache-add-directory)
2291 (file-cache-add-directory-recursively)
2292 (file-cache-add-from-file-cache-buffer, file-cache-delete-file-regexp)
2293 (file-cache-delete-directory, file-cache-files-matching-internal)
2294 (file-cache-display):
2295 * files.el (cd):
2296 * find-lisp.el (find-lisp-insert-directory):
2297 * finder.el (finder-compile-keywords):
2298 * help.el (view-emacs-news):
2299 * hi-lock.el (hi-lock-write-interactive-patterns):
2300 * ido.el (ido-to-end, ido-set-matches-1):
2301 * image-dired.el (image-dired-display-thumbs, image-dired-remove-tag)
2302 (image-dired-mark-tagged-files):
2303 * jka-cmpr-hook.el (jka-compr-get-compression-info):
2304 * printing.el (pr-eval-local-alist, pr-eval-setting-alist):
2305 * ps-print.el (ps-background, ps-begin-file)
2306 (ps-build-reference-face-lists):
2307 * simple.el (clone-buffer):
2308 * startup.el (command-line):
2309 * tempo.el (tempo-insert-template, tempo-is-user-element)
2310 (tempo-forward-mark, tempo-backward-mark):
2311 * woman.el (woman-dired-define-keys): Use `mapc' rather than `mapcar'.
2312
2313 2007-09-25 Glenn Morris <rgm@gnu.org>
2314
2315 * textmodes/tex-mode.el (tex-font-script-display): Doc fix.
2316
2317 * view.el (view-search-no-match-lines): Add a doc string.
2318 Rewrite to simplify and work better.
2319
2320 2007-09-24 Dan Nicolaescu <dann@ics.uci.edu>
2321
2322 * progmodes/cc-mode.el (c-mode-base-map):
2323 Use c-indent-line-or-region instead of c-indent-line.
2324
2325 * indent.el (indent-for-tab-command): First check if the region is
2326 active.
2327
2328 2007-09-24 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
2329
2330 * whitespace.el (whitespace-tickle-timer): Don't install the timer if
2331 whitespace-rescan-timer-time is 0.
2332
2333 2007-09-24 Karl Berry <karl@gnu.org>
2334
2335 * international/mule.el (coding-system-base): Fix doc string grammar.
2336
2337 2007-09-24 Michael Albinus <michael.albinus@gmx.de>
2338
2339 * net/tramp.el (tramp-completion-mode-p): Rename from
2340 `tramp-completion-mode'. Revert logic, check `return', `newline'
2341 and such alike. Packages like Icicles tend to use other completion
2342 characters but `tab' and `space' only.
2343
2344 2007-09-24 Adam Hupp <adam@hupp.org>
2345
2346 * progmodes/python.el (run-python): Import emacs module without
2347 waiting; prevents lockup on error.
2348
2349 2007-09-23 Richard Stallman <rms@gnu.org>
2350
2351 * mail/sendmail.el (mail-bury): Delete the frame
2352 if this frame looks like it was made for this message.
2353
2354 * completion.el (completion-separator-self-insert-command)
2355 (completion-separator-self-insert-autofilling):
2356 If `self-insert-command' has been remapped, use the substitute.
2357
2358 * simple.el (copy-region-as-kill): Doc fix.
2359
2360 * textmodes/org.el (org-confirm-shell-link-function)
2361 (org-confirm-elisp-link-function): Doc fixes.
2362
2363 2007-09-23 Glenn Morris <rgm@gnu.org>
2364
2365 * ses.el (ses-calculate-cell): Don't evaluate unsafe formulae.
2366
2367 2007-09-23 Dan Nicolaescu <dann@ics.uci.edu>
2368
2369 * term/w32-win.el (w32-drag-n-drop): Use mapc instead of mapcar.
2370
2371 * term/tvi970.el (terminal-init-tvi970): Likewise.
2372
2373 * term/sun-mouse.el (print-mouse-format): Likewise.
2374
2375 * term/sun.el (scroll-down-in-place, scroll-up-in-place):
2376 Use forward-line instead of previous-line and next-line.
2377
2378 2007-09-22 Juri Linkov <juri@jurta.org>
2379
2380 * textmodes/org.el (org-confirm-shell-link-function): Doc fix.
2381
2382 * tutorial.el (tutorial--default-keys): Update standard bindings:
2383 rename `iconify-or-deiconify-frame' to `suspend-frame',
2384 and `save-buffers-kill-emacs' to `save-buffers-kill-terminal'.
2385
2386 2007-09-22 Juri Linkov <juri@jurta.org>
2387
2388 * startup.el (fancy-startup-text, fancy-about-text, fancy-startup-tail):
2389 Add help-echo to external links and to links without description.
2390 (fancy-splash-insert): Use help-echo from the 3rd element of the
2391 link specification list, or "Follow this link" if it's nil. Doc fix.
2392
2393 2007-09-22 Juri Linkov <juri@jurta.org>
2394
2395 * startup.el (command-line): Rename `inhibit-startup-message' to
2396 `inhibit-startup-screen'.
2397 (fancy-about-text): Use shorter label for "Ordering Manuals".
2398 (fancy-startup-tail): Add optional arg `concise'. When `concise'
2399 is nil, display a line with "To start..." and 3 links to useful
2400 tasks. Display the "Dismiss" button and "Don't show this message
2401 again" only when concise is non-nil.
2402 (fancy-startup-screen): Call `fancy-startup-tail' with optional
2403 arg `concise'. If CONCISE is non-nil, display a concise version
2404 of the splash screen in another window. Otherwise, switch to the
2405 startup buffer in the same window.
2406 (startup-echo-area-message): Change displayed binding from
2407 C-h C-p (describe-project) to C-h C-a (about-emacs), and change
2408 text "about the GNU system and GNU/Linux" to "about GNU Emacs and
2409 the GNU system".
2410 (display-startup-screen): Fix buffer name from "*About GNU Emacs*"
2411 to "*GNU Emacs*".
2412 (display-about-screen): Don't check the existence of the buffer
2413 "*About GNU Emacs*".
2414 (display-splash-screen): Make alias to `display-startup-screen'.
2415 (command-line-1): Rename `inhibit-startup-message' to
2416 `inhibit-startup-screen'. Inhibit startup screen when Emacs is
2417 started with command line options "-f", "-funcall", "-e", "-eval",
2418 "-execute", "-insert", "-find-file", "-file", "-visit".
2419 Inhibit startup screen when Emacs is started with a file name only
2420 on tty (i.e. don't inhibit it when started with a file name like
2421 "emacs FILE..." on a window system).
2422 (command-line-1): Simplify logic of displaying the startup screen:
2423 if file-count > 0, then display the concise version in another
2424 window, otherwise display full version in the same window.
2425
2426 * help.el (help-map): Bind C-h C-a to about-emacs.
2427 (help-for-help-internal): Add C-a description to C-h help text.
2428
2429 2007-09-22 Dan Nicolaescu <dann@ics.uci.edu>
2430
2431 * emacs-lisp/checkdoc.el (checkdoc-force-docstrings-flag)
2432 (checkdoc-permit-comma-termination-flag): Autoload the
2433 safe-local-variable setting.
2434
2435 * bookmark.el (bookmark-xemacsp): Remove.
2436 (bookmark-make): Don't use bookmark-xemacsp,
2437 use (featurep 'xemacs) instead.
2438
2439 * speedbar.el (speedbar-frame-mode)
2440 (speedbar-frame-reposition-smartly)
2441 (speedbar-set-mode-line-format, speedbar-reconfigure-keymaps)
2442 (speedbar-check-vc): Remove use of non-existent variable
2443 dframe-xemacsp, use (featurep 'xemacs) instead.
2444
2445 * indent.el (indent-for-tab-command): Indent the region if
2446 transient-mark-mode and the region is active.
2447
2448 2007-09-21 Francesco Potort\e,Al\e(B <pot@gnu.org>
2449
2450 * progmodes/octave-inf.el (inferior-octave-mode): Use add-hook to
2451 add inferior-octave-directory-tracker to the buffer-local value
2452 of comint-input-filter-functions.
2453
2454 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
2455
2456 * xt-mouse.el (xterm-mouse-mode): Re-enable suspend-tty-functions.
2457
2458 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
2459
2460 * frame.el (suspend-frame): Call `iconify-or-deiconify-frame' also
2461 on w32 frames.
2462
2463 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
2464
2465 * startup.el (normal-top-level): Remove DISPLAY from
2466 process-environment to let it be computed dynamically in callproc.c.
2467
2468 * frame.el (frame-initialize, make-frame):
2469 * faces.el (tty-set-up-initial-frame-faces):
2470 * env.el (setenv): Don't set display-environment-variable.
2471
2472 * server.el (server-getenv-from): Remove. Use getenv-internal instead.
2473 (server-create-tty-frame): Don't set unused `tty' property.
2474 Set `display' instead of display-environment-variable.
2475 (server-create-window-system-frame): No display-environment-variable.
2476
2477 2007-09-21 Michael Albinus <michael.albinus@gmx.de>
2478
2479 * rfn-eshadow.el (rfn-eshadow-setup-minibuffer-hook)
2480 (rfn-eshadow-update-overlay-hook): New defvars.
2481 (rfn-eshadow-setup-minibuffer, rfn-eshadow-update-overlay):
2482 Run the hooks.
2483
2484 * net/tramp.el (tramp-rfn-eshadow-overlay): New defvar.
2485 (tramp-rfn-eshadow-setup-minibuffer)
2486 (tramp-rfn-eshadow-update-overlay): New defuns. Hook into
2487 rfn-eshadow.el.
2488
2489 * net/tramp-smb.el (tramp-smb-errors): Add error message for call
2490 timeout.
2491
2492 2007-09-21 Glenn Morris <rgm@gnu.org>
2493
2494 * obsolete/sun-fns.el (emacs-quit-menu): Remove emacstool-related code.
2495 * term/sun-mouse.el (suspend-emacstool): Remove.
2496 * term/sun.el: Remove emacstool-related code.
2497
2498 * emacs-lisp/bytecomp.el (byte-compile-warnings)
2499 (byte-compile-warnings-safe-p): Add `mapcar'.
2500 (byte-compile-warning-types): Add mapcar and make-local.
2501 (byte-compile-normal-call): Add option to suppress mapcar warning.
2502 (top-level): Use mapc rather than mapcar in eval-when-compile.
2503
2504 * textmodes/tex-mode.el (tex-validate-region): Handle escaped parens.
2505 (tex-next-unmatched-eparen, tex-last-unended-eparen): New functions.
2506 (latex-forward-sexp-1, latex-backward-sexp-1): Doc fix.
2507 Handle escaped parens.
2508 (latex-forward-sexp): Doc fix.
2509
2510 * eshell/esh-mode.el (eshell-output-filter-functions):
2511 Add eshell-postoutput-scroll-to-bottom.
2512
2513 * loadup.el: Remove termdev.
2514
2515 * progmodes/fortran.el (fortran-mode-abbrev-table, fortran-line-length):
2516 * progmodes/f90.el (f90-mode-abbrev-table): Use mapc rather than mapcar.
2517
2518 2007-09-21 Markus Triska <markus.triska@gmx.at>
2519
2520 * emacs-lisp/bytecomp.el (byte-compile-normal-call): Warn when
2521 `mapcar' is called for effect.
2522
2523 2007-09-21 Kevin Ryde <user42@zip.com.au>
2524
2525 * international/mule.el (sgml-html-meta-auto-coding-function):
2526 Bind `case-fold-search' to t.
2527
2528 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2529
2530 * termdev.el: Remove.
2531
2532 * frame.el (get-device-terminal): New function. Moved from termdev.el.
2533 (frames-on-display-list): Use it.
2534
2535 * bindings.el: Bind C-z to suspend-frame instead of suspend-emacs.
2536
2537 * termdev.el (terminal-id): Ask terminal-live-p before giving up.
2538
2539 2007-09-20 Richard Stallman <rms@gnu.org>
2540
2541 * newcomment.el (comment-add): If EXTRA, double `comment-add' value.
2542
2543 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2544
2545 * add-log.el (add-log-current-defun): Fix thinko w.r.t derived-mode-p.
2546
2547 2007-09-20 Glenn Morris <rgm@gnu.org>
2548
2549 * textmodes/tex-mode.el (tex-validate-buffer): Use paragraph
2550 motion functions, rather than hard-coding "\n\n".
2551 (tex-validate-region): Check for eobp, to speed up.
2552 (tex-next-unmatched-end): Doc fix.
2553
2554 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2555
2556 * files.el (auto-mode-alist): Use archive-mode for .rar files.
2557
2558 * international/mule.el (auto-coding-alist): Rar archives are binary.
2559
2560 * arc-mode.el: Add basic support for Rar.
2561 (archive-find-type): Recognize Rar's signature.
2562 (archive-desummarize): New fun.
2563 (archive-summarize): Use it to restore the buffer's data in case
2564 someone wants to switch to some other major mode.
2565 (archive-resummarize): Use it as well.
2566 (archive-rar-summarize, archive-rar-extract): New functions.
2567
2568 * filesets.el: Remove spurious * in docstrings.
2569 (filesets-running-xemacs): Remove. Use (featurep 'xemacs) instead.
2570 (filesets-conditional-sort): Remove unused arg `simply-do-it'.
2571 (filesets-ingroup-collect): Remove unused arg `depth'.
2572 (filesets-update): Remove unused arg `version'.
2573
2574 * finder.el (finder-compile-keywords): Fix up comment style.
2575 (finder-mouse-face-on-line): previous-line -> forward-line.
2576
2577 * recentf.el: Remove spurious * in docstrings.
2578 (recentf-save-list): Fix up comment style.
2579
2580 * progmodes/octave-mod.el: Remove spurious * in docstrings.
2581 (octave-mode-map): Move init into declaration and remove \t binding.
2582 (octave-mode-startup-message): Remove unused var.
2583 (octave-scan-blocks): Remove unused arg `from'.
2584 (octave-forward-block, octave-down-block, octave-up-block):
2585 Update callers.
2586
2587 * progmodes/meta-mode.el (meta-mode-syntax-table): Move init into decl.
2588 (meta-mode-map): Likewise and remove \t binding.
2589
2590 * net/snmp-mode.el: Remove spurious * in docstrings.
2591 (snmp-rfc1155-types, snmp-rfc1213-types, snmp-rfc1902-types)
2592 (snmp-rfc1903-types, snmp-rfc1155-access, snmp-rfc1902-access)
2593 (snmp-rfc1212-status, snmp-rfc1902-status): Remove list wrappers now
2594 that completion accepts lists of strings.
2595 (snmp-mode-syntax-table): Move initialization into declaration.
2596 (snmp-mode-map): Likewise and remove \t binding.
2597 (snmp-common-mode): Set tab-always-indent according to snmp-t-a-i.
2598 (snmp-indent-line, snmp-mode-imenu-create-index): Remove unused var.
2599 (snmp-indent-command): Remove.
2600
2601 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Use the default TAB
2602 binding, so tab-always-indent works right.
2603
2604 2007-09-19 Johannes Weiner <hannes@saeurebad.de>
2605
2606 * net/browse-url.el (browse-url-elinks-new-window): New function.
2607 (browse-url-elinks): Use browse-url-elinks-new-window.
2608 Accept optional second argument `new-window'. Fix typo in doc-string.
2609 (browse-url-elinks-sentinel): Use browse-url-elinks-new-window.
2610 Improve error message.
2611
2612 2007-09-19 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
2613
2614 * net/browse-url.el (browse-url-url-encode-chars): Use the right
2615 parameter name in the function body.
2616 Reported by Johannes Weiner.
2617
2618 2007-09-19 Glenn Morris <rgm@gnu.org>
2619
2620 * net/socks.el (socks-open-network-stream): Signal an explicit
2621 error if the port associated with a service string can't be found.
2622
2623 * textmodes/tex-mode.el (tex-terminate-paragraph):
2624 Use backward-paragraph.
2625
2626 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2627
2628 * server.el (server-running-p): New function.
2629
2630 2007-09-18 Jason Rumney <jasonr@gnu.org>
2631
2632 * term/w32-win.el (w32-focus-frame): Make obsolete alias for
2633 x-focus-frame.
2634
2635 * frame.el (select-frame-set-input-focus, select-frame-by-name):
2636 Use x-focus-frame for w32.
2637
2638 2007-09-17 David Kastrup <dak@gnu.org>
2639
2640 * textmodes/tex-mode.el (tex-verbatim-environments):
2641 Eliminate CL dependency.
2642
2643 2007-09-17 Richard Stallman <rms@gnu.org>
2644
2645 * newcomment.el (comment-add): New arg EXTRA.
2646 (comment-region-default): Pass EXTRA if not indenting lines.
2647
2648 2007-09-17 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
2649
2650 * net/browse-url.el (browse-url-url-encode-chars): New function.
2651 URL-encode some chars in a string.
2652 (browse-url-encode-url): Rewrite using the previous function.
2653 (browse-url-file-url): Use `browse-url-url-encode-chars'.
2654 (browse-url-elinks-sentinel): Fix typo.
2655 (browse-url-new-window-flag): Doc change.
2656
2657 2007-09-17 Glenn Morris <rgm@gnu.org>
2658
2659 * textmodes/tex-mode.el (tex-compilation-parse-errors): Prefer the
2660 filename from `--file-line-error', if it is available.
2661
2662 2007-09-17 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
2663
2664 * textmodes/tex-mode.el (tex-compilation-parse-errors): Also match
2665 TeX `--file-line-error' format.
2666
2667 2007-09-17 Dan Nicolaescu <dann@ics.uci.edu>
2668
2669 * xt-mouse.el: Delete add-hook calls that were moved to
2670 xterm-mouse-mode.
2671 (xterm-mouse-mode): Disable resume-tty-functions, explain why it
2672 does not work.
2673
2674 2007-09-17 Richard Stallman <rms@gnu.org>
2675
2676 * cus-face.el (custom-theme-set-faces): Undo previous change.
2677
2678 * faces.el (face-spec-set): When FRAME nil, look up each frame in SPEC.
2679
2680 2007-09-17 Glenn Morris <rgm@gnu.org>
2681
2682 * textmodes/tex-mode.el (tex-region): Simplify previous change,
2683 handling the case where the region is not in `tex-main-file'.
2684 (tex-region-1): Delete.
2685 (tex-region-header): New function, doing the header part of the
2686 old tex-region-1.
2687
2688 2007-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
2689
2690 * simple.el (newline): Simplify use of prefix-numeric-value.
2691 (line-move-partial): Remove unused var `ppos'.
2692 (line-move-1): Replace 9999 with most-positive-fixnum.
2693 (move-end-of-line): Use more efficient single-property search.
2694 (move-beginning-of-line): Remove unused var `start'.
2695 (blink-matching-open): Restructure in a more functional style.
2696
2697 2007-09-16 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
2698
2699 * calendar/holidays.el (list-holidays): Remove the cyclic alias.
2700
2701 2007-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
2702
2703 * server.el (server-clients): Only keep procs, no properties any more.
2704 (server-client): Remove.
2705 (server-client-get, server-client-set): Remove, replace all callers by
2706 process-get and process-put resp.
2707 (server-clients-with, server-add-client, server-delete-client)
2708 (server-create-tty-frame, server-create-window-system-frame)
2709 (server-process-filter, server-execute, server-visit-files)
2710 (server-buffer-done, server-kill-buffer-query-function)
2711 (server-kill-emacs-query-function, server-switch-buffer)
2712 (server-save-buffers-kill-terminal): Update accordingly.
2713
2714 * server.el (server-with-environment): Simplify.
2715 (server-select-display, server-unselect-display): Re-add functions that
2716 seem to have been lost in the multi-tty merge.
2717 (server-eval-and-print, server-create-tty-frame)
2718 (server-create-window-system-frame, server-goto-toplevel)
2719 (server-execute, server-return-error): New functions extracted from
2720 server-process-filter.
2721 (server-execute-continuation): New functions.
2722 (server-process-filter): Restructure so that all arguments are analysed
2723 first and then acted upon in a subsequent stage. This way
2724 server-goto-toplevel can be executed later, when we know if
2725 it's necessary.
2726 Remove the "-version" and "-version-good" support.
2727
2728 2007-09-16 Drew Adams <drew.adams@oracle.com>
2729
2730 * cus-edit (custom-face-edit-activate): Doc fix.
2731
2732 2007-09-16 Glenn Morris <rgm@gnu.org>
2733
2734 * calendar/cal-menu.el, calendar/calendar.el, calendar/diary-lib.el:
2735 Following cal-bahai renaming, update all instances of
2736 list-bahai-diary-entries to diary-bahai-list-entries,
2737 mark-bahai-diary-entries to diary-bahai-mark-entries,
2738 calendar-goto-bahai-date to calendar-bahai-goto-date,
2739 insert-bahai-diary-entry to diary-bahai-insert-entry,
2740 insert-monthly-bahai-diary-entry to diary-bahai-insert-monthly-entry,
2741 insert-yearly-bahai-diary-entry to diary-bahai-insert-yearly-entry, and
2742 calendar-print-bahai-date to calendar-bahai-print-date.
2743
2744 * textmodes/tex-mode.el (tex-region): Handle the case where the
2745 region is not in `tex-main-file'. Move the old code that applies
2746 to both cases...
2747 (tex-region-1): ...to this new function.
2748
2749 2007-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
2750
2751 * vc.el (vc-process-sentinel): New function.
2752 (vc-exec-after): Use it instead of using ugly hackish analysis and
2753 construction of Elisp code.
2754 (vc-sentinel-movepoint): New dynamically scoped var.
2755 (vc-print-log, vc-annotate): Set it to move the user's point.
2756
2757 * vc-cvs.el (vc-cvs-annotate-time): Use inhibit-read-only and
2758 inhibit-modification-hooks.
2759
2760 * calendar/cal-bahai.el (mark-bahai-diary-entries): Fix up typo.
2761 (calendar-bahai-print-date, calendar-bahai-goto-date)
2762 (diary-bahai-list-entries, diary-bahai-insert-entry):
2763 New names to clean up the namespace a bit more.
2764 (calendar-goto-bahai-date, calendar-print-bahai-date): Compat aliases.
2765
2766 2007-09-15 Glenn Morris <rgm@gnu.org>
2767
2768 * calendar/holidays.el (holiday-list): Rename it back to
2769 `list-holidays', but leave `holiday-list' as an alias.
2770
2771 * textmodes/bibtex-style.el (bibtex-style-indent-basic): Specify a
2772 custom group.
2773
2774 * textmodes/css-mode.el (css): New custom group.
2775 (css-electrick-keys, css-selector, css-property)
2776 (css-indent-offset): Specify custom group.
2777
2778 2007-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
2779
2780 * pcvs.el (cvs-tags-list, cvs-retrieve-revision, cvs-find-modif)
2781 (cvs-execute-single-file): Use process-file.
2782 (cvs-run-process): Use start-file-process.
2783
2784 2007-09-15 Dan Nicolaescu <dann@ics.uci.edu>
2785
2786 * xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
2787 level. Remove the hooks when turning off the mode.
2788
2789 * term/xterm.el: Require xt-mouse at compile time.
2790 (terminal-init-xterm): Turn on xterm mouse tracking for this
2791 terminal if xterm-mouse-mode is enabled.
2792
2793 2007-09-14 Dan Nicolaescu <dann@ics.uci.edu>
2794
2795 * term/xterm.el (xterm-function-map): Replace bindings that were
2796 deleted by the merge.
2797
2798 2007-09-14 Ulf Jasper <ulf.jasper@web.de>
2799
2800 * play/bubbles.el (bubbles-version): Bump value to "0.5".
2801 (bubbles-mode-map): Move define-key statements here.
2802 (bubbles-game-theme-menu): Ditto.
2803 (bubbles-graphics-theme-menu): Ditto.
2804 (bubbles-menu): Ditto.
2805 (bubbles-mode): Initialize buffer-undo-list, redisplay.
2806 (bubbles--initialize): Reset buffer-undo-list, redisplay.
2807 (bubbles-plop): Set buffer-undo-list, redisplay.
2808 (bubbles-undo): Reset buffer-undo-list, redisplay.
2809 (bubbles--show-images): Take care of missing text properties.
2810
2811 2007-09-14 Glenn Morris <rgm@gnu.org>
2812
2813 * startup.el (fancy-startup-text, fancy-about-text): Fix face
2814 quoting.
2815
2816 * calendar/cal-hebrew.el, calendar/cal-menu.el
2817 * calendar/calendar.el, calendar/diary-lib.el
2818 * calendar/holidays.el: Rename all instances of
2819 list-calendar-holidays callers to calendar-list-holidays,
2820 list-holidays to holiday-list, check-calendar-holidays to
2821 calendar-check-holidays, mark-calendar-holidays to
2822 calendar-mark-holidays, and filter-visible-calendar-holidays to
2823 holiday-filter-visible-calendar.
2824
2825 2007-09-14 Dan Nicolaescu <dann@ics.uci.edu>
2826
2827 * term/xterm.el (xterm-function-map): Add C-M- bindings.
2828
2829 2007-09-13 Sascha Wilde <wilde@sha-bang.de> (tiny change)
2830
2831 * play/bubbles.el (bubbles--initialize-images): Fix bug:
2832 Use transparent background for empty cells in graphics mode.
2833
2834 2007-09-13 Jari Aalto <jari.aalto@cante.net>
2835
2836 * man.el (Man-default-man-entry): At end of line, continue looking
2837 to the next line for possible end of hyphenated command.
2838
2839 2007-09-13 Chris Moore <dooglus@gmail.com>
2840
2841 * shell.el (shell-resync-dirs): Don't move the cursor relative to
2842 the command being edited.
2843
2844 2007-09-12 Jim Meyering <jim@meyering.net> (tiny change)
2845
2846 * emacs-lisp/copyright.el (copyright-names-regexp): Doc fix: typo.
2847
2848 2007-09-12 Dan Nicolaescu <dann@ics.uci.edu>
2849
2850 * term/xterm.el (xterm-function-map): Add bindings for M-S- and
2851 C-M-S- keys.
2852
2853 * term/rxvt.el (rxvt-function-map): Initialize in the declaration.
2854
2855 2007-09-12 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
2856
2857 * net/browse-url.el (browse-url-encode-url): Fix an infinite loop.
2858 New argument `filename-p' to use one set of confusing chars or another.
2859 (browse-url-file-url): Use the argument.
2860 Suggested by Johannes Weiner.
2861
2862 2007-09-12 Romain Francoise <romain@orebokech.com>
2863
2864 * cus-start.el (all): Revert 2007-09-08 change.
2865
2866 2007-09-12 Aaron Hawley <aaronh@garden.org>
2867
2868 * jka-cmpr-hook.el (jka-compr-compression-info-list): Use gzip to
2869 extract .Z files, since it is more common than uncompress.
2870
2871 2007-09-12 Glenn Morris <rgm@gnu.org>
2872
2873 * textmodes/org-publish.el (org-publish-org-to-html): Remove
2874 duplicate function definition.
2875
2876 2007-09-10 Chris Moore <dooglus@gmail.com>
2877
2878 * diff-mode.el (diff-sanity-check-hunk):
2879 Also accept single-line hunks.
2880
2881 2007-09-10 Chong Yidong <cyd@stupidchicken.com>
2882
2883 * startup.el (startup-screen-inhibit-startup-screen)
2884 (pure-space-overflow-message): New vars.
2885 (fancy-splash-insert): Allow functions for face and link specs.
2886 (fancy-splash-head): Remove unused arg. Move splash text...
2887 (fancy-startup-text, fancy-about-text): ...here.
2888 (fancy-startup-tail): Rename from fancy-splash-tail.
2889 (fancy-startup-screen, fancy-about-screen): Split off from
2890 fancy-splash-screens.
2891 (display-startup-screen): New function.
2892 (display-about-screen): Rename from display-splash-screen.
2893 (command-line-1): Use concise startup screen if necessary.
2894
2895 2007-09-10 Thien-Thi Nguyen <ttn@gnuvola.org>
2896
2897 * net/browse-url.el (browse-url-encode-url): Use copy-sequence.
2898 Reported by Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>.
2899
2900 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2901
2902 * progmodes/python.el: Merge changes from Dave Love's v2007-Sep-10.
2903 (python-font-lock-keywords): Update to the 2.5 version of the language.
2904 (python-quote-syntax): Let-bind font-lock-syntactic-keywords to nil.
2905 (python-backspace): Only behave funny in code.
2906 (python-compilation-regexp-alist): Add PDB stack trace regexp.
2907 (inferior-python-mode): Add PDB prompt regexp.
2908 (python-fill-paragraph): Refine the fenced-string regexp.
2909 (python-find-imports): Handle imports spanning several lines.
2910 (python-mode): Add `class' to hideshow support.
2911
2912 2007-09-10 Dave Love <fx@gnu.org>
2913
2914 * outline.el (outline-4, outline-5, outline-7):
2915 Move font-lock-builtin-face down from 4 to 7 to better keep the
2916 progression of color brightness, and to better match Org-mode's faces.
2917
2918 2007-09-10 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
2919
2920 * progmodes/meta-mode.el (meta-font-lock-keywords)
2921 (font-lock-match-meta-declaration-item-and-skip-to-next)
2922 (meta-comment-indent, meta-indent-previous-line)
2923 (meta-indent-unfinished-line, meta-beginning-of-defun)
2924 (meta-end-of-defun, meta-common-initialization): Handle \f.
2925 (meta-indent-unfinished-line): Do not handle a `%' in a string as
2926 a comment-start.
2927
2928 * files.el (file-modes-char-to-who, file-modes-char-to-right)
2929 (file-modes-rights-to-number): Auxiliary functions for symbolic to
2930 numeric notation of file modes.
2931 (file-modes-symbolic-to-number): New. Convert symbolic modes to its
2932 numeric value.
2933 (read-file-modes): New. Read either an octal value of a file mode or a
2934 symbolic value, and return its numeric value.
2935
2936 * dired-aux.el (dired-do-chmod): Change to use the built-in
2937 `set-file-modes' and the previous symbolic mode parsing functions.
2938
2939 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2940
2941 * textmodes/texinfo.el: Remove spurious * in docstrings.
2942 (texinfo-mode-syntax-table, texinfo-mode-map):
2943 Initialize in the declaration.
2944
2945 * tmm.el: Remove spurious * in docstrings.
2946 (tmm-prompt): Use with-current-buffer.
2947
2948 * vcursor.el: Remove spurious * in docstrings.
2949 (vcursor-map): Initialize in the declaration.
2950 (vcursor-use-vcursor-map): Use define-minor-mode.
2951 (vcursor-toggle-vcursor-map): Keep as an obsolete alias.
2952
2953 * wid-browse.el (widget-browse-mode-map, widget-minor-mode-map):
2954 Initialize in the declaration.
2955 (widget-minor-mode): Use define-minor-mode.
2956
2957 * woman.el (woman-mode-map, woman-syntax-table):
2958 Initialize in the declaration.
2959
2960 2007-09-09 Tassilo Horn <tassilo@member.fsf.org>
2961
2962 * doc-view.el: New file.
2963
2964 2007-09-09 Juri Linkov <juri@jurta.org>
2965
2966 * Makefile.in (update-authors): Add etc/ to AUTHORS.
2967
2968 * makefile.w32-in (update-authors): Add etc/ to AUTHORS.
2969
2970 * startup.el (initial-buffer-choice): Rename choice "Splash screen"
2971 to "Startup screen". Fix docstring.
2972 (inhibit-startup-screen): Rename from `inhibit-splash-screen'.
2973 (inhibit-splash-screen): Make alias to `inhibit-startup-screen'.
2974 (inhibit-startup-message): Change alias to `inhibit-startup-screen'.
2975 (initial-scratch-message): Fix docstring.
2976 (fancy-startup-text): Move link to Emacs Manual below Emacs Guided
2977 Tour (which is a kind of tutorial and will be next to Emacs Tutorial).
2978 Add link to "Customize Startup" and set interval between links to
2979 5 spaces.
2980 (fancy-about-text): Add links "Authors" and "Contributing".
2981 (fancy-splash-head): Add text "Welcome to " on the startup screen,
2982 and "This is " on the about screen. Add link to
2983 "http://www.gnu.org/software/emacs/" for "GNU Emacs".
2984 For the about screen move emacs version to the header from
2985 `fancy-splash-tail' (as it's done already for normal about screen).
2986 (fancy-splash-tail): Insert emacs version only for startup screen.
2987 (normal-splash-screen): Remove duplicate empty lines.
2988 (normal-about-screen): Add links "Authors" and "Contributing".
2989
2990 * menu-bar.el (menu-bar-help-menu):
2991 Move "About Emacs" and "About GNU" to the end of the Help menu.
2992 Move "Emacs Psychotherapist" after "Send Bug Report...".
2993 Move "External Packages" after "Find Emacs Packages".
2994
2995 2007-09-09 Michael Albinus <michael.albinus@gmx.de>
2996
2997 * net/tramp.el (top): Remove declarations of `tramp-gw-*' symbols,
2998 they are useless with the byte compiler.
2999 (tramp-make-temp-file, tramp-make-tramp-temp-file): Move up.
3000 (tramp-do-copy-or-rename-file-directly): Rearrange let-bindings.
3001 (tramp-compute-multi-hops): Mask `tramp-gw-*' symbols.
3002 (tramp-file-name-real-host, tramp-file-name-port)
3003 (tramp-find-method, tramp-find-user, tramp-find-host): Make them
3004 defuns.
3005
3006 * net/tramp-cache.el (top): Improve error message when
3007 `tramp-persistency-file-name' is corrupted.
3008
3009 2007-09-09 Carsten Dominik <dominik@science.uva.nl>
3010
3011 * textmodes/org.el (org-re): Also replace the :alpha: class.
3012 (org-todo-tag-alist): Variable removed.
3013 (org-todo-key-alist, org-todo-key-trigger) New variables.
3014 (org-use-fast-todo-selection): New option.
3015 (org-log-done): Docstring fixed.
3016 (org-deadline-warning-days): New default value 14.
3017 (org-edit-timestamp-down-means-later) New option.
3018 (org-tag-alist): Docstring fixed.
3019 (org-fast-tag-selection-include-todo): New option.
3020 (org-export-language-setup): New languages added.
3021 (org-set-regexps-and-options): Compute the new variables.
3022 (org-paste-subtree): Cleaning up.
3023 (org-remember-apply-template): New escape %A.
3024 (org-todo): Call fast TODO selection.
3025 (org-fast-todo-selection): New function.
3026 (org-add-log-note): Allow prefix for abort exit.
3027 (org-at-property-p, org-entry-properties)
3028 (org-columns-get-autowidth-alist): Use :alpha: class.
3029 (org-get-wdays): New function.
3030 (org-agenda-remove-date): New variable.
3031 (org-agenda-get-deadlines): Use `org-get-wdays'.
3032 (org-agenda-get-deadlines): Reverse ee before returning.
3033 (org-format-agenda-item): New argument REMOVE-RE.
3034 (org-agenda-convert-date): Baha'i calendar added.
3035 (org-infile-export-plist): Also find DATE line.
3036 (org-get-min-level): New function.
3037 (org-export-as-html, org-export-as-ascii): Use the date format.
3038 (org-shiftup, org-shiftdown): Use.
3039 `org-edit-timestamp-down-means-later'.
3040 (org-assign-fast-keys): New function.
3041
3042 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
3043
3044 * cus-start.el (all): Add prefer-window-split-horizontally from
3045 window.c.
3046
3047 2007-09-08 Eli Zaretskii <eliz@gnu.org>
3048
3049 * net/browse-url.el (browse-url-galeon): Fix last change.
3050 (top-level): Require cl when compiling.
3051
3052 2007-09-08 Carsten Dominik <dominik@science.uva.nl>
3053
3054 * textmodes/org-export-latex.el: arch-tag restored.
3055
3056 * textmodes/org-publish.el: arch-tag restored.
3057
3058 2007-09-08 Masatake YAMATO <jet@gyve.org>
3059
3060 * progmodes/which-func.el (which-func-modes): Add diff-mode.
3061
3062 * progmodes/cc-langs.el: Support new keywords added to
3063 objective-c frontend of gcc.
3064 (c-simple-stmt-kwds): Add @throw.
3065 (c-block-stmt-2-kwds): Add @synchronized.
3066 (c-block-stmt-1-kwds): Add @finally and @try.
3067
3068 2007-09-07 Carsten Dominik <dominik@science.uva.nl>
3069
3070 * textmodes/org.el (org-edit-timestamp-down-means-later): New option.
3071 (org-agenda-after-show-hook): New variable.
3072 (org-columns-compile-format)
3073 (org-columns-get-autowidth-alist, org-buffer-property-keys)
3074 (org-entry-properties, org-at-property-p): Allow [:alnum:] in
3075 property names.
3076 (org-get-wdays): New function.
3077
3078 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3079
3080 * simple.el (normal-erase-is-backspace-setup-frame): Massage.
3081
3082 * term/xterm.el (xterm-function-map): Initialize in the declaration.
3083
3084 * vc-arch.el (vc-arch-checkin): Fix typo.
3085
3086 2007-09-07 Johan Bockg\e,Ae\e(Brd <bojohan@gnu.org>
3087
3088 * cus-face.el (custom-theme-set-faces): Set face attributes
3089 locally for each frame.
3090
3091 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3092
3093 * progmodes/fortran.el (fortran-mode): Set font-lock-syntactic-keywords
3094 via font-lock-defaults.
3095
3096 * emacs-lisp/bytecomp.el (byte-compile-log-file): Check major-mode via
3097 derived-mode-p.
3098
3099 2007-09-07 Thien-Thi Nguyen <ttn@gnuvola.org>
3100
3101 * progmodes/autoconf.el (autoconf-definition-regexp):
3102 Handle optional square brackets around definition name.
3103
3104 2007-09-07 Johannes Weiner <hannes@saeurebad.de>
3105
3106 * net/browse-url.el (browse-url-browser-function): Add elinks.
3107 (browse-url-elinks-wrapper): New option.
3108 (browse-url-encode-url, browse-url-elinks)
3109 (browse-url-elinks-sentinel): New functions.
3110 (browse-url-file-url, browse-url-netscape, browse-url-mozilla)
3111 (browse-url-firefox, browse-url-galeon, browse-url-epiphany):
3112 Use new function browse-url-encode-url.
3113
3114 2007-09-07 Glenn Morris <rgm@gnu.org>
3115
3116 * version.el (emacs-version): Revert 2007-08-29 change: no need to
3117 say if multi-tty is present.
3118
3119 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3120
3121 * cus-start.el (split-window-preferred-function): Add custom info.
3122
3123 * calendar/holidays.el (holiday-list, calendar-check-holidays)
3124 (calendar-mark-holidays, calendar-list-holidays)
3125 (holiday-filter-visible-calendar): New names to clean up namespace.
3126 (filter-visible-calendar-holidays, list-calendar-holidays)
3127 (mark-calendar-holidays, check-calendar-holidays, list-holidays):
3128 Add compatibility aliases.
3129 (calendar-check-holidays, calendar-mark-holidays)
3130 (calendar-holiday-list, holiday-filter-visible-calendar): Use dolist.
3131 (holiday-sexp): Replace append with list.
3132 (holiday-filter-visible-calendar): Replace append with push.
3133
3134 * woman.el: Remove spurious * in docstrings.
3135 (woman-mini-help, woman-non-underline-faces, woman0-rename)
3136 (woman-topic-all-completions-merge, woman-file-name-all-completions)
3137 (woman-select-symbol-fonts, woman-expand-directory-path): Use dolist.
3138 (woman-write-directory-cache, woman-display-extended-fonts)
3139 (WoMan-log-begin, WoMan-log-1): Use with-current-buffer.
3140 (woman-really-find-file): Use pop-to-buffer if switch-to-buffer fails.
3141 (woman-mode): Use inhibit-read-only.
3142 (woman-negative-vertical-space): Use dotimes.
3143 (woman2-tagged-paragraph, woman-tab-to-tab-stop): Use insert-char.
3144
3145 2007-09-06 Romain Francoise <romain@orebokech.com>
3146
3147 * vc-bzr.el (vc-bzr-admin-lastrev): New defconst.
3148 (vc-bzr-workfile-version): Use it.
3149
3150 2007-09-06 Sean O'Rourke <sorourke@cs.ucsd.edu>
3151
3152 * complete.el (PC-do-completion): Don't try to treat
3153 empty string as an abbreviation.
3154
3155 2007-09-06 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
3156
3157 * help-fns.el (describe-variable): Keep doc's text properties.
3158
3159 2007-09-06 Dan Nicolaescu <dann@ics.uci.edu>
3160
3161 * vc.el (vc-default-diff-tree): Pass a list to the diff vc command
3162 instead of a file.
3163
3164 2007-09-06 Glenn Morris <rgm@gnu.org>
3165
3166 * emacs-lisp/checkdoc.el (checkdoc-minor-mode-string): New.
3167 (checkdoc-minor-mode): Allow user to specify lighter via
3168 checkdoc-minor-mode-string.
3169
3170 2007-09-05 Richard Stallman <rms@gnu.org>
3171
3172 * startup.el (fancy-startup-text): Rename from fancy-splash-text.
3173 Several items removed, simplified, or put on one line.
3174 (fancy-about-text): Add substantial contents, part of startup text.
3175 (fancy-splash-head): Make "GNU" or "GNU/Linux" a link.
3176 (normal-splash-screen): Call normal-mouse-startup-screen,
3177 normal-no-mouse-startup-screen, or normal-about-screen.
3178 (normal-mouse-startup-screen): New fn, broken out, shortened.
3179 (normal-no-mouse-startup-screen): New fn, broken out.
3180 (normal-about-screen): New function, contents all new.
3181
3182 2007-09-05 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
3183
3184 * emacs-lisp/rx.el (rx): Fix typo in docstring.
3185
3186 2007-09-05 Glenn Morris <rgm@gnu.org>
3187
3188 * cus-edit.el (custom-buffer-create-internal): Check tool-bar-mode
3189 is bound.
3190
3191 2007-09-05 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
3192
3193 * emacs-lisp/advice.el (ad-make-advised-docstring): Highlight note
3194 in doc string.
3195
3196 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
3197
3198 * server.el (server-start, server-unload-hook): Undo previous change.
3199
3200 * xt-mouse.el: Undo previous change.
3201
3202 2007-09-04 Juri Linkov <juri@jurta.org>
3203
3204 * startup.el (fancy-about-text): New variable.
3205 (fancy-splash-delay, fancy-splash-max-time): Remove user options.
3206 (fancy-current-text, fancy-splash-stop-time)
3207 (fancy-splash-outer-buffer): Remove variables.
3208 (fancy-splash-head, fancy-splash-tail): Add new optional argument
3209 `startup' and use it to conditionally display different texts for
3210 Startup and About screens. Don't display Help commands on the About
3211 screen.
3212 (fancy-splash-screens-1): Remove function and move its content to
3213 `fancy-splash-screens' to the part that dislpays the About screen.
3214 (exit-splash-screen): Don't treat specially exiting from
3215 alternating screens.
3216 (fancy-splash-screens): Rename argument `static' to `startup'.
3217 Fix docstring. Remove code for displaying alternating screens.
3218 Use arg `startup' in calls to `fancy-splash-head', `fancy-splash-tail'.
3219 Remove let-bind for `fancy-splash-outer-buffer' and add let-bind
3220 for `inhibit-read-only'.
3221 (normal-splash-screen): Rename argument `static' to `startup'.
3222 Fix docstring. Use argument `startup' to conditionally display
3223 different texts for Startup and About screens. Don't display Help
3224 commands on the About screen. Remove `unwind-protect' `sit-for'
3225 delay and `kill-buffer' after it.
3226 (display-startup-echo-area-message): Remove call to
3227 `use-fancy-splash-screens-p' because image.el is preloaded and
3228 doesn't display "Loading image... done".
3229 (display-splash-screen): Rename argument `static' to `startup'.
3230 Fix docstring.
3231
3232 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
3233
3234 * server.el (server-start, server-unload-hook):
3235 suspend-tty-functions has been renamed to suspend-tty-hook.
3236
3237 * xt-mouse.el: Likewise. resume-tty-functions has been renamed to
3238 resume-tty-hook.
3239
3240 2007-09-03 Emanuele Giaquinta <e.giaquinta@glauco.it> (tiny change)
3241
3242 * loadup.el: Fix merge problem, only load "button" once.
3243
3244 2007-09-03 Glenn Morris <rgm@gnu.org>
3245
3246 * vc-svn.el (vc-svn-print-log): If there is only one file, use
3247 "Working file:" as the prefix, for the sake of
3248 log-view-current-file.
3249
3250 2007-09-02 Dan Nicolaescu <dann@ics.uci.edu>
3251
3252 * term/xterm.el (xterm-modify-other-keys-terminal-list): New variable.
3253 (xterm-turn-on-modify-other-keys): Only turn on modify-other-keys
3254 if the selected frames is in
3255 xterm-modify-other-keys-terminal-list.
3256 (xterm-turn-off-modify-other-keys): Add an optional frame
3257 parameter. Only turn off modify-other-keys if FRAME is in
3258 xterm-modify-other-keys-terminal-list.
3259 (xterm-remove-modify-other-keys): New function.
3260 (terminal-init-xterm): Use it. Deal with delete-frame hook.
3261 Add the selected frame to xterm-modify-other-keys-terminal-list.
3262
3263 2007-09-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3264
3265 * term/x-win.el (x-gtk-stock-map): Map diropen to system-file-manager.
3266 (icon-map-list): New variable.
3267 (x-gtk-map-stock): Use icon-map-list.
3268
3269 2007-09-02 Romain Francoise <romain@orebokech.com>
3270
3271 * log-view.el (log-view-current-file): Balance parens.
3272
3273 2007-09-02 Glenn Morris <rgm@gnu.org>
3274
3275 * comint.el (comint-mode): Don't set scroll-conservatively.
3276
3277 * eshell/em-unix.el (eshell/time): Stringify and flatten the
3278 non-command arguments.
3279
3280 * log-view.el (log-view-current-file): Give a more explicit error
3281 if log-view-file-re fails to find a match.
3282
3283 2007-09-01 Thien-Thi Nguyen <ttn@gnuvola.org>
3284
3285 * emacs-lisp/bytecomp.el (byte-recompile-directory):
3286 Fix bug: Don't expand top-level file name more than once.
3287 Reported by Dmitry Antipov <dmantipov@yandex.ru>.
3288
3289 2007-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3290
3291 * server.el (server-process-filter): Don't display the splash screen.
3292 It's annoying enough on the initial screen and becomes positively
3293 obnoxious here.
3294
3295 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
3296
3297 * emacs-lisp/avl-tree.el: Use defstruct rather than macros.
3298 Change naming to use "avl-tree--" for internal functions.
3299
3300 2007-08-31 Dan Nicolaescu <dann@ics.uci.edu>
3301
3302 * term/x-win.el (x-menu-bar-open): Delete duplicated function from
3303 the merge.
3304 (global-set-key): Delete f10 mapping, now done in menu-bar.el.
3305 (provide): Move to the end of file.
3306
3307 * vc-svn.el (vc-svn-diff-tree): Pass a list to vc-svn-diff.
3308
3309 2007-08-31 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
3310
3311 * textmodes/flyspell.el (flyspell-mark-duplications-exceptions):
3312 New variable. List of exceptions for the duplicated word rule.
3313 (flyspell-mark-duplications-flag): Mention it.
3314 (flyspell-word): Treat it.
3315
3316 * files.el (create-file-buffer): If the filename sans directory starts
3317 with spaces, remove them.
3318
3319 2007-08-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3320
3321 * term/x-win.el (x-gtk-stock-map): Add etc/images to keys.
3322 (x-gtk-map-stock): Use two directory elements when matching
3323 file name.
3324
3325 2007-08-31 James Wright <james@chumsley.org>
3326
3327 * eshell/em-unix.el (eshell/info): New function.
3328
3329 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
3330
3331 * frame.el (frame-initialize, make-frame):
3332 * server.el (server-process-filter):
3333 * faces.el (tty-set-up-initial-frame-faces): Don't set
3334 term-environment-variable since it's not used any more.
3335
3336 * env.el (setenv): Don't treat $TERM specially.
3337
3338 * startup.el (normal-top-level): Set $TERM to `dumb' so that unless
3339 stated otherwise, subprocesses do not send back escape sequences
3340 corresponding to the terminal from which Emacs was started.
3341
3342 2007-08-31 Thien-Thi Nguyen <ttn@gnuvola.org>
3343
3344 * calculator.el: Require cl for compilation.
3345
3346 2007-08-30 Daniel Pfeiffer <occitan@esperanto.org>
3347
3348 * outline.el (outline-font-lock-levels): Comment out unused var.
3349 (outline-font-lock-face): Wrap around face list to handle any
3350 nesting depth gracefully.
3351
3352 2007-08-30 Michael Albinus <michael.albinus@gmx.de>
3353
3354 * net/ange-ftp.el: Add ange-ftp property to `set-file-modes' and
3355 `set-file-times'.
3356
3357 2007-08-30 Carsten Dominik <dominik@science.uva.nl>
3358
3359 * textmodes/org.el (org-export-visible): Fix drawers before export.
3360 (org-do-sort): Allow sorting by priority.
3361 (org-agenda-files): Ignore non-existing files.
3362 (org-agenda-skip-unavailable-files): New variable.
3363 (org-ellipsis): All a face as value.
3364 (org-mode): Interprete the face value of `org-ellipsis'.
3365 (org-archive-save-context-info): New option.
3366 (org-archive-subtree): Store context info in archived entry.
3367 (org-fast-tag-selection-can-set-todo-state): New variable.
3368 (org-fast-tag-selection): Allow setting TODO states through this
3369 interface.
3370 (org-cycle): Docstring updated.
3371 (org-todo-keyword-faces): New option.
3372 (org-get-todo-face): New function.
3373 (org-set-font-lock-defaults, org-agenda-highlight-todo):
3374 Use `org-get-todo-face'.
3375 (org-switch-to-buffer-other-window): New function.
3376 (org-table-edit-field, org-table-show-reference)
3377 (org-table-edit-formulas, org-add-log-note)
3378 (org-fast-tag-selection, org-agenda, org-prepare-agenda)
3379 (org-timeline): Use `org-switch-to-buffer-other-window' instead of
3380 `switch-to-buffer-other-window' to make sure that the temporary
3381 windows show up on the current frame.
3382 (org-mhe-get-message-real-folder, org-batch-store-agenda-views)
3383 (org-get-entries-from-diary, org-replace-region-by-html):
3384 Don't allow pop-up frames.
3385 (org-agenda-get-deadlines, org-agenda-get-scheduled):
3386 Fix problems with time-of-day.
3387 (org-export-get-title-from-subtree): New function.
3388 (org-agenda-get-scheduled, org-agenda-get-deadlines): Fix problems
3389 with listing items that are DONE.
3390 (org-change-tag-in-region): New command.
3391 (org-agenda-skip-scheduled-if-done)
3392 (org-agenda-skip-deadline-if-done): Docstring clarified.
3393 (org-mode): Hide drawers on startup.
3394 (org-get-todo-face): New function.
3395 (org-todo-keyword-faces): New option.
3396 (org-set-regexps-and-options): Use `org-remove-keyword-keys'.
3397 (org-remove-keyword-keys): New function.
3398
3399 2007-08-30 Jari Aalto <jari.aalto@cante.net> (tiny change)
3400
3401 * progmodes/grep.el (grep-find-ignored-directories):
3402 Add monotone _MTN bookkeeping directory in workspaces.
3403 Add RCS control directory. List items in alphabetical order.
3404
3405 * progmodes/grep.el (grep-files-aliases): Add cc alias.
3406 Sort items in alphabetical order. Fix parens.
3407
3408 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
3409
3410 * vc-hg.el (vc-hg-extra-menu-map): New variable.
3411 (vc-hg-extra-menu, vc-hg-outgoing, vc-hg-incoming, vc-hg-push)
3412 (vc-hg-pull): New functions.
3413 (vc-hg-outgoing-mode, vc-hg-incoming-mode): New derived modes.
3414
3415 * term/mac-win.el: Don't require url, only autoloaded url
3416 functions are used in this file.
3417
3418 2007-08-29 Andreas Schwab <schwab@suse.de>
3419
3420 * shell.el (shell): Return correct value from interactive spec.
3421
3422 2007-08-29 Glenn Morris <rgm@gnu.org>
3423
3424 * version.el (emacs-version): Increase to 23.0.50.
3425
3426 2007-08-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3427
3428 * term/x-win.el (x-gtk-stock-map): :version changed to 23.1.
3429
3430 2007-08-29 Juri Linkov <juri@jurta.org>
3431
3432 * loadup.el: Add "button" loading after "faces" and move "startup"
3433 to load after "button".
3434
3435 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
3436
3437 * loadup.el: Load term/mac-win on a Mac using Carbon.
3438
3439 * term/mac-win.el: Provide mac-win.
3440 (mac-initialized): New variable.
3441 (mac-initialize-window-system): New function. Move global setup here.
3442 (handle-args-function-alist, frame-creation-function-alist):
3443 (window-system-initialization-alist): Add mac entries.
3444 (x-setup-function-keys): New function containing all the
3445 top level function key definitions.
3446
3447 * term/x-win.el (x-menu-bar-open): Use accelerate-menu.
3448
3449 * env.el (read-envvar-name): Don't consider the environment frame param.
3450
3451 * env.el (setenv):
3452 * frame.el (frame-initialize, make-frame):
3453 * faces.el (tty-set-up-initial-frame-faces):
3454 * server.el (server-process-filter): Set
3455 display-environment-variable and term-environment-variable.
3456
3457 * server.el (server-process-filter): Set COLORFGBG and COLORTERM.
3458
3459 2007-08-29 Jason Rumney <jasonr@gnu.org>
3460
3461 * loadup.el: Only load term/x-win when X is compiled in.
3462 Load term/w32-win and dependencies on windows-nt.
3463
3464 * term/w32-win.el: Reorder to match x-win.el more closely.
3465 Provide w32-win. Don't throw error when global window-system not w32.
3466 (internal-face-interactive): Remove obsolete function.
3467 (x-setup-function-keys): Use local-function-key-map.
3468 (w32-initialized): New variable.
3469 (w32-initialize-window-system): Set it.
3470 Move more global setup here.
3471 (x-setup-function-keys): New function.
3472 (w32-initialize-window-system): Move non function key global setup here.
3473 (x-cut-buffer-max): Remove.
3474 (w32-initialize-window-system): New function.
3475 (handle-args-function-alist, frame-creation-function-alist):
3476 (window-system-initialization-alist): Add w32 entries.
3477
3478 2007-08-29 David Kastrup <dak@gnu.org>
3479
3480 * env.el (getenv): Pass frame to getenv-internal.
3481
3482 2007-08-29 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
3483
3484 * version.el (emacs-version): Show if multi-tty is present.
3485
3486 * loadup.el: Delay loading env; mule-conf gets confused by cl
3487 during bootstrap. Also load termdev and term/x-win.
3488
3489 * bindings.el (mode-line-client): New variable.
3490 (help-echo): Add it to the default mode-line format.
3491
3492 * cus-start.el: Remove bogus window-system reference from GTK test.
3493
3494 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map)
3495 (ebrowse-electric-position-mode-map):
3496 * ebuff-menu.el (electric-buffer-menu-mode-map):
3497 * echistory.el (electric-history-map): Bind C-z to `suspend-frame',
3498 not `suspend-emacs'.
3499
3500 * ediff-wind.el (ediff-setup-windows-automatic): New function.
3501 (ediff-window-setup-function): Use it as default.
3502
3503 * files.el (save-buffers-kill-terminal): New function.
3504 (ctl-x-map): Change binding of C-x C-c to save-buffers-kill-terminal.
3505
3506 * font-lock.el (lisp-font-lock-keywords-2): Add `let-environment'
3507 and `with-selected-frame'.
3508
3509 * help-fns.el (describe-variable): Describe frame-local variables
3510 correctly.
3511
3512 * simple.el (normal-erase-is-backspace-mode): Rewrite for multiple
3513 display support.
3514 (normal-erase-is-backspace-setup-frame): New function.
3515
3516 * subr.el (with-selected-frame): New function.
3517 (read-quoted-char): Use terminal-local binding of
3518 local-function-key-map instead of function-key-map.
3519
3520 * talk.el (talk): New function.
3521 (talk-handle-delete-frame): New function.
3522 (talk-add-display): Open a new frame only if FRAME was not a frame.
3523
3524 * termdev.el: New file.
3525
3526 * menu-bar.el (menu-bar-open): New function. Bind it to f10.
3527 * term/x-win.el: Don't bind f10.
3528 * tmm.el: Remove autoload binding for f10.
3529
3530 * international/encoded-kb.el (encoded-kbd-setup-display): Use
3531 `set-input-meta-mode'. Fix broken condition before set-input-mode.
3532 Store the saved input method as a terminal parameter. Add keymap
3533 parameter. Use it instead of changing key-translation-map directly.
3534 (saved-key-translation-map, encoded-kbd-mode, saved-input-mode):
3535 Remove.
3536 (encoded-kbd-setup-display): New function.
3537
3538 * international/mule-cmds.el (set-locale-environment): Fix getenv
3539 call. Use save-buffers-kill-terminal. Ignore window-system; always
3540 set the keyboard coding system. Add DISPLAY parameter.
3541 (set-display-table-and-terminal-coding-system): Add DISPLAY
3542 parameter. Pass it to set-terminal-coding-system.
3543
3544 * international/mule.el (keyboard-coding-system): Test for
3545 encoded-kbd-setup-display, not encoded-kbd-mode.
3546 (set-terminal-coding-system, set-keyboard-coding-system): Add
3547 DISPLAY parameter.
3548 (set-keyboard-coding-system): Use encoded-kbd-setup-display.
3549
3550 * term/README: Update.
3551
3552 * term/linux.el (terminal-init-linux): Use `set-input-meta-mode'.
3553
3554 * term/x-win.el (x-setup-function-keys): New function. Move
3555 function-key-map tweaks here. Protect against multiple calls on
3556 the same terminal. Use terminal-local binding of
3557 local-function-key-map instead of function-key-map.
3558 (x-initialize-window-system): Make a copy of pure list. Pass a
3559 frame getenv.
3560
3561 * term/vt200.el, term/vt201.el, term/vt220.el, term/vt240.el:
3562 * term/vt300.el, term/vt320.el, term/vt400.el, term/vt420.el:
3563 * term/AT386.el, term/internal.el, term/iris-ansi.el, term/lk201.el:
3564 * term/mac-win.el, term/news.el, term/rxvt.el, term/sun.el:
3565 * term/tvi970.el, term/wyse50.el: Use terminal-local binding of
3566 local-function-key-map instead of function-key-map.
3567
3568 * term/rxvt.el, term/xterm.el: Speed up load time by protecting
3569 `substitute-key-definition' and `define-key' calls against
3570 multiple execution. Use terminal-local binding of
3571 local-function-key-map instead of function-key-map. Pass a frame
3572 to getenv.
3573
3574 * edmacro.el (edmacro-format-keys):
3575 * emulation/cua-base.el (cua--pre-command-handler):
3576 * isearch.el (isearch-other-meta-char):
3577 * xt-mouse.el: Use terminal-local binding of
3578 local-function-key-map instead of function-key-map.
3579
3580 * fringe.el (set-fringe-mode): Simplify and fix using
3581 `modify-all-frames-parameters'.
3582 * scroll-bar.el (set-scroll-bar-mode): Ditto.
3583 * tool-bar.el (tool-bar-mode): Ditto. Remove 'tool-bar-map length
3584 check before calling `tool-bar-setup'.
3585 (tool-bar-setup): New variable.
3586 (tool-bar-setup): Use it to guard against multiple calls. Add
3587 optional frame parameter, and select that frame before adding items.
3588 (toggle-tool-bar-mode-from-frame): New function.
3589
3590 * menu-bar.el (toggle-menu-bar-mode-from-frame): New function.
3591 (menu-bar-showhide-menu): Use toggle-menu-bar-mode-from-frame and
3592 toggle-tool-bar-mode-from-frame to change "Menu-bar" and
3593 "Tool-bar" toggles to reflect the state of the current frame.
3594 (menu-bar-mode): Simplify and fix using `modify-all-frames-parameters'.
3595
3596 * env.el: Require cl for byte compilation (for `block' and `return').
3597 (environment, setenv-internal): New functions.
3598 (let-environment): New macro.
3599 (setenv, getenv): Add optional terminal parameter. Update docs.
3600 (setenv): Use setenv-internal. Always set process-environment.
3601 Handle `local-environment-variables'.
3602 (read-envvar-name, setenv, getenv): Use frame parameters
3603 to store the local environment, not terminal parameters. Include
3604 `process-environment' as well.
3605
3606 * faces.el (tty-run-terminal-initialization): New function.
3607 (tty-create-frame-with-faces): Use it. Set up faces and
3608 background mode only after the terminal has been initialized.
3609 Call terminal-init-*. Don't load the initialization file more
3610 than once. Call set-locale-environment.
3611 (frame-set-background-mode): Handle the 'background-mode terminal
3612 parameter.
3613 (tty-find-type): New function.
3614 (x-create-frame-with-faces): Remove bogus check for
3615 first frame. Call `tool-bar-setup'. Don't make frame visible
3616 until we are done setting up all its parameters. Call
3617 x-setup-function-keys.
3618
3619 * frame.el (make-frame): Always inherit 'environment and 'client
3620 parameters. Set up the 'environment frame parameter, when needed.
3621 Also inherit 'client parameter. Don't override explicitly
3622 specified values with inherited ones. Add 'terminal frame
3623 parameter. Append window-system-default-frame-alist to parameters
3624 before calling frame-creation-function.
3625 (frame-initialize): Copy the environment from the initial frame.
3626 (window-system-default-frame-alist): Enhance doc string.
3627 (frame-notice-user-settings): Don't put 'tool-bar-lines in
3628 `default-frame-alist' when initial frame is on a tty.
3629 (modify-all-frames-parameters): Simplify using `assq-delete-all'.
3630 Remove specified parameters from `window-system-default-frame-alist'.
3631 (make-frame-on-tty, framep-on-display, suspend-frame):
3632 Extend doc string, update parameter names.
3633 (frames-on-display-list): Use terminal-id to get the display id.
3634 (frame-notice-user-settings): Extend to apply
3635 settings in `window-system-default-frame-alist' as well.
3636 (terminal-id, terminal-parameters, terminal-parameter)
3637 (set-terminal-parameter, terminal-handle-delete-frame): New functions.
3638 (delete-frame-functions): Add to `delete-frame-functions' hook.
3639 (blink-cursor-mode): Adapt blink-cursor-mode default
3640 value from startup.el.
3641 (make-frame-on-display): Protect condition on x-initialized when
3642 x-win.el is not loaded. Update doc.
3643 (suspend-frame): Use display-controlling-tty-p to decide between
3644 suspend-emacs and suspend-tty.
3645 (frames-on-display-list): Update for display ids.
3646 (framep-on-display): Ditto.
3647 (suspend-frame): Use display-name, not frame-tty-name.
3648 (selected-terminal): New function.
3649
3650 * server.el: Use `device' instead of `display' or `display-id' in
3651 variable and client parameter names.
3652 (server-select-display): Remove (unused).
3653 (server-tty-live-p, server-handle-delete-tty): Remove.
3654 (server-unquote-arg, server-quote-arg, server-buffer-clients):
3655 Update docs.
3656 (server-getenv-from, server-with-environment, server-send-string)
3657 (server-save-buffers-kill-terminal): New functions.
3658 (server-delete-client): Handle quits in kill-buffer. Don't kill
3659 modified buffers. Add extra logging. Delete frames after
3660 deleting the tty. Clear 'client parameter before deleting a frame.
3661 Use delete-display, not delete-tty.
3662 (server-visit-files): Don't set `server-existing-buffer' if the
3663 buffer already has other clients. Return list of buffers
3664 created. Update doc. Don't set client-record when nowait.
3665 (server-handle-delete-frame): Delete the client if this was its
3666 last frame. Check that the frame is alive. Remove bogus comment.
3667 Add note on possible race condition. Delete tty clients, if needed.
3668 (server-handle-suspend-tty): Use server-send-string. Kill the
3669 client in case of errors from process-send-string. Use the display
3670 parameter.
3671 (server-unload-hook): Remove obsolete delete-tty hook.
3672 (server-start): Ask before restarting if the old server still has
3673 clients. Add feedback messages. Remove obsolete delete-tty hook.
3674 (server-process-filter): Use server-send-string. Accept `-dir'
3675 command. Switch to *scratch* immediately after creating the frame,
3676 before evaluating any -evals. Protect `display-splash-screen'
3677 call in a condition-case. Explain why. Call
3678 `display-startup-echo-area-message' before
3679 `display-splash-screen'. Don't display the splash screen when no
3680 frame was created. Show the Emacs splash screen and startup echo
3681 area message. Display the *scratch* buffer by default. Store the
3682 local environment in a frame (not terminal) parameter. Do not try
3683 to decode environment strings. Fix reference to the 'display
3684 frame parameter. Change syntax of environment variables. Put
3685 environment into terminal parameters, not client parameters. Use
3686 a dummy client with --no-wait's X frames. In `-position LINE'
3687 handler, don't ruin the request string until the line number is
3688 extracted. Log opened files. Handle -current-frame command.
3689 Don't create frames when it is given. Don't bind X frames to the
3690 client when we are in -no-wait mode. Set locale environment
3691 variables from client while creating tty frames. Disable call to
3692 configure-display-for-locale. When processing -position command,
3693 don't change the request string until the parameters are
3694 extracted. Don't try to create an X frame when Emacs does not
3695 support it. Improve logging. Temporarily set ncurses-related
3696 environment variables to those of the client while creating a new
3697 tty frame. Select buffers opened by nowait clients, don't leave
3698 them buried under others. Set the display parameter, and use it
3699 when appropriate.
3700
3701 * startup.el (display-startup-echo-area-message): Handle
3702 `inhibit-startup-echo-area-message' here.
3703 (command-line-1): Moved from here.
3704 (fancy-splash-screens): Use `overriding-local-map' instead of
3705 `overriding-terminal-local-map' for now; the latter doesn't work
3706 right, it looses keypresses to another terminal. Use
3707 `overriding-terminal-local-map' to set up keymap. Install a
3708 `delete-frame-functions' hook to catch `delete-frame' events.
3709 Ignore `select-window' events to cope better with
3710 `focus-follows-mouse'. Don't switch back to the original buffer
3711 if the splash frame has been killed. Restore previous buffer, even
3712 if it's *scratch*.
3713 (normal-splash-screen): Don't let-bind `mode-line-format'; it
3714 changes the global binding - setq it instead. Use
3715 `save-buffers-kill-terminal'.
3716 (display-splash-screen): Don't do anything if the splash screen is
3717 already displayed elsewhere.
3718 (fancy-splash-exit, fancy-splash-delete-frame): New functions.
3719 (command-line): Replace duplicated code with a call to
3720 tty-run-terminal-initialization. Don't load the terminal
3721 initialization file more than once. Remove call to nonexistent
3722 function `set-locale-translation-file-name'.
3723
3724 * xt-mouse.el (xterm-mouse-x, xterm-mouse-y): Convert to terminal
3725 parameters.
3726 (xterm-mouse-position-function, xterm-mouse-event): Update.
3727 (xterm-mouse-mode): Don't depend on current value of window-system.
3728 (turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking):
3729 Update for multi-tty.
3730 (turn-on-xterm-mouse-tracking-on-terminal)
3731 (turn-off-xterm-mouse-tracking-on-terminal)
3732 (xterm-mouse-handle-delete-frame): New functions.
3733 (delete-frame-functions, after-make-frame-functions)
3734 (suspend-tty-functions, resume-tty-functions): Install extra hooks
3735 for multi-tty.
3736
3737 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
3738
3739 * simple.el (invisible-p): Remove: implemented in C now.
3740 (line-move-invisible-p): Remove obsolete alias.
3741
3742 2007-08-28 Juri Linkov <juri@jurta.org>
3743
3744 * image-mode.el (image-type): New variable.
3745 (image-mode): Set default major mode name to "Image[text]".
3746 (image-minor-mode): Change LIGHTER to display image-type in the
3747 mode line.
3748 (image-minor-mode): Set default image-type to "text".
3749 (image-toggle-display): After switching to text mode, set
3750 image-type to "text" and major mode name to "Image[text]".
3751 After switching to image mode, set image-type to actual image
3752 type, and add image type to major mode name. Let-bind the same
3753 variable names as arguments of `image-type' and `create-image'.
3754 Bind `type' to the result of `image-type' and use it as arg
3755 of `create-image' to not determine the image type twice.
3756
3757 2007-08-28 Michael Albinus <michael.albinus@gmx.de>
3758
3759 * net/tramp.el (tramp-handle-set-file-times): Flush the file properties.
3760 (tramp-set-file-uid-gid, tramp-get-local-uid)
3761 (tramp-get-local-gid): New defuns.
3762 (tramp-handle-copy-file): Handle new parameter PRESERVE-UID-GID.
3763 (tramp-do-copy-or-rename-file): New parameter PRESERVE-UID-GID.
3764 Improve fast track.
3765 (tramp-do-copy-or-rename-file-directly): Sync parameter list with
3766 the other tramp-do-copy-or-rename-file-* functions. Major rewrite.
3767 (tramp-handle-file-local-copy, tramp-handle-insert-file-contents)
3768 (tramp-handle-write-region): Improve fast track.
3769 (tramp-handle-file-remote-p): IDENTIFICATION can also be `localname'.
3770 (tramp-maybe-open-connection): Let `process-adaptive-read-buffering'
3771 be nil.
3772
3773 2007-08-28 Ivan Kanis <apple@kanis.eu>
3774
3775 * time.el: New feature to display several time zones in a buffer.
3776 (display-time-world-mode, display-time-world-display)
3777 (display-time-world, display-time-world-timer): New functions.
3778 (display-time-world-list, display-time-world-time-format)
3779 (display-time-world-buffer-name, display-time-world-timer-enable)
3780 (display-time-world-timer-second, display-time-world-mode-map):
3781 New variables.
3782
3783 2007-08-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3784
3785 * term/x-win.el (x-gtk-stock-map): New variable.
3786 (x-gtk-map-stock): New function.
3787
3788 * info.el (info-tool-bar-map): Add :rtl keyword to right/left-arrow and
3789 prev/next-node.
3790
3791 2007-08-28 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se> (tiny change)
3792
3793 * play/gamegrid.el (gamegrid-init): Set line-spacing to 0.
3794
3795 2007-08-28 Glenn Morris <rgm@gnu.org>
3796
3797 * progmodes/cc-langs.el (c-constant-kwds): Add java: null, true, false.
3798
3799 2007-08-27 Thien-Thi Nguyen <ttn@gnuvola.org>
3800
3801 * progmodes/modula2.el (m2-definition, m2-module):
3802 Don't use previous-line. Reported by T. V. Raman.
3803
3804 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3805
3806 * term/mac-win.el (mac-handle-toolbar-switch-mode): Add explicit
3807 argument to tool-bar-mode call.
3808
3809 2007-08-27 Glenn Morris <rgm@gnu.org>
3810
3811 * diff-mode.el (diff-find-file-name): Only accept regular files,
3812 to rule out /dev/null, directories, etc.
3813
3814 * vc-svn.el (vc-svn-diff): If the repository version of all the
3815 files is the same as the specified OLDVERS, do a local diff.
3816
3817 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
3818
3819 * uniquify.el (uniquify-rationalize-file-buffer-names): Check liveness
3820 of buffers in uniquify-managed.
3821
3822 * simple.el (invisible-p): Rename from text-invisible-p.
3823 Update callers.
3824
3825 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
3826
3827 * progmodes/cperl-mode.el (defcustom, x-color-defined-p, cperl-is-face)
3828 (cperl-is-face, cperl-force-face, cperl-etags-snarf-tag, cperl-mode)
3829 (cperl-etags-snarf-tag, cperl-etags-goto-tag-location, cperl-init-faces)
3830 (cperl-etags-goto-tag-location): Use new style backquotes.
3831
3832 * net/browse-url.el: Remove spurious * in custom docstrings.
3833 (browse-url-filename-alist): Use new-style backquote.
3834
3835 * emacs-lisp/backquote.el (backquote-unquote-symbol)
3836 (backquote-splice-symbol): Clarify they're not new-style unquotes.
3837
3838 * emacs-lisp/edebug.el (edebug-list-form, edebug-match-symbol, \,)
3839 (\,@): Backslash the , and ,@ which are not new-style unquotes.
3840
3841 * textmodes/texinfmt.el (\,): Clarify it's not a new-style unquote.
3842
3843 * net/socks.el (socks-username/password-auth-filter):
3844 Remove unused vars `state' and `desired-len'.
3845 (socks-parse-services, socks-nslookup-host): Use with-current-buffer.
3846 (socks-wait-for-state-change): Use new-style backquotes.
3847
3848 * pcvs.el (cvs-mode-status): Fix long-standing typo.
3849
3850 * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Check old-style
3851 backquotes after each `read' rather than once per buffer.
3852
3853 * dframe.el: Remove spurious * in custom docstrings.
3854 (dframe-xemacsp): Remove, use (featurep 'xemacs) instead.
3855 (dframe-xemacs20p): Remove, inline at the sole use point.
3856 (defface): Don't defvar the face, don't use old-style backquote.
3857 (defcustom): Don't use old-style backquote.
3858 (dframe-frame-parameter, dframe-mouse-event-p):
3859 Make it obvious that it's always defined.
3860 (dframe-popup-kludge): New function to replace
3861 dframe-xemacs-popup-kludge and dframe-xemacs-popup-kludge.
3862 (dframe-frame-mode, dframe-set-timer-internal)
3863 (dframe-mouse-set-point): Remove use of with-no-warnings from
3864 XEmacs-specific code.
3865 (dframe-set-timer-internal): Fix very old bug with
3866 post-command-idle-hook.
3867
3868 * emacs-lisp/byte-opt.el (byte-optimize-featurep): Handle `sxemacs'.
3869
3870 2007-08-27 Thien-Thi Nguyen <ttn@gnuvola.org>
3871
3872 * emacs-lisp/avl-tree.el: New file.
3873
3874 2007-08-26 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
3875
3876 * hi-lock.el (hi-lock-unface-buffer): Show a x-menu only if the mouse
3877 was used.
3878
3879 2007-08-26 Sean O'Rourke <seano@cs.ucsd.edu>
3880
3881 * complete.el (PC-do-completion): Make RET accept a non-unique but
3882 complete expansion again.
3883
3884 2007-08-26 Thien-Thi Nguyen <ttn@gnuvola.org>
3885
3886 * eshell/esh-opt.el (eshell-eval-using-options):
3887 Add debug declaration.
3888
3889 2007-08-26 Dan Nicolaescu <dann@ics.uci.edu>
3890
3891 * log-view.el (log-view-toggle-mark-entry): Add docstring.
3892 (log-view-get-marked): Likewise.
3893
3894 * vc-hooks.el (vc-registered): Use mapc instead of mapcar.
3895 (vc-delete-automatic-version-backups): Likewise.
3896
3897 * vc.el (vc-dired-buffers-for-dir): Likewise.
3898
3899 2007-08-25 Dan Nicolaescu <dann@ics.uci.edu>
3900
3901 * progmodes/cperl-mode.el (cperl-indent-level): Autoload the
3902 safe-local-variable setting.
3903 * progmodes/perl-mode.el (perl-indent-level): Likewise.
3904
3905 * log-view.el (log-view-marked-list): Delete variable.
3906 (log-view-mode): Don't use it.
3907 (log-view-toggle-mark-entry): Likewise, simplify.
3908 (log-view-current-tag): Don't return properties.
3909 (log-view-get-marked): New function.
3910
3911 2007-08-25 Alexandre Julliard <julliard@winehq.org>
3912
3913 * vc-git.el (vc-git-mode-line-string): New function.
3914
3915 2007-08-25 Alan Mackenzie <acm@muc.de>
3916
3917 * progmodes/cc-langs.el (c-other-decl-block-key-in-symbols-alist):
3918 new language variable.
3919
3920 * progmodes/cc-engine.el (c-brace-anchor-point): new function.
3921 (c-add-stmt-syntax): Give accurate anchor points for "namespace",
3922 "extern" etc., rather than BOI. Fix addition of spurious
3923 syntactic-symbol 'defun-block-intro, replacing it with
3924 'innamespace, etc.
3925
3926 2007-08-25 Juri Linkov <juri@jurta.org>
3927
3928 * files.el (auto-mode-alist): Move "\\.x[bp]m\\'" to image-mode.el.
3929
3930 * image-mode.el: Add autoloads to put associations in auto-mode-alist:
3931 associate "\\.x[bp]m\\'" with c-mode and image-mode-maybe, and
3932 "\\.svgz?\\'" with xml-mode and image-mode-maybe.
3933
3934 * image.el (image-type-header-regexps): Use more complex regexp for svg.
3935 (image-type-file-name-regexps): Add ("\\.svgz?\\'" . svg).
3936 (image-type-auto-detectable): Add (svg . maybe).
3937
3938 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add .svgz
3939 to treat it like .tgz.
3940
3941 * calendar/cal-bahai.el: Add file coding cookie.
3942
3943 2007-08-25 Reiner Steib <Reiner.Steib@gmx.de>
3944
3945 * pcvs.el (cvs-query-directory): Only prompt when prefix is given.
3946 Don't behave differently when executed via M-x. Add doc string.
3947
3948 * sort.el (sort-fold-case, sort-numeric-base): Mark as
3949 safe-local-variable.
3950
3951 2007-08-25 Jay Belanger <jay.p.belanger@gmail.com>
3952
3953 * calc/calc-forms.el (var-TimeZone): Make nil explicitly
3954 the default value.
3955 (math-calendar-tzinfo): New variable.
3956 (math-get-calendar-tzinfo): New function.
3957 (calcFunc-tzone, calcFunc-dst): Use Emacs's calendar
3958 to get information when zone is nil.
3959
3960 2007-08-24 Dan Nicolaescu <dann@ics.uci.edu>
3961
3962 * log-view.el (log-view-toggle-mark-entry): New function.
3963 (log-view-mode-map): Bind it.
3964 (log-view-marked-list): New variable.
3965 (log-view-mode): Make it local.
3966
3967 2007-08-24 Thien-Thi Nguyen <ttn@gnuvola.org>
3968
3969 * play/zone.el (zone-pgm-rat-race): New func.
3970 (zone-programs): Add `zone-pgm-rat-race'.
3971
3972 2007-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
3973
3974 * emacs-lisp/byte-opt.el (byte-optimize-if): Don't presume `clause' is
3975 a list.
3976
3977 2007-08-24 Thien-Thi Nguyen <ttn@gnuvola.org>
3978
3979 * progmodes/hideshow.el (hs-match-data): Delete alias.
3980 (hs-hide-block-at-point, hs-find-block-beginning)
3981 (hs-show-block): Use `match-data' directly.
3982
3983 2007-08-24 Martin Rudalics <rudalics@gmx.at>
3984
3985 * format.el (format-alist): Fix typo in doc-string.
3986
3987 2007-08-24 Michael Albinus <michael.albinus@gmx.de>
3988
3989 * net/tramp.el (tramp-local-host-p): New defun.
3990 (tramp-handle-file-local-copy, tramp-handle-write-region):
3991 Implement fast track when being on the local host.
3992 (tramp-file-name-handler): Don't set "started" property. It shall
3993 be reserved for the "ftp" method.
3994 (tramp-make-copy-program-file-name): Use `tramp-file-name-real-host'.
3995
3996 * net/tramp-ftp.el (top): Autoload `tramp-set-connection-property'.
3997 (tramp-ftp-file-name-handler): Set "started" property.
3998
3999 2007-08-24 Ulrich Mueller <ulm@gentoo.org> (tiny change)
4000
4001 * files.el (backup-buffer-copy): Don't wrap delete in
4002 condition-case, only try to delete if file exists.
4003
4004 2007-08-24 Glenn Morris <rgm@gnu.org>
4005
4006 * files.el (backup-buffer-copy): Revert 2007-08-22 change.
4007
4008 * startup.el (tutorial-directory): Set with eval-at-startup so it
4009 gets the right value in an installed Emacs.
4010
4011 2007-08-24 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
4012
4013 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): New face.
4014 (eldoc-highlight-function-argument): Use it.
4015
4016 2007-08-23 Masatake YAMATO <jet@gyve.org>
4017
4018 * progmodes/cc-fonts.el (gtkdoc-font-lock-doc-comments): Highlight
4019 name of parameters in document body.
4020
4021 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
4022
4023 * emacs-lisp/bytecomp.el (byte-compile-output-docform)
4024 (byte-compile-output-as-comment): Use with-current-buffer rather than
4025 a weird set-buffer&prog1 combination.
4026
4027 * emacs-lisp/byte-opt.el (byte-optimize-if): Move `progn' out of the
4028 test so as to optimise cases where the `progn's result is constant.
4029
4030 2007-08-23 Thien-Thi Nguyen <ttn@gnuvola.org>
4031
4032 * locate.el (locate-get-file-positions):
4033 Use line-beginning-position and line-end-position.
4034
4035 2007-08-23 John Wiegley <johnw@newartisans.com>
4036
4037 * calendar/cal-bahai.el: Added in the diacriticals that were
4038 missing for many of the month names.
4039
4040 2007-08-22 Jason Rumney <jasonr@gnu.org>
4041
4042 * vc-hooks.el (vc-menu-map-filter): Reapply 2007-08-06 bugfix.
4043
4044 2007-08-22 Chong Yidong <cyd@stupidchicken.com>
4045
4046 * image-mode.el (image-minor-mode): Use image-mode-text-map.
4047
4048 2007-08-22 Sean O'Rourke <sorourke@cs.ucsd.edu>
4049
4050 * dabbrev.el (dabbrev--progress-reporter): New variable.
4051 (dabbrev--scanning-message): Delete func.
4052 (dabbrev--find-expansion): Use a progress reporter
4053 instead of dabbrev--scanning-message.
4054
4055 2007-08-22 Michael Albinus <michael.albinus@gmx.de>
4056
4057 * comint.el (comint-exec-1): Raise an error if
4058 `start-file-process' does not return a process object.
4059
4060 * shell.el (shell): Prompt for `default-directory' if it is a
4061 remote file name, and if called with a prefix arg.
4062
4063 2007-08-22 Sam Steingold <sds@gnu.org>
4064
4065 * pcvs.el (cvs-vc-command-advice): Fix a typo in code (file->files).
4066
4067 2007-08-22 Carsten Dominik <dominik@science.uva.nl>
4068
4069 * textmodes/org-export-latex.el: New file.
4070
4071 * textmodes/org-publish.el (org-publish-org-to-latex): New function.
4072
4073 * textmodes/org.el (org-agenda-skip): Allow a form for
4074 `org-agenda-skip-function'.
4075 (org-agenda-redo): Re-use local settings.
4076 (org-agenda): Store local settings.
4077 (org-agenda-deadline-faces): New option.
4078 (org-agenda-deadline-face): New function.
4079 (org-agenda-get-deadlines, org-agenda-get-scheduled): Also handle
4080 entries on their due date.
4081 (org-agenda-get-timestamps): No longer handle the due dates of
4082 schedules and deadline items.
4083 (org-insert-link-global, org-open-at-point-global): New commands.
4084 (org-export-as-ascii): Call `org-cleaned-string-for-export' with a
4085 :for-ascii parameter.
4086 (org-skip-comments): Function removed.
4087 (org-cleaned-string-for-export): Handle special table lines.
4088 (org-global-properties): New option.
4089 (org-entry-get-with-inheritance): Check global properties.
4090 (org-local-properties): New variable.
4091 (org-set-regexps-and-options): Find the #+PROPERTY line.
4092 (org-link-types): Change type into variable (was constant).
4093 (org-make-link-regexps): New function.
4094 (org-link-re-with-space, org-link-re-with-space2)
4095 (org-angle-link-re, org-plain-link-re, org-bracket-link-regexp)
4096 (org-bracket-link-analytic-regexp, org-any-link-re): Creation of
4097 these regular expressions happens now in the function
4098 `org-make-link-regexps'.
4099 (org-store-link): Call the functions in
4100 `org-store-link-functions'.
4101 (org-add-link-type): New function.
4102 (org-store-link-functions): New variable.
4103 (org-activate-tags): Force matches to be in headlines.
4104 (org-batch-store-agenda-views): Fix bug with killing agenda buffer.
4105 (org-columns-display-here): Make sure this works in a narrowed
4106 buffer by checking for point-min.
4107 (org-columns-display-here): Make the rest of the line intangible,
4108 so that point never can be there.
4109 (org-cleaned-string-for-export): Use `with-current-buffer'.
4110 (org-replace-region-by-html): Use `with-current-buffer'.
4111 (org-unfontify-region, org-do-occur, org-columns-display-here)
4112 (org-columns-remove-overlays, org-columns-quit)
4113 (org-columns-edit-value, org-columns-next-allowed-value)
4114 (org-eval-in-calendar, org-agenda-undo, org-no-read-only)
4115 (org-finalize-agenda, org-remove-subtree-entries-from-agenda)
4116 (org-agenda-todo, org-agenda-change-all-lines)
4117 (org-agenda-align-tags, org-agenda-priority)
4118 (org-agenda-set-tags, org-agenda-toggle-archive-tag)
4119 (org-agenda-show-new-time, org-cleaned-string-for-export)
4120 (org-export-grab-title-from-buffer)
4121 (org-export-as-ascii, org-export-as-html): Use `inhibit-read-only'
4122 instead of `buffer-read-only'.
4123 (org-export-as-html): Set `coding-system-for-write'.
4124 (org-remember-store-without-prompt): New option.
4125 (org-archive-subtree): Fixed bug with modifying TODO keyword.
4126 (org-beginning-of-line): Also treat C-a special in items.
4127 (org-table-convert-refs-to-rc): Fixed problem with column
4128 reference after "..".
4129 (org-columns-compute): Don't mark buffer modified because of text
4130 properties.
4131 (org-batch-store-agenda-views): Use the variable
4132 `default-directory', not the function.
4133 (org-clock-out-if-current): Respect `org-clock-out-when-done'.
4134 (org-clock-out-when-done): New option.
4135 (org-html-entities): Added HTML entities for smileys.
4136
4137 2007-08-22 Glenn Morris <rgm@gnu.org>
4138
4139 * image.el (create-image): Doc fix.
4140
4141 * startup.el (tutorial-directory): New constant.
4142 (fancy-splash-text): Tutorials now in tutorial-directory.
4143 * tutorial.el (help-with-tutorial): Tutorials now in
4144 tutorial-directory.
4145
4146 2007-08-22 Michael Albinus <michael.albinus@gmx.de>
4147
4148 * net/tramp.el (top): Require cl.el, when `copy-tree' is not available
4149 otherwise.
4150 (tramp-get-remote-path): New defun. Replace occurrences of
4151 `tramp-default-remote-path' by this function.
4152 (tramp-set-remote-path): Move most of the code to
4153 `tramp-get-remote-path'.
4154 (tramp-get-ls-command, tramp-get-remote-id): Don't check for not
4155 existing directories, this is done already in
4156 `tramp-get-remote-path'.
4157
4158 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
4159
4160 * image-file.el (image-file-name-extensions): Add "svg".
4161 * image.el (image-type-header-regexps): Add svg entry.
4162
4163 2007-08-22 Glenn Morris <rgm@gnu.org>
4164
4165 * files.el (backup-buffer-copy): Check backup directory is
4166 writable, to avoid infloop deleting old backup.
4167
4168 * mail/rmail.el (rmail-movemail-variant-p): Call on load to set
4169 movemail related variables.
4170 (rmail-insert-inbox-text): Use only rmail-movemail-program, which
4171 will now be set before this is called.
4172
4173 2007-08-21 Juri Linkov <juri@jurta.org>
4174
4175 * delsel.el (delete-selection-pre-hook):
4176 * emulation/cua-base.el (cua-paste): Use `mouse-region-match'
4177 instead of checking last-command.
4178
4179 2007-08-21 Juri Linkov <juri@jurta.org>
4180
4181 * loadup.el: Preload "button".
4182
4183 2007-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
4184
4185 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4186 Add previous-line and next-line.
4187
4188 * vc-arch.el (vc-arch-extra-menu-map): New var and fun.
4189 (vc-arch-find-file-not-found-hook): Remove, it's now the default.
4190
4191 * vc-hooks.el (vc-menu-entry): New var.
4192 (vc-mode-line-map): Use it so that this menu also uses the extra-menu.
4193 (menu-bar-tools-menu): Add the VC menu here rather than in menu-bar.el.
4194 (vc-menu-map): Declare and initialize in one step.
4195 (vc-menu-map-filter): Move&rename from menu-bar.el:menu-bar-vc-filter.
4196
4197 * menu-bar.el (vc-menu-map): Don't setup any more.
4198 Instead, just create the proper spot in the menu.
4199
4200 2007-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
4201
4202 * smerge-mode.el (smerge-resolve): New arg `safe'.
4203 (smerge-resolve-all, smerge-batch-resolve): New function.
4204 (smerge-refine): Make sure `diff' returns the expected result.
4205 (smerge-parsep-re): New const.
4206 (smerge-mode): Use it to adjust paragraph-separate.
4207
4208 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
4209 Correctly match / regexp matchers as first char on a line when
4210 fontifying only that line.
4211
4212 * emacs-lisp/cl-macs.el (cl-transform-lambda): Preserve the match-data.
4213
4214 2007-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
4215
4216 * vc-bzr.el: Don't fiddle with vc-handled-backend.
4217 (vc-bzr-registered): Don't redundantly protect against
4218 file-error. Actually use the format-specific code.
4219 (vc-bzr-buffer-nonblank-p): Remove.
4220 (vc-bzr-status): Change `kindchange' -> `kindchanged'.
4221
4222 2007-08-20 Juri Linkov <juri@jurta.org>
4223
4224 * startup.el (fancy-splash-text): Change multiple tabs into one
4225 tab. Remove "Useful File menu items" section (with "Exit Emacs"
4226 and "Recover Crashed Session").
4227 (fancy-splash-screens): Set tab-width to 22.
4228 (normal-splash-screen): Replace literal tabs with \t and
4229 fix whitespace. Remove "Useful File menu items" section (with
4230 "Exit Emacs" and "Recover Crashed Session").
4231
4232 2007-08-20 Johannes Weiner <hannes@saeurebad.de> (tiny change)
4233
4234 * emacs-lisp/lisp-mode.el (preceding-sexp): New fun, the code was
4235 extracted from `eval-last-sexp-1'.
4236 (eval-last-sexp-1): Call `preceding-sexp'.
4237
4238 2007-08-20 Thien-Thi Nguyen <ttn@gnuvola.org>
4239
4240 * vc-rcs.el (vc-rcs-annotate-command):
4241 Fix bug introduced 2007-07-18T16:32:40Z!esr@snark.thyrsus.com:
4242 Add back :vc-annotate-prefix propertization.
4243
4244 2007-08-20 Andreas Schwab <schwab@suse.de>
4245
4246 * mail/rmail.el (rmail-autodetect): Doc fix.
4247
4248 2007-08-19 Juri Linkov <juri@jurta.org>
4249
4250 * startup.el (normal-splash-screen): Add more links.
4251
4252 2007-08-19 Juri Linkov <juri@jurta.org>
4253
4254 * startup.el (splash-screen-keymap): Rename from `fancy-splash-keymap'
4255 because it's common to both types of splash screen: fancy and normal.
4256 Bind SPC to scroll-up, DEL to scroll-down and `q' to exit-splash-screen.
4257 (exit-splash-screen): Rename from `fancy-splash-quit'.
4258 Use `quit-window' instead of `kill-buffer'.
4259 (fancy-splash-head): Use make-button to insert GNU image link.
4260 (fancy-splash-screens, normal-splash-screen): Rename " About GNU
4261 Emacs" to "*About GNU Emacs*", and " GNU Emacs" to "*GNU Emacs*".
4262 (normal-splash-screen): Put "Browse manuals" on the same line with
4263 "Emacs manual". Remove descriptions from "Useful tasks" and put
4264 all links in two columns on two lines.
4265
4266 2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
4267
4268 * emulation/viper.el (viper-remove-hooks): Remove some additional
4269 viper hooks when the user calls viper-go-away.
4270 (viper-go-away): Restore the default of default-major-mode.
4271 Save the value of default-major-mode before vaperization.
4272
4273 * emulation/viper-cmd.el: Replace error "" with "Viper bell".
4274
4275 * emulation/viper-ex.el: Replace error "" with "Viper bell".
4276
4277 * ediff-util.el (ediff-make-temp-file): Use the coding system of the
4278 buffer for which file is created.
4279
4280 2007-08-19 Glenn Morris <rgm@gnu.org>
4281
4282 * Makefile.in (custom-deps, finder-data, autoloads, recompile)
4283 (progmodes/cc-mode.elc, mh-e/mh-loaddefs.el): Use $(emacs) rather
4284 than $(EMACS), so that EMACSLOADPATH is set. Prevents any system
4285 shadow files messing up the compilation.
4286
4287 2007-08-18 Glenn Morris <rgm@gnu.org>
4288
4289 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Add doc
4290 string. Also apply eldoc-argument-case in the help-split-fundoc
4291 case. Adapt for changed behavior of eldoc-function-argstring,
4292 eldoc-function-argstring-format, and
4293 eldoc-highlight-function-argument.
4294 (eldoc-highlight-function-argument): Handle nil INDEX argument,
4295 just call eldoc-docstring-format-sym-doc in that case.
4296 (eldoc-function-argstring): Change the behavior. Now it converts
4297 an argument list to a string.
4298 (eldoc-function-argstring-format): Change the behavior. Now it
4299 applies `eldoc-argument-case' to a string.
4300
4301 * progmodes/scheme.el (scheme-mode-variables): Set
4302 font-lock-comment-start-skip.
4303
4304 2007-08-18 Martin Rudalics <rudalics@gmx.at>
4305
4306 * progmodes/ada-mode.el (ada-create-syntax-table): Move
4307 set-syntax-table from here to ...
4308 (ada-mode): ... here. Do not change global value of
4309 comment-multi-line. Call new function
4310 ada-initialize-syntax-table-properties and add new function
4311 ada-handle-syntax-table-properties to font-lock-mode-hook.
4312 (ada-deactivate-properties, ada-initialize-properties): Replace
4313 by new functions ...
4314 (ada-handle-syntax-table-properties)
4315 (ada-initialize-syntax-table-properties)
4316 (ada-set-syntax-table-properties): ... to set up syntax-table
4317 properties uniformly, independently from whether font-lock-mode
4318 is enabled or not. Handle read-only buffers and do not change
4319 undo-list when setting syntax-table properties.
4320 (ada-after-change-function): Use ada-set-syntax-table-properties.
4321
4322 2007-08-18 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
4323
4324 * progmodes/meta-mode.el (meta-indent-calculate-last): Remove.
4325 (meta-indent-current-nesting): Use a computation of the nesting
4326 instead.
4327 (meta-indent-current-indentation): Indentation is given according
4328 to nesting and if the previous line was finished or not.
4329 (meta-indent-unfinished-line): Tell if the current line ends with
4330 a finished expression.
4331 (meta-indent-looking-at-code): Like `looking-at', but checks if
4332 the point is in a string before.
4333 (meta-indent-level-count): Use it. Don't count parenthesis as it's
4334 done in the nesting function.
4335 (meta-indent-in-string-p): Tell if the current point is in a
4336 string.
4337 (meta-indent-calculate): Treat b-o-b as a special case. Use the
4338 previous functions.
4339
4340 2007-08-17 Thien-Thi Nguyen <ttn@gnuvola.org>
4341
4342 * emacs-lisp/copyright.el (copyright-limit): New defsubst.
4343 (copyright-update-year, copyright-update)
4344 (copyright-fix-years): Use it.
4345
4346 2007-08-17 Kimit Yada <kimitto@gmail.com> (tiny change)
4347
4348 * emacs-lisp/copyright.el (copyright-update-year):
4349 Fix bug: Handle nil copyright-limit.
4350
4351 2007-08-17 Jay Belanger <jay.p.belanger@gmail.com>
4352
4353 * calc/calc-units.el (math-standard-units): Give exact
4354 conversion for tsp.
4355
4356 * calc/calc.el (math-bignum-digit-length): Compute the
4357 appropriate value.
4358
4359 * calc/calc-bin.el (math-bignum-logb-digit-size)
4360 (math-bignum-digit-power-of-two):
4361 * calc/calc-comb.el (math-small-factorial-table):
4362 * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
4363 (math-approx-gamma-const):
4364 * calc/calc-funcs.el (math-besJ0, math-besJ1, math-besY0)
4365 (math-besY1, math-bernoulli-b-cache):
4366 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
4367 Remove `eval-when-compile's.
4368
4369 2007-08-17 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
4370
4371 * progmodes/cperl-mode.el (cperl-look-at-leading-count)
4372 (cperl-find-pods-heres): Fix an error when typing expressions like
4373 `s{a}{b}'.
4374
4375 2007-08-17 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
4376
4377 * mail/emacsbug.el (report-emacs-bug): Remove the last number of
4378 `emacs-version', use the topic prefix ``version; ''. Make MS-DOS
4379 a special case (there's no build number).
4380
4381 2007-08-17 T. V. Raman <raman@users.sf.net> (tiny change)
4382
4383 * completion.el (symbol-under-point, symbol-before-point)
4384 (symbol-before-point-for-complete): Use buffer-substring-no-properties.
4385
4386 2007-08-17 Glenn Morris <rgm@gnu.org>
4387
4388 * progmodes/compile.el (compilation-get-file-structure): Make use
4389 of the directory part when checking for an existing entry, to
4390 handle files with same basename in different directories.
4391
4392 2007-08-17 Jay Belanger <jay.p.belanger@gmail.com>
4393
4394 * calc/calc.el (calc-language-alist): Add texinfo-mode.
4395
4396 2007-08-16 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4397
4398 * ps-print.el (ps-header-font-size, ps-header-title-font-size)
4399 (ps-footer-font-size, ps-line-number-font-size, ps-line-spacing)
4400 (ps-paragraph-spacing): Docstring fix.
4401
4402 2007-08-16 Glenn Morris <rgm@gnu.org>
4403
4404 * ps-print.el (ps-font-size): Doc fix.
4405
4406 2007-08-16 Richard Stallman <rms@gnu.org>
4407
4408 * emacs-lisp/copyright.el (copyright-names-regexp): Add custom group.
4409
4410 2007-08-15 Juri Linkov <juri@jurta.org>
4411
4412 * startup.el (initialization): Change parent group from `internal'
4413 to `environment'.
4414 (initial-buffer-choice): New variable.
4415 (command-line): Revert 2007-07-02 change that sets
4416 buffer-offer-save in *scratch* and enables auto-save in it.
4417 (fancy-splash-text): Add links to existing items. Add new items
4418 with links for useful tasks. Move information about Control-g to
4419 fancy-splash-head. Move "Emacs Guided Tour" to the end.
4420 (fancy-splash-keymap): New variable.
4421 (fancy-splash-last-input-event): Remove variable.
4422 (fancy-splash-insert): Add processing of `:link' element.
4423 (fancy-splash-head): Replace "Type Control-l to begin editing"
4424 with "Type `q' to exit".
4425 (fancy-splash-screens-1): Let-bind inhibit-read-only to t.
4426 (fancy-splash-default-action, fancy-splash-special-event-action):
4427 Remove functions.
4428 (fancy-splash-quit): New function.
4429 (fancy-splash-screens): Rename input arg from `hide-on-input' to
4430 `static' and reverse the condition of its usage. Don't preserve
4431 original values of `minor-mode-map-alist',
4432 `emulation-mode-map-alists', `special-event-map'.
4433 Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
4434 Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
4435 Remove processing of special events. Use local key map
4436 `fancy-splash-keymap'. Set buffer to read-only.
4437 (normal-splash-screen): Rename input arg from `hide-on-input' to
4438 `static' and reverse the condition of its usage.
4439 Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
4440 Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
4441 Add links to existing items. Add new items with links for useful
4442 tasks. Use local key map `fancy-splash-keymap'.
4443 (display-splash-screen): Rename input arg from `hide-on-input' to
4444 `static'.
4445 (about-emacs): Add alias to display-splash-screen.
4446 (command-line-1): Use `initial-buffer-choice'.
4447
4448 * menu-bar.el (menu-bar-help-menu):
4449 * term/mac-win.el (mac-apple-event-map): Bind About Emacs menu
4450 item to about-emacs instead of display-splash-screen.
4451
4452 2007-08-15 Jay Belanger <jay.p.belanger@gmail.com>
4453
4454 * calc/calc-units.el (math-standard-units): Update values.
4455 Put in exact, rational values when possible.
4456 (math-unit-prefixes): Replace floats with powers of ten.
4457 (math-standard-units-systems): Replace floats with integers.
4458 (math-make-unit-string): Remove extra spaces in output.
4459
4460 2007-08-15 Glenn Morris <rgm@gnu.org>
4461
4462 * mail/undigest.el (rmail-digest-parse-rfc1153sloppy): Be even
4463 sloppier, for the sake of GNU Mailman.
4464 (rmail-digest-rfc1153): Initialize `result' correctly.
4465
4466 2007-08-15 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
4467
4468 * mail/emacsbug.el (report-emacs-bug): Put `Bug: emacs-version; '
4469 in the mail title. Suggested by Reiner Steib.
4470
4471 2007-08-14 Chris Hecker <checker@d6.com> (tiny change)
4472
4473 * calc/calc-aent.el (calc-do-quick-calc): Add binary
4474 representation of integers to the list of outputs.
4475
4476 2007-08-14 Glenn Morris <rgm@gnu.org>
4477
4478 * simple.el (bad-packages-alist): New constant.
4479 (bad-package-check): New function. Together, these two add elements
4480 to `after-load-alist' to check for problematic external packages.
4481 * emulation/cua-base.el: Move CUA-mode check to `bad-packages-alist'.
4482
4483 2007-08-14 Jay Belanger <jay.p.belanger@gmail.com>
4484
4485 * calc/calc-units.el (math-get-standard-units)
4486 (math-get-units, math-make-unit-string)
4487 (math-get-default-units, math-put-default-units): New functions.
4488 (math-default-units-table): New variable.
4489 (calc-convert-units, calc-convert-temperature): Add machinery
4490 to supply default values.
4491
4492 2007-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
4493
4494 * emulation/tpu-edt.el: Add tpu-extras's autoloads.
4495 (tpu-gold-map, tpu-global-map): Comment-out the bindings to nil.
4496 (tpu-gold-map): Bind F to tpu-cursor-free-mode.
4497 (minibuffer-local-map): Use funkey symbols rather than esc-sequence.
4498
4499 * emulation/tpu-extras.el: Remove spurious * in docstrings.
4500 Put its autoloads into tpu-edt.el rather than loaddefs.el.
4501 (tpu-cursor-free-mode): Rename from tpu-cursor-free.
4502 Make into a proper minor-mode.
4503 (tpu-backward-char, tpu-next-line, tpu-previous-line)
4504 (tpu-next-end-of-line, tpu-current-end-of-line): Use new name.
4505 (tpu-trim-line-ends-if-needed): Rename from tpu-before-save-hook.
4506 (tpu-set-cursor-free, tpu-set-cursor-bound):
4507 Delegate to tpu-cursor-free-mode.
4508 (tpu-next-line, tpu-previous-line, tpu-forward-line)
4509 (tpu-backward-line, tpu-scroll-window-down, tpu-scroll-window-up):
4510 Use line-move or forward-line instead of next-line-internal.
4511
4512 2007-08-13 Nick Roberts <nickrob@snap.net.nz>
4513
4514 * progmodes/gdb-ui.el (gdb-send): Handle CTRL-D more carefully.
4515
4516 2007-08-12 Richard Stallman <rms@gnu.org>
4517
4518 * pcvs.el (cvs-reread-cvsrc, cvs-checkout, cvs-mode-checkout)
4519 (cvs-execute-single-file): Use new name split-string-and-unquote.
4520 (cvs-header-msg): Use new name combine-and-quote-strings.
4521
4522 * emulation/vi.el (vi-next-line): Ignore return value of line-move.
4523
4524 * progmodes/gud.el (gud-common-init): Use new name
4525 split-string-and-unquote.
4526
4527 * progmodes/flymake.el (flymake-err-line-patterns): Fix infloop
4528 in javac regexp.
4529
4530 * pcvs-util.el (cvs-qtypedesc-strings): Use new names
4531 combine-and-quote-strings and split-string-and-unquote.
4532
4533 * subr.el (combine-and-quote-strings): Rename from strings->string.
4534 (split-string-and-unquote): Rename from string->strings.
4535
4536 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4537
4538 * log-view.el (log-view-font-lock-keywords): Use `eval' so as to adapt
4539 to buffer-local settings.
4540
4541 * emacs-lisp/backquote.el (backquote-delay-process): New function.
4542 (backquote-process): Add internal arg `level'. Use the two to
4543 correctly handle nested backquotes.
4544
4545 2007-08-09 Riccardo Murri <riccardo.murri@gmail.com>
4546
4547 * vc-bzr.el (vc-bzr-registered): Use \0 instead of literal NULs.
4548 (vc-bzr-state-words): Add "kind changed" state word.
4549 (vc-bzr-status): New function. Return Bzr idea of file status,
4550 which is different from VC's.
4551 (vc-bzr-state): Use vc-bzr-status.
4552 (vc-workfile-unchanged-p): Use vc-bzr-status.
4553 (vc-bzr-revert): Use synchronous process; expect exitcode 0.
4554 (vc-dired-state): Process "kind changed" state word.
4555
4556 2007-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
4557
4558 * vc-hooks.el (vc-default-find-file-not-found-hook): Do nothing.
4559
4560 * vc-rcs.el (vc-rcs-find-file-not-found-hook):
4561 Move from vc-default-find-file-not-found-hook.
4562
4563 2007-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4564
4565 * man.el: Remove spurious * in docstrings.
4566 Merge defvars and toplevel setq-defaults.
4567 (Man-highlight-references0): Limit=nil rather than point-max.
4568 (Man-mode-map): Move initialization into the declaration.
4569 (Man-strip-page-headers, Man-unindent): Use dolist & inhibit-read-only.
4570 (Man-view-header-file): Use expand-file-name rather than concat.
4571 (Man-notify-when-ready, Man-bgproc-sentinel): Use with-current-buffer.
4572
4573 * man.el (Man-next-section): Make sure we do not move backward.
4574
4575 2007-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4576
4577 * files.el (auto-mode-alist): Use the purecopied text (duh!).
4578
4579 2007-08-08 Glenn Morris <rgm@gnu.org>
4580
4581 * Replace `iff' in doc-strings and comments.
4582
4583 2007-08-08 Martin Rudalics <rudalics@gmx.at>
4584
4585 * dired.el (dired-pop-to-buffer):
4586 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
4587 * calendar/calendar.el (generate-calendar-window):
4588 * progmodes/compile.el (compilation-set-window-height):
4589 * textmodes/two-column.el (2C-two-columns, 2C-merge):
4590 Use window-full-width-p instead of comparing frame-width and
4591 window-width.
4592
4593 * progmodes/compile.el (compilation-find-buffer): Remove extra
4594 argument in call to compilation-buffer-internal-p.
4595
4596 2007-08-07 Tom Tromey <tromey@redhat.com>
4597
4598 * progmodes/tcl.el (tcl-indent-level, tcl-continued-indent-level):
4599 Add safe-local-variable property.
4600
4601 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
4602
4603 * image-mode.el (image-toggle-display): Use image-refresh.
4604
4605 2007-08-07 Riccardo Murri <riccardo.murri@gmail.com>
4606
4607 * vc-bzr.el: Remove comments about vc-bzr.el being a modified
4608 unofficial version.
4609 (vc-bzr-command): Remove redundant setting of process-connection-type.
4610 (vc-bzr-admin-checkout-format-file): Add autoload.
4611 (vc-bzr-root-dir): Remove in favor of vc-bzr-root.
4612 (vc-bzr-root): Switch to implementation of vc-bzr-root-dir.
4613 (vc-bzr-registered): Compare dirstate format tag with known good
4614 value, abort parsing if match fails. Warn user in docstring.
4615 (vc-bzr-workfile-version): Case for different Bzr branch formats.
4616 See bzrlib/branch.py in Bzr sources.
4617 (vc-bzr-diff): First argument FILES may be a string rather than a list.
4618 (vc-bzr-shell-command): Remove in favor of
4619 vc-bzr-command-discarding-stderr.
4620 (vc-bzr-command-discarding-stderr): New function.
4621
4622 2007-08-06 Riccardo Murri <riccardo.murri@gmail.com>
4623
4624 * vc-bzr.el (vc-bzr-registered): Gracefully handle missing "bzr"
4625 program, and return nil.
4626 (vc-bzr-state): Gracefully handle missing "bzr" program, and return nil.
4627 (vc-bzr-state): Look for path names relative to the repository
4628 root after status keyword.
4629 (vc-bzr-file-name-relative): New function.
4630 (vc-bzr-admin-dirname): Reinstate, as other vc-bzr-admin-... paths
4631 depend on it.
4632 (vc-bzr-admin-dirname, ...-checkout-format-file)
4633 (...-branch-format-file, ...-revhistory): Paths to some Bzr internal
4634 files that we now parse directly for speed.
4635 (vc-bzr-root-dir): Use `vc-bzr-admin-checkout-format-file' as witness.
4636 (vc-bzr-registered): Only parse vc-bzr-admin-dirstate file if it exists.
4637 (vc-bzr-state): "bzr status" successful only if exitcode is 0.
4638 (vc-bzr-root): Use `vc-bzr-shell-command'. Stderr may contain
4639 Bzr warnings, so we must discard it.
4640 (vc-bzr-workfile-version): Speedup counting lines from
4641 `vc-bzr-admin-revhistory' file, but fallback to spawning "bzr revno"
4642 if that file doesn't exist.
4643 (vc-bzr-responsible-p): Use `vc-bzr-root' instead of
4644 `vc-bzr-root-dir' for speed. Add `vc-bzr-admin-dirname' (not ".bzr"!)
4645 to `vc-directory-exclusion-list'.
4646 (vc-bzr-shell-command): New function.
4647
4648 2007-08-06 Tom Tromey <tromey@redhat.com>
4649
4650 * diff-mode.el (diff-unified->context, diff-reverse-direction)
4651 (diff-fixup-modifs): Typo in docstring.
4652
4653 2007-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4654
4655 * emulation/tpu-edt.el (tpu-current-line): Use posn-at-point and
4656 count-screen-lines.
4657 (tpu-edt-off): Disable relevant pieces of advice.
4658
4659 * emulation/tpu-extras.el (tpu-before-save-hook): Rename from
4660 tpu-write-file-hook. Activate it with add-hook on buffer-save-hook.
4661 (newline, newline-and-indent, do-auto-fill): Use advice instead of
4662 redefining the function.
4663 (tpu-set-scroll-margins): Activate the pieces of advice.
4664
4665 2007-08-06 Martin Rudalics <rudalics@gmx.at>
4666
4667 * help.el (resize-temp-buffer-window): Use window-full-width-p
4668 instead of comparing frame-width and window-width.
4669
4670 2007-08-13 Stephen Leake <stephen_leake@stephe-leake.org>
4671
4672 * pcvs-parse.el (cvs-parse-table): Handle additional instance of
4673 optional quotes around files in NEED-UPDATE . REMOVED case.
4674
4675 * progmodes/ada-xref.el (ada-gnatls-args): Fix docstring.
4676 (ada-treat-cmd-string): Improve error message.
4677 (ada-do-file-completion): Call `ada-require-project-file', so
4678 project variables are set properly.
4679 (ada-prj-find-prj-file): Delete Emacs 20.2 support.
4680 (ada-gnatfind-buffer-name): New constant.
4681 (ada-find-any-references): Use new constant. Set buffer name
4682 properly in compilation-start. Toggle read-only properly.
4683 (ada-find-in-src-path): Fix spelling error in docstring.
4684
4685 * progmodes/vhdl-mode.el (vhdl-update-progress-info): Avoid divide
4686 by zero error.
4687
4688 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
4689
4690 * emacs-lisp/autoload.el (autoload-print-form): Use print-quoted.
4691
4692 2007-08-12 Richard Stallman <rms@gnu.org>
4693
4694 * progmodes/sh-script.el (sh): Delete group `unix'.
4695
4696 * progmodes/gud.el (gud): Change to group `processes'.
4697
4698 2007-08-11 Glenn Morris <rgm@gnu.org>
4699
4700 * progmodes/compile.el (compilation-buffer-name): Don't check
4701 compilation-arguments. It is superfluous, and the variable isn't
4702 even set when this function is called.
4703
4704 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4705
4706 * term/mac-win.el (mac-ae-reopen-application): New function.
4707 (mac-apple-event-map): Bind "reopen application" Apple event to it.
4708
4709 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4710
4711 * textmodes/tex-mode.el (tex-font-lock-unfontify-region): Fix to
4712 take tex-font-script-display into account.
4713 (tex-font-script-display, tex-font-lock-suscript): Change from a cons
4714 cell to a list of 2 elements to simplify the unfontify code.
4715
4716 2007-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4717
4718 * ps-print.el (ps-default-fg, ps-default-bg): Docstring fix.
4719 (ps-begin-job): Use ps-default-fg and ps-default-bg only when
4720 ps-print-color-p is neither nil nor black-white. Reported by Christian
4721 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
4722
4723 2007-08-08 Andreas Schwab <schwab@suse.de>
4724
4725 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook): Check for
4726 self-insert-command, not self-insert.
4727
4728 2007-08-08 Glenn Morris <rgm@gnu.org>
4729
4730 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Make second
4731 argument optional, for backwards compatibility, and only highlight
4732 args when present. Fix symbol name typo (doc/args).
4733
4734 * help-mode.el (help-make-xrefs): Search for symbol constituents,
4735 rather than just `-'.
4736
4737 2007-08-07 Jay Belanger <jay.p.belanger@gmail.com>
4738
4739 * calc/calc-units.el (calc-convert-temperature):
4740 Use `/' to create fractions.
4741
4742 2007-08-07 Michael Albinus <michael.albinus@gmx.de>
4743
4744 * net/tramp.el (tramp-wrong-passwd-regexp): Make the regexp more
4745 global matching.
4746 (tramp-handle-shell-command): Handle OUTPUT-BUFFER and
4747 ERROR-BUFFER more robust. Display output.
4748 (tramp-file-name-handler): Add a connection property when we found
4749 a foreign file name handler. This allows backends like ftp to
4750 profit also from usr/host name completion based on connection
4751 cache.
4752 (tramp-send-command-and-read): Search for trash after the regexp
4753 until eol only. In XEmacs, there is a problem with \n.
4754
4755 * net/tramp-cache.el (top): Read persistent connection history
4756 when cache is empty.
4757
4758 2007-08-07 Nic Ferrier <nferrier@tapsellferrier.co.uk> (tiny change)
4759
4760 * net/tramp.el (tramp-handle-process-file): Fix bug inserting
4761 resulting output.
4762
4763 2007-08-07 Sam Steingold <sds@gnu.org>
4764
4765 * progmodes/compile.el (compilation-start): Pass nil as startfile
4766 to comint-exec.
4767
4768 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
4769
4770 * longlines.el (longlines-decoded): New variable.
4771 (longlines-mode): Avoid encoding or decoding the buffer twice.
4772
4773 2007-08-07 Martin Rudalics <rudalics@gmx.at>
4774
4775 * format.el (format-insert-file): Make sure that at most one undo
4776 entry is recorded for the insertion. Inhibit point-motion and
4777 modification hooks around call to insert-file-contents.
4778
4779 2007-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
4780
4781 * vc.el (vc-annotate): Select temp-buffer before running vc-exec-after.
4782 Select the buffer's window before moving point.
4783
4784 2007-08-07 Richard Stallman <rms@gnu.org>
4785
4786 * term.el (term): Remove parent group `unix'.
4787
4788 * simple.el (default-indent-new-line): New function.
4789 It calls comment-line-break-function if there are comments.
4790 (do-auto-fill): Use that.
4791
4792 2007-08-07 Sean O'Rourke <sorourke@cs.ucsd.edu>
4793
4794 * complete.el (PC-lisp-complete-symbol): Complete symbol around point.
4795 (PC-do-completion): Add "acronym completion" for symbols and
4796 filenames, so e.g. "mvbl" expands to "make-variable-buffer-local".
4797
4798 2007-08-06 Sam Steingold <sds@gnu.org>
4799
4800 * mouse.el (mouse-buffer-menu): Pass mode-name through
4801 format-mode-line because it may be a list,
4802 e.g., (sgml-xml-mode "XML" "SGML"), and not a string.
4803
4804 2007-08-06 Vinicius Jose Latorre <viniciusig@ig.com.br>
4805
4806 * printing.el (pr-update-menus): Docstring fix.
4807
4808 2007-08-06 Jason Rumney <jasonr@gnu.org>
4809
4810 * menu-bar.el (menu-bar-vc-filter): Use vc-call-backend.
4811
4812 * vc-hooks.el (vc-call): Add doc string.
4813
4814 2007-08-06 Michael Albinus <michael.albinus@gmx.de>
4815
4816 * net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
4817 process-filter.
4818
4819 2007-08-06 Kenichi Handa <handa@m17n.org>
4820
4821 * international/quail.el: Wrap (require 'help-mode) by
4822 eval-when-compile.
4823 (quail-help-init): New function.
4824 (quail-help): Call quail-help-init.
4825 (quail-store-decode-map-key): Change it to a function.
4826
4827 2007-08-05 Jason Rumney <jasonr@gnu.org>
4828
4829 * vc.el (vc-rollback): Add norevert argument back.
4830 (vc-revert-buffer): Add back as obsolete alias.
4831
4832 2007-08-05 Peter Povinec <ppovinec@yahoo.com> (tiny change)
4833
4834 * term.el: Honor term-default-fg-color and term-default-bg-color
4835 settings when modifying term-current-face.
4836 (term-default-fg-color, term-default-bg-color): Initialize from
4837 default term-current-face.
4838 (term-mode, term-reset-terminal): Set term-current-face with
4839 term-default-fg-color and term-default-bg-color.
4840 (term-handle-colors-array): term-current-face has term-default-fg-color
4841 and term-default-bg-color after reset escape sequence.
4842 (term-handle-colors-array): Set term-current-color with
4843 term-default-fg/bg-color instead of ansi-term-color-vector when the
4844 index (term-ansi-current-color or term-ansi-current-bg-color) is zero.
4845
4846 2007-08-05 Jay Belanger <jay.p.belanger@gmail.com>
4847
4848 * calc/calc-nlfit.el (math-nlfit-curve): Remove unnecessary variables.
4849 (math-nlfit-givens): Let bind free variables.
4850
4851 2007-08-05 Vinicius Jose Latorre <viniciusig@ig.com.br>
4852
4853 * printing.el: Require lpr and ps-print when loading printing package.
4854 Reported by Glenn Morris <rgm@gnu.org>.
4855
4856 2007-08-05 Michael Albinus <michael.albinus@gmx.de>
4857
4858 * files.el (set-auto-mode): Handle also remote files wrt
4859 `auto-mode-alist'.
4860
4861 2007-08-04 Jay Belanger <jay.p.belanger@gmail.com>
4862
4863 * calc/calcalg3.el (calc-curve-fit): Add support for nonlinear
4864 curves and plotting.
4865
4866 * calc/calc-nlfit.el: New file.
4867
4868 2007-08-04 Glenn Morris <rgm@gnu.org>
4869
4870 * autorevert.el (auto-revert-tail-mode): auto-revert-tail-pos is
4871 zero, not nil, when the library is first loaded. Check for a file
4872 that has been modified on disk.
4873
4874 * progmodes/cperl-mode.el (cperl-compilation-error-regexp-alist):
4875 Remove duplicate defvar preventing initialization.
4876 (cperl-mode): Fix compilation-error-regexp-alist-alist setting.
4877
4878 2007-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
4879
4880 * diff-mode.el (diff-font-lock-keywords): Fix up false positives.
4881 (diff-beginning-of-file): Adjust to the fact that diff-file-header-re
4882 may match up to 4 lines.
4883 (diff-beginning-of-file-and-junk): Rewrite.
4884
4885 2007-08-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4886
4887 * printing.el: Evaluate require only during compilation.
4888 (pr-version): New version 6.9.1.
4889 (deactivate-mark): Replace (defvar VAR nil) by (defvar VAR).
4890 (pr-global-menubar): Fix code.
4891
4892 2007-08-03 Dan Nicolaescu <dann@ics.uci.edu>
4893
4894 * term.el (term-erase-in-display): Fix case when point is not at
4895 the beginning of the line.
4896
4897 2007-08-03 Jay Belanger <jay.p.belanger@gmail.com>
4898
4899 * calc/calc-ext.el (math-get-value, math-get-sdev)
4900 (math-contains-sdev): New functions.
4901
4902 * calc/calc-graph.el (calc-graph-format-data)
4903 (calc-graph-add-curve): Check for error forms.
4904 (calc-graph-set-styles): Add option for error forms.
4905
4906 2007-08-03 Miles Bader <miles@gnu.org>
4907
4908 * vc-hooks.el (vc-handled-backends): Change capitalization of VC
4909 backend names for new backends to `Git', `Hg', and `Bzr'.
4910 * vc-hg.el (vc-hg-dired-state-info): Use `Hg' as VC backend name,
4911 not `HG'.
4912 * vc-git.el (vc-git-dired-state-info): Use `Git' as VC backend
4913 name, not `GIT'.
4914 * vc-bzr.el (vc-bzr-dir-state, vc-bzr-dired-state-info)
4915 (vc-bzr-unload-hook): Use `Bzr' as VC backend name, not `BZR'.
4916
4917 2007-08-03 Richard Stallman <rms@gnu.org>
4918
4919 * mail/rmailsum.el (rmail-make-summary-line): Find end of msg number
4920 to update deleted flag.
4921
4922 * cus-edit.el (customize-apropos, customize-apropos-options)
4923 (customize-apropos-faces, customize-apropos-groups): Improve prompt.
4924
4925 * menu-bar.el (menu-bar-help-menu): Add "About GNU" menu item.
4926
4927 * startup.el (fancy-splash-head, startup-echo-area-message):
4928 Change message text.
4929
4930 * emulation/tpu-edt.el (next-line-internal): Setting deleted.
4931 All callers use line-move.
4932
4933 * progmodes/compile.el (compilation-find-buffer): Return current
4934 buffer immediately if suitable.
4935 (compile, compilation-buffer-name, compilation-start): Doc fixes.
4936
4937 2007-08-03 Daiki Ueno <ueno@unixuser.org>
4938
4939 * faces.el (face-normalize-spec): New function.
4940 (frame-set-background-mode): Normalize face-spec before calling
4941 face-spec-match-p.
4942
4943 2007-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
4944
4945 * server.el (server-window): Add switch-to-buffer-other-frame option.
4946
4947 2007-08-03 Glenn Morris <rgm@gnu.org>
4948
4949 * cus-edit.el (customize-apropos): Make the error message indicate
4950 what kind of thing the user was trying to customize.
4951
4952 * net/telnet.el (telnet-mode): Set comint-use-prompt-regexp to t.
4953
4954 * progmodes/fortran.el (fortran-font-lock-syntactic-keywords):
4955 Fix off-by-one error in previous change.
4956
4957 2007-08-03 Drew Adams <drew.adams@oracle.com>
4958
4959 * emacs-lisp/pp.el (pp-eval-expression): Add progress message.
4960 Make buffer writable.
4961
4962 2007-08-01 Jay Belanger <jay.p.belanger@gmail.com>
4963
4964 * calc/calc-math.el (math-sqrt-raw, math-sin-raw-2)
4965 (math-cos-raw-2, math-arctan-raw, math-ln-raw):
4966 Use native Emacs functions, when appropriate.
4967
4968 2007-08-01 Dan Nicolaescu <dann@ics.uci.edu>
4969 Stefan Monnier <monnier@iro.umontreal.ca>
4970
4971 * vc.el: Document new VC operation `extra-menu'.
4972
4973 * vc-hooks.el (vc-default-extra-menu): New function.
4974
4975 * menu-bar.el (menu-bar-vc-filter): New function.
4976 (menu-bar-tools-menu): Use it as a filter.
4977
4978 2007-08-01 Eric Hanchrow <offby1@blarg.net> (tiny change)
4979
4980 * ibuf-ext.el (ibuffer-mark-old-buffers): Docstring fix.
4981
4982 2007-08-01 Glenn Morris <rgm@gnu.org>
4983
4984 * progmodes/fortran.el: Remove leading `*' from all defcustom doc
4985 strings.
4986 (fortran-tab-mode-default): Remove needless autoload.
4987 (fortran-tab-mode-string): Add help-echo and mouse properties, and
4988 mark as risky.
4989 (fortran-line-length): New buffer-local variable, safe if integer.
4990 (fortran-if-start-re, fortran-end-prog-re1, fortran-end-prog-re):
4991 Change from variables to constants.
4992 (fortran-font-lock-syntactic-keywords): Delete as a variable,
4993 replace with a new function definition.
4994 (fortran-mode): Use fortran-line-length, and
4995 fortran-font-lock-syntactic-keywords as a function. Add a
4996 hack-local-variables-hook function.
4997 (fortran-line-length, fortran-hack-local-variables): New functions.
4998 (fortran-window-create, fortran-strip-sequence-nos): Doc fix.
4999 Use fortran-line-length rather than 72.
5000 (fortran-window-create-momentarily): Doc fix.
5001
5002 2007-07-31 Drew Adams <drew.adams@oracle.com> (tiny change)
5003
5004 * cus-edit.el (custom-group-value-create, custom-goto-parent):
5005 Fix parent groups link.
5006
5007 2007-07-31 Paul Pogonyshev <pogonyshev@gmx.net>
5008
5009 * progmodes/python.el (python-current-defun): Adjust to never fall
5010 into infinite loop.
5011
5012 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
5013
5014 * pcvs.el (cvs-vc-command-advice): Handle the new fileset case.
5015
5016 2007-07-29 Kimit Yada <kimitto@gmail.com> (tiny change)
5017
5018 * emacs-lisp/copyright.el (copyright-update-year, copyright-update)
5019 (copyright-fix-years, copyright): Correctly handle the case where
5020 copyright-limit is nil.
5021
5022 2007-07-28 Konstantin Novitsky <knovitsk@Bear.com> (tiny change)
5023
5024 * progmodes/python.el (run-python): Fix path separator under w32.
5025
5026 2007-07-30 Richard Stallman <rms@gnu.org>
5027
5028 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
5029 Treat non-break space as whitespace in Lisp.
5030
5031 2007-07-30 Stefan Monnier <monnier@iro.umontreal.ca>
5032
5033 * vc.el (vc-dired-hook): Use inhibit-read-only.
5034
5035 * progmodes/compile.el (compilation-forget-errors):
5036 Reset compilation-auto-jump-to-next.
5037
5038 2007-07-30 Michael Olson <mwolson@gnu.org>
5039
5040 * cus-edit.el (custom-group-save): Fix void function definition
5041 error. Thanks to Zhang Wei for the report.
5042
5043 * ps-print.el: Check in trivial changes to the autoloads section
5044 caused by the build process. These autoloads really ought to be
5045 placed in a separate file, methinks.
5046
5047 2007-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
5048
5049 * calendar/calendar.el (calendar-mode): Make sure
5050 displayed-(month|year) are set.
5051 (calendar-basic-setup): Display buffer before adjusting window sizes.
5052 (generate-calendar-window): Use inhibit-read-only. Simplify.
5053 Generate buffer and set displayed-month and displayed-year before
5054 calling update-calendar-mode-line.
5055
5056 2007-07-29 Michael Albinus <michael.albinus@gmx.de>
5057
5058 * net/tramp.el:
5059 * net/tramp-uu.el:
5060 * net/trampver.el: Use utf-8 encoding with coding cookie.
5061
5062 * net/tramp-cache.el:
5063 * net/tramp-fish.el:
5064 * net/tramp-ftp.el:
5065 * net/tramp-gw.el:
5066 * net/tramp-smb.el: Remove coding cookie.
5067
5068 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
5069 Flush buffer file-name's file property.
5070 (tramp-handle-file-remote-p): The first parameter is FILENAME.
5071
5072 * net/trampver.el: Update release number.
5073
5074 2007-07-29 Juri Linkov <juri@jurta.org>
5075
5076 * dired.el (dired-mode-map): Bind C-x C-q to dired-toggle-read-only.
5077 Filter out menu item "Edit File Names" `wdired-change-to-wdired-mode'
5078 when major-mode is not dired-mode.
5079 (dired-toggle-read-only): New function.
5080 (dired-recursive-deletes): Remove obsolete comments about old
5081 default value.
5082 (dired-do-flagged-delete, dired-do-delete): Refill docstring.
5083
5084 * wdired.el (wdired-exit): New function.
5085 (wdired-mode-map): Bind C-x C-q to wdired-exit.
5086
5087 2007-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
5088
5089 * cus-edit.el (customize-read-group): New fun.
5090 (customize-group-other-window, customize-face-other-window):
5091 Prompt before delegating to customize-(group|face).
5092 Bind pop-up-windows rather than use the other-window argument.
5093 (customize-group, customize-face): Prompt from the interactive spec.
5094 Remove args `prompt-for-group' and `other-window'.
5095
5096 * emacs-lisp/advice.el (ad-interactive-form): Re-introduce.
5097 (ad-body-forms, ad-advised-interactive-form): Revert this part of
5098 last change.
5099
5100 2007-07-28 Masatake YAMATO <jet@gyve.org>
5101
5102 * vc.el (vc-dired-mode): Add a menu for VC related operation.
5103 Use backend name as the menu label. Suggested by David Kastrup.
5104
5105 2007-07-28 Alan Mackenzie <acm@muc.de>
5106
5107 Fix problem with modes derived from CC Mode:
5108 * progmodes/cc-mode.el (c-make-emacs-variables-local): Move this
5109 macro to cc-langs.
5110 (c-init-language-vars-for): Remove call to above macro.
5111 * progmodes/cc-langs.el (c-make-emacs-variables-local): Macro has
5112 been moved to here.
5113 (c-make-init-lang-vars-fun): Call c-make-emacs-variables-local.
5114
5115 2007-07-28 Eli Zaretskii <eliz@gnu.org>
5116
5117 * net/trampver.el: Fix the `coding' cookie.
5118
5119 2007-07-28 Dan Nicolaescu <dann@ics.uci.edu>
5120
5121 * vc-git.el (vc-git-print-log): Support both the old single file
5122 interface and the new one.
5123
5124 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
5125
5126 * bindings.el (mode-line-remote): Use updated %@ construct.
5127
5128 2007-07-27 Stefan Monnier <monnier@iro.umontreal.ca>
5129
5130 * calendar/cal-bahai.el (calendar-bahai-month-name-array)
5131 (calendar-bahai-epoch, calendar-bahai-leap-year-p)
5132 (calendar-bahai-leap-base, calendar-bahai-prompt-for-date)
5133 (diary-list-bahai-entries, diary-bahai-mark-entries)
5134 (calendar-bahai-mark-date-pattern, diary-insert-bahai-entry)
5135 (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
5136 New names to clean up namespace.
5137 (list-bahai-diary-entries, mark-bahai-diary-entries)
5138 (insert-bahai-diary-entry, insert-monthly-bahai-diary-entry)
5139 (insert-yearly-bahai-diary-entry, mark-bahai-calendar-date-pattern):
5140 Add compatibility aliases.
5141
5142 * calendar/appt.el: Don't wrap defvar within eval-when-compile.
5143
5144 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right)
5145 (calendar-scroll-left-three-months)
5146 (calendar-scroll-right-three-months): Clean up namespace.
5147 (scroll-calendar-left, scroll-calendar-right)
5148 (scroll-calendar-left-three-months)
5149 (scroll-calendar-right-three-months): Add compatibility aliases.
5150
5151 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
5152 Behave like mouse-scroll-calendar-* when used from the mouse.
5153
5154 * calendar/cal-menu.el (cal-menu-scroll-menu)
5155 (cal-menu-global-mouse-menu):
5156 * calendar/calendar.el (calendar-mode-map):
5157 Use new calendar-scroll-* names.
5158 (mouse-scroll-calendar-left, mouse-scroll-calendar-right):
5159 Remove. Use calendar-scroll-* directly instead.
5160
5161 2007-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
5162
5163 * emacs-lisp/advice.el (ad-interactive-p, ad-interactive-form): Remove.
5164 (ad-body-forms, ad-advised-interactive-form, ad-make-cache-id)
5165 (ad-make-advised-definition, ad-cache-id-verification-code):
5166 Use commandp and interactive-form instead.
5167
5168 2007-07-26 Dan Nicolaescu <dann@ics.uci.edu>
5169
5170 * vc-git.el: Relicense to GPLv3 or later.
5171 (vc-directory-exclusion-list, vc-handled-backends): Remove.
5172
5173 * vc-hooks.el (vc-handled-backends): Add GIT.
5174
5175 * vc.el (vc-directory-exclusion-list): Add .git.
5176
5177 2007-07-26 Alexandre Julliard <julliard@winehq.org>
5178
5179 * vc-git.el (vc-git-revision-table)
5180 (vc-git-revision-completion-table): New functions.
5181
5182 2007-07-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5183
5184 * progmodes/ebnf-abn.el (ebnf-abn-skip-comment):
5185 * progmodes/ebnf-bnf.el (ebnf-bnf-skip-comment):
5186 * progmodes/ebnf-dtd.el (ebnf-dtd-skip-comment):
5187 * progmodes/ebnf-ebx.el (ebnf-ebx-skip-comment):
5188 * progmodes/ebnf-iso.el (ebnf-iso-skip-comment):
5189 * progmodes/ebnf-yac.el (ebnf-yac-skip-comment): New version.
5190 New command actions for EPS header and EPS footer.
5191
5192 * progmodes/ebnf2ps.el: New command actions for EPS header and EPS
5193 footer. Fix some problems with one-or-more, zero-or-more and
5194 alternative constructions generation. Some log messages
5195 implementation. Doc fix.
5196 (ebnf-version): New version 4.4.
5197 (ebnf-eps-header-font, ebnf-eps-header, ebnf-eps-footer-font)
5198 (ebnf-eps-footer, ebnf-log): New options.
5199 (ebnf-find-style, ebnf-eps-header-footer, ebnf-eps-header)
5200 (ebnf-eps-footer, ebnf-eps-string, ebnf-eps-header-footer-comment)
5201 (ebnf-eps-header-footer-p, ebnf-eps-header-comment)
5202 (ebnf-eps-footer-comment, ebnf-eps-header-footer-file)
5203 (ebnf-eps-header-footer-set, ebnf-log-header, ebnf-log): New funs.
5204 (ebnf-style-custom-list, ebnf-style-database): Put new values.
5205 (ebnf-print-directory, ebnf-print-file, ebnf-print-buffer)
5206 (ebnf-print-region, ebnf-spool-directory, ebnf-spool-file)
5207 (ebnf-spool-buffer, ebnf-spool-region, ebnf-eps-directory)
5208 (ebnf-eps-file, ebnf-eps-buffer, ebnf-eps-region)
5209 (ebnf-syntax-directory, ebnf-syntax-file, ebnf-syntax-buffer)
5210 (ebnf-syntax-region, ebnf-parse-and-sort, ebnf-begin-job)
5211 (ebnf-dimensions, ebnf-production-dimension, ebnf-terminal-dimension)
5212 (ebnf-non-terminal-dimension, ebnf-special-dimension)
5213 (ebnf-terminal-dimension1, ebnf-repeat-dimension)
5214 (ebnf-except-dimension, ebnf-alternative-dimension)
5215 (ebnf-optional-dimension, ebnf-one-or-more-dimension)
5216 (ebnf-zero-or-more-dimension, ebnf-sequence-dimension): Insert log
5217 message fun.
5218 (ebnf-setup, ebnf-generate-one-or-more, ebnf-generate-zero-or-more)
5219 (ebnf-begin-job, ebnf-begin-file, ebnf-eps-finish-and-write)
5220 (ebnf-insert-ebnf-prologue, ebnf-production-dimension)
5221 (ebnf-terminal-dimension1, ebnf-alternative-dimension)
5222 (ebnf-one-or-more-dimension, ebnf-zero-or-more-dimension)
5223 (ebnf-eps-add-context, ebnf-eps-add-production): Fix code.
5224 (ebnf-eps-filename, ebnf-trim-right): Replace `?\s' by `?\ ' to keep
5225 compatibility with Emacs 20 & 21.
5226 (ebnf-eps-header-comment, ebnf-eps-footer-comment)
5227 (ebnf-eps-file-alist, ebnf-basic-width-extra)
5228 (ebnf-basic-empty-height): New vars.
5229 (ebnf-prologue): Fix PostScript code.
5230 (ebnf-make-empty, ebnf-make-terminal1, ebnf-make-or-more1)
5231 (ebnf-make-production, ebnf-make-alternative, ebnf-make-optional)
5232 (ebnf-make-except, ebnf-make-repeat, ebnf-make-sequence)
5233 (ebnf-make-dup-sequence, ebnf-token-alternative): Add comments.
5234
5235 2007-07-25 Glenn Morris <rgm@gnu.org>
5236
5237 * Relicense all FSF files to GPLv3 or later.
5238
5239 * COPYING: Switch to GPLv3.
5240
5241 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
5242
5243 * pcvs.el (cvs-temp-buffer): Undo last ill-conceived change.
5244 Replace it with another one which disables undo before calling
5245 erase-buffer and then turns it back on if needed.
5246
5247 2007-07-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5248
5249 * ps-print.el: Problem with foreground and background color when
5250 printing a buffer with and without faces. Reported by Christian
5251 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
5252 (ps-print-version): New version 6.7.5.
5253 (ps-default-fg): Change default value to nil, so black color is used
5254 when a face does not specify a foreground color.
5255 (ps-default-bg): Change default value to nil, so white color is used
5256 for background color.
5257 (ps-begin-job): Fix code.
5258
5259 2007-07-24 Dan Nicolaescu <dann@ics.uci.edu>
5260
5261 * vc-hg.el (vc-hg-revision-completion-table): Temporarily comment out.
5262
5263 2007-07-24 Glenn Morris <rgm@gnu.org>
5264
5265 * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
5266 (cal-tex-rules, cal-tex-buffer, cal-tex-24)
5267 (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
5268 (cal-tex-cursor-week, cal-tex-cursor-week2)
5269 (cal-tex-cursor-week-iso, cal-tex-week-hours)
5270 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
5271 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
5272 (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
5273
5274 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
5275
5276 * calendar/calendar.el (calendar-mode-map): Move initialization
5277 into declaration. Add menu bindings (used to be done in cal-menu).
5278 (calendar-mode): Don't add an activate-menubar-hook.
5279
5280 * calendar/cal-menu.el: Break dependency on calendar.el (i.e. do not
5281 modify calendar-mode-map), use easy-menu, and make sure that C-h k
5282 can be used on the menu entries.
5283 (cal-menu-holiday-window-suffix, cal-menu-set-date-title): New funs.
5284 (cal-menu-moon-menu, cal-menu-diary-menu, cal-menu-holidays-menu)
5285 (cal-menu-goto-menu, cal-menu-scroll-menu): New consts.
5286 (cal-menu-context-mouse-menu, cal-menu-global-mouse-menu): New menus.
5287 (calendar-flatten, cal-menu-update): Remove.
5288 (calendar-mouse-insert-hebrew-diary-entry)
5289 (calendar-mouse-insert-islamic-diary-entry)
5290 (calendar-mouse-insert-bahai-diary-entry):
5291 Remove (fold into cal-menu-diary-menu).
5292 (calendar-mouse-2-date-menu, calendar-mouse-cal-tex-menu)
5293 (cal-tex-mouse-filofax): Remove (fold into cal-menu-context-mouse-menu).
5294 (calendar-mouse-3-map): Remove (turn into cal-menu-global-mouse-menu).
5295 (calendar-mouse-view-diary-entries): Minor simplifications.
5296 (calendar-event-to-date): Use with-current-buffer.
5297
5298 2007-07-25 Nick Roberts <nickrob@snap.net.nz>
5299
5300 * add-log.el (change-log-redate): Remove (not needed anymore and
5301 doesn't appear to work).
5302
5303 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
5304
5305 * frame.el: Use mapc and dolist instead of mapcar where possible.
5306 (close-display-connection): New command.
5307
5308 2007-07-25 Alexandre Julliard <julliard@winehq.org>
5309
5310 * vc-git.el (vc-git-log-view-mode): Port to the multi-file vc interface.
5311 (vc-git-create-snapshot, vc-git-retrieve-snapshot): New functions.
5312
5313 2007-07-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5314
5315 * ps-print.el (ps-multibyte-buffer): Docstring fix.
5316
5317 * ps-mule.el: Doc fix.
5318 (ps-multibyte-buffer, ps-mule-font-info-database-default)
5319 (ps-mule-external-libraries, ps-mule-begin-job): Docstring fix.
5320
5321 2007-07-25 Glenn Morris <rgm@gnu.org>
5322
5323 * calendar/cal-tex.el (cal-tex-which-days, cal-tex-holidays)
5324 (cal-tex-diary, cal-tex-daily-string, cal-tex-daily-start)
5325 (cal-tex-daily-end, cal-tex-hook)
5326 (cal-tex-cal-one-month, cal-tex-cal-multi-month)
5327 (cal-tex-year, cal-tex-cursor-week, cal-tex-cursor-week2)
5328 (cal-tex-cursor-week-iso, cal-tex-week-hours)
5329 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
5330 (cal-tex-cursor-day, cal-tex-insert-preamble): Doc fix.
5331 (cal-tex-day-prefix, cal-tex-day-name-format)
5332 (cal-tex-cal-one-month, cal-tex-cal-multi-month, cal-tex-myday)
5333 (cal-tex-caldate, cal-tex-LaTeX-hourbox)
5334 (cal-tex-LaTeX-subst-list): Change from variables to constants.
5335 (cal-tex-preamble, cal-tex-arg, cal-tex-nl): Simplify with `format'.
5336 (cal-tex-cursor-filofax-year, cal-tex-weekly4-box): Use \textbf,
5337 etc, rather than \bf.
5338 (cal-tex-mini-calendar): Fix typos in previous change.
5339 (cal-tex-latexify-list): Remove inner let binding.
5340 (cal-tex-end-document, cal-tex-banner): Use multi-line
5341 cal-tex-comment.
5342 (cal-tex-comment): Handle embedded newlines.
5343 (cal-tex-LaTeXify-string): Use substring-no-properties.
5344
5345 2007-07-25 Joakim Verona <joakim@verona.se> (tiny change)
5346
5347 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5348 Add support for the Maden build tool.
5349
5350 2007-07-25 William Xu <william.xwl@gmail.com> (tiny change)
5351
5352 * net/webjump.el (webjump-url-encode): Fix for non-ASCII characters.
5353
5354 2007-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
5355
5356 * pcvs.el (cvs-temp-buffer): Disable undo in temp buffers.
5357
5358 2007-07-24 Dan Nicolaescu <dann@ics.uci.edu>
5359
5360 * dired.el (dired-mode-map): Bind wdired-change-to-wdired-mode to
5361 C-x C-q.
5362
5363 * vc-git.el (vc-git-print-log): Fix previous change.
5364
5365 2007-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
5366
5367 * window.el (save-selected-window): Minor optimization.
5368 (bw-adjust-window): If operation failed, try with a smaller delta.
5369 (window-fixed-size-p): New function.
5370 (window-area-factor): New var.
5371 (balance-windows-area): New command.
5372
5373 * ps-mule.el (ps-multibyte-buffer): Docstring fixes.
5374 (ps-mule-encode-ethiopic): Make it clear that it's always defined.
5375 (ps-mule-prepare-font-for-components, ps-mule-encode-header-string)
5376 (ps-mule-encode-bit, ps-mule-encode-ucs2): Use dotimes.
5377 (ps-mule-begin-job): Use dolist.
5378
5379 2007-07-24 Michael Albinus <michael.albinus@gmx.de>
5380
5381 * subr.el (start-file-process-shell-command)
5382 (process-file-shell-command): New defuns.
5383
5384 * progmodes/compile.el (compilation-start):
5385 Apply `start-file-process-shell-command'.
5386
5387 2007-07-24 Alexandre Julliard <julliard@winehq.org>
5388
5389 * vc-git.el (vc-git-checkout, vc-directory-exclusion-list): Fix typos.
5390
5391 2007-07-24 Alan Mackenzie <acm@muc.de>
5392
5393 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
5394 Initialise byte-compile-unresolved-functions before rather than
5395 after a compilation.
5396 (byte-compile-unresolved-functions): Amplify doc string.
5397
5398 2007-07-24 Glenn Morris <rgm@gnu.org>
5399
5400 * startup.el (normal-splash-screen): Use `emacs-copyright'.
5401
5402 * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
5403 (cal-tex-rules, cal-tex-buffer, cal-tex-24)
5404 (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
5405 (cal-tex-cursor-week, cal-tex-cursor-week2)
5406 (cal-tex-cursor-week-iso, cal-tex-week-hours)
5407 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
5408 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
5409 (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
5410
5411 * calendar/cal-tex.el: Remove leading `*' from defcustom docs.
5412 (cal-tex-daily-string, cal-tex-daily-start, cal-tex-daily-end)
5413 (cal-tex-day-name-format, cal-tex-cal-one-month)
5414 (cal-tex-cal-multi-month, cal-tex-myday, cal-tex-preamble)
5415 (cal-tex-comment, cal-tex-nl, cal-tex-cmd, cal-tex-e-parbox)
5416 (cal-tex-mini-calendar, cal-tex-em): Doc fix.
5417 (cal-tex-list-holidays, cal-tex-cursor-year)
5418 (cal-tex-cursor-year-landscape, cal-tex-year)
5419 (cal-tex-cursor-filofax-year, cal-tex-cursor-month-landscape)
5420 (cal-tex-cursor-month, cal-tex-insert-days)
5421 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
5422 (cal-tex-first-blank-p, cal-tex-cursor-week)
5423 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
5424 (cal-tex-week-hours, cal-tex-cursor-week-monday)
5425 (cal-tex-weekly4-box, cal-tex-cursor-filofax-2week)
5426 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily)
5427 (cal-tex-cursor-day, cal-tex-daily-page, cal-tex-mini-calendar)
5428 (cal-tex-latexify-list, cal-tex-previous-month)
5429 (cal-tex-next-month, cal-tex-insert-preamble): General tidy-up and
5430 modernization, including using dotimes rather than
5431 calendar-for-loop.
5432 (cal-tex-LaTeX-subst-list): Remove `@'.
5433 (cal-tex-em, cal-tex-bf, cal-tex-Huge-bf, cal-tex-large-bf):
5434 Use \textit and \textbf rather than \em and \it.
5435
5436 * calendar/cal-bahai.el (list-bahai-diary-entries)
5437 * calendar/cal-hebrew.el (list-hebrew-diary-entries)
5438 * calendar/cal-islam.el (list-islamic-diary-entries)
5439 * calendar/calendar.el (generate-calendar, generate-calendar-month)
5440 * calendar/diary-lib.el (diary-list-entries)
5441 (mark-calendar-date-pattern): Use `dotimes' rather than
5442 `calendar-for-loop'.
5443
5444 * calendar/calendar.el (calendar-for-loop): Doc fix.
5445
5446 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
5447
5448 * ses.el (ses-cleanup): Prevent Emacs from spuriously checking if the
5449 underlying file is uptodate.
5450
5451 2007-07-23 Christopher J. Madsen <cjm@cjmweb.net>
5452
5453 * replace.el (perform-replace): Use isearch-no-upper-case-p.
5454
5455 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
5456
5457 * vc-hooks.el (vc-mode-line-map): New const.
5458 (vc-mode-line): Use it.
5459
5460 2007-07-23 Alexandre Julliard <julliard@winehq.org>
5461
5462 * vc-git.el (vc-git-delete-file, vc-git-rename-file)
5463 (vc-git-unregister): New functions.
5464 (vc-git-find-version): Use the result of ls-files as a parameter
5465 for cat-file.
5466
5467 2007-07-23 Michael Albinus <michael.albinus@gmx.de>
5468
5469 * net/tramp.el (tramp-perl-file-attributes)
5470 (tramp-perl-directory-files-and-attributes)
5471 (tramp-handle-file-attributes-with-stat)
5472 (tramp-handle-directory-files-and-attributes-with-stat)
5473 (tramp-convert-file-attributes): Handle huge file sizes.
5474
5475 2007-07-23 Juri Linkov <juri@jurta.org>
5476
5477 * isearch.el (isearch-message-function): New variable.
5478 (isearch-update, isearch-search): Use it.
5479
5480 * simple.el (goto-history-element): New function created from
5481 next-history-element.
5482 (next-history-element): Most code moved to goto-history-element.
5483 Call goto-history-element with (- minibuffer-history-position n).
5484 (previous-history-element): Call goto-history-element with (+
5485 minibuffer-history-position n).
5486 (minibuffer-setup-hook): Add minibuffer-history-isearch-setup.
5487 (minibuffer-history-isearch-message-overlay): New buffer-local variable.
5488 (minibuffer-history-isearch-setup, minibuffer-history-isearch-end)
5489 (minibuffer-history-isearch-search, minibuffer-history-isearch-message)
5490 (minibuffer-history-isearch-wrap, minibuffer-history-isearch-push-state)
5491 (minibuffer-history-isearch-pop-state): New functions.
5492
5493 2007-07-23 Thien-Thi Nguyen <ttn@gnuvola.org>
5494
5495 * vc-hooks.el (vc-stay-local-p): Fix bug: Avoid remove-if-not.
5496 Also, if FILE is a list, return non-nil if any of its elements
5497 should stay local. Update docstring.
5498
5499 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
5500
5501 * emacs-lisp/copyright.el (copyright-update-year): Fix 2007-05-25
5502 change by reverting a small part.
5503
5504 2007-07-23 Richard Stallman <rms@gnu.org>
5505
5506 * progmodes/octave-inf.el (inferior-octave-prompt): Accept .exe.
5507
5508 2007-07-23 Dan Nicolaescu <dann@ics.uci.edu>
5509
5510 * vc-git.el (vc-git-checkin): Delete unused parameter and the code
5511 handling it. Use vc-git-command.
5512 (vc-git-find-version, vc-git-diff-tree): New functions.
5513 (vc-git-revert): Use vc-git-command.
5514 (vc-git--run-command): Delete.
5515
5516 2007-07-23 Alexandre Julliard <julliard@winehq.org>
5517
5518 * vc-git.el (vc-git-workfile-unchanged-p): Update comment.
5519
5520 2007-07-20 Kenichi Handa <handa@m17n.org>
5521
5522 * international/utf-8.el (utf-8-post-read-conversion):
5523 Temporarily bind utf-8-compose-scripts to nil while running
5524 *-compose-region functions.
5525
5526 2007-07-23 Dan Nicolaescu <dann@ics.uci.edu>
5527
5528 * vc-git.el: Update status.
5529 (vc-directory-exclusion-list): Use eval-after-load.
5530
5531 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
5532
5533 * bindings.el (mode-line-remote): New variable.
5534 (help-echo): Add to default values of mode-line-format.
5535
5536 * files.el: Mark mode-line-remote as risky.
5537
5538 2007-07-22 Juri Linkov <juri@jurta.org>
5539
5540 * isearch.el (isearch-edit-string): Save old point and
5541 isearch-other-end to old-point and old-other-end before reading
5542 the search string from minibuffer. After exiting minibuffer set
5543 point to old-other-end if point and the search direction is the
5544 same as before reading the search string.
5545 (isearch-del-char): Don't set isearch-yank-flag to t. Put point
5546 to isearch-other-end. Instead of isearch-search-and-update call
5547 three functions isearch-search, isearch-push-state and isearch-update.
5548
5549 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
5550
5551 * vc-git.el (vc-git-register, vc-git-checkin): Use vc-git-command,
5552 deal with multiple file arguments.
5553 (vc-git-print-log): Deal with multiple file arguments.
5554
5555 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
5556
5557 * diff-mode.el (diff-refine-ignore-spaces-hunk): Rename from
5558 diff-refine-hunk. Adjust users.
5559 (diff-unified-hunk-p, diff-splittable-p): New functions.
5560 (diff-mode-menu): Use it to disable Split when it doesn't work.
5561
5562 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
5563
5564 * diff-mode.el (diff-mode-menu): New entries.
5565
5566 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
5567
5568 * diff-mode.el (diff-unified->context): Use the new `apply' undo entry
5569 if applicable, so as to save undo-log space.
5570
5571 * diff-mode.el (diff-find-file-name): Add arg `batch'.
5572
5573 * diff-mode.el (diff-beginning-of-file-and-junk): New function.
5574 (diff-file-kill): Use it.
5575 (diff-beginning-of-hunk): Add arg `try-harder' using it.
5576 (diff-restrict-view, diff-find-source-location, diff-refine-hunk):
5577 Use it so they find the hunk even when we're in the file header.
5578
5579 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
5580
5581 * vc-git.el (vc-git-revision-granularity, vc-git-root)
5582 (vc-git-command, vc-git-dir-state, vc-git-dired-state-info)
5583 (vc-git-create-repo): New functions.
5584 (vc-git-registered): New autoloaded function definition.
5585 (vc-git-registered): Use vc-git-root.
5586 (vc-git-responsible-p): New defalias.
5587 (vc-git-annotate-extract-revision-at-line): Uncomment.
5588 (vc-git-print-log): Add the file name to the log.
5589 (vc-git-log-view-mode): New derived mode.
5590 (vc-git-diff, vc-git-annotate-command): Use vc-git-command.
5591
5592 2007-07-22 Michael Albinus <michael.albinus@gmx.de>
5593
5594 * progmodes/grep.el (grep-compute-defaults): Keep default values.
5595
5596 2007-07-22 Ralf Angeli <angeli@caeruleus.net>
5597
5598 * textmodes/reftex.el (reftex-access-parse-file): Create parse
5599 file in a way that does not interfere with recentf mode.
5600 (reftex-access-parse-file): Do not risk destroying an existing
5601 buffer.
5602
5603 2007-07-22 Alexandre Julliard <julliard@winehq.org>
5604
5605 * vc-git.el: New file.
5606
5607 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
5608
5609 * textmodes/tex-mode.el (tex-font-script-display): Change default.
5610
5611 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
5612
5613 * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
5614 for branches and new files.
5615
5616 * vc-hooks.el (vc-default-mode-line-string): Move mouse-face and
5617 local-map handling ...
5618 (vc-mode-line): ... here. Improve handling of help-echo.
5619
5620 * vc.el (mode-line-string): Document help-echo usage.
5621
5622 2007-07-22 Michael Albinus <michael.albinus@gmx.de>
5623
5624 Sync with Tramp 2.1.10.
5625
5626 * net/tramp.el (tramp-get-ls-command): Fix typo.
5627
5628 * net/trampver.el: Update release number.
5629
5630 2007-07-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5631
5632 * startup.el (command-line-x-option-alist): Use x-handle-no-bitmap-icon.
5633
5634 * term/x-win.el (x-handle-no-bitmap-icon): New function.
5635
5636 2007-07-22 Martin Rudalics <rudalics@gmx.at>
5637
5638 * add-log.el (change-log-fill-parenthesized-list): New function.
5639 (change-log-indent): Call change-log-fill-parenthesized-list.
5640 (change-log-fill-paragraph): Bind fill-indent-according-to-mode to t.
5641 Have lines with leading asterisk start a paragraph.
5642
5643 2007-07-21 Jay Belanger <jay.p.belanger@gmail.com>
5644
5645 * calc/calc-math.el (math-emacs-precision)
5646 (math-largest-emacs-expt, math-smallest-emacs-expt):
5647 New variables.
5648 (math-use-emacs-fn): New function.
5649 (math-exp-raw): Evaluate with `math-use-emacs-fn', when
5650 appropriate.
5651
5652 2007-07-21 Thien-Thi Nguyen <ttn@gnuvola.org>
5653
5654 * image-dired.el (image-dired-sane-db-file): New func.
5655 (image-dired-write-tags, image-dired-remove-tag)
5656 (image-dired-list-tags, image-dired-write-comments)
5657 (image-dired-get-comment, image-dired-mark-tagged-files)
5658 (image-dired-create-gallery-lists): Call new func.
5659 Reported by Dieter Wilhelm <dieter@duenenhof-wilhelm.de>.
5660
5661 2007-07-21 Dan Nicolaescu <dann@ics.uci.edu>
5662
5663 * vc-hg.el (vc-hg-dir-state): Fix loop.
5664 (vc-hg-print-log): Fix expected return value for vc-hg-command.
5665 (vc-hg-next-version, vc-hg-delete-file, vc-hg-rename-file)
5666 (vc-hg-register, vc-hg-create-repo, vc-hg-checkin)
5667 (vc-hg-revert): Likewise.
5668 (vc-hg-revision-table, vc-hg-revision-completion-table): New
5669 functions.
5670
5671 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
5672
5673 * add-log.el (change-log-resolve-conflict): Don't lose data if the
5674 merge fails.
5675
5676 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
5677
5678 * progmodes/compile.el (compilation-auto-jump-to-first-error):
5679 Add group and version.
5680
5681 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
5682
5683 * add-log.el (add-log-file-name): Use file-relative-name.
5684 (add-change-log-entry): Delay reading
5685 add-log-(full-name|mailing-address) to after we've switched to the
5686 ChangeLog buffer so we get the right value.
5687 (add-change-log-entry, add-log-current-defun, change-log-merge):
5688 Use derived-mode-p rather than checking major-mode directly.
5689
5690 * pcvs.el (cvs-mode-add-change-log-entry-other-window): Use a directory
5691 name for buffer-file-name if it refers to a directory.
5692
5693 * vc-arch.el (vc-arch-diff): Fix last change.
5694
5695 * progmodes/compile.el (compilation-start): Remember the original
5696 directory in a buffer-local compilation-directory.
5697 (compile): Set the global value of compilation-directory.
5698 (recompile): Use compilation-directory even in the compilation buffer.
5699
5700 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
5701
5702 * vc-hg.el (vc-hg-diff): Use vc-hg-command.
5703
5704 2007-07-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5705
5706 * ps-print.el: Problem with foreground and background color when
5707 printing a buffer with and without faces. Reported by Christian
5708 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
5709 (ps-print-version): New version 6.7.5.
5710 (ps-default-fg): Change default value to nil, so black color is used
5711 when a face does not specify a foreground color.
5712 (ps-default-bg): Change default value to nil, so white color is used
5713 for background color.
5714 (ps-begin-job): Fix code.
5715
5716 2007-07-20 Eli Zaretskii <eliz@gnu.org>
5717
5718 * makefile.w32-in (install-lisp-SH): Don't create subdirectories
5719 in $(INSTALL_DIR)/lisp/ if they already exist.
5720
5721 2007-07-20 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
5722
5723 * makefile.w32-in (install-lisp-CMD): Don't create subdirectories
5724 in $(INSTALL_DIR)/lisp/ if they already exist.
5725
5726 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
5727
5728 * progmodes/vera-mode.el (vera-re-search-forward)
5729 (vera-re-search-backward): Remove use of store-match-data.
5730 (vera-mode-map): Move initialization into declaration.
5731
5732 * progmodes/flymake.el (flymake-buildfile-dirs): Remove.
5733 (flymake-find-buildfile): Use locate-dominating-file.
5734
5735 * vc.el (vc-delistify): Use mapconcat.
5736 (vc-do-command): Minor simplification.
5737 (vc-expand-dirs): Use push.
5738
5739 * vc-mcvs.el (vc-mcvs-create-repo):
5740 * vc-cvs.el (vc-cvs-create-repo): Remove.
5741
5742 * vc-hooks.el (vc-find-root): Fix case where `file' is the current
5743 directory and the root as well.
5744
5745 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
5746
5747 * vc-hooks.el (vc-default-workfile-unchanged-p): Pass a list
5748 instead of a file.
5749
5750 * vc-hg.el (vc-hg-print-log): Deal with multiple file arguments.
5751 (vc-hg-registered): Replace if with when.
5752 (vc-hg-state): Deal with nonexistent files and handle removed files.
5753 (vc-hg-dir-state, vc-hg-dired-state-info): New functions.
5754 (vc-hg-checkout): Re-enable.
5755 (vc-hg-create-repo): Fix typos.
5756 (vc-hg-print-log): Fix for multiple files.
5757 (vc-hg-workfile-unchanged-p): New function.
5758
5759 * vc.el: Fix typo.
5760 (vc-print-log): Fix call to print-log.
5761 (vc-default-comment-history): Likewise.
5762 (vc-directory-exclusion-list): Add .hg and .bzr.
5763 (vc-diff-internal): Pass a list instead of a file.
5764
5765 * vc-mcvs.el (vc-mcvs-create-repo): Fix typos.
5766
5767 * vc-bzr.el (vc-bzr-create-repo): New function.
5768
5769 2007-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5770
5771 * vc-hooks.el (vc-find-root): Walk up the tree to find an existing
5772 `file' from which to start the search.
5773
5774 2007-07-19 Eric S. Raymond <esr@snark.thyrsus.com>
5775
5776 * vc-cvs.el (vc-cvs-checkin, vc-cvs-diff): Finish transition from
5777 having a single file argument to having a list of files as the
5778 first argument.
5779
5780 2007-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5781
5782 * files.el (locate-dominating-file): New function.
5783
5784 2007-07-18 Michael Albinus <michael.albinus@gmx.de>
5785
5786 * progmodes/grep.el (grep-host-defaults-alist): New defvar.
5787 (grep-compute-defaults): Use it.
5788
5789 2007-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
5790
5791 * uniquify.el: Docstring fixes.
5792
5793 2007-07-18 Eric S. Raymond <esr@snark.thyrsus.com>
5794
5795 * vc.el (revision-granularity, create-repo): Document new vc
5796 backend properties.
5797 (vc-rollback): Renamed from vc-cancel-version. Update
5798 references. Pass a list instead of a file.
5799 (vc-revert): Renamed from vc-revert-buffer. Update references.
5800 (vc-delistify, vc-expand-dirs): New functions.
5801 (vc-do-command): Rename FILE to FILE-OR-LIST and deal with a list
5802 of files instead of a single file.
5803 (vc-position-context, vc-resync-window, vc-diff-internal)
5804 (vc-print-log): Pass a list instead of a file.
5805
5806 * vc-hooks.el (vc-stay-local-p, vc-backend)
5807 (vc-backend-subdirectory-name): Work on a file list, not a single
5808 file.
5809 (vc-workfile-version): Update docstring.
5810 (vc-menu-map): Use vc-rollback instead of vc-cancel-version and
5811 vc-revert instead of vc-revert-buffer.
5812 (vc-prefix-map): Likewise. Bind vc-update.
5813
5814 * vc-svn.el (vc-svn-revision-granularity, vc-svn-create-repo)
5815 (vc-svn-wash-log): New functions.
5816 (vc-svn-register, vc-svn-checkin, vc-svn-print-log)
5817 (vc-svn-command): Deal with a list of files, not a single file.
5818
5819 * vc-rcs.el (vc-rcs-revision-granularity, vc-rcs-create-repo)
5820 (vc-rcs-wash-log): New functions.
5821 (vc-rcs-register, vc-rcs-checkin, vc-rcs-diff, vc-rcs-print-log):
5822 Deal with a list of files, not a single file.
5823 (vc-rcs-rollback): Likewise. Rename from vc-rcs-cancel-version.
5824
5825 * vc-sccs.el (vc-sccs-revision-granularity, vc-sccs-wash-log): New
5826 functions.
5827 (vc-sccs-register, vc-sccs-checkin, vc-sccs-diff): Deal with a
5828 list of files, not a single file.
5829
5830 * vc-mcvs.el (vc-mcvs-revision-granularity, vc-mcvs-create-repo):
5831 New functions.
5832 (vc-mcvs-register, vc-mcvs-checkin, vc-mcvs-print-log)
5833 (vc-mcvs-diff): Deal with a list of files, not a single file.
5834
5835 * vc-hg.el (vc-hg-revision-granularity, vc-hg-create-repo): New
5836 functions.
5837 (vc-hg-print-log): Deal with a list of files, not a single file.
5838 (vc-hg-diff-tree): New function, replace defalias with the same
5839 name.
5840 (vc-hg-register, vc-hg-checkin, vc-hg-command): Rename FILE to
5841 FILES to denote that it is a file list, not a single file.
5842
5843 * vc-cvs.el (vc-cvs-create-repo, vc-cvs-wash-log): New functions.
5844 (vc-cvs-register, vc-cvs-checkin): Deal with a list of files, not
5845 a single file.
5846 (vc-cvs-print-log, vc-cvs-command): Rename FILE to FILES to denote
5847 that it is a file list, not a single file.
5848 (vc-cvs-diff): Likewise. Simplify.
5849
5850 * vc-arch.el (vc-arch-register, vc-arch-checkin, vc-arch-diff):
5851 Deal with a list of files, not a single file.
5852
5853 * vc-bzr.el (vc-bzr-register, vc-bzr-command, vc-bzr-checkin)
5854 (vc-bzr-print-log): Update FILE parameter name to denote that it
5855 is a file list, not a single file.
5856 (vc-bzr-diff): Likewise. Use the car of files.
5857
5858 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
5859
5860 * follow.el (follow-mode-hook, follow-mode-off-hook, follow-mode)
5861 (follow-delete-other-windows-and-split, follow-recenter)
5862 (follow-windows-aligned-p, follow-point-visible-all-windows-p)
5863 (follow-redisplay, follow-estimate-first-window-start)
5864 (follow-xemacs-scrollbar-support, follow-intercept-process-output):
5865 Fix typos in docstrings.
5866
5867 2007-07-18 Martin Rudalics <rudalics@gmx.at>
5868
5869 * add-log.el (change-log-mode): Use fill-nobreak-predicate to
5870 avoid that filling introduces lines with a single asterisk.
5871
5872 * kmacro.el (kmacro-end-macro): When ignoring empty macro
5873 avoid incorrect kmacro-ring-empty-p messages.
5874 Reported by Michael Schierl <schierlm@gmx.de>.
5875
5876 2007-07-17 Dan Nicolaescu <dann@ics.uci.edu>
5877
5878 * vc.el: Add more info about the vc-registered function.
5879
5880 2007-07-17 Michael Albinus <michael.albinus@gmx.de>
5881
5882 * files.el (file-remote-p): Introduce optional parameter
5883 IDENTIFICATION.
5884
5885 * recentf.el (recentf-keep-default-predicate): Adapt call of
5886 `file-remote-p'.
5887
5888 * progmodes/grep.el (grep-probe): Use `process-file'.
5889 (grep-compute-defaults): Handle variables host specific.
5890
5891 * net/ange-ftp.el (ange-ftp-file-remote-p): Handle optional
5892 parameter IDENTIFICATION.
5893
5894 * net/tramp.el (tramp-handle-file-remote-p): Handle optional
5895 parameter IDENTIFICATION.
5896 (tramp-handle-set-file-times): New defun. Replaces `tramp-touch'.
5897 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
5898 Add entry for `set-file-times'.
5899 (tramp-do-copy-or-rename-file-via-buffer)
5900 (tramp-do-copy-or-rename-file-out-of-band): Use `set-file-times'.
5901 (tramp-handle-unhandled-file-name-directory): Rewrite.
5902 (tramp-convert-file-attributes): Add error handling when inode is
5903 extraordinary big.
5904 (tramp-get-inode): Change parameter from FILE to VEC.
5905 (tramp-handle-start-file-process): Use (current-buffer) if BUFFER
5906 is nil. This is according to the specification. Goto (point-max)
5907 when ready.
5908 (tramp-handle-shell-command): Rewrite completely, using
5909 `process-file' and `start-file-process'.
5910 (tramp-methods, tramp-find-shell)
5911 (tramp-open-connection-setup-interactive-shell)
5912 (tramp-maybe-open-connection): Guard against $PROMPT_COMMAND shell
5913 var. Reported by Steve Youngs <steve@sxemacs.org>.
5914
5915 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add
5916 entry for `set-file-times'. Rename `start-process' into
5917 `start-file-process'. Remove `call-process' entry.
5918 (tramp-fish-handle-set-file-times): New defun.
5919 (tramp-fish-handle-executable-find): Use `process-file'.
5920 (tramp-fish-handle-process-file): New defun. Replaces
5921 `tramp-fish-handle-call-process'.
5922 (tramp-fish-do-copy-or-rename-file-directly): Use
5923 `set-file-times'.
5924 (tramp-fish-get-file-entries): Change `tramp-get-inode' parameter.
5925
5926 * net/tramp-smb.el (tramp-smb-handle-file-attributes): Change
5927 `tramp-get-inode' parameter.
5928
5929 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5930
5931 * vc-bzr.el (vc-bzr-version, vc-bzr-at-least-version)
5932 (vc-bzr-post-command-function): Remove. Version 0.8 is already old
5933 nowadays, and by the time Emacs-23 comes out, nobody will even remember
5934 it has ever existed.
5935
5936 2007-07-17 Dan Nicolaescu <dann@ics.uci.edu>
5937
5938 * vc.el: Undo previous change.
5939
5940 2007-07-16 Eli Zaretskii <eliz@gnu.org>
5941
5942 * makefile.w32-in (clean): Don't delete *~.
5943
5944 2007-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
5945
5946 * textmodes/tex-mode.el (tex-verbatim-environments):
5947 Add safe-local-variable property.
5948 (tex-font-lock-syntactic-keywords): Lookup tex-verbatim-environments
5949 when starting font-lock rather than when loading tex-mode.el.
5950
5951 * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Skip over the
5952 whole $( rather than just the $. Rename from sh-quoted-subshell.
5953 (sh-font-lock-syntactic-keywords): Adjust call accordingly.
5954
5955 2007-07-16 Thien-Thi Nguyen <ttn@gnuvola.org>
5956
5957 * bookmark.el (bookmark-maybe-sort-alist): Don't modify
5958 bookmark-alist. Instead, if not sorting, simply return it.
5959 (bookmark-bmenu-list): Call bookmark-maybe-sort-alist
5960 for its return value, not for its side effect.
5961
5962 * emacs-lisp/lisp-mode.el (calculate-lisp-indent): In the
5963 case of alignment under a constant symbol, find and consider
5964 the sexp actually at indentation to be the "last sexp".
5965
5966 2007-07-16 Drew Adams <drew.adams@oracle.com>
5967
5968 * mouse.el (mouse-yank-secondary): Better error message if no
5969 secondary selection.
5970
5971 2007-07-16 Dan Nicolaescu <dann@ics.uci.edu>
5972
5973 * vc-hooks.el (vc-handled-backends): Move BZR later in the list.
5974
5975 * term/xterm.el (xterm-turn-on-modify-other-keys)
5976 (xterm-turn-off-modify-other-keys): New functions.
5977 (terminal-init-xterm): Enable the modifyOtherKeys feature if the
5978 terminal supports it.
5979
5980 2007-07-16 Thien-Thi Nguyen <ttn@gnuvola.org>
5981
5982 * bookmark.el (bookmark-show-all-annotations):
5983 Make sure each inserted annotation ends with newline.
5984
5985 2007-07-15 Richard Stallman <rms@gnu.org>
5986
5987 * kmacro.el (kmacro-bind-to-key): Avoid comparisons on function keys.
5988
5989 * tutorial.el (tutorial--find-changed-keys):
5990 Handle C-x specially like ESC.
5991
5992 2007-07-15 Aaron Hawley <aaronh@garden.org>
5993
5994 * tar-mode.el (tar-get-descriptor): No error for zero-length file.
5995
5996 2007-07-15 Juri Linkov <juri@jurta.org>
5997
5998 * delsel.el (delete-selection-pre-hook):
5999 * emulation/cua-base.el (cua-paste): Before a yank command,
6000 check also whether last-command is one of mouse-save-then-kill,
6001 mouse-secondary-save-then-kill, mouse-set-region, mouse-drag-region.
6002
6003 2007-07-15 Michael Albinus <michael.albinus@gmx.de>
6004
6005 * recentf.el (recentf-keep-default-predicate): New defun.
6006 (recentf-keep): Use it as initial value.
6007
6008 2007-07-15 Karl Fogel <kfogel@red-bean.com>
6009
6010 * bookmark.el: Revert 2007-07-13T18:16:17Z!kfogel@red-bean.com,
6011 thus restoring bookmark bindings to three slots under C-x r. See
6012 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00705.html.
6013
6014 2007-07-15 Jeff Miller <jmiller@cablespeed.com> (tiny change)
6015
6016 * calendar/calendar.el (calendar-goto-bahai-date): Autoload it.
6017
6018 2007-07-15 Jason Rumney <jasonr@gnu.org>
6019
6020 * w32-fns.el (set-default-process-coding-system): Use dos line ends
6021 for input to cmdproxy on all versions of Windows.
6022 Use dos line ends for input to plink.
6023
6024 * comint.el (comint-simple-send): Concat newline before sending.
6025 (comint-password-prompt-regexp): Recognize plink's passphrase prompt.
6026
6027 2007-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
6028
6029 * emacs-lisp/autoload.el (generated-autoload-file): Autoload the
6030 safe-local-variable setting.
6031
6032 2007-07-14 David Kastrup <dak@gnu.org>
6033
6034 * emacs-lisp/advice.el (defadvice): Doc fix.
6035
6036 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
6037
6038 * subr.el (when, unless): Doc fix.
6039
6040 2007-07-13 Dan Nicolaescu <dann@ics.uci.edu>
6041
6042 * replace.el (match): Use yellow1 instead of yellow.
6043
6044 * progmodes/gdb-ui.el (breakpoint-enabled): Use red1 instead of
6045 red.
6046
6047 * pcvs-info.el (cvs-unknown): Likewise.
6048
6049 2007-07-13 Eli Zaretskii <eliz@gnu.org>
6050
6051 * makefile.w32-in (install-lisp-SH, install-lisp-CMD): New targets.
6052 (install): Use them to copy all *.el files before *.elc.
6053
6054 2007-07-13 Drew Adams <drew.adams@oracle.com>
6055
6056 * bookmark.el (bookmark-jump-other-window): New function.
6057 (bookmark-map): Bind it to "o".
6058
6059 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html
6060 and its thread contains discussion about this change.
6061 The original patch was slightly tweaked by Karl Fogel
6062 <kfogel@red-bean.com> before committing.
6063
6064 2007-07-13 Karl Fogel <kfogel@red-bean.com>
6065
6066 * bookmark.el: Shorten some comments to fit within 80 lines.
6067
6068 2007-07-13 Karl Fogel <kfogel@red-bean.com>
6069
6070 * bookmark.el: Don't define bookmark keys under the "C-xr" map;
6071 instead, make "C-xp" a prefix for bookmark-map. Patch by Drew
6072 Adams <drew.adams@oracle.com>, mildly tweaked by me. See
6073 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html.
6074
6075 2007-07-13 Carsten Dominik <dominik@science.uva.nl>
6076
6077 * textmodes/org.el: Bug fixes.
6078 (org-end-of-line): Move to end of line if in headline without tags.
6079
6080 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
6081
6082 * vc-hooks.el: Remove spurious * in docstrings.
6083 (vc-handled-backends): Add BZR.
6084
6085 * vc-hooks.el (vc-find-file-hook): Use with-demoted-errors.
6086
6087 2007-07-12 Davis Herring <herring@lanl.gov>
6088
6089 * desktop.el (desktop-buffer-info, desktop-save):
6090 Use `desktop-dirname' instead of `dirname'.
6091
6092 2007-07-12 Paul Pogonyshev <pogonyshev@gmx.net>
6093
6094 * progmodes/which-func.el (which-func-modes): Add `python-mode'.
6095
6096 * progmodes/python.el (python-which-func-length-limit): New var.
6097 (python-which-func): New function.
6098 (python-current-defun): Add optional `length-limit' and try to fit
6099 computed function name to that length.
6100 (python-mode): Hook `python-which-func' up.
6101
6102 2007-07-12 Sean O'Rourke <sorourke@cs.ucsd.edu> (tiny change)
6103
6104 * pcomplete.el (pcomplete-entries): Obey pcomplete-ignore-case.
6105
6106 * comint.el (comint-dynamic-complete-as-filename):
6107 Use read-file-name-completion-ignore-case.
6108
6109 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
6110
6111 * comint.el (comint-dynamic-list-filename-completions):
6112 Use read-file-name-completion-ignore-case.
6113
6114 * vc-cvs.el: Require CL.
6115 (vc-cvs-revision-table, vc-cvs-revision-completion-table):
6116 New functions to provide completion of revision names.
6117
6118 * vc-cvs.el (vc-functions): Clear up the cache when reloading the file.
6119 (vc-cvs-annotate-first-line-re): New const.
6120 (vc-cvs-annotate-process-filter): New fun.
6121 (vc-cvs-annotate-command): Use them and run the command asynchronously.
6122
6123 2007-07-12 Paul Pogonyshev <pogonyshev@gmx.net>
6124
6125 * emacs-lisp/eldoc.el (eldoc-last-data): Revise documentation.
6126 (eldoc-print-current-symbol-info): Adjust for changed helper
6127 function signatures.
6128 (eldoc-get-fnsym-args-string): Add `args' argument. Use new
6129 `eldoc-highlight-function-argument'.
6130 (eldoc-highlight-function-argument): New function.
6131 (eldoc-get-var-docstring): Format documentation with
6132 `font-lock-variable-name-face'.
6133 (eldoc-docstring-format-sym-doc): Add `face' argument and apply it
6134 where suited.
6135 (eldoc-fnsym-in-current-sexp): Return a list with argument index.
6136 (eldoc-beginning-of-sexp): Return number of skipped sexps.
6137
6138 2007-07-11 Michael Albinus <michael.albinus@gmx.de>
6139
6140 * progmodes/compile.el (compilation-start): `start-process' must
6141 still be redefined when calling `start-process-shell-command'.
6142
6143 * progmodes/gud.el (gud-file-name): When `default-directory' is a
6144 remote file name, prepend its remote part to the filename.
6145 (gud-common-init): When `default-directory' is a remote file name,
6146 make the filename relative to it.
6147 Based on a patch by Nick Roberts <nickrob@snap.net.nz>.
6148
6149 2007-07-11 Dan Nicolaescu <dann@ics.uci.edu>
6150
6151 * vc-hooks.el (vc-default-mode-line-string): Add a mouse face,
6152 mouse binding and a tooltip.
6153
6154 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
6155
6156 * menu-bar.el (vc-menu-map): New defalias.
6157
6158 2007-07-10 Richard Stallman <rms@gnu.org>
6159
6160 * emacs-lisp/lisp-mode.el (eval-defun):
6161 Explain special handling of `defface'.
6162
6163 2007-07-10 Jim Meyering <jim@meyering.net> (tiny change)
6164
6165 * emacs-lisp/copyright.el (copyright-current-gpl-version): Set to 3.
6166
6167 * autoinsert.el (auto-insert-alist): s/2/3/ in the generated comment.
6168
6169 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
6170
6171 * emacs-lisp/cl.el: Load cl-loaddefs.el quietly.
6172
6173 * vc-arch.el (vc-arch-complete): Remove.
6174 (vc-arch-revision-completion-table): Use complete-with-action.
6175
6176 * subr.el (condition-case-no-debug, with-demoted-errors): New macros.
6177 (complete-with-action): New function.
6178 (dynamic-completion-table): Use it.
6179
6180 2007-07-10 Michael Albinus <michael.albinus@gmx.de>
6181
6182 * comint.el (make-comint, make-comint-in-buffer)
6183 (comint-exec-1): Replace `start-process' by `start-file-process'.
6184
6185 * progmodes/compile.el (compilation-start): Revert redefining
6186 `start-process'.
6187
6188 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
6189
6190 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Be careful
6191 with EOLs when generating MD5 checksums.
6192
6193 * follow.el: Don't change the global map from the follow-mode-map
6194 defvar, but from the toplevel. Use easy-menu to unify the Emacs and
6195 XEmacs code.
6196 (turn-on-follow-mode, turn-off-follow-mode): Remove interactive spec
6197 since `follow-mode' should be used instead for that.
6198
6199 * emacs-lisp/easymenu.el (easy-menu-binding): New function.
6200 (easy-menu-do-define): Use it.
6201 (easy-menu-do-add-item): Inline into easy-menu-add-item and then remove.
6202
6203 * progmodes/compile.el (compilation-auto-jump-to-first-error)
6204 (compilation-auto-jump-to-next): New vars.
6205 (compilation-auto-jump): New function.
6206 (compilation-error-properties): Use them to jump to first error.
6207 (compilation-start): Set the var if requested.
6208
6209 * emacs-lisp/autoload.el (update-directory-autoloads): Remove
6210 duplicates without also removing entries from other directories.
6211
6212 2007-07-10 Carsten Dominik <dominik@science.uva.nl>
6213
6214 * textmodes/org.el (org-agenda-day-view, org-agenda-week-view):
6215 Remember span as default.
6216 (org-columns-edit-value): Rename from `org-column-edit'.
6217 (org-columns-display-here-title): Rename from
6218 `org-overlay-columns-title'.
6219 (org-columns-remove-overlays): Rename from org-remove-column-overlays.
6220 (org-columns-get-autowidth-alist): Rename from
6221 `org-get-columns-autowidth-alist'.
6222 (org-columns-display-here): Rename from `org-overlay-columns'.
6223 (org-columns-new-overlay): Rename from `org-new-column-overlay'.
6224 (org-columns-quit): Rename from `org-column-quit'.
6225 (org-columns-show-value): Rename from `org-column-show-value'.
6226 (org-columns-content, org-columns-widen)
6227 (org-columns-next-allowed-value)
6228 (org-columns-edit-allowed, org-columns-store-format)
6229 (org-columns-uncompile-format, org-columns-redo)
6230 (org-columns-edit-attributes, org-delete-property)
6231 (org-set-property, org-columns-update)
6232 (org-columns-compute, org-columns-eval)
6233 (org-columns-not-in-agenda, org-columns-compute-all)
6234 (org-property-next-allowed-value)
6235 (org-columns-compile-format)
6236 (org-fill-paragraph-experimental)
6237 (org-string-to-number, org-property-action)
6238 (org-columns-move-left, org-columns-new)
6239 (org-column-number-to-string)
6240 (org-property-previous-allowed-value)
6241 (org-at-property-p, org-columns-delete)
6242 (org-columns-previous-allowed-value)
6243 (org-columns-move-right, org-columns-narrow)
6244 (org-property-get-allowed-values)
6245 (org-verify-version, org-column-string-to-number)
6246 (org-delete-property-globally): New functions.
6247 (org-columns-current-fmt): Rename from `org-current-columns-fmt'.
6248 (org-columns-overlays): Rename from `org-column-overlays'.
6249 (org-columns-map): Rename from `org-column-map'.
6250 (org-columns-current-maxwidths): Rename from
6251 `org-current-columns-maxwidths'.
6252 (org-columns-begin-marker, org-columns-current-fmt-compiled)
6253 (org-previous-header-line-format)
6254 (org-columns-inhibit-recalculation)
6255 (org-columns-top-level-marker): New variables.
6256 (org-columns-default-format): Rename from `org-default-columns-format'.
6257 (org-property-re): New constant.
6258
6259 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
6260
6261 * subr.el (looking-at-p, string-match-p): New functions.
6262
6263 2007-07-09 Reiner Steib <Reiner.Steib@gmx.de>
6264
6265 * textmodes/tex-mode.el (tex-fontify-script)
6266 (tex-font-script-display): New variables to make display of
6267 superscripts and subscripts customizable.
6268 (tex-font-lock-suscript, tex-font-lock-match-suscript): Use them.
6269
6270 2007-07-09 Richard Stallman <rms@gnu.org>
6271
6272 * isearch.el (isearch-edit-string): Call to isearch-push-state
6273 after the search.
6274
6275 2007-07-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6276
6277 * window.el (fit-window-to-buffer): Remove setting of window-min-height
6278 to 1 as enlarge-window uses the value to resize/shrink windows other
6279 than WINDOW if needed.
6280
6281 2007-07-08 Katsumi Yamaoka <yamaoka@jpl.org>
6282
6283 * cus-start.el (file-coding-system-alist): Fix custom type.
6284
6285 2007-07-08 Chong Yidong <cyd@stupidchicken.com>
6286
6287 * longlines.el (longlines-wrap-region): Avoid marking buffer as
6288 modified.
6289 (longlines-auto-wrap, longlines-window-change-function):
6290 Remove unnecessary calls to set-buffer-modified-p.
6291
6292 2007-07-08 Katsumi Yamaoka <yamaoka@jpl.org>
6293
6294 * cus-start.el (file-coding-system-alist): Fix custom type.
6295
6296 2007-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
6297
6298 * vc-cvs.el (vc-cvs-revert): Use vc-default-revert.
6299 (vc-cvs-checkout): Remove last arg now unused; simplify.
6300
6301 2007-07-08 Michael Albinus <michael.albinus@gmx.de>
6302
6303 * files.el (file-remote-p): Introduce optional parameter CONNECTED.
6304
6305 * net/tramp.el:
6306 * net/tramp-ftp.el:
6307 * net/tramp-smb.el:
6308 * net/tramp-uu.el:
6309 * net/trampver.el: Migrate to Tramp 2.1.
6310
6311 * net/tramp-cache.el:
6312 * net/tramp-fish.el:
6313 * net/tramp-gw.el: New Tramp packages.
6314
6315 * net/tramp-util.el:
6316 * net/tramp-vc.el: Removed.
6317
6318 * net/ange-ftp.el: Add ange-ftp property to 'start-file-process.
6319 (ange-ftp-file-remote-p): Handle optional parameter CONNECTED.
6320
6321 * net/rcompile.el (remote-compile): Handle Tramp 2.1 arguments.
6322
6323 * progmodes/compile.el (compilation-start): Redefine
6324 `start-process' temporarily when `default-directory' is remote.
6325 Remove case of synchronous compilation, this won't happen ever.
6326 (compilation-setup): Make local variable `comint-file-name-prefix'
6327 for remote compilation.
6328
6329 2007-07-08 Martin Rudalics <rudalics@gmx.at>
6330
6331 * novice.el (disabled-command-function): Fit window to buffer to
6332 make last line visible.
6333 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
6334
6335 * mouse.el (mouse-drag-track): Reset transient-mark-mode to nil
6336 when handling the terminating event.
6337
6338 2007-07-07 Jay Belanger <jay.p.belanger@gmail.com>
6339
6340 * calc/calc.el (math-read-number-simple): Remove leading 0s.
6341 (math-bignum-digit-length): Change to optimal value.
6342
6343 * calc/calc-bin.el (math-bignum-logb-digit-size)
6344 (math-bignum-digit-power-of-two): Evaluate when compiled.
6345
6346 * calc/calc-comb.el (math-small-factorial-table)
6347 (math-init-random-base, math-prime-test): Remove unnecessary calls
6348 to `math-read-number-simple'.
6349
6350 * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
6351 (math-approx-gamma-const): Add docstrings.
6352
6353 * calc/calc-forms.el (math-julian-date-beginning)
6354 (math-julian-date-beginning-int): New constants.
6355 (math-format-date-part, math-parse-standard-date, calcFunc-julian):
6356 Use the new constants.
6357
6358 * calc/calc-funcs.el (math-gammap1-raw): Add docstring.
6359
6360 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
6361 Add docstrings.
6362
6363 2007-07-07 Tom Tromey <tromey@redhat.com>
6364
6365 * vc.el (vc-annotate): Jump to line and output message only after the
6366 process is really all done.
6367
6368 2007-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
6369
6370 * vc.el (vc-exec-after): Don't move point from the sentinel.
6371 Forcefully read all the remaining text in the pipe upon process exit.
6372 (vc-annotate-display-autoscale, vc-annotate-lines):
6373 Don't stop at the first unrecognized line.
6374 (vc-annotate-display-select): Run autoscale after the process is done
6375 since it depends on the whole result.
6376
6377 2007-07-07 Eli Zaretskii <eliz@gnu.org>
6378
6379 * term/w32-win.el (menu-bar-open): New function.
6380 Bind <f10> to it.
6381
6382 2007-07-07 Michael Albinus <michael.albinus@gmx.de>
6383
6384 * simple.el (start-file-process): New defun.
6385
6386 2007-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
6387
6388 * files.el (find-file-confirm-nonexistent-file): Rename from
6389 find-file-confirm-inexistent-file. Update users.
6390
6391 * emacs-lisp/autoload.el (autoload-find-destination): Understand a new
6392 format of autoload block where the file's time-stamp is replaced by its
6393 MD5 checksum.
6394 (autoload-generate-file-autoloads): Use MD5 checksum instead of
6395 time-stamp for secondary autoloads files.
6396 (update-directory-autoloads): Remove duplicate entries.
6397 Use time-less-p for time-stamps, as done in autoload-find-destination.
6398
6399 2007-07-07 Jay Belanger <jay.p.belanger@gmail.com>
6400
6401 * calc/calc.el (math-read-number): Replace number by variable.
6402 (math-read-number-simple): Properly parse small integers.
6403
6404 2007-07-07 Dan Nicolaescu <dann@ics.uci.edu>
6405
6406 * vc.el: Fix doc for the checkout function.
6407
6408 2007-07-06 Dan Nicolaescu <dann@ics.uci.edu>
6409
6410 * vc-hg.el (vc-hg-root): New function.
6411 (vc-hg-registered): Use it.
6412 (vc-hg-diff-tree): New defalias.
6413 (vc-hg-responsible-p): Likewise.
6414 (vc-hg-checkout): Comment out, not needed.
6415 (vc-hg-delete-file, vc-hg-rename-file, vc-hg-could-register)
6416 (vc-hg-find-version, vc-hg-next-version): New functions.
6417
6418 2007-07-06 Andreas Schwab <schwab@suse.de>
6419
6420 * emacs-lisp/lisp-mode.el (eval-last-sexp): Avoid introducing any
6421 dynamic bindings around the evaluation of the expression.
6422 Reported by Jay Belanger <jay.p.belanger@gmail.com>.
6423
6424 2007-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
6425
6426 * autorevert.el (auto-revert-tail-handler): Use inhibit-read-only.
6427 Run before-revert-hook. Suggested by Denis Bueno <denbuen@sandia.gov>.
6428 Use run-hooks rather than run-mode-hooks.
6429
6430 2007-07-05 Jay Belanger <jay.p.belanger@gmail.com>
6431
6432 * calc/calc-comb.el (math-random-digit): Rename to
6433 `math-random-three-digit-number'.
6434 (math-random-digits): Don't depend on representation of integer.
6435
6436 * calc/calc-bin.el (math-bignum-logb-digit-size)
6437 (math-bignum-digit-power-of-two): New constants.
6438 (math-and-bignum, math-or-bignum, math-xor-bignum, math-diff-bignum)
6439 (math-not-bignum, math-clip-bignum): Use the constants
6440 `math-bignum-digit-power-of-two' and `math-bignum-logb-digit-size'
6441 instead of their values.
6442 (math-clip): Use math-small-integer-size instead of its value.
6443
6444 * calc/calc.el (math-add-bignum): Replace number by constant.
6445
6446 2007-07-05 Chong Yidong <cyd@stupidchicken.com>
6447
6448 * wid-edit.el (widget-documentation-string-value-create):
6449 Insert indentation spaces.
6450
6451 2007-07-05 Thien-Thi Nguyen <ttn@gnuvola.org>
6452
6453 * emacs-lisp/byte-opt.el: Revert last change.
6454
6455 2007-07-05 Dan Nicolaescu <dann@ics.uci.edu>
6456
6457 * vc-hooks.el (vc-handled-backends): Add HG.
6458
6459 * vc-hg.el (vc-handled-backends): Remove, done in vc-hooks.el now.
6460
6461 2007-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
6462
6463 * complete.el (PC-do-complete-and-exit): Add support for the new
6464 `confirm-only' confirmation mode.
6465
6466 2007-07-05 Chong Yidong <cyd@stupidchicken.com>
6467
6468 * cus-edit.el (custom-commands): New variable.
6469 (custom-tool-bar-map): New variable. Initialize using
6470 `custom-commands'.
6471 (custom-mode): Use `custom-tool-bar-map'.
6472 (custom-buffer-create-internal): Insert action buttons only if
6473 tool bar is not used. Use `custom-commands'.
6474 (Custom-help, custom-command-apply): New function.
6475 (custom-command-apply, Custom-set, Custom-save)
6476 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard):
6477 Use `custom-command-apply' instead of duplicating code.
6478 (customize-group-other-window): Call `customize-group' instead of
6479 duplicating code.
6480 (customize-face-other-window): Call `customize-face' instead of
6481 duplicating code.
6482 (customize-group, customize-face): Add optional args for opening
6483 in another window.
6484 (custom-variable-tag): Don't inherit `variable-pitch' face.
6485 (custom-group-tag): Inherit `variable-pitch' face.
6486 (custom-variable-value-create): Set documentation indentation.
6487 (custom-group-value-create): Make group name a link, instead of
6488 using an extra "go to group" button.
6489 (custom-prompt-variable, custom-group-set, custom-group-save)
6490 (custom-group-reset-current, custom-group-reset-saved)
6491 (custom-group-reset-standard): Minor cleanup.
6492
6493 2007-07-05 Thien-Thi Nguyen <ttn@gnuvola.org>
6494
6495 * Makefile.in (bootstrap-prepare): When copying from
6496 ldefs-boot.el, make sure loaddefs.el is writeable.
6497
6498 (bootstrap-prepare): Make $(lisp)/ps-print.el
6499 and $(lisp)/emacs-lisp/cl-loaddefs.el writable, as well.
6500
6501 2007-07-05 Dan Nicolaescu <dann@ics.uci.edu>
6502
6503 * vc-hg.el (vc-hg-internal-status): Inline in `vc-hg-state', the
6504 only caller, and delete.
6505 (vc-hg-state): Deal with exceptions and only parse the output on
6506 successful return.
6507 (vc-hg-internal-log): Inline in `vc-hg-workfile-version', the only
6508 caller, and delete.
6509 (vc-hg-workfile-version): Deal with exceptions and only parse the
6510 output on successful return.
6511 (vc-hg-revert): New function.
6512
6513 2007-07-04 Jay Belanger <jay.p.belanger@gmail.com>
6514
6515 * calculator.el (calculator-expt): Use more cases to determine
6516 the value.
6517
6518 2007-07-03 Dan Nicolaescu <dann@ics.uci.edu>
6519
6520 * progmodes/gud.el (auto-mode-alist): Match more valid gdb init
6521 file names.
6522
6523 2007-07-03 Jay Belanger <jay.p.belanger@gmail.com>
6524
6525 * calculator.el (calculator-expt, calculator-integer-p):
6526 New functions.
6527 (calculator-fact): Check to see if the factorial will be too
6528 large before computing it.
6529 (calculator-initial-operators): Use `calculator-expt' to
6530 compute "^".
6531 (calculator-mode): Mention that results which are too large
6532 will return inf.
6533 * calc/calc-comb.el (math-small-factorial-table): Replace list
6534 by vector.
6535
6536 2007-07-03 David Kastrup <dak@gnu.org>
6537
6538 * shell.el: On request of the authors, remove their addresses for
6539 the sake of bug reports, and add the developer list address as
6540 maintainer information.
6541
6542 2007-07-03 Richard Stallman <rms@gnu.org>
6543
6544 * files.el (make-directory): Doc fix.
6545 (find-file-confirm-inexistent-file): Make it a defcustom.
6546 Make nil the default.
6547
6548 2007-07-02 Richard Stallman <rms@gnu.org>
6549
6550 * startup.el (command-line): Set buffer-offer-save in *scratch*
6551 and enable auto-save in it.
6552
6553 2007-07-02 Carsten Dominik <dominik@science.uva.nl>
6554
6555 * textmodes/org.el (orgstruct-mode-map): New variable.
6556 (orgstruct-mode): New minor mode.
6557 (turn-on-orgstruct, orgstruct-error, orgstruct-setup)
6558 (orgstruct-make-binding, org-context-p, org-get-local-variables)
6559 (org-run-like-in-org-mode): New functions.
6560 (org-cycle-list-bullet): New command.
6561 (org-special-properties, org-property-start-re)
6562 (org-property-end-re): New constants.
6563 (org-with-point-at): New macro.
6564 (org-get-property-block, org-entry-properties, org-entry-get)
6565 (org-entry-delete, org-entry-get-with-inheritance)
6566 (org-entry-put, org-buffer-property-keys): New functions.
6567 (org-insert-property-drawer): New command.
6568 (org-entry-property-inherited-from): New variable.
6569 (org-column): New face.
6570 (org-column-overlays, org-current-columns-fmt)
6571 (org-current-columns-maxwidths, org-column-map): New variables.
6572 (org-column-menu): New menu.
6573 (org-new-column-overlay, org-overlay-columns)
6574 (org-overlay-columns-title, org-remove-column-overlays)
6575 (org-column-show-value, org-column-quit, org-column-edit):
6576 New functions.
6577 (org-columns, org-agenda-columns): New commands.
6578 (org-get-columns-autowidth-alist): New functions.
6579 (org-properties): New customize group.
6580 (org-default-columns-format): New option.
6581 (org-priority): Realign tags after changing priority.
6582 (org-preserve-lc): New macro.
6583 (org-update-checkbox-count): Catch case when there is no headline.
6584 (org-agenda-quit): Remove any column overlays.
6585 (org-beginning-of-item-list): Fixed bug when non-item line is
6586 indented too deep.
6587 (org-cached-props): New variable.
6588 (org-cached-entry-get): New function.
6589 (org-make-tags-matcher): Handle property matches.
6590 (org-table-recalculate): Swap evaluation order: Field formula
6591 first, then column formulas, but don't allow them to overwrite the
6592 field formulas.
6593 (org-table-eval-formula): New argument untouchable.
6594 (org-table-put-field-property): New function.
6595
6596 2007-07-02 Martin Rudalics <rudalics@gmx.at>
6597
6598 * help-mode.el (help-make-xrefs): Skip spaces too when
6599 skipping tabs.
6600
6601 * ffap.el (dired-at-point-prompter): Improve prompt in
6602 list-directory case.
6603
6604 2007-07-01 Richard Stallman <rms@gnu.org>
6605
6606 * files.el (find-file-visit-truename): Fix safe-local-variable value.
6607
6608 2007-07-01 Richard Stallman <rms@gnu.org>
6609
6610 * cus-start.el (max-mini-window-height): Added.
6611
6612 2007-07-01 Sean O'Rourke <sorourke@cs.ucsd.edu> (tiny change)
6613
6614 * complete.el (partial-completion-mode): Remove advice of
6615 read-file-name-internal.
6616 (PC-do-completion): Rebind minibuffer-completion-table.
6617 (PC-read-file-name-internal): New function doing what
6618 read-file-name-internal advice did.
6619
6620 2007-07-01 Paul Pogonyshev <pogonyshev@gmx.net>
6621
6622 * emacs-lisp/byte-opt.el: Set `binding-is-magic'
6623 property on a few symbols.
6624 (byte-compile-side-effect-free-dynamically-safe-ops): New defconst.
6625 (byte-optimize-lapcode): Remove bindings that are not referenced
6626 and certainly will not effect through dynamic scoping.
6627
6628 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
6629
6630 * files.el (find-file-confirm-inexistent-file): New var.
6631 (find-file, find-file-other-window, find-file-other-frame)
6632 (find-file-read-only, find-file-read-only-other-window)
6633 (find-file-read-only-other-frame): Use it.
6634
6635 2007-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
6636
6637 * emacs-lisp/rx.el (rx-constituents): Fix up `anything'.
6638
6639 2007-06-29 Juanma Barranquero <lekktu@gmail.com>
6640
6641 * generic-x.el (generic-define-mswindows-modes)
6642 (generic-define-unix-modes, apache-log-generic-mode)
6643 (bat-generic-mode-keymap, java-manifest-generic-mode)
6644 (show-tabs-generic-mode): Fix typos in docstrings.
6645
6646 2007-06-29 Ryan Yeske <rcyeske@gmail.com>
6647
6648 * net/rcirc.el (rcirc-server-alist): Rename from rcirc-connections.
6649 (rcirc-default-full-name): Rename from rcirc-default-user-full-name.
6650 (rcirc-clear-activity): Make sure RCIRC-ACTIVITY isn't modified.
6651 (rcirc-print): Never ignore messages from ourself.
6652
6653 2007-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
6654
6655 * font-lock.el (lisp-font-lock-keywords-2): Recognize the new \(?1:..\)
6656 syntax as well. Reported by Juri Linkov <juri@jurta.org>.
6657
6658 2007-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6659
6660 * dnd.el (dnd-get-local-file-name): Set fixcase to t in call to
6661 replace-regexp-in-string.
6662
6663 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
6664
6665 * emacs-lisp/cl.el: Set edebug and indentation before loading
6666 cl-loaddefs.el so that its use of dolist doesn't load cl-macs.
6667
6668 2007-06-28 Andreas Schwab <schwab@suse.de>
6669
6670 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Depend on
6671 $(lisp)/subdirs.el.
6672
6673 2007-06-28 Juanma Barranquero <lekktu@gmail.com>
6674
6675 * speedbar.el (speedbar-handle-delete-frame): Don't try to delete
6676 the speedbar frame if nil; that deletes the current frame or
6677 causes an error if it is the only frame.
6678 Reported by Angelo Graziosi <Angelo.Graziosi@roma1.infn.it>.
6679
6680 2007-06-28 Kevin Ryde <user42@zip.com.au>
6681
6682 * textmodes/nroff-mode.el: Groff \# comments.
6683 (nroff-mode-syntax-table): \# comment intro,
6684 plain # as punct per global table.
6685 (nroff-font-lock-keywords): Add # as a single char escape.
6686 (nroff-mode): In comment-start-skip, match \#.
6687
6688 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
6689
6690 * vc-bzr.el (vc-functions): Clear up the cache when reloading the file.
6691 (vc-bzr-workfile-version, vc-bzr-could-register): Don't hardcode
6692 point-min == 1.
6693
6694 2007-06-28 Nick Roberts <nickrob@snap.net.nz>
6695
6696 * pcvs-util.el (cvs-strings->string, cvs-string->strings):
6697 Rename and move to...
6698
6699 * subr.el (strings->string, string->strings): ...here.
6700
6701 * pcvs.el (cvs-reread-cvsrc, cvs-header-msg, cvs-checkout)
6702 (cvs-mode-checkout, cvs-execute-single-file): Use new function names.
6703
6704 * progmodes/gud.el (gud-common-init): Call string->strings instead
6705 of split-string.
6706
6707 2007-06-27 Michael Albinus <michael.albinus@gmx.de>
6708
6709 * dired-aux.el: Remove `dired-call-process'.
6710 (dired-check-process): Call `process-file'.
6711
6712 * wdired.el (wdired-do-perm-changes): Call `process-file'.
6713
6714 * net/ange-ftp.el (ange-ftp-dired-call-process): Reimplement it as
6715 `ange-ftp-process-file'.
6716
6717 2007-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
6718
6719 * emacs-lisp/cl.el: Use cl-loaddefs.el rather than manual autoloads.
6720
6721 * emacs-lisp/cl-extra.el:
6722 * emacs-lisp/cl-seq.el:
6723 * emacs-lisp/cl-macs.el: Set generated-autoload-file to cl-loaddefs.el.
6724 Add autoload cookies on all defs autoloaded manually in cl.el.
6725
6726 * emacs-lisp/cl-loaddefs.el: New file.
6727
6728 * textmodes/texinfmt.el (texinfo-raisesections-alist)
6729 (texinfo-lowersections-alist): Merge definition and declaration.
6730 (texinfo-start-of-header, texinfo-end-of-header): Remove.
6731 (texinfo-format-syntax-table): Merge init into declaration.
6732 (texinfo-format-parse-line-args, texinfo-format-parse-args)
6733 (texinfo-format-parse-defun-args, texinfo-format-node)
6734 (texinfo-push-stack, texinfo-multitable-widths)
6735 (texinfo-define-info-enclosure, texinfo-alias)
6736 (texinfo-format-defindex, batch-texinfo-format): Use push.
6737 (texinfo-footnote-number): Remove duplicate declaration.
6738
6739 * ps-print.el: Update with auto-generated autoloads.
6740
6741 * ps-mule.el: Set generated-autoload-file to "ps-print.el".
6742
6743 2007-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
6744
6745 * emacs-lisp/autoload.el (autoload-generated-file): Interpret names
6746 relative to current dir for file-local settings.
6747 (autoload-generate-file-autoloads): Add `outfile' arg.
6748 (update-directory-autoloads): Use it to directly call
6749 autoload-generate-file-autoloads instead of going through
6750 update-file-autoloads so we avoid redundant searches and so we can know
6751 the set of buffers changed so we can save them all.
6752
6753 * emacs-lisp/autoload.el (autoload-find-destination): Return nil
6754 rather than throwing `up-to-date'.
6755 (autoload-generate-file-autoloads): Adjust correspondingly.
6756 (update-file-autoloads): Be careful to let-bind
6757 autoload-modified-buffers and adjust to new calling conventions.
6758 (autoload-modified-buffers): Make it a dynamically scoped var.
6759 (update-directory-autoloads): Use file-relative-name instead of
6760 autoload-trim-file-name.
6761 (autoload-insert-section-header): Don't use autoload-trim-file-name
6762 since the file is already relative now.
6763 (autoload-trim-file-name): Remove.
6764
6765 * vc-arch.el (vc-arch-add-tagline): Do a slightly cleaner job.
6766 (vc-arch-complete, vc-arch--version-completion-table)
6767 (vc-arch-revision-completion-table): New functions to provide
6768 completion of revision names.
6769 (vc-arch-trim-find-least-useful-rev, vc-arch-trim-make-sentinel)
6770 (vc-arch-trim-one-revlib, vc-arch-trim-revlib): New functions
6771 to let the user trim the revlib.
6772
6773 * vc.el: Add new VC operation `revision-completion-table'.
6774 (vc-default-revision-completion-table): New function.
6775 (vc-version-diff, vc-version-other-window): Use it to provide
6776 completion of revision names if the backend provides it.
6777
6778 * log-edit.el (log-edit-changelog-entries): Use with-current-buffer.
6779
6780 * vc-svn.el (vc-svn-repository-hostname): Adjust to non-XML format
6781 of newer .svn/entries.
6782
6783 2007-06-25 David Kastrup <dak@gnu.org>
6784
6785 * calc/calc-poly.el (math-padded-polynomial)
6786 (math-partial-fractions): Add some function comments.
6787
6788 2007-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
6789
6790 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6791 Make `outbuf' optional.
6792 (update-file-autoloads): Use it.
6793
6794 2007-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
6795
6796 * emacs-lisp/autoload.el (autoload-modified-buffers): New var.
6797 (autoload-find-destination): Keep it uptodate.
6798 (autoload-save-buffers): New fun.
6799 (update-file-autoloads): Use it. Re-add the "up to date" message.
6800
6801 * emacs-lisp/autoload.el: Refactor for upcoming changes.
6802 (autoload-find-destination): New function extracted from
6803 update-file-autoloads.
6804 (update-file-autoloads): Use it.
6805 (autoload-generate-file-autoloads): New function extracted from
6806 generate-file-autoloads. Use file-relative-name. Delay computation of
6807 output-start to the first cookie. Remove done-any, replaced by
6808 output-start.
6809 (generate-file-autoloads): Use it.
6810
6811 2007-06-24 Jay Belanger <jay.p.belanger@gmail.com>
6812
6813 * calc/calc-comb.el (math-init-random-base, math-prime-test):
6814 Use math-read-number-simple to insert constants.
6815 (math-prime-test): Redo calculation of sum.
6816
6817 * calc/calc-misc.el (math-div2-bignum): Use math-bignum-digit-size.
6818
6819 * calc/calc-math.el (math-scale-bignum-digit-size): Rename from
6820 math-scale-bignum-3.
6821 (math-isqrt-bignum): Use math-scale-bignum-digit-size and
6822 math-bignum-digit-size.
6823 (math-isqrt-small): Add another possible initial guess.
6824
6825 2007-06-23 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6826
6827 * textmodes/bibtex.el (bibtex-entry-format): New options
6828 `whitespace', `braces', and `string'.
6829 (bibtex-field-braces-alist, bibtex-field-strings-alist)
6830 (bibtex-field-braces-opt, bibtex-field-strings-opt)
6831 (bibtex-cite-matcher-alist): New variables.
6832 (bibtex-font-lock-keywords): Use bibtex-cite-matcher-alist.
6833 (bibtex-flash-head): Use blink-matching-delay.
6834 (bibtex-insert-kill, bibtex-mark-entry): Use push-mark.
6835 (bibtex-format-entry, bibtex-reformat): Handle new options of
6836 bibtex-entry-format.
6837 (bibtex-field-re-init, bibtex-font-lock-cite, bibtex-dist):
6838 New functions.
6839 (bibtex-complete-internal): Do not display messages while
6840 minibuffer is used. Do not leave around a completions buffer
6841 that is out of date.
6842 (bibtex-copy-summary-as-kill): New optional arg.
6843 (bibtex-font-lock-url): New optional arg no-button.
6844 (bibtex-find-crossref): Use `bibtex-cite-matcher-alist'.
6845 (bibtex-url): Allow multiple URLs per entry.
6846
6847 2007-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
6848
6849 * emacs-lisp/autoload.el (autoload-generated-file): New function.
6850 (update-file-autoloads, update-directory-autoloads): Use it.
6851 (autoload-file-load-name): New function.
6852 (generate-file-autoloads, update-file-autoloads): Use it.
6853 (autoload-find-file): Accept non-absolute argument. Set default-dir.
6854 (generate-file-autoloads): If the autoloaded form is malformed,
6855 indicate the problem with a warning instead of aborting.
6856
6857 2007-06-23 Thien-Thi Nguyen <ttn@gnuvola.org>
6858
6859 * simple.el (next-error-recenter): Accept `(4)' as well;
6860 also, specify `integer' instead of `number'.
6861
6862 2007-06-23 Eli Zaretskii <eliz@gnu.org>
6863
6864 * ls-lisp.el (insert-directory): If an invalid regexp error is
6865 thrown, try using FILE as a literal file name, not a wildcard.
6866
6867 2007-06-23 Juanma Barranquero <lekktu@gmail.com>
6868
6869 * ruler-mode.el (ruler-mode): Prevent clobbering the original
6870 `header-line-format' when reentering ruler mode.
6871
6872 2007-06-23 Eli Zaretskii <eliz@gnu.org>
6873
6874 * ls-lisp.el (insert-directory): Don't treat FILE as a wildcard if
6875 FILE exists as a file.
6876
6877 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
6878
6879 * calc/calc.el (math-bignum-digit-length)
6880 (math-bignum-digit-size, math-small-integer-size):
6881 New constants.
6882 (math-normalize, math-bignum-big, math-make-float)
6883 (math-div10-bignum, math-scale-left, math-scale-left-bignum)
6884 (math-scale-right, math-scale-right-bignum, math-scale-rounding)
6885 (math-add, math-add-bignum, math-sub-bignum, math-sub, math-mul)
6886 (math-mul-bignum, math-mul-bignum-digit, math-idivmod)
6887 (math-quotient, math-div-bignum, math-div-bignum-digit)
6888 (math-div-bignum-part, math-format-bignum-decimal)
6889 (math-read-bignum): Use math-bignum-digit-length,
6890 math-bignum-digit-size and math-small-integer-size.
6891
6892 * calc/calc-ext.el (math-fixnum-big): Use the variable
6893 math-bignum-digit-size.
6894
6895 2007-06-23 Dan Nicolaescu <dann@ics.uci.edu>
6896
6897 * log-view.el (log-view-mode-menu): New menu.
6898
6899 2007-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
6900
6901 * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change
6902 differently.
6903
6904 * vc-hg.el (vc-hg-registered): Add an autoloaded version.
6905 (vc-hg-log-view-mode): Use log-view-font-lock-keywords.
6906
6907 2007-06-22 Dan Nicolaescu <dann@ics.uci.edu>
6908
6909 * vc-hg.el (vc-hg-print-log): Insert the file name.
6910 (vc-hg-log-view-mode): Fontify the file name.
6911
6912 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
6913
6914 * calc/calc-forms.el (math-format-date-part, calc-parse-standard-date)
6915 (calcFunc-julian): Fix incorrect number used in calculations.
6916
6917 2007-06-22 Thien-Thi Nguyen <ttn@gnuvola.org>
6918
6919 * simple.el (next-error-recenter): New defcustom.
6920 (next-error, next-error-internal): Recenter if specified,
6921 immediately prior to running `next-error-hook'.
6922
6923 * progmodes/hideshow.el (hs-show-block): Use line-end-position.
6924 (hs-hide-block-at-point, hs-hide-comment-region): Likewise.
6925
6926 * progmodes/hideshow.el (hs-hide-all): Use progress reporter.
6927
6928 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
6929
6930 * calc/calc-comb.el (math-small-factorial-table): New variable.
6931 (calcFunc-fact): Use `math-small-factorial-table'.
6932
6933 * calc/calc-ext.el (math-defcache): Allow forms to evaluate
6934 initial values.
6935 (math-approx-pi, math-approx-sqrt-e, math-approx-gamma-const):
6936 New variables to use in caches.
6937
6938 * calc/calc-forms.el (math-format-date-part, math-parse-standard-date)
6939 (calcFunc-julian): Use `math-read-number-simple' to insert bignums.
6940
6941 * calc/calc-func.el (math-besJ0, math-besJ1, math-besY0, math-besY1)
6942 (math-bernoulli-b-cache): Use math-read-number-simple to insert
6943 bignums.
6944
6945 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
6946 New variables to use in caches.
6947
6948 2007-06-22 Dan Nicolaescu <dann@ics.uci.edu>
6949
6950 * vc-bzr.el (vc-bzr-log-view-mode): Add + to the email address regexp.
6951
6952 * vc-hg.el (vc-hg-log-view-mode): New mode.
6953
6954 2007-06-21 Jay Belanger <jay.p.belanger@gmail.com>
6955
6956 * calc/calc.el (math-read-number-simple): New function.
6957
6958 2007-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
6959
6960 * progmodes/vera-mode.el (vera-mode): Fix `commend-end-skip' setting.
6961 (vera-font-lock-match-item): Fix doc string.
6962 (vera-in-comment-p): Remove unused function.
6963 (vera-skip-forward-literal, vera-skip-backward-literal): Improve code,
6964 use `syntax-ppss'.
6965 (vera-forward-syntactic-ws): Fix argument order.
6966 (vera-prepare-search): Use `with-syntax-table'.
6967 (vera-indent-line): Fix doc string.
6968 (vera-electric-tab): Fix doc string.
6969 (vera-expand-abbrev): Define alias instead of using `fset'.
6970 (vera-comment-uncomment-region): Use `comment-start-skip'.
6971
6972 2007-06-21 Carsten Dominik <dominik@science.uva.nl>
6973
6974 * textmodes/org.el (org-export-with-footnotes): New option.
6975 (org-export-as-html): Fix replacement bug for XEmacs.
6976 (org-agenda-default-appointment-duration): New option.
6977
6978 2007-06-21 Dan Nicolaescu <dann@ics.uci.edu>
6979
6980 * vc-hg.el: Add to do items.
6981 (vc-hg-diff): Add support for comparing different revisions.
6982 (vc-hg-diff, vc-hg-annotate-command, vc-hg-annotate-time)
6983 (vc-hg-annotate-extract-revision-at-line)
6984 (vc-hg-previous-version, vc-hg-checkin): New functions.
6985 (vc-hg-annotate-re): New constant.
6986
6987 2007-06-20 Jay Belanger <jay.p.belanger@gmail.com>
6988
6989 * calc/calc.el (math-standard-ops): Fix precedence of multiplication.
6990
6991 2007-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
6992
6993 * log-view.el (log-view-font-lock-keywords): Use `eval' to consult the
6994 buffer-local value of log-view-*-re if applicable.
6995
6996 * vc-bzr.el (vc-bzr-dir-state): Use setq rather than set.
6997 Use vc-bzr-command rather than the ill defined vc-bzr-command*.
6998 (vc-bzr-command*): Remove both (incompatible) versions.
6999 (vc-bzr-do-command*): Remove.
7000 (vc-bzr-with-process-environment, vc-bzr-std-process-invocation):
7001 Remove by folding into its only caller vc-bzr-command.
7002 (vc-bzr-command): Always set the environment, even when ineffective.
7003 (vc-bzr-version): Minor fix up.
7004 (vc-bzr-admin-dirname): New var.
7005 (vc-bzr-bzr-dir): Remove.
7006 (vc-bzr-root-dir): New fun.
7007 (vc-bzr-registered): Use it. Add an autoloaded version.
7008 (vc-bzr-responsible-p): Use vc-bzr-root-dir as well.
7009 (vc-bzr-view-log-function): Remove.
7010 (vc-bzr-log-view-mode): New major mode to replace it.
7011 (vc-bzr-print-log): Only activate the old hack if needed.
7012
7013 * vc.el (vc-default-log-view-mode): New function.
7014 (vc-print-log): Add new `log-view-mode' VC operation.
7015
7016 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
7017
7018 * ido.el (ido-find-file-in-dir): Don't signal an error for
7019 empty directories.
7020
7021 * add-log.el (change-log-mode): Set `show-trailing-whitespace'.
7022
7023 * desktop.el (desktop-read): Run `desktop-not-loaded-hook' in the
7024 directory where the desktop file was found, as the docstring says.
7025 (desktop-kill): Use `read-directory-name'.
7026
7027 2007-06-20 Alan Mackenzie <acm@muc.de>
7028
7029 * progmodes/cc-mode.el (c-remove-any-local-eval-or-mode-variables):
7030 When removing lines, also remove the \n. Correction of patch of
7031 2007-04-21.
7032
7033 2007-06-20 Martin Rudalics <rudalics@gmx.at>
7034
7035 * mouse.el (mouse-drag-mode-line-1): Quit mouse tracking when
7036 event is not a cons cell. Do not unread drag-mouse-1 events.
7037 Select right window in check whether space was stolen from
7038 window above.
7039
7040 * help-mode.el (help-make-xrefs): Adjust position of new forward
7041 button.
7042
7043 2007-06-20 Riccardo Murri <riccardo.murri@gmail.com>
7044
7045 * vc-bzr.el (vc-bzr-with-process-environment)
7046 (vc-bzr-std-process-invocation): New macros.
7047 (vc-bzr-command, vc-bzr-command*): Use them.
7048 (vc-bzr-with-c-locale): Remove.
7049 (vc-bzr-dir-state): Replace its use with vc-bzr-command.
7050 (vc-bzr-buffer-nonblank-p): New function.
7051 (vc-bzr-state-words): New const.
7052 (vc-bzr-state): Look for `bzr status' keywords in output.
7053 Display everything else as a warning message to the user.
7054 Fix status report with bzr >= 0.15.
7055
7056 2007-06-20 Dan Nicolaescu <dann@ics.uci.edu>
7057
7058 * vc-hg.el (vc-hg-global-switches): Simplify.
7059 (vc-hg-state): Handle more states.
7060 (vc-hg-diff): Fix doc-string.
7061 (vc-hg-register): New function.
7062 (vc-hg-checkout): Likewise.
7063
7064 2007-06-20 Reto Zimmermann <reto@gnu.org>
7065
7066 * progmodes/vera-mode.el: New file.
7067
7068 2007-06-19 Jay Belanger <jay.p.belanger@gmail.com>
7069
7070 * calc/calc.el (calc-multiplication-has-precendence):
7071 New variable.
7072 (math-standard-ops, math-standard-ops-p, math-expr-ops):
7073 New functions.
7074 (math-expr-opers): Define using math-standard-ops rather than
7075 math-standard-opers.
7076 * calc/calc-aent.el (calc-do-calc-eval): Let math-expr-opers
7077 equal the function math-standard-ops rather than the variable
7078 math-standard-opers.
7079 (calc-algebraic-entry): Let math-expr-opers equal
7080 math-standard-ops or math-expr-ops, as appropriate.
7081 (math-expr-read-level, math-read-factor): Let math-expr-opers
7082 equal math-expr-ops.
7083 * calc/calc-embed.el (calc-embedded-finish-edit):
7084 Let math-expr-opers equal the function math-standard-ops
7085 rather than the variable math-standard-opers.
7086 * calc/calc-ext.el (math-read-plain-expr)
7087 (math-format-flat-expr-fancy): Let math-expr-opers equal the
7088 function math-standard-ops rather than the variable
7089 math-standard-opers.
7090 * calc/calc-lang.el (calc-set-language, math-read-big-rec):
7091 Let math-expr-opers equal the function math-standard-ops rather
7092 than the variable math-standard-opers.
7093 * calc/calc-prog.el (calc-read-parse-table): Let math-expr-opers
7094 equal the function math-standard-ops rather than the variable
7095 math-standard-opers.
7096 * calc/calc-yank.el (calc-finish-stack-edit): Let math-expr-opers
7097 equal the function math-standard-ops rather than the variable
7098 math-standard-opers.
7099 * calc/calccomp.el (math-compose-expr): Let math-expr-opers equal
7100 math-expr-ops.
7101
7102 2007-06-19 Ivan Kanis <apple@kanis.eu>
7103
7104 * vc-hg.el: New file.
7105
7106 2007-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
7107
7108 * progmodes/sh-script.el (sh-font-lock-paren): Mark the relevant text
7109 with font-lock-multiline.
7110
7111 2007-06-17 Glenn Morris <rgm@gnu.org>
7112
7113 * lpr.el (lpr-page-header-switches): Move %s to separate element
7114 for correct quoting. Doc fix.
7115
7116 2007-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
7117
7118 * textmodes/sgml-mode.el (sgml-xml-guess): Return the result rather
7119 than setting sgml-xml-mode.
7120 (sgml-mode, html-mode): Set sgml-xml-mode.
7121 (sgml-skip-tag-backward): Tell if we skipped over matched tags.
7122 (sgml-skip-tag-backward, sgml-electric-tag-pair-overlays): New var.
7123 (sgml-electric-tag-pair-before-change-function)
7124 (sgml-electric-tag-pair-flush-overlays): New functions.
7125 (sgml-electric-tag-pair-mode): New minor mode.
7126 (sgml-font-lock-keywords-2, sgml-get-context, sgml-unclosed-tag-p)
7127 (sgml-calculate-indent): Use assoc-string.
7128
7129 2007-06-16 Karl Fogel <kfogel@red-bean.com>
7130
7131 * thingatpt.el (thing-at-point-email-regexp): Don't require two
7132 chars before the "@" in an email address. Andreas Roehler noticed
7133 this problem.
7134
7135 2007-06-15 Karl Fogel <kfogel@red-bean.com>
7136
7137 * thingatpt.el: Add support for email addresses (`email').
7138 (thing-at-point, bounds-of-thing-at-point): Document `email' support.
7139 (thing-at-point-email-regexp): New variable.
7140 (`email'): Put `bounds-of-thing-at-point' and `thing-at-point'
7141 properties on this symbol, with lambda forms for values.
7142
7143 2007-06-15 Masatake YAMATO <jet@gyve.org>
7144
7145 * vc-bzr.el (vc-bzr-root): Cache the output of shell command execution.
7146
7147 * vc.el (vc-dired-hook): Check the backend returned from
7148 `vc-responsible-backend' can really handle `subdir'.
7149
7150 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
7151
7152 * wid-edit.el (widget-add-documentation-string-button):
7153 Fix handling of documentation indent.
7154
7155 2007-06-15 Miles Bader <miles@fencepost.gnu.org>
7156
7157 * mb-depth.el: New file.
7158
7159 2007-06-15 Masatake YAMATO <jet@gyve.org>
7160
7161 * vc.el (vc-dired-mode): Show backend name as part of mode name.
7162
7163 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
7164
7165 * wid-edit.el (widget-default-create): Move ?h handling here...
7166 (widget-default-format-handler): ...from here.
7167 (widget-docstring, widget-add-documentation-string-button): New funs.
7168 (documentation-string): Add :visibility-widget property.
7169 (widget-documentation-string-value-create): Use it.
7170
7171 * cus-edit.el (custom-split-regexp-maybe): Simplify.
7172 (custom-buffer-create-internal): Simplify message.
7173 (custom-variable-tag): Reduce height to normal.
7174 (custom-variable-value-create, custom-face-value-create)
7175 (custom-visibility): New widget.
7176 (custom-visibility): New face.
7177 (custom-group-value-create):
7178 Call widget-add-documentation-string-button, using `custom-visibility'.
7179
7180 2007-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
7181
7182 * emacs-lisp/bytecomp.el (byte-compile-current-group)
7183 (byte-compile-nogroup-warn, byte-compile-file): Revert part of last
7184 change. Apparently the "warning even if the group is implicit" is
7185 a feature rather than a bug.
7186
7187 2007-06-14 Michael Kifer <kifer@cs.stonybrook.edu>
7188
7189 * emulation/viper.el (viper-describe-key-ad)
7190 (viper-describe-key-briefly-ad): Different advices for Emacs and XEmacs.
7191 Compile them conditionally.
7192 (viper-version): Belated version change.
7193
7194 2007-06-14 Juanma Barranquero <lekktu@gmail.com>
7195
7196 * follow.el (follow-all-followers, follow-generic-filter):
7197 * pcomplete.el (pcomplete-restore-windows):
7198 * x-dnd.el (x-dnd-maybe-call-test-function, x-dnd-save-state)
7199 (x-dnd-drop-data):
7200 * emacs-lisp/edebug.el (edebug-pop-to-buffer, edebug-display):
7201 * progmodes/python.el (python-complete-symbol):
7202 * term/mac-win.el (mac-dnd-drop-data): Remove redundant check.
7203
7204 2007-06-13 Ryan Yeske <rcyeske@gmail.com>
7205
7206 * net/rcirc.el (rcirc-format-response-string): Use rcirc-nick-syntax
7207 around bright and dim regexps. Make sure bright and dim matches
7208 use word anchors. Send text through rcirc-markup functions.
7209 (rcirc-url-regexp): Add single quote character.
7210 (rcirc-connect): Write logs to disk on auto-save-hook.
7211 Make server a non-optional argument.
7212 (rcirc-log-alist): New variable.
7213 (rcirc-log-directory): Make customizable.
7214 (rcirc-log-flag): New customizable variable.
7215 (rcirc-log): New function.
7216 (rcirc-print): Use above function.
7217 (rcirc-log-write): New function.
7218 (rcirc-generate-new-buffer-name): Strip text properties.
7219 (rcirc-switch-to-buffer-function): Remove variable.
7220 (rcirc-last-non-irc-buffer): Remove variable.
7221 (rcirc-non-irc-buffer): Add function.
7222 (rcirc-next-active-buffer): Use above function.
7223 (rcirc-keepalive): Send KEEPALIVE ctcp instead of a PING.
7224 (rcirc-handler-ctcp-KEEPALIVE): Add handler.
7225 (rcirc-handler-CTCP): Don't print KEEPALIVE responses.
7226 (rcirc-omit-mode): Add minor-mode.
7227 (rcirc-mode-map): Change C-c C-o binding.
7228 (rcirc-mode): Clear mode-line-process. Use a custom
7229 fill-paragraph-function. Set up buffer-invisibility-spec.
7230 (rcirc-response-formats): Remove timestamp code.
7231 (rcirc-omit-responses): Add variable.
7232 (rcirc-print): Don't put the overlay arrow on potentially omitted
7233 lines. Log line to disk. Record activity for private messages
7234 from /dim nicks. Facify the fill-prefix with rcirc-timestamp face.
7235 (rcirc-jump-to-first-unread-line): Print message if there is no
7236 unread text.
7237 (rcirc-clear-unread): New function.
7238 (rcirc-markup-text-functions): Add variable.
7239 (rcirc-markup-timestamp, rcirc-markup-fill): Add functions.
7240 (rcirc-debug): Don't mess with window configuration.
7241 (rcirc-send-message): Send message before printing locally.
7242 Add SILENT argument, do not print message if non-nil.
7243 (rcirc-visible-buffers): New function and variable.
7244 (rcirc-window-configuration-change-1): Add function.
7245 (rcirc-target-buffer): Make sure ACTIONs don't get sent to the
7246 server buffer.
7247 (rcirc-clean-up-buffer): Set rcirc-target to nil when finished.
7248 (rcirc-fill-paragraph): Add function.
7249 (rcirc-record-activity, rcirc-window-configuration-change-1):
7250 Only update the activity string if it has actually changed.
7251 (rcirc-update-activity-string): Remove padding characters from the
7252 mode-line string.
7253 (rcirc-disconnect-buffer): New function to be called when a
7254 channel is parted or the user quits.
7255 (rcirc-server-name): Warn when the server-name hasn't been set.
7256 (rcirc-window-configuration-change): Postpone work until
7257 post-command-hook.
7258 (rcirc-window-configuration-change-1): Update mode-line and
7259 overlay arrows here.
7260 (rcirc-authenticate): Fixc hanserv identification.
7261 (rcirc-default-server): Remove variable.
7262 (rcirc): Connect according to rcirc-connections.
7263 (rcirc-connections): Add variable.
7264 (rcirc-startup-channels-alist): Remove variable.
7265 (rcirc-startup-channels): Remove function.
7266
7267 2007-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
7268
7269 * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change.
7270
7271 2007-06-13 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se> (tiny change)
7272
7273 * term/xterm.el (terminal-init-xterm): Escape parens in character
7274 constants.
7275
7276 2007-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
7277
7278 * progmodes/sh-script.el: Remove unneeded * from docstrings.
7279 Use [:alpha:] and [:alnum:] where applicable.
7280 (sh-quoted-subshell): Rewrite to correctly
7281 handle nested mixes of `...' and $(...).
7282 (sh-apply-quoted-subshell): Remove.
7283 (sh-font-lock-syntactic-keywords): Adjust call to sh-quoted-subshell.
7284
7285 * vc-arch.el (vc-arch-command): Remove bzr. It's a different program.
7286
7287 2007-06-13 Michael Kifer <kifer@cs.stonybrook.edu>
7288
7289 * ediff-ptch.el (ediff-context-diff-label-regexp): Partially undo
7290 previous change.
7291
7292 2007-06-12 Tom Tromey <tromey@redhat.com>
7293
7294 * subr.el (user-emacs-directory): New defconst.
7295 * cmuscheme.el (scheme-start-file):
7296 * shell.el (shell):
7297 * completion.el (save-completions-file-name):
7298 * custom.el (custom-theme-directory):
7299 * term/x-win.el (emacs-session-filename):
7300 * filesets.el (filesets-menu-cache-file):
7301 * thumbs.el (thumbs-thumbsdir):
7302 * server.el (server-auth-dir):
7303 * image-dired.el (image-dired-dir):
7304 (image-dired-db-file):
7305 (image-dired-temp-image-file):
7306 (image-dired-gallery-dir):
7307 (image-dired-temp-rotate-image-file):
7308 * play/gamegrid.el (gamegrid-user-score-file-directory):
7309 * savehist.el (savehist-file):
7310 * tutorial.el (tutorial--saved-dir):
7311 * startup.el (auto-save-list-file-prefix): Use user-emacs-directory.
7312
7313 2007-06-12 Ralf Angeli <angeli@caeruleus.net>
7314
7315 * scroll-lock.el (scroll-lock-mode): Doc fix.
7316
7317 2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
7318
7319 * ediff-ptch.el (ediff-context-diff-label-regexp): Spurious parenthesis.
7320
7321 * ediff-init.el: Doc strings.
7322
7323 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
7324
7325 * emacs-lisp/bytecomp.el (byte-compile-current-group): New var.
7326 (byte-compile-file): Bind it.
7327 (byte-compile-nogroup-warn): Use it to avoid spurious warnings when the
7328 group argument is provided implicitly.
7329 (byte-compile-format-warn, byte-compile-from-buffer)
7330 (byte-compile-insert-header): Don't hardcode point-min==1.
7331 (byte-compile-file-form-require): Remove unused var old-load-list.
7332 (byte-compile-eval): Remove unused vars old-autoloads and hist-nil-new.
7333
7334 2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
7335
7336 * emulation/viper-cmd.el (viper-prefix-arg-com, viper-prefix-arg-value):
7337 Display error messages.
7338 (viper-prev-destructive-command, viper-insert-prev-from-insertion-ring):
7339 Get rid of cl.el dependencies.
7340
7341 * emulation/viper-init.el (viper-suppress-input-method-change-message):
7342 New variable.
7343 (viper-activate-input-method-action)
7344 (viper-inactivate-input-method-action):
7345 Use viper-suppress-input-method-change-message.
7346
7347 * emulation/viper-kem.el (viper-vi-basic-map): Disable the bindings
7348 for C-s, C-r.
7349
7350 * emulation/viper-util.el (viper-set-cursor-color-according-to-state):
7351 Use viper-replace-overlay-cursor-color instead of
7352 viper-replace-overlay-cursor-color.
7353 (viper-sit-for-short): Use sit-for with 3 arguments.
7354
7355 * emulation/viper.el (viper-insert-state-mode-list): Add gud-mode.
7356 (viper-major-mode-modifier-list): Add viper-comint-mode-modifier-map
7357 to gud-mode.
7358
7359 * ediff-mult.el (ediff-meta-buffer-brief-message)
7360 (ediff-meta-buffer-verbose-message): New variables.
7361 (ediff-meta-buffer-message): Variable deleted.
7362 (ediff-verbose-help-enabled): New variable.
7363 (ediff-toggle-verbose-help-meta-buffer): New function.
7364 (ediff-redraw-directory-group-buffer): Made aware of short/verbose
7365 message options.
7366
7367 * ediff-ptch.el (ediff-context-diff-label-regexp): Better regexp.
7368 (ediff-fixup-patch-map): Improve heuristic.
7369
7370 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
7371
7372 * log-view.el (log-view-file-re, log-view-message-re): Use \(?1:...\).
7373 (log-view-font-lock-keywords): Simplify.
7374 (log-view-current-file, log-view-current-tag): Simplify.
7375
7376 2007-06-12 Sam Steingold <sds@gnu.org>
7377
7378 * vc-arch.el (vc-arch-command): Also try "baz" and "bzr".
7379
7380 2007-06-12 Juanma Barranquero <lekktu@gmail.com>
7381
7382 * desktop.el (desktop-load-locked-desktop): New option.
7383 (desktop-read): Use it.
7384 (desktop-truncate, desktop-outvar, desktop-restore-file-buffer):
7385 Use `when'.
7386
7387 2007-06-12 Davis Herring <herring@lanl.gov>
7388
7389 * desktop.el (desktop-save-mode-off): New function.
7390 (desktop-base-lock-name, desktop-not-loaded-hook): New variables.
7391 (desktop-full-lock-name, desktop-file-modtime, desktop-owner)
7392 (desktop-claim-lock, desktop-release-lock): New functions.
7393 (desktop-kill): Tell `desktop-save' that this is the last save.
7394 Release the lock afterwards.
7395 (desktop-buffer-info): New function.
7396 (desktop-save): Use it. Run `desktop-save-hook' where the doc
7397 says to. Detect conflicts, and manage the lock.
7398 (desktop-read): Detect conflicts. Manage the lock.
7399
7400 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
7401
7402 * emulation/tpu-mapper.el (tpu-emacs-map-key): Use new keymap names.
7403
7404 * emulation/tpu-edt.el (tpu-gold-map): Rename from GOLD-map.
7405 (tpu-lucid-emacs-p): Remove. Use (featurep 'xemacs) instead.
7406 (CSI-map, GOLD-CSI-map, GOLD-SS3-map, SS3-map): Delete vars.
7407 (tpu-gold-map, tpu-global-map): Add all the SS3 and CSI bindings, using
7408 keysyms rather than byte sequences.
7409 (tpu-copy-keyfile): Don't force the user to use tpu-mapper.el.
7410
7411 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
7412
7413 * font-lock.el (font-lock-add-keywords): In case font-lock was only
7414 half-activated, forcefully activate it completely.
7415
7416 2007-06-11 Richard Stallman <rms@gnu.org>
7417
7418 * cus-edit.el (custom-variable-type): Doc fix.
7419
7420 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
7421
7422 * progmodes/sh-script.el (sh-font-lock-backslash-quote)
7423 (sh-font-lock-flush-syntax-ppss-cache): New functions.
7424 (sh-font-lock-syntactic-keywords): Use them to distinguish the
7425 different possible cases for \'.
7426
7427 * complete.el (PC-bindings): Don't bind things already bound in the
7428 parent keymap.
7429
7430 * textmodes/bibtex-style.el: New file.
7431
7432 2007-06-11 Riccardo Murri <riccardo.murri@gmail.com>
7433
7434 * vc-bzr.el: New file.
7435
7436 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
7437
7438 * vc-svn.el (vc-svn-program): New var.
7439 (vc-svn-command): Use it.
7440
7441 2007-06-11 Juanma Barranquero <lekktu@gmail.com>
7442
7443 * server.el (server-switch-buffer): Remove redundant check.
7444
7445 2007-06-10 Martin Rudalics <rudalics@gmx.at>
7446
7447 * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
7448 Match against file-name-nondirectory.
7449 Fix text on user customization variables.
7450 Reported by Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>.
7451
7452 2007-06-09 Alfred M. Szmidt <ams@gnu.org> (tiny change)
7453
7454 * mail/rmail.el (rmail-movemail-variant-in-use): Fix doc typo.
7455
7456 2007-06-09 Davis Herring <herring@lanl.gov>
7457
7458 * desktop.el (desktop-minor-mode-table): Doc fix.
7459
7460 2007-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
7461
7462 * textmodes/css-mode.el (css-navigation-syntax-table):
7463 Use set-char-table-range so it also works in the unicode branch.
7464
7465 2007-06-08 Nick Roberts <nickrob@snap.net.nz>
7466
7467 * help-mode.el (help-xref-forward-stack)
7468 (help-xref-stack-forward-item, help-forward-label): New variables.
7469 (help-forward): New button type.
7470 (help-setup-xref): Initialise help-xref-forward-stack.
7471 (help-make-xrefs): Add forward button, if appropriate.
7472 (help-xref-go-back): Push item on forward stack.
7473 (help-xref-go-forward, help-go-forward): New functions.
7474
7475 2007-06-07 Chong Yidong <cyd@stupidchicken.com>
7476
7477 * dired.el (dired-mode-map): Remove spurious separator.
7478
7479 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
7480
7481 * progmodes/ebrowse.el (ebrowse-draw-file-member-info): Doc fix.
7482
7483 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
7484 * progmodes/idlwave.el (idlwave-one-key-select): Fix typo in docstring.
7485
7486 2007-06-07 Carsten Dominik <dominik@science.uva.nl>
7487
7488 * textmodes/org.el: Version number fixed.
7489
7490 2007-06-07 Glenn Morris <rgm@gnu.org>
7491
7492 * version.el (emacs-copyright): New constant.
7493 * startup.el (fancy-splash-tail): Use emacs-copyright.
7494 * calc/calc-help.el (calc-full-help): Use emacs-copyright.
7495
7496 * emacs-lisp/bytecomp.el (byte-compile-warnings): Add new option
7497 `make-local'.
7498 (byte-compile-warnings-safe-p): Add `make-local'.
7499 (byte-compile-make-variable-buffer-local):
7500 Allow byte-compile-warnings to suppress this warning.
7501
7502 * tutorial.el (tutorial--describe-nonstandard-key): Adjust for new
7503 format of "menu" description.
7504 (tutorial--find-changed-keys): Describe the specific menu a
7505 command is in.
7506
7507 * dframe.el (dframe-frame-parameter, dframe-mouse-event-p):
7508 Rewrite compatibility functions to silence byte-compiler.
7509
7510 2007-06-07 Alfred M. Szmidt <ams@gnu.org> (tiny change)
7511
7512 * mail/rmailsum.el (rmail-summary-save-buffer): New command.
7513 (rmail-summary-mode-map): Add rmail-summary-save-buffer.
7514
7515 2007-06-07 Eric M. Ludlam <eric@siege-engine.com>
7516
7517 * emacs-lisp/checkdoc.el (checkdoc-ispell-lisp-words): Remove "iff".
7518
7519 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
7520
7521 * progmodes/ebrowse.el (ebrowse-member-table):
7522 * textmodes/org.el (org-export-ascii-bullets, org-batch-agenda)
7523 (org-batch-agenda-csv): Fix typos in docstrings.
7524
7525 2007-06-06 Juanma Barranquero <lekktu@gmail.com>
7526
7527 * international/mule-cmds.el (toggle-enable-multibyte-characters)
7528 (sort-coding-systems, search-unencodable-char): Doc fixes.
7529 (coding-system-change-eol-conversion, set-default-coding-systems)
7530 (prefer-coding-system, find-multibyte-characters, princ-list)
7531 (leim-list-entry-regexp, set-input-method, locale-language-names)
7532 (input-method-exit-on-first-char, exit-language-environment-hook)
7533 (locale-charset-language-names): Fix typos in docstrings.
7534
7535 2007-06-06 Juanma Barranquero <lekktu@gmail.com>
7536
7537 * pgg.el (pgg-sign-region, pgg-sign):
7538 * ses.el (ses-call-printer):
7539 * calendar/icalendar.el (icalendar--diarytime-to-isotime):
7540 * textmodes/org.el (org-cycle): Fix typos in docstrings.
7541
7542 2007-06-06 Carsten Dominik <dominik@science.uva.nl>
7543
7544 * textmodes/org.el (org-export-region-as-html)
7545 (org-replace-region-by-html, org-number-to-letters)
7546 (org-table-fedit-finish, org-normalize-color)
7547 (org-table-fedit-ref-right, org-date-to-gregorian)
7548 (org-table-fedit-move, org-table-convert-refs-to-rc)
7549 (org-calendar-holiday, org-table-fedit-toggle-ref-type)
7550 (org-write-agenda, org-colgroup-info-to-vline-list)
7551 (org-agenda-todo-previousset, org-defkey, org-encode-for-stdout)
7552 (org-indent-line-function, org-export-as-html-to-buffer)
7553 (org-store-agenda-views, org-update-mode-line)
7554 (org-find-if, org-delete-all)
7555 (org-table-fedit-convert-buffer, org-emphasize)
7556 (org-uniquify, org-table-fedit-lisp-indent)
7557 (org-table-fedit-scroll, org-get-todo-sequence-head)
7558 (org-table-fedit-scroll-down, org-table-fedit-line-down)
7559 (org-table-fedit-ref-left, org-agenda-export-csv-mapper)
7560 (org-table-fedit-toggle-coordinates, org-dvipng-color)
7561 (org-table-fedit-line-up, org-table-fedit-ref-down)
7562 (org-table-formula-from-user, org-mode-flyspell-verify)
7563 (org-cycle-show-empty-lines, org-ctrl-c-ret)
7564 (org-table-formula-to-user, org-diary-to-ical-string)
7565 (orgtbl-export, org-table-fedit-post-command)
7566 (org-closed-in-range, org-shiftcontrolright)
7567 (org-table-convert-refs-to-an, org-table-hline-and-move)
7568 (org-table-formula-less-p, org-format-table-ascii)
7569 (org-agenda-get-sexps, org-shift-refpart)
7570 (org-diary-sexp-entry, org-time-string-to-absolute)
7571 (org-table-show-reference, org-letters-to-number)
7572 (org-fix-agenda-info, org-table-fedit-ref-up)
7573 (org-table-fedit-shift-reference, org-table-fedit-abort)
7574 (org-closest-date, org-shiftcontrolleft)
7575 (org-at-heading-or-item-p, org-rematch-and-replace)
7576 (org-agenda-todo-nextset, org-export-grab-title-from-buffer):
7577 New functions.
7578 (org-table-edit-scroll-down, org-finish-edit-formulas)
7579 (org-table-edit-next-field, org-abort-edit-formulas)
7580 (org-font-lock-level, org-export-find-first-heading-line)
7581 (org-table-edit-line-down, org-table-edit-backward-field)
7582 (org-edit-formula-lisp-indent, org-table-edit-move)
7583 (org-check-log-option, org-this-word)
7584 (org-table-edit-line-up, org-table-edit-formulas-post-command)
7585 (org-agenda-file-to-end, org-expand-file-name)
7586 (org-fake-empty-table-line, org-table-edit-scroll)
7587 (org-toggle-log-option, org-show-reference): Function removed.
7588 (org-inhibit-invisibility, org-table-formula-make-cmp-string):
7589 New defsubsts.
7590 (org-unmodified, org-batch-store-agenda-views)
7591 (org-batch-agenda-csv): New macro.
7592 (org-agenda-export): New customization group.
7593 (org-agenda-skip-deadline-if-done, org-agenda-remove-tags)
7594 (org-highest-priority, org-agenda-exporter-settings)
7595 (org-log-done-with-time, org-replace-disputed-keys)
7596 (org-format-latex-header, org-export-table-header-tags)
7597 (org-cycle-separator-lines, org-export-table-data-tags)
7598 (org-icalendar-include-sexps)
7599 (org-empty-line-terminates-plain-lists)
7600 (org-log-repeat, org-special-ctrl-a)
7601 (org-table-use-standard-references, org-disputed-keys)
7602 (org-export-skip-text-before-1st-heading, org-agenda-with-colors)
7603 (org-agenda-export-html-style): New option.
7604 (org-allow-auto-repeat, org-agenda-remove-tags-when-in-prefix)
7605 (org-CUA-compatible): Option removed.
7606 (org-agenda-structure, org-sexp-date): New face.
7607 (org-todo-keywords-for-agenda, org-not-done-keywords)
7608 (org-planning-or-clock-line-re, org-agenda-name)
7609 (org-table-colgroup-info, org-todo-sets)
7610 (constants-unit-system, org-clock-mode-line-entry)
7611 (org-mode-line-timer, org-table-current-begin-pos)
7612 (org-todo-keywords-1, org-mode-line-string)
7613 (org-table-clean-did-remove-column, org-table-fedit-map)
7614 (org-clock-heading, org-table-buffer-is-an)
7615 (org-agenda-info, org-done-keywords)
7616 (org-done-keywords-for-agenda, org-todo-heads)
7617 (org-todo-kwd-alist, org-clock-start-time): New variable.
7618 (org-todo-kwd-priority-p, org-edit-formulas-map)
7619 (org-repeat-re, org-todo-kwd-max-priority)
7620 (org-version, org-done-string)
7621 (org-table-clean-did-remove-column-1, org-disputed-keys):
7622 Remove variables.
7623 (org-table-translate-regexp, org-repeat-re, org-version): New consts.
7624 (org-ts-lengths): Constant removed.
7625 (org-follow-gnus-link): Don't ask how many articles to read.
7626 (org-export-find-first-export-line): Rename from
7627 `org-export-find-first-heading'.
7628 Use `org-export-skip-text-before-1st-heading'.
7629 (org-table-fedit-post-command): Rename from
7630 `org-table-edit-formulas-post-command'.
7631 (org-table-fedit-finish): Rename from `org-finish-edit-formulas'.
7632 (org-table-fedit-abort): Rename from `org-abort-edit-formulas'.
7633 (org-table-fedit-lisp-indent): Rename from
7634 `org-edit-formula-lisp-indent'.
7635 (org-table-show-reference): Rename from `org-show-reference'.
7636 (org-table-store-formulas): Use `org-table-formula-less-p'.
7637 (org-table-edit-formulas): Position cursor to current field equation.
7638 (org-update-checkbox-count, org-hide-archived-subtrees)
7639 (org-timestamp-up-day, org-timestamp-down-day)
7640 (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
7641 (org-shiftmetadown, org-metaleft, org-metaright, org-metaup)
7642 (org-metadown, org-shiftup, org-shiftdown, org-shiftright)
7643 (org-shiftleft, org-ctrl-c-ctrl-c, org-context):
7644 Let `org-on-heading-p' also check for invisible heading.
7645 (org-read-date): Match am/pm times.
7646 (org-eval-in-calendar): Fix default date in prompt.
7647
7648 2007-06-05 Chong Yidong <cyd@stupidchicken.com>
7649
7650 * files.el (auto-mode-alist): Separate "ChangeLog.1" and
7651 "ChangeLog.a" entries, giving the latter lower priority.
7652
7653 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
7654
7655 * faces.el (face-id): If the argument is a face alias,
7656 return the ID of the target face.
7657
7658 2007-06-05 Michael Albinus <michael.albinus@gmx.de>
7659
7660 * net/socks.el (top): Remove unnecessary copyright line.
7661
7662 2007-06-04 Chong Yidong <cyd@stupidchicken.com>
7663
7664 * longlines.el (longlines-auto-wrap): Handle argument correctly.
7665
7666 2007-06-04 Michael Albinus <michael.albinus@gmx.de>
7667
7668 * net/socks.el: New file, taken from w3 repository.
7669 (top): Update Copyright. Don't load cl.el.
7670 (all): Replace `case' by `cond', `string-to-int' by
7671 `string-to-number', and `process-kill-without-query' by
7672 `set-process-query-on-exit-flag'.
7673 (socks-char-int): Remove defalias and all occurrences.
7674
7675 2007-06-04 Juanma Barranquero <lekktu@gmail.com>
7676
7677 * progmodes/compile.el (compilation-find-file, compilation-handle-exit):
7678 Fix typos in docstrings.
7679 (compilation-search-path, compilation-buffer-name-function): Doc fixes.
7680 (compilation-finish-function): Fix typo in obsolescence declaration.
7681
7682 2007-06-03 Sam Steingold <sds@gnu.org>
7683
7684 * progmodes/compile.el: Add TIMESTAMP to the LOC data structure, to
7685 handle unending automatic recompilation of changed files (`omake -P').
7686 (compilation-loop): VISITED is now 5th CDR.
7687 (compilation-next-error-function): Set TIMESTAMP.
7688
7689 2007-06-03 Sam Steingold <sds@gnu.org>
7690
7691 * files.el (kill-buffer-ask): New function.
7692 (kill-some-buffers): Use it.
7693 (kill-matching-buffers): New user command.
7694
7695 2007-06-01 David Kastrup <dak@gnu.org>
7696
7697 * dired.el (dired-recursive-deletes, dired-recursive-copies):
7698 Change default to `top'.
7699
7700 2007-05-31 Richard Stallman <rms@gnu.org>
7701
7702 * dired.el (dired-do-flagged-delete, dired-do-delete): Doc fix.
7703
7704 2007-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7705
7706 * textmodes/css-mode.el: New file.
7707
7708 2007-05-30 Michael Olson <mwolson@gnu.org>
7709
7710 * emacs-lisp/tq.el (tq-queue-pop): Stifle error when a process has
7711 died and we are trying to send a signal to it. The program using
7712 tq.el should periodically check to see whether the process has
7713 died and react appropriately -- this is not the responsibility of
7714 tq.el, and is consistent with the rest of the tq.el source code.
7715
7716 2007-05-29 Martin Rudalics <rudalics@gmx.at>
7717
7718 * textmodes/table.el (table--point-entered-cell-function)
7719 (table--point-left-cell-function):
7720 Bind `inhibit-point-motion-hooks' to t.
7721
7722 2007-05-29 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
7723
7724 * emacs-lisp/rx.el (rx): Doc fix.
7725
7726 2007-05-28 Juanma Barranquero <lekktu@gmail.com>
7727
7728 * progmodes/idlwave.el (idlwave-routines): Fix typo in docstring.
7729
7730 2007-05-28 Michael Albinus <michael.albinus@gmx.de>
7731
7732 Sync with Tramp 2.0.56.
7733
7734 * net/tramp.el:
7735 * net/tramp-ftp.el:
7736 * net/tramp-smb.el:
7737 * net/tramp-util.el:
7738 * net/tramp-vc.el:
7739 Don't load cl.el, because that pollutes the namespace. Replace cl
7740 macros by their implementations where necessary. Requested by
7741 Richard Stallman <rms@gnu.org>.
7742
7743 * net/tramp.el (top): Make `set-buffer-multibyte' an alias if it
7744 doesn't exist.
7745 (with-parsed-tramp-file-name): Protect debug spec during compilation.
7746 (tramp-handle-insert-directory): Check (featurep 'ls-lisp).
7747 (tramp-file-name-p, tramp-file-name-multi-method)
7748 (tramp-file-name-method, tramp-file-name-user)
7749 (tramp-file-name-host, tramp-file-name-localname): New defuns,
7750 replacing defstruct `tramp-file-name'.
7751 (tramp-handle-file-remote-p, tramp-completion-dissect-file-name1)
7752 (tramp-dissect-file-name, tramp-dissect-multi-file-name):
7753 Apply `vector' instead of `make-tramp-file-name'.
7754 (tramp-handle-make-auto-save-file-name):
7755 Apply `tramp-temporary-file-directory' for compatibility reasons.
7756 (tramp-completion-mode): Use `natnump' instead of `wholenump'
7757 because of XEmacs.
7758 (tramp-completion-mode): `last-input-event' is nil when XEmacs is
7759 started.
7760
7761 2007-05-28 Chong Yidong <cyd@stupidchicken.com>
7762
7763 * textmodes/sgml-mode.el (sgml-point-entered): Use condition-case.
7764
7765 2007-05-27 Tetsurou Okazaki <okazaki@be.to> (tiny change)
7766
7767 * log-edit.el (log-edit-changelog-paragraph): Return point-max
7768 as the end of the ChangeLog paragraph when it ends without a line
7769 termination.
7770
7771 2007-05-27 Ryan Yeske <rcyeske@gmail.com>
7772
7773 * net/webjump.el (webjump-sample-sites):
7774 Add simple Wikipedia query.
7775
7776 2007-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7777
7778 * emacs-lisp/derived.el (define-derived-mode): Remove bogus
7779 compatibility code.
7780
7781 * emacs-lisp/copyright.el (copyright-names-regexp): New var.
7782 (copyright-update-year): Use it.
7783
7784 * edmacro.el (edmacro-format-keys): Use current-active-maps.
7785
7786 * ediff-init.el (ediff-defvar-local, ediff-with-current-buffer):
7787 Add indentation and debugging info. Fix up comment convention.
7788
7789 * cus-dep.el (custom-make-dependencies): Simplify.
7790
7791 * composite.el (compose-region, decompose-region):
7792 Use inhibit-read-only and restore-buffer-modified-p.
7793
7794 * xt-mouse.el (xterm-mouse-truncate-wrap): New function.
7795 (xterm-mouse-event): Use it.
7796
7797 2007-05-25 Juanma Barranquero <lekktu@gmail.com>
7798
7799 * bs.el (bs-cycle-previous): Don't modify the cycle list until
7800 `switch-to-buffer' has returned succesfully.
7801 (bs-cycle-next): Ditto. Also, don't bury the buffer when the
7802 window is dedicated (it could iconify the frame).
7803
7804 2007-05-25 Miles Bader <miles@fencepost.gnu.org>
7805
7806 * vc-hooks.el (vc-find-root): Fix file attribute test.
7807
7808 2007-05-24 Richard Stallman <rms@gnu.org>
7809
7810 * textmodes/flyspell.el (flyspell-correct-word-before-point):
7811 Don't let opoint be nil.
7812 (flyspell-emacs-popup): Explicit error if no dialogs.
7813
7814 2007-05-24 Chong Yidong <cyd@stupidchicken.com>
7815
7816 * image-mode.el (image-forward-hscroll, image-backward-hscroll)
7817 (image-next-line, image-previous-line, image-scroll-up)
7818 (image-scroll-down, image-bol, image-eol, image-bob, image-eob):
7819 New functions.
7820 (image-mode-map): Remap motion commands.
7821 (image-mode-text-map): New keymap for viewing images as text.
7822 (image-mode): Use image-mode-map.
7823 (image-toggle-display): Toggle auto-hscroll-mode and mode keymaps.
7824
7825 2007-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
7826
7827 * textmodes/fill.el (canonically-space-region): Make the second arg
7828 a marker if it's not already the case.
7829
7830 2007-05-23 Eli Zaretskii <eliz@gnu.org>
7831
7832 * tar-mode.el (tar-header-block-summarize, tar-summarize-buffer)
7833 (tar-get-descriptor): Handle type 55, an extended pax header.
7834
7835 2007-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
7836
7837 * autoinsert.el (auto-insert-alist): Quote elisp sample code so as not
7838 to confuse outline-minor-mode.
7839
7840 2007-05-23 Eli Zaretskii <eliz@gnu.org>
7841
7842 * tar-mode.el (tar-file-name-handler): New function.
7843 (tar-extract): Bind file-name-handler-alist to it to force
7844 find-buffer-file-type-coding-system behave as if the file being
7845 extracted existed. Use last-coding-system-used to force
7846 buffer-file-coding-system to what decode-coding-region actually
7847 used to decode the file.
7848
7849 2007-05-23 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
7850
7851 * progmodes/compile.el (compilation-handle-exit):
7852 `compilation-finish-function' may change the current buffer.
7853
7854 2007-05-22 Richard Stallman <rms@gnu.org>
7855
7856 * files.el (set-auto-mode): Doc fix.
7857
7858 2007-05-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7859
7860 * help-fns.el (find-source-lisp-file): New function.
7861 (describe-function-1): Use find-source-lisp-file to find source
7862 file in compile tree.
7863
7864 2007-05-22 Eli Zaretskii <eliz@gnu.org>
7865
7866 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
7867
7868 2007-05-22 Juanma Barranquero <lekktu@gmail.com>
7869
7870 * emacs-lisp/easy-mmode.el (define-minor-mode)
7871 (easy-mmode-define-navigation): Fix typos in docstrings.
7872
7873 2007-05-22 Glenn Morris <rgm@gnu.org>
7874
7875 * files.el (auto-mode-alist): Open `.asd' files in lisp-mode.
7876
7877 2007-05-22 Katsumi Yamaoka <yamaoka@jpl.org>
7878
7879 * mail/mail-extr.el (mail-extract-address-components):
7880 Recognize non-ASCII characters except for NBSP as words.
7881
7882 2007-05-21 Trent Buck <trentbuck@gmail.com> (tiny change)
7883
7884 * net/rcirc.el (rcirc-fill-column): Allow `window-width'.
7885 (rcirc-print): Handle `window-width'.
7886 (rcirc-buffer-maximum-lines): Doc fix.
7887
7888 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
7889
7890 * image-mode.el (image-toggle-display): Don't clear image cache.
7891 Only use filename in image spec if the file is readable.
7892 Call image-refresh.
7893
7894 * image.el (image-type-from-file-name, image-type): Simplify.
7895 (image-type-auto-detected-p): Don't scan auto-mode-alist.
7896
7897 * files.el (magic-mode-alist): Remove image-type-auto-detected-p.
7898 (magic-fallback-mode-alist): Add image-type-auto-detected-p.
7899
7900 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
7901
7902 * t-mouse.el (t-mouse-mode): Reset t-mouse-mode to nil if there
7903 is an error.
7904
7905 * term/linux.el (terminal-init-linux): Don't signal an error
7906 if gpm isn't running.
7907
7908 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
7909
7910 * t-mouse.el: Reduce to a minor-mode macro call.
7911 (t-mouse-mode): Remove the lighter.
7912
7913 * term/linux.el (terminal-init-linux): Enable t-mouse by default.
7914
7915 2007-05-19 Dan Nicolaescu <dann@ics.uci.edu>
7916
7917 * files.el (auto-mode-alist): Change the regexp so that
7918 ChangeLog.unicode and ChangeLog.multi-tty use change-log-mode.
7919
7920 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
7921
7922 * Version 22.1 released.
7923
7924 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
7925
7926 * paren.el (show-paren-function): Undo 2007-04-19 and 2007-04-20
7927 changes.
7928
7929 2007-05-19 Kevin Ryde <user42@zip.com.au>
7930
7931 * info.el (Info-fontify-node): Fontify https as well as http and ftp.
7932
7933 2007-05-18 Thien-Thi Nguyen <ttn@gnuvola.org>
7934
7935 * textmodes/sgml-mode.el: Revert last change.
7936
7937 2007-05-18 Richard Stallman <rms@gnu.org>
7938
7939 * simple.el (push-mark): Doc fix.
7940
7941 2007-05-18 Rob Riepel <riepel@Stanford.EDU>
7942
7943 * emulation/tpu-edt.el (CSI-map, SS3-map): Move from global-map to
7944 tpu-global-map.
7945 (tpu-original-global-map): Variable deleted.
7946 (tpu-control-keys-map): New keymap variable.
7947 (tpu-set-control-keys): Use tpu-reset-control-keys rather than
7948 setting keymapping directly.
7949 (tpu-reset-control-keys): Use tpu-control-keys-map instead of
7950 tpu-global-map.
7951 (tpu-edt-on): Activate the tpu-global-map.
7952 (tpu-edt-off): Deactivate the tpu-global-map.
7953
7954 2007-05-18 Ryan Yeske <rcyeske@gmail.com>
7955
7956 * textmodes/ispell.el (ispell-get-word): Return markers
7957 for start and end positions.
7958 (ispell-word): Assume END is a marker.
7959
7960 2007-05-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7961
7962 * printing.el: Group together all XEmacs/Emacs definitions.
7963 (pr-version): New version 6.9.
7964 (pr-global-menubar, pr-menu-char-height, pr-menu-char-width): New funs.
7965 (pr-menu-char-height, pr-menu-char-width): Fix initialization code.
7966 (pr-menu-bind): Fix code.
7967 (pr-e-frame-char-height, pr-e-frame-char-width)
7968 (pr-e-mouse-pixel-position, pr-x-add-submenu, pr-x-event-function)
7969 (pr-x-event-object, pr-x-find-menu-item, pr-x-font-height)
7970 (pr-x-font-width, pr-x-get-popup-menu-response, pr-x-make-event)
7971 (pr-x-misc-user-event-p, pr-x-relabel-menu-item, pr-x-event-x-pixel)
7972 (pr-x-event-y-pixel): Aliases eliminated.
7973 (pr-xemacs-global-menubar): Macro moved.
7974 (current-menubar, current-mouse-event, zmacs-region-stays)
7975 (deactivate-mark, pr-menu-position, pr-menu-state, pr-ps-name-old)
7976 (pr-txt-name-old, pr-ps-utility-old, pr-even-or-odd-old, pr-temp-menu):
7977 Vars moved.
7978 (pr-region-active-p, pr-menu-position, pr-menu-lookup, pr-menu-lock)
7979 (pr-update-mode-line, pr-do-update-menus, pr-menu-alist)
7980 (pr-relabel-menu-item, pr-menu-set-ps-title, pr-menu-set-txt-title)
7981 (pr-menu-set-utility-title, pr-even-or-odd-pages)
7982 (pr-f-set-keymap-parents, pr-f-set-keymap-name, pr-f-read-string)
7983 (pr-keep-region-active, pr-menu-get-item, pr-menu-set-item-name): Funs
7984 moved.
7985
7986 2007-05-17 Christian Plate <cplate@web.de> (tiny change)
7987
7988 * textmodes/sgml-mode.el (sgml-tag):
7989 Fix bug: Call sgml-transformation-function.
7990
7991 2007-05-17 Martin Rudalics <rudalics@gmx.at>
7992
7993 * hilit-chg.el (highlight-changes-rotate-faces): Don't set
7994 modified flag of buffer. Use `inhibit-modification-hooks'.
7995
7996 2007-05-16 Richard Stallman <rms@gnu.org>
7997
7998 * buff-menu.el (Buffer-menu-sort-column): Doc fix.
7999
8000 2007-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
8001
8002 * files.el (magic-mode-alist, magic-fallback-mode-alist):
8003 Move the *ml, Postscript, and XmCD entries to the fallback part.
8004
8005 * files.el (magic-fallback-mode-alist):
8006 Rename from file-start-mode-alist.
8007
8008 2007-05-16 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
8009
8010 * progmodes/compile.el (compilation-handle-exit): Quote first
8011 argument of `run-hook-with-args'.
8012
8013 2007-05-16 Juanma Barranquero <lekktu@gmail.com>
8014
8015 * buff-menu.el (Buffer-menu-sort-column):
8016 * dabbrev.el (dabbrev-upcase-means-case-search):
8017 * dired.el (dired-recursive-deletes, dired-recursive-copies):
8018 * info.el (Info-current-subfile):
8019 * ls-lisp.el (ls-lisp-verbosity):
8020 * msb.el (msb-menu-cond):
8021 * pcvs.el (cvs-dired-use-hook):
8022 * simple.el (set-mark-command-repeat-pop):
8023 * time.el (display-time-24hr-format, display-time-mail-file):
8024 Doc fixes.
8025
8026 * tutorial.el (get-lang-string, tutorial--find-changed-keys):
8027 * printing.el (pr-ps-fast-fire): Fix typos in docstrings.
8028
8029 * view.el (view-inhibit-help-message): Fix typo in docstring.
8030 (view-scroll-auto-exit, view-try-extend-at-buffer-end): Doc fixes.
8031
8032 2007-05-16 Martin Rudalics <rudalics@gmx.at>
8033
8034 * textmodes/ispell.el (ispell-start-process): Defend against bad
8035 default-directory.
8036
8037 2007-05-14 Eli Zaretskii <eliz@gnu.org>
8038
8039 * mail/rmail.el (rmail-convert-to-babyl-format): Check
8040 content-transfer-encoding _last_, because it's its position that
8041 we need as value of base64-header-field-end.
8042
8043 2007-05-14 Juanma Barranquero <lekktu@gmail.com>
8044
8045 * files.el (mode-require-final-newline, require-final-newline)
8046 (enable-local-variables, enable-local-eval): Doc fixes.
8047
8048 2007-05-13 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8049
8050 * ps-print.el: Use default color when foreground or background color
8051 are unspecified. Reported by Leo <sdl.web@gmail.com>.
8052 (ps-print-version): New version 6.7.4.
8053 (ps-rgb-color): New argument. Use default color when color is
8054 unspecified.
8055 (ps-begin-job): Fix code.
8056
8057 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
8058
8059 * longlines.el (longlines-mode): Make longlines-auto-wrap
8060 buffer-local. Add hooks unconditionally.
8061 (longlines-auto-wrap): Toggle wrapping.
8062 (longlines-after-change-function)
8063 (longlines-post-command-function): Check longlines-auto-wrap.
8064
8065 2007-05-12 Nick Roberts <nickrob@snap.net.nz>
8066
8067 * xt-mouse.el (xterm-mouse-debug-buffer): New variable.
8068 (xterm-mouse-translate): Use it.
8069
8070 2007-05-10 Richard Stallman <rms@gnu.org>
8071
8072 * international/iso-cvt.el (iso-cvt-read-only): Ignore arguments.
8073 (iso-cvt-write-only): Likewise.
8074
8075 * emacs-lisp/easy-mmode.el (define-minor-mode):
8076 Fix generated doc string.
8077
8078 * startup.el (fancy-splash-text): Add URL of guided tour.
8079 Adjust horizontal and vertical whitespace.
8080
8081 * progmodes/compile.el (compilation-handle-exit):
8082 Use run-hook-with-args to run compilation-finish-functions.
8083
8084 * files.el (file-start-mode-alist): New variable.
8085 (magic-mode-regexp-match-limit): Doc fix.
8086 (set-auto-mode): Handle file-start-mode-alist.
8087 A little cleanup of structure.
8088
8089 * dabbrev.el (dabbrev-eliminate-newlines):
8090 Renamed from dabbrev--eliminate-newlines. All uses changed.
8091
8092 2007-05-10 Micha\e,Ak\e(Bl Cadilhac <michael@cadilhac.name>
8093
8094 * man.el (Man-next-section): Don't consider the last line of the page
8095 as being part of any section.
8096
8097 2007-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
8098
8099 * textmodes/sgml-mode.el (sgml-value): Fix handling of attributes which
8100 can take any number of values.
8101
8102 2007-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
8103
8104 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add citet and citep
8105 to the list of citation commands.
8106
8107 2007-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
8108
8109 * vc-hooks.el (vc-find-root): Stop searching when the user changes.
8110
8111 2007-05-09 Edward O'Connor <hober0@gmail.com> (tiny change)
8112
8113 * progmodes/python.el (python-font-lock-keywords)
8114 (python-open-block-statement-p, python-mode): Add support for the new
8115 "with" keyword.
8116
8117 2007-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8118
8119 * diff-mode.el (diff-apply-hunk, diff-test-hunk): Don't do by default
8120 the exact opposite of diff-goto-source.
8121
8122 * emacs-lisp/advice.el (ad-special-forms): Remove.
8123 (ad-special-form-p): Use subr-arity.
8124
8125 * newcomment.el (comment-search-forward): Make sure we search forward.
8126 (comment-enter-backward): Try and distinguish the non-matching case at
8127 EOB from the non-matching case with a missing comment-end-skip for
8128 a 2-char comment ender.
8129 (comment-choose-indent): New function extracted from comment-indent.
8130 Improve the alignment algorithm.
8131 (comment-indent): Use it.
8132
8133 * textmodes/sgml-mode.el (sgml-lexical-context): Add handling of
8134 XML style Processing Instructions.
8135 (sgml-parse-tag-backward): Handle XML-style PIs. Also ensure progress.
8136 (sgml-calculate-indent): Handle `pi' context.
8137
8138 * vc.el: Ensure that update-changelog issues an error when used with
8139 a backend that does not implement it.
8140 (vc-update-changelog-rcs2log): Rename from vc-default-update-changelog.
8141 Remove `backend' argument. Use expand-file-name.
8142 (vc-cvs-update-changelog, vc-rcs-update-changelog): New aliases.
8143
8144 * progmodes/python.el (python-end-of-block): Revert last change.
8145 (python-end-of-statement): Make sure we move *forward*.
8146
8147 2007-05-08 Richard Stallman <rms@gnu.org>
8148
8149 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
8150 Don't include non-self-insert commands in the exception for `-'.
8151
8152 2007-05-08 David Reitter <david.reitter@gmail.com>
8153
8154 * progmodes/python.el (python-guess-indent): Check non-nullness
8155 before comparing indent against the 2..8 interval.
8156
8157 2007-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8158
8159 * term/mac-win.el (mac-ts-unicode-for-key-event): Check if text is
8160 available.
8161
8162 2007-05-06 Richard Stallman <rms@gnu.org>
8163
8164 * emacs-lisp/eldoc.el (turn-on-eldoc-mode): Doc fix.
8165
8166 2007-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8167
8168 * diff.el (diff): Use buffer-local vars diff-old-file and diff-new-file
8169 rather than storing their value in the revert-buffer function.
8170
8171 2007-05-04 Nick Roberts <nickrob@snap.net.nz>
8172
8173 * t-mouse.el (t-mouse-mode): Do nothing on a graphical display
8174 when disabling t-mouse-mode.
8175
8176 2007-05-01 Davis Herring <herring@lanl.gov>
8177
8178 * calendar/timeclock.el: Update version number.
8179 (timeclock-modeline-display): Mention timeclock-use-display-time
8180 in explanatory message.
8181 (timeclock-in): Fix non-interactive workday specifications.
8182 (timeclock-log): Don't kill the log buffer if it already existed.
8183 Suppress warnings when finding the log. Don't check for a nil
8184 project twice. Run hooks after killing the buffer (if applicable).
8185 (timeclock-geometric-mean): Rename to `timeclock-mean' (it never
8186 was geometric). All uses changed.
8187 (timeclock-generate-report): Support prefix argument.
8188
8189 2007-05-03 Ryan Yeske <rcyeske@gmail.com>
8190
8191 * net/rcirc.el (rcirc-timeout-seconds): Increase to prevent unwanted
8192 disconnections.
8193
8194 2007-05-01 Romain Francoise <romain@orebokech.com>
8195
8196 * dired-x.el: Revert 2007-04-06 change.
8197
8198 2007-04-29 Stephen Berman <Stephen.Berman@gmx.net>
8199
8200 * find-dired.el (find-dired-filter): Propertize all text down to eob.
8201
8202 2007-04-29 Richard Stallman <rms@gnu.org>
8203
8204 * international/mule.el (auto-coding-alist): Add pdf => no-conversion.
8205
8206 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8207
8208 * progmodes/cc-mode.el (c-before-change): Use point-min rather
8209 than 1.
8210
8211 2007-04-28 Richard Stallman <rms@gnu.org>
8212
8213 * progmodes/sh-script.el (sh-mode): Recognize .profile as sh style.
8214
8215 2007-04-28 Nick Roberts <nickrob@snap.net.nz>
8216
8217 * progmodes/gud.el (gud-menu-map): Pdb can't handle SIGINT so
8218 don't put stop on toolbar.
8219
8220 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8221
8222 * vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem.
8223
8224 2007-04-28 Eli Zaretskii <eliz@gnu.org>
8225
8226 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el): Use ./mh-e
8227 instead of $(lisp)/mh-e.
8228
8229 2007-04-28 Glenn Morris <rgm@gnu.org>
8230
8231 * image-dired.el (image-dired-cmd-create-thumbnail-options)
8232 (image-dired-cmd-create-temp-image-options): Replace option
8233 +profile "*" with -strip.
8234
8235 2007-04-27 Chong Yidong <cyd@stupidchicken.com>
8236
8237 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
8238 Use window-start and window-end.
8239
8240 2007-04-27 Andreas Schwab <schwab@suse.de>
8241
8242 * emacs-lisp/sregex.el (sregexq): Fix doc string quoting.
8243
8244 2007-04-27 Eli Zaretskii <eliz@gnu.org>
8245
8246 * textmodes/fill.el (fill-paragraph): Doc fix.
8247
8248 2007-04-26 Luc Teirlinck <teirllm@dms.auburn.edu>
8249
8250 * locate.el (locate-in-alternate-database): Doc fix.
8251
8252 2007-04-26 Glenn Morris <rgm@gnu.org>
8253
8254 * button.el (button): Use underline if supported, else fall back
8255 to color.
8256
8257 * version.el (emacs-version): Increase to 22.1.50.
8258
8259 2007-04-25 Richard Stallman <rms@gnu.org>
8260
8261 * hi-lock.el (hi-lock-file-patterns-policy): Default to `ask'.
8262
8263 2007-04-25 J.D. Smith <jdsmith@as.arizona.edu>
8264
8265 * progmodes/idlwave.el (idlwave-beginning-of-subprogram)
8266 (idlwave-end-of-subprogram): Take optional NOMARK arg to prevent
8267 pushing mark.
8268 (idlwave-current-routine): Don't push mark.
8269
8270 2007-04-25 Mathias Dahl <mathias.dahl@gmail.com>
8271
8272 * image-dired.el (image-dired-display-image): Derive image-type from
8273 filename rather than assuming jpeg, in case no resizing was needed.
8274
8275 2007-04-25 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
8276
8277 * custom.el (defface): Doc fix.
8278
8279 See ChangeLog.12 for earlier changes.
8280
8281 ;; Local Variables:
8282 ;; coding: iso-2022-7bit
8283 ;; add-log-time-zone-rule: t
8284 ;; End:
8285
8286 Copyright (C) 2007 Free Software Foundation, Inc.
8287
8288 This file is part of GNU Emacs.
8289
8290 GNU Emacs is free software; you can redistribute it and/or modify
8291 it under the terms of the GNU General Public License as published by
8292 the Free Software Foundation; either version 3, or (at your option)
8293 any later version.
8294
8295 GNU Emacs is distributed in the hope that it will be useful,
8296 but WITHOUT ANY WARRANTY; without even the implied warranty of
8297 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8298 GNU General Public License for more details.
8299
8300 You should have received a copy of the GNU General Public License
8301 along with GNU Emacs; see the file COPYING. If not, write to the
8302 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
8303 Boston, MA 02110-1301, USA.
8304
8305 ;; arch-tag: 1e8aa93a-fc6c-4ac3-9b10-1f445e1840af