1 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
3 * minibuffer.el (completion-try-completion): Change magic symbol
4 property name. Rename from minibuffer-try-completion.
5 (completion-all-completions): Rename from minibuffer-all-completions.
6 Remove hide-spaces argument.
7 (completion--do-completion): Rename from minibuffer--do-completion.
8 (minibuffer-complete-and-exit): Call just try-completion rather than
9 completion-try-completion to fix up the case.
10 (completion--try-word-completion): Try to add space or hyphen before
11 making `string' a prefix of `completion'.
12 (completion--insert-strings): Rename from minibuffer--insert-strings.
14 2008-04-22 Naohiro Aota <nao.aota@gmail.com> (tiny change)
16 * net/tls.el (tls-program): Add -ign_eof argument to call the
18 (tls-checktrust): Ditto.
20 2008-04-21 Dan Nicolaescu <dann@ics.uci.edu>
22 * vc-cvs.el (vc-cvs-status-extra-headers): New function.
24 * vc-hooks.el (vc-insert-file, vc-state, vc-working-revision)
25 (vc-check-master-templates, vc-file-not-found-hook)
26 (vc-kill-buffer-hook):
27 * vc.el (vc-process-sentinel, vc-exec-after, vc-do-command)
28 (vc-find-position-by-context, vc-buffer-context)
29 (vc-restore-buffer-context, vc-responsible-backend)
30 (vc-expand-dirs, vc-ensure-vc-buffer, vc-buffer-sync)
31 (vc-next-action, vc-register, vc-register-with, vc-steal-lock)
32 (vc-finish-logentry, vc-coding-system-for-diff, vc-switches)
33 (vc-version-diff, vc-diff, vc-insert-headers)
34 (vc-dired-buffers-for-dir, vc-dired-resynch-file)
35 (vc-snapshot-precondition, vc-create-snapshot, vc-print-log)
36 (vc-revert, vc-rollback, vc-version-backup-file)
37 (vc-rename-master, vc-delete-file, vc-rename-file)
38 (vc-branch-part, vc-default-retrieve-snapshot)
39 (vc-annotate-display-autoscale, vc-annotate-display-select)
40 (vc-annotate, vc-annotate-warp-revision, vc-annotate-difference)
41 (vc-annotate-lines, vc-file-tree-walk-internal): Use when instead of if.
42 (vc-dir-update): Handle directories.
43 (vc-default-status-printer): Simplify.
45 * progmodes/asm-mode.el (asm-mode-map):
46 * progmodes/hideif.el (hide-ifdef-mode-menu): Add :help.
48 * progmodes/m4-mode.el (m4-mode-map): Add menu.
50 2008-04-21 Kenichi Handa <handa@m17n.org>
52 * select.el (xselect-convert-to-string): Send a C_STRING only if
53 the polymorphic target TEXT is requested.
55 2008-04-21 Juanma Barranquero <lekktu@gmail.com>
57 * minibuffer.el (completion-setup-hook, display-completion-list)
58 (completion--file-name-table): Fix typos in docstrings.
59 (completion-table-dynamic): Fix typo, and reflow docstring.
61 2008-04-20 Andreas Schwab <schwab@suse.de>
63 * server.el (server-switch-buffer): Also consider clients in the
66 2008-04-19 Nick Roberts <nickrob@snap.net.nz>
68 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
69 Select window clicked on first (regression in 22.2).
70 (gdb): Display thread number in mode-line.
71 (gdb-make-header-line-mouse-map): Move to avoid byte compiler warnings.
72 (gdb-breakpoints-header): New variable.
73 (gdb-breakpoints-mode, gdb-threads-mode): Use it for header line.
75 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
77 * vc-sccs.el (vc-sccs-do-command): New fun. Use the "sccs" command.
78 (vc-sccs-register, vc-sccs-checkin, vc-sccs-find-revision)
79 (vc-sccs-checkout, vc-sccs-rollback, vc-sccs-revert)
80 (vc-sccs-steal-lock, vc-sccs-modify-change-comment)
81 (vc-sccs-print-log): Use it.
83 * vc-hooks.el (vc-path): Remove SCCS-specific hack.
85 * emacs-lisp/lisp-mode.el (lisp-mode-auto-fill): Make it an alias.
86 * progmodes/scheme.el (scheme-mode-variables): Don't use it.
88 * tooltip.el (tooltip-previous-message): New var.
89 (tooltip-show-help-non-mode): Rewrite to better follow the behavior of
90 the C code (avoid overwriting a minibuffer, restore previous echo
92 (tooltip-delay, tooltip-process-prompt-regexp, tooltip-strip-prompt):
95 2008-04-19 Nick Roberts <nickrob@snap.net.nz>
97 * progmodes/gdb-ui.el (gdb-thread-indicator): New variable.
98 (gdb-init-1): Initialise it.
99 (gdb-annotation-rules): New entry for "new-thread".
100 (gdb-thread-identification): New function to customize
101 mode-line-buffer-identification.
102 (gdb-frames-mode, gdb-registers-mode, gdb-locals-mode)
103 (gdb-assembler-mode): Use it.
104 (gdb-threads-mode): Force "info threads" onto queue.
106 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
108 * files.el (locate-file-completion-table): Rename from
109 locate-file-completion and make it use `pred' in the normal way.
110 (locate-file-completion): New compatibility wrapper.
111 (load-library): Use locate-file-completion-table.
112 * finder.el (finder-commentary):
113 * subr.el (locate-library):
114 * emacs-lisp/find-func.el (find-library): Likewise.
115 * info.el: Use with-current-buffer and inhibit-read-only.
116 (Info-read-node-name-2): Change to use `predicate' in the normal way.
117 (Info-read-node-name-1): Adjust uses accordingly.
119 * minibuffer.el (completion-table-with-context): Add support for `pred'.
120 (completion-table-with-terminator): Don't use complete-with-action
121 since we have to distinguish all three cases anyway.
122 (completion-table-with-predicate): New function.
123 (dynamic-completion-table): Add obsolete alias.
125 * emacs-lisp/trace.el (trace-make-advice): Don't change selected-window.
127 2008-04-18 Sam Steingold <sds@gnu.org>
129 * vc.el (vc-dir-menu-map, vc-dir-mode-map, vc-dir-tool-bar-map):
130 Use quit-window instead of bury-buffer.
132 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
134 * minibuffer.el (completion-table-with-terminator): Fix last fix.
136 2008-04-18 Andreas Schwab <schwab@suse.de>
138 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
139 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
140 Depend on $(lisp)/subdirs.el.
142 2008-04-18 Juanma Barranquero <lekktu@gmail.com>
144 * descr-text.el (describe-char-after):
145 Use `define-obsolete-function-alias'.
147 * dired-x.el (dired-omit-files-p): Use `define-obsolete-variable-alias'.
149 * facemenu.el (facemenu-unlisted-faces): Fix obsolescence description.
151 * savehist.el (savehist-load): Add WHEN to obsolescence declaration.
152 Remove redundant obsolescence info in docstring.
154 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
155 (vc-header-alist): Add WHEN to obsolescence declaration.
156 (vc-state): Fix typo in docstring.
158 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap):
159 Use `define-obsolete-variable-alias'.
161 * emulation/tpu-edt.el (tpu-have-ispell):
162 * international/codepage.el (codepage-setup):
163 Fix typo in obsolescence declaration.
165 * international/mule.el (char-coding-system-table):
166 Remove redundant obsolescence info in docstring.
167 (charset-list, generic-char-p, set-char-table-default):
168 Fix typos in obsolescence decarations.
170 * international/mule-diag.el (non-iso-charset-alist):
171 Fix typo in obsolescence declaration.
172 (decode-codepage-char): Remove redundant obsolescence info in docstring.
174 * font-core.el (font-lock-defaults-alist):
175 * font-lock.el (font-lock-reference-face):
176 * frame.el (screen-height, screen-width, set-screen-width)
178 * hilit-chg.el (highlight-changes-initial-state):
179 * isearch.el (isearch-return-char):
180 * log-edit.el (cvs-commit-buffer-require-final-newline)
181 (cvs-changelog-full-paragraphs):
182 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
183 (mouse-popup-menubar-stuff):
184 * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button)
185 (mouse-wheel-click-button):
186 * outline.el (outline-visible):
187 * pcvs-defs.el (cvs-diff-ignore-marks, cvs-diff-buffer-name):
188 * pcvs-info.el (cvs-display-full-path, cvs-fileinfo->full-path):
189 * emacs-lisp/lisp-mode.el (lisp-comment-indent):
190 * progmodes/compile.el (compile-internal):
191 Add WHEN to obsolescence declarations.
193 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
195 * emacs-lisp/debug.el (debug): Revert to bury-buffer since quit-window
196 is not better anyway.
198 2008-04-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
200 * whitespace.el (whitespace-report-region): Handle whitespace-tab-width
203 2008-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
205 * progmodes/python.el (python-mode-map): Use abbrev-table-menu.
206 (python-use-skeletons): Remove, unused.
207 (python-skeletons): Remove. Use the abbrev table instead.
208 (python-mode-abbrev-table): Fix regexp;
209 add enable-function and case-fixed.
210 (def-python-skeleton): Simplify.
211 (python-expand-template): Use the abbrev-table and abbrev-insert.
212 (python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook):
214 (python-mode): Don't set pre-abbrev-expand-hook.
216 * skeleton.el: Set coding-tag.
218 * abbrev.el (abbrev-insert): New function extracted from expand-abbrev.
219 (expand-abbrev): Use it.
220 (abbrev-table-menu): New function.
222 * abbrev.el (define-abbrev-table): Fontify dosctrings as such.
224 * minibuffer.el (completion-table-with-terminator): Fix paren typo.
226 2008-04-17 Sam Steingold <sds@gnu.org>
228 * pcvs-util.el (cvs-bury-buffer): Use quit-window instead of the
229 idiosyncratic bury-buffer/delete-window logic.
231 2008-04-17 Juanma Barranquero <lekktu@gmail.com>
233 * emacs-lisp/crm.el (crm-completion-help, crm-complete)
234 (crm-complete-word, crm-complete-and-exit): Fix typo in previous change.
236 2008-04-17 Kenichi Handa <handa@m17n.org>
238 * international/characters.el: Don't make the width of U+00AD to 0.
240 2008-04-17 Nick Roberts <nickrob@snap.net.nz>
242 * progmodes/gdb-ui.el (gdb-stack-update): New variable.
243 (gdb, gdb-starting, gdb-frames-mode): Use it.
244 (gdb-invalidate-frames): Advise to call "info stack" only if
245 execution has occurred.
246 (gdb-info-breakpoints-custom): Only update overlay-arrow pointing to
247 selected frame if no execution has occurred.
248 (gdb-frames-force-update): New interactive function.
249 (gdb-frames-mode-map): Bind it to "F".
251 2008-04-17 Michael Olson <mwolson@gnu.org>
253 * textmodes/remember.el (remember-version): Release Remember 2.0.
255 2008-04-16 Yoni Rabkin <yoni@rabkins.net>
257 * textmodes/artist.el:
258 * progmodes/vhdl-mode.el:
259 * progmodes/verilog-mode.el:
260 * progmodes/vera-mode.el:
261 * progmodes/simula.el:
262 * progmodes/ps-mode.el:
263 * progmodes/cmacexp.el:
264 * obsolete/hilit19.el:
265 * emulation/viper.el:
266 * ediff.el: Cleanup the bug-report email addresses and make sure the
267 maintainer is still willing to handle bug reports.
269 2008-04-16 Dan Nicolaescu <dann@ics.uci.edu>
271 * vc.el (vc-dir-kill-query): Fix thinko.
273 2008-04-16 Glenn Morris <rgm@gnu.org>
275 * calendar/diary-lib.el (diary-remind): Don't clobber `date' passed
278 2008-04-16 Markus Triska <markus.triska@gmx.at>
280 * proced.el (proced-command-alist): Add support for darwin.
282 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
284 * proced.el (proced-mode): Redefine as just the major-mode.
285 (proced): Separate it from proced-mode.
287 * vc.el: Rename vc-status to vc-dir and the vc-status var to vc-ewoc.
289 2008-04-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
291 * whitespace.el: Honor the `indent-tabs-mode' setting from user.
292 Suggested by Stephen Deasey <sdeasey@gmail.com>. Honor also the
293 `tab-width' setting from user. New version 10.0. Doc and docstring
295 (whitespace-style, whitespace-chars): Remove options.
296 (whitespace-style-mark): New option, replace whitespace-style deleted
297 option. Fix docstring.
298 (whitespace-style-color): New option, replace whitespace-chars deleted
299 option. Fix docstring.
300 (whitespace-space, whitespace-hspace, whitespace-tab)
301 (whitespace-newline, whitespace-trailing, whitespace-line)
302 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
303 (whitespace-space-after-tab, whitespace-hspace-regexp)
304 (whitespace-space-regexp, whitespace-tab-regexp)
305 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
306 (whitespace-empty-at-eob-regexp, whitespace-line-column)
307 (whitespace-toggle-option-alist): Fix docstring.
308 (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
309 (whitespace-space-after-tab-regexp, whitespace-display-mappings): Fix
310 docstring and initialization.
311 (global-whitespace-mode): Autoloaded global minor mode.
312 (whitespace-chars-value-list, whitespace-style-value-list)
313 (whitespace-active-chars, whitespace-active-style)
314 (whitespace-toggle-chars, whitespace-toggle-style): Remove vars.
315 (whitespace-color-value-list): New var, replace
316 whitespace-chars-value-list removed var.
317 (whitespace-mark-value-list): New var, replace
318 whitespace-style-value-list removed var.
319 (whitespace-active-color): New var, replace whitespace-active-chars
321 (whitespace-active-mark): New var, replace whitespace-active-style
323 (whitespace-toggle-color): New var, replace whitespace-toggle-chars
325 (whitespace-toggle-mark): New var, replace whitespace-toggle-style
327 (whitespace-toggle-option-alist, whitespace-report-list)
328 (whitespace-report-text, whitespace-help-text): Fix initialization.
329 (whitespace-indent-tabs-mode, whitespace-tab-width): New vars.
330 (whitespace-toggle-options, global-whitespace-toggle-options)
331 (whitespace-cleanup-region, whitespace-report-region)
332 (whitespace-interactive-char): Fix docstring and code.
333 (whitespace-cleanup, whitespace-report): Fix docstring.
334 (whitespace-replace-spaces-by-tabs): Remove fun.
335 (whitespace-replace-action): New fun, replace
336 whitespace-replace-spaces-by-tabs removed fun.
337 (whitespace-regexp, whitespace-indentation-regexp)
338 (whitespace-space-after-tab-regexp, whitespace-insert-value)
339 (whitespace-kill-buffer): New funs.
340 (whitespace-insert-option-mark, whitespace-help-on)
341 (whitespace-help-off, whitespace-turn-on, whitespace-turn-off)
342 (whitespace-color-on, whitespace-color-off)
343 (whitespace-display-char-on): Fix code.
345 2008-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
347 * mouse-drag.el (mouse-throw-magnifier-with-scroll-bar)
348 (mouse-throw-magnifier-with-mouse-movement): Remove.
349 (mouse-throw-magnifier-base): New const.
350 (mouse-drag-scroll-delta): New fun.
351 (mouse-drag-throw): Use it.
353 2008-04-15 Juanma Barranquero <lekktu@gmail.com>
355 * international/uni-bidi.el, international/uni-category.el:
356 * international/uni-combining.el, international/uni-comment.el:
357 * international/uni-decimal.el, international/uni-decomposition.el:
358 * international/uni-digit.el, international/uni-lowercase.el:
359 * international/uni-mirrored.el, international/uni-name.el:
360 * international/uni-numeric.el, international/uni-old-name.el:
361 * international/uni-titlecase.el, international/uni-uppercase.el:
362 * international/charprop.el: Regenerate.
364 2008-04-15 Dan Nicolaescu <dann@ics.uci.edu>
366 * vc.el (vc-status-fileinfo): Add new member directoryp.
367 (vc-default-status-printer): Print directories.
368 (vc-status-update): Sort files before subdirectories.
370 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
371 Add alternative implementation based on "cvs update".
373 2008-04-15 Tassilo Horn <tassilo@member.fsf.org>
375 * doc-view.el: Changed requirements section to tell that only one
376 of dvipdf or dvipdfm is needed.
377 (doc-view-already-converted-p): Fix bug that forced reconversion
378 if doc was already converted.
380 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
382 * minibuffer.el (minibuffer-message):
383 Make sure we can put-text-property.
385 * emacs-lisp/crm.el: Complete rewrite.
387 * tmm.el (tmm-completion-delete-prompt): Don't hardcode point-min==1.
388 (tmm-add-prompt): Make sure completion-setup-hook is preserved even in
389 case of an error in display-completion-list.
391 * filecache.el (file-cache-completions-keymap): Move init from
392 file-cache-completion-setup-function into declaration.
393 (file-cache-minibuffer-complete): Simplify.
394 (file-cache-completion-setup-function): Use standard-output,
395 preserve current-buffer.
397 * vc.el (vc-status-update): Fix typo.
398 (vc-status-update): Set needs-update.
399 (vc-status-refresh): η-reduce.
401 2008-04-14 Tassilo Horn <tassilo@member.fsf.org>
403 * doc-view.el (doc-view-mode-map): Bind C-a to image-bol and C-e
406 2008-04-14 Alexandre Julliard <julliard@winehq.org>
408 * vc.el (vc-status-update): Undo the previous revert.
410 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
412 * minibuffer.el (completion-table-with-terminator): Those completions
413 are never valid w.r.t test-completion.
414 (completion--file-name-table):
415 Check completion-all-completions-with-base-size.
417 2008-04-14 Tassilo Horn <tassilo@member.fsf.org>
419 * doc-view.el (doc-view-dvipdf-program): New variable.
420 (doc-view-dvipdfm-program): Mention doc-view-dvipdf-program.
421 (doc-view-mode-p): Check for doc-view-dvipdf-program as
422 alternative for doc-view-dvipdfm-program.
423 (doc-view-dvi->pdf): Prefer dvipdf over dvipdfm.
425 * doc-view.el (doc-view-start-process): Don't set
426 default-directory to "~/" if the current value is valid.
427 This broke PS files that run other files in the same directory.
429 2008-04-14 Dan Nicolaescu <dann@ics.uci.edu>
431 * vc.el (vc-status-kill-query): New function.
432 (vc-status-mode): Add it to kill-buffer-query-functions.
433 (vc-status-show-fileentry): New function.
434 (vc-status-menu-map): Bind it. Bind vc-next-action.
436 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
438 * minibuffer.el (minibuffer-message): Put cursor at the right place.
440 2008-04-13 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
442 * proced.el (proced-send-signal): Fix error recognition.
444 2008-04-13 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
446 * proced.el (proced-command-alist): Remove sort column.
447 (proced-command, proced-procname-column):
448 Use make-variable-buffer-local.
449 (proced-signal-function): Rename from proced-kill-program.
450 Allow for elisp symbols and string values representing system calls.
451 (proced-marker-regexp, proced-success-message): New functions.
452 (proced): Use defalias. Add autoload cookie.
453 (proced-unmark-backward, proced-toggle-marks)
454 (proced-hide-processes): New commands.
455 (proced-do-mark): Simplify code.
456 (proced-insert-mark): Use optional arg BACKWARD instead of line number.
457 (proced-update): Remove sorting.
458 (proced-send-signal): Display number of processes to operate on.
459 Allow for system calls or elisp functions to send signals.
460 Check if signal was sent successfully.
462 2008-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
464 * minibuffer.el (completion-all-completion-with-base-size): New var.
465 (completion--some): New function.
466 (completion-table-with-context, completion--file-name-table):
467 Return the base-size if requested.
468 (completion-table-in-turn): Generalize to multiple arguments.
469 (complete-in-turn): Compatibility alias.
470 (completion-styles-alist): New var.
471 (completion-styles): New customization.
472 (minibuffer-try-completion, minibuffer-all-completions):
474 (minibuffer--do-completion, minibuffer-complete-and-exit)
475 (minibuffer-try-word-completion): Use them.
476 (display-completion-list, minibuffer-completion-help): Use them.
477 Handle all-completions's new base-size info to set completion-base-size.
478 * info.el (Info-read-node-name-1): Use completion-table-with-context,
479 completion-table-with-terminator and complete-with-action.
480 Remove the now obsolete completion-base-size-function property.
481 * simple.el (completion-list-mode-map): Move init into declaration.
482 (completion-list-mode): Use define-derived-mode.
483 (completion-setup-function): Use any completion-base-size that may
484 have been set before. Remove handling of completion-base-size-function.
485 * loadup.el: Move abbrev.el up earlier.
487 2008-04-13 Alexandre Julliard <julliard@winehq.org>
489 * vc-git.el (vc-git-after-dir-status-stage)
490 (vc-git-dir-status-goto-stage): New functions.
491 (vc-git-after-dir-status-stage1)
492 (vc-git-after-dir-status-stage1-empty-db)
493 (vc-git-after-dir-status-stage2): Remove, functionality moved
494 into the new generic stage functions.
495 (vc-git-dir-status-files): New function.
497 * vc.el (vc-status-update): Revert an incorrect rewrite. Add some
499 (vc-status-refresh-files): New function.
500 (vc-status-refresh): Use `vc-status-refresh-files' to refresh the
501 state of up-to-date files.
502 (vc-default-dir-status-files): New function.
504 2008-04-13 Juanma Barranquero <lekktu@gmail.com>
506 * minibuffer.el (completion--embedded-envvar-table)
507 (read-file-name-internal): Fix typos in 2008-04-11 change.
509 * faces.el (read-face-name): Use `completion-table-in-turn',
510 not `complete-in-turn'.
512 2008-04-13 Andreas Schwab <schwab@suse.de>
514 * progmodes/etags.el: Require 'cl when compiling.
516 2008-04-12 Nick Roberts <nickrob@snap.net.nz>
518 * progmodes/gud.el (gud-menu-map): Expand tooltip.
520 * progmodes/gdb-ui.el (gdb-find-source-frame): Improve doc string.
521 (menu): Add/expand menu tooltips.
523 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
525 * progmodes/sh-script.el (sh-show-indent): Fix typo.
526 (sh-mode-map): Add a toggle for inserting braces and quotes in pairs.
528 * vc-cvs.el (vc-cvs-registered): Allow removed files to be
529 considered registered.
531 2008-04-12 Reiner Steib <Reiner.Steib@gmx.de>
533 * emacs-lisp/copyright.el (copyright-update-directory): New command.
535 * ediff-wind.el (ediff-split-window-function)
536 (ediff-merge-split-window-function): Improve custom type.
538 2008-04-12 Eli Zaretskii <eliz@gnu.org>
540 * loadup.el ("minibuffer"): Move after "faces".
542 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
544 * progmodes/hideif.el (hif-factor): Handle unary minus.
546 2008-04-12 Glenn Morris <rgm@gnu.org>
548 * calendar/cal-china.el (chinese-calendar-time-zone):
549 Mark obsolete name as risky too.
551 * calendar/calendar.el (calendar-faces): New custom group.
552 (calendar-today, diary, holiday): Doc fix.
553 Move to calendar-faces group.
554 * calendar/diary-lib.el (diary-face, diary-anniversary, diary-time)
555 (diary-button): Doc fix. Move to calendar-faces group.
557 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
558 * desktop.el, files.el, hilit-chg.el, ibuffer.el, iswitchb.el:
559 * pcvs-info.el, recentf.el, speedbar.el, calendar/cal-china.el:
560 * calendar/cal-hebrew.el, calendar/cal-x.el, calendar/calendar.el
561 * calendar/diary-lib.el, net/net-utils.el, progmodes/gud.el:
562 Move non-autoloaded define-obsolete-variable-alias calls for defcustoms
563 not in dumped files before the associated defcustom.
565 2008-04-11 Johan Bockgård <bojohan@gnu.org>
567 * minibuffer.el (lazy-completion-table): Fix debug spec.
569 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
571 * minibuffer.el (complete-with-action, lazy-completion-table):
573 (apply-partially, completion-table-dynamic)
574 (completion-table-with-context, completion-table-with-terminator)
575 (completion-table-in-turn): New funs.
576 (completion--make-envvar-table, completion--embedded-envvar-table):
578 (read-file-name-internal): Use them.
579 (completion-setup-hook): Move from simple.el.
580 * subr.el (complete-with-action, lazy-completion-table):
581 * simple.el (completion-setup-hook): Move to minibuffer.el.
583 2008-04-11 Glenn Morris <rgm@gnu.org>
585 * Makefile.in (AUTOGENEL): Add calc/calc-loaddefs.el.
587 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
589 * progmodes/python.el (python-mode): Don't mess with hippie-expand.
591 * Makefile.in (bootstrap-prepare): Make tpu-edt.el writable as well.
593 * textmodes/fill.el (fill-forward-paragraph-function): New var.
594 (fill-forward-paragraph): New fun.
595 (fill-paragraph, fill-region): Use it.
597 * vc.el: Change `dir-status' to not take (and pass) status-buffer.
598 (vc-status-create-fileinfo): Make `extra' optional.
599 (vc-status-busy): New fun.
600 (vc-status-menu-map): Use it.
601 (vc-status-crt-marked): Remove.
602 (vc-status-update): Rename from vc-status-add-entries.
603 Add argument so as to prevent addition of entries. Rewrite.
604 (vc-update-vc-status-buffer): Remove.
605 (vc-status-refresh): Don't remove old entries, set them to
606 up-to-date instead. Also do it after the update is complete.
607 (vc-status-marked-files): η-reduce.
609 * dired.el (dired-read-dir-and-switches): Use read-directory-name even
612 * Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
614 * loadup.el: Load ldefs-boot.el if loaddefs.el doesn't exist.
616 2008-04-11 Jan Djärv <jan.h.d@swipnet.se>
618 * tooltip.el (tooltip-show-help-non-mode): Set message-truncate-lines
619 to t and don't truncate msg.
621 2008-04-11 Glenn Morris <rgm@gnu.org>
623 * calendar/calendar.el (diary, holidays):
624 Move custom groups to other files.
625 (holiday-general-holidays, holiday-oriental-holidays)
626 (holiday-local-holidays, holiday-other-holidays, hebrew-holidays-1)
627 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
628 (holiday-hebrew-holidays, holiday-christian-holidays)
629 (holiday-islamic-holidays, holiday-bahai-holidays)
630 (holiday-solar-holidays, calendar-holidays): Move to holidays.el.
631 * calendar/diary-lib.el: Move custom group here from calendar.el.
632 * calendar/holidays-lib.el: Move custom group and variables here
635 * calendar/cal-china.el (calendar-chinese-time-zone): Mark as risky.
637 * calendar/cal-dst.el (calendar-dst-check-each-year-flag):
639 (calendar-current-time-zone-cache): Autoload riskiness.
641 * calendar/cal-tex.el (cal-tex-preamble-extra): Fix custom type.
643 2008-04-11 Chong Yidong <cyd@stupidchicken.com>
645 * woman.el (woman2-TH): Use string-equal instead of string-match.
647 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
649 * smerge-mode.el (smerge-apply-resolution-patch): Fix typo.
650 (smerge-resolve): Merge the "2-way refinement" case with one half of
651 the "mere whitespace" resolution.
653 2008-04-10 Dan Nicolaescu <dann@ics.uci.edu>
655 * vc-bzr.el (vc-bzr-after-dir-status): Detect the conflict state.
657 2008-04-10 Juanma Barranquero <lekktu@gmail.com>
659 * subr.el (assoc-ignore-case, assoc-ignore-representation):
660 Add WHEN to obsolescence declaration.
662 * makefile.w32-in (AUTOGENEL): Add calc-loaddefs.el.
664 2008-04-10 Dan Nicolaescu <dann@ics.uci.edu>
666 * vc-hooks.el (vc-state): Add new state `conflict'.
667 (vc-after-save): Use when not if.
668 (vc-default-mode-line-string): Deal with the conflict state.
670 (vc-menu-map): Bind vc-status instead of vc-directory.
672 * vc.el (vc-editable-p):
673 (vc-default-status-printer):
674 (vc-next-action): Deal with the conflict state.
675 (vc-mark-resolved): New function.
676 (vc-status-mode): Fix mode name.
677 (vc-default-comment-history): Use when not if.
678 (Todo): Add new entries, remove old ones.
680 * vc-cvs.el (vc-cvs-merge, vc-cvs-merge-news): Set conflict state.
681 (vc-cvs-parse-status):
682 (vc-cvs-after-dir-status):
683 * vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
684 Detect the conflict state.
686 * vc-hg.el (vc-hg-dir-status): Remove unneeded call.
688 2008-04-10 Glenn Morris <rgm@gnu.org>
690 * menu-bar.el (menu-bar-options-menu) <truncate-lines>:
691 Respect truncate-partial-width-windows in non-full windows,
692 with regards to :toggle and :enable state.
694 * simple.el (toggle-truncate-lines): Doc fix.
696 * Makefile.in (MH_E_DIR): New variable.
697 (MH_E_SRC): Restore variable removed 2008-03-13.
698 (mh-loaddefs.el): Depend on $MH_E_SRC.
699 (CAL_DIR, CAL_SRC): New variables.
700 (cal-loaddefs.el, diary-loaddefs.el, hol-loaddefs.el):
703 * calendar/calendar.el (calendar, diary): Add :prefix.
704 (holidays): Change :prefix.
705 (calendar-today, holiday, calendar-holiday-marker)
706 (european-calendar-style): Change custom groups.
708 * calendar/calendar.el (diary-hook, diary-display-hook):
709 Move to diary-lib.el.
710 * calendar/diary-lib.el (diary-hook, diary-display-hook):
711 Move here from calendar.el.
712 * calendar/appt.el: Require diary-lib rather than calendar.
713 * calendar/cal-x.el (diary-display-hook): Declare for compiler.
715 * calendar/appt.el (appt): Add :prefix.
717 * calendar/diary-lib.el (diary-hook): Doc fix.
718 (diary-mark-sexp-entries): Fix replacement of calendar-for-loop.
720 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
722 * minibuffer.el (minibuffer--double-dollars, read-file-name-internal):
725 * minibuffer.el (minibuffer--do-completion): Don't forget to propagate
726 the arg to recursive calls.
728 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
730 * minibuffer.el (completion-auto-help): Fix typo.
732 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
734 * vc-cvs.el (vc-cvs-diff-tree): Remove unused function.
736 2008-04-09 Michael Albinus <michael.albinus@gmx.de>
738 * net/tramp.el (tramp-find-file-name-coding-system-alist): New defun.
739 (tramp-handle-insert-file-contents, tramp-handle-write-region): Use it.
741 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
743 * vc-hooks.el (vc-default-mode-line-string): Use ? for missing.
745 * minibuffer.el (minibuffer): Move group from cus-edit.el.
746 (completion-auto-help): Move from C code.
747 (minibuffer--maybe-completion-help): Remove.
748 (minibuffer--bitset): New function.
749 (minibuffer--do-completion): Rename from minibuffer-do-completion.
750 Renumber a bit. Really complete on string *before* point.
751 Add argument used for word-completion.
752 Join trailing / in completion with following text, as done in
753 minibuffer-complete-word.
754 Handle new value `lazy' for completion-auto-help.
755 (minibuffer-try-word-completion): New function extracted from
756 minibuffer-complete-word.
757 (minibuffer-complete-word): Use minibuffer--do-completion.
758 (minibuffer--insert-strings): Rename from
759 minibuffer-complete-insert-strings.
760 (exit-minibuffer): Fix typo.
761 * cus-edit.el (minibuffer): Move group to minibuffer.el.
762 * cus-start.el: Remove completion-auto-help.
764 2008-04-09 Alexandre Julliard <julliard@winehq.org>
766 * vc.el (vc-status-add-entries): New function.
767 (vc-status-add-entry): Remove.
768 (vc-update-vc-status-buffer, vc-status-mark-buffer-changed):
769 Use vc-status-add-entries.
771 * emacs-lisp/ewoc.el (ewoc-collect): Return results in the correct
774 2008-04-09 Jason Rumney <jasonr@gnu.org>
776 * makefile.w32-in (LOADDEFS): Add mh-loaddefs.el.
777 ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule.
778 (pre-mh-loaddefs.el-CMD, pre-mh-loaddefs.el-SH): Remove.
779 (AUTOGENEL): New variable.
780 (distclean, maintainer-clean): New targets.
782 2008-04-09 Chong Yidong <cyd@stupidchicken.com>
784 * emacs-lisp/regexp-opt.el (regexp-opt):
785 Reduce max-lisp-eval-depth and max-specpdl-size to 10000.
787 2008-04-09 Lennart Borgman <lennart.borgman@gmail.com>
789 * nxml/nxml-mode.el (nxml-cleanup): New function.
790 (nxml-mode): Add it to change-major-mode-hook.
792 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
794 * term/x-win.el (x-gtk-stock-map): Map info to gtk-info.
796 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
798 * calc/.cvsignore: New file.
800 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
802 * vc.el (vc-status-tool-bar-map): Add vc-print-log to tool bar.
804 * tooltip.el (tooltip-mode): Set tooltip-show-help-non-mode as
805 show-help-function when turning tooltip off.
806 (tooltip-show): Call tooltip-show-help-non-mode if use-echo-area.
807 (tooltip-trunc-str, tooltip-show-help-non-mode): New.
809 2008-04-09 Alan Mackenzie <acm@muc.de>
811 * font-lock.el (font-lock-extend-after-change-region-function):
812 Make it buffer local.
814 2008-04-09 Glenn Morris <rgm@gnu.org>
816 * calendar/calendar.el (diary-file, european-calendar-style):
817 Remove autoload cookies.
819 2008-04-09 Dan Nicolaescu <dann@ics.uci.edu>
821 * outline.el (outline-mode-menu-bar-map):
822 * log-view.el (log-view-mode-menu):
823 * log-edit.el (log-edit-menu): Add :help.
825 2008-04-09 Chong Yidong <cyd@stupidchicken.com>
827 * emacs-lisp/regexp-opt.el (regexp-opt-group):
828 Use substring-no-properties for correct handling of unibyte strings.
830 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
832 * add-log.el (change-log-next-buffer): Handle the case where version<
835 * mouse.el (mouse-menu-major-mode-map): New fun extracted from
836 mouse-major-mode-menu.
837 (mouse-menu-bar-map): New fun extracted from mouse-popup-menubar.
838 (mouse-major-mode-menu, mouse-popup-menubar)
839 (mouse-popup-menubar-stuff): Use them.
840 (C-down-mouse-3): Bind to a dynamic map rather than to
841 mouse-popup-menubar-stuff.
843 * bindings.el (mode-line-major-mode-keymap): Bind down-mouse-1
844 to mouse-menu-major-mode-map rather than to mouse-major-mode-menu.
846 2008-04-09 Dan Nicolaescu <dann@ics.uci.edu>
848 * vc-svn.el (vc-svn-modify-change-comment): Add support for the
849 file:// access method.
851 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
853 * minibuffer.el: New file.
854 * loadup.el: Load it.
856 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
858 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Make it depend on mh-e/*.el
859 rather than subdirs.el. It introduces an ugly circular dependency, tho.
861 * calc/calc.el: Load "calc-loaddefs" rather than set up manual autoloads.
862 (calc-mode-map, calc-digit-map, calc-dispatch-map):
863 Move initialization into declaration.
866 * calc/calc-embed.el:
867 * calc/calc-aent.el: Add autoload cookies. Set generated-autoload-file.
869 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
871 * ps-samp.el (ps-add-printer, ps-remove-printer)
872 (ps-make-dynamic-printer-menu): New functions.
874 * net/zeroconf.el: New file.
876 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
878 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits): Typo.
880 2008-04-08 Dan Nicolaescu <dann@ics.uci.edu>
882 * vc-rcs.el (vc-rcs-modify-change-comment):
883 * vc-cvs.el (vc-cvs-modify-change-comment): Fix argument order.
885 * log-view.el (log-view-mode-menu): Bind log-view-modify-change-comment.
887 2008-04-08 Juanma Barranquero <lekktu@gmail.com>
889 * international/mule-cmds.el (set-locale-environment): Don't warn if
890 coding system doesn't agree with system locale (this reverts changes
891 by Dave Love, dated 2002-10-27 and 2002-10-09).
893 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
894 * emacs-lisp/cl-macs.el (get-setf-method): Use `string-match-p'.
896 * emacs-lisp/copyright.el (copyright-update-year): Use `looking-at-p'.
898 2008-04-08 Glenn Morris <rgm@gnu.org>
900 * calendar/calendar.el (calendar-date-style): Remove autoload cookie.
901 * textmodes/remember.el (remember-diary-convert-entry):
904 * textmodes/remember.el (remember-diary-extract-entries): Don't pass
905 diary-file, since it is the default for make-diary-entry anyway.
907 * calendar/cal-menu.el (cal-menu-event-to-date):
908 Rename calendar-event-to-date. Update callers.
909 (calendar-mouse-tex-day): Rename cal-tex-mouse-day.
910 (calendar-mouse-tex-week): Rename cal-tex-mouse-week.
911 (calendar-mouse-tex-week2): Rename cal-tex-mouse-week2.
912 (calendar-mouse-tex-week-iso): Rename cal-tex-mouse-week-iso.
913 (calendar-mouse-tex-week-monday): Rename cal-tex-mouse-week-monday.
914 (calendar-mouse-tex-filofax-daily): Rename cal-tex-mouse-filofax-daily.
915 (calendar-mouse-tex-filofax-2week): Rename cal-tex-mouse-filofax-2week.
916 (calendar-mouse-tex-filofax-week): Rename cal-tex-mouse-filofax-week.
917 (calendar-mouse-tex-month): Rename cal-tex-mouse-month.
918 (calendar-mouse-tex-month-landscape):
919 Rename cal-tex-mouse-month-landscape.
920 (calendar-mouse-tex-year): Rename cal-tex-mouse-year.
921 (calendar-mouse-tex-filofax-year): Rename cal-tex-mouse-filofax-year.
922 (calendar-mouse-tex-year-landscape):
923 Rename cal-tex-mouse-year-landscape.
924 (cal-menu-context-mouse-menu): Update for above name changes.
926 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
927 * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
928 * calendar/cal-iso.el, calendar/cal-julian.el, calendar/cal-move.el:
929 * calendar/cal-persia.el, calendar/cal-tex.el, calendar/calendar.el:
930 * calendar/holidays.el: Replace int-to-string with number-to-string.
932 2008-04-08 Chong Yidong <cyd@stupidchicken.com>
934 * mwheel.el (mwheel-scroll): Deactivate any temporarily active
935 region if point moves.
937 2008-04-08 Kenichi Handa <handa@m17n.org>
939 * faces.el (font-slant-table): Change numeric values for `r',
940 `roman', and `normal'.
942 2008-04-07 Vincent Belaïche <vincent.b.1@hotmail.fr>
944 * calc/calc-vec.el (calcFunc-kron, calc-kron): New functions.
946 2008-04-07 Jay Belanger <jay.p.belanger@gmail.com>
948 * calc/calc-ext.el (calc-init-extensions): Add `calc-kron' and
949 `calcFunc-kron' to autoloads. Add keybinding for `calc-kron'.
951 2008-04-07 Michael Albinus <michael.albinus@gmx.de>
953 * net/tramp.el (tramp-methods): Fix again tramp-copy-args of
954 "pscp" and "psftp". Reported by Gilles Pion <gpion@lfdj.com>.
956 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
958 * dired-aux.el (dired-read-shell-command): Use read-shell-command.
960 2008-04-07 Sam Steingold <sds@gnu.org>
962 * progmodes/inf-lisp.el (lisp-compile-string, lisp-eval-string):
963 Add helper functions.
964 (lisp-do-defun): Extract the common part of lisp-eval-defun and
965 lisp-compile-defun; DEFVAR forms reset the variables to the init
966 values, just like in emacs-lisp mode eval-defun.
967 (lisp-eval-defun, lisp-compile-defun): Use lisp-do-defun.
968 (lisp-compile-region): Use lisp-compile-string.
970 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
972 * subr.el (combine-and-quote-strings): Also quote strings that contain
975 * pcvs-util.el (cvs-map): Avoid recursion :-(
977 2008-04-07 Glenn Morris <rgm@gnu.org>
979 * calendar/calendar.el (calendar-mode-map): Replace use of kbd.
981 * calendar.el (diary-view-entries-initially-flag): Rename
982 view-diary-entries-initially. Keep old name as alias, update users.
983 (calendar-mark-diary-entries-flag): Rename
984 mark-diary-entries-in-calendar. Keep old name as alias, update users.
985 (calendar-view-holidays-initially-flag): Rename
986 view-calendar-holidays-initially. Keep old name as alias, update users.
987 (calendar-mark-holidays-flag): Rename mark-holidays-in-calendar.
988 Keep old name as alias, update users.
989 (calendar-initial-window-hook): Rename initial-calendar-window-hook.
990 Keep old name as alias, update users.
991 (calendar-today-visible-hook): Rename today-visible-calendar-hook.
992 Keep old name as alias, update users.
993 (calendar-today-invisible-hook): Rename today-invisible-calendar-hook.
994 Keep old name as alias, update users.
995 (diary-iso-date-forms): Rename iso-date-diary-pattern. Update users.
996 (diary-american-date-forms): Rename american-date-diary-pattern.
997 Keep old name as alias, update users.
998 (diary-european-date-forms): Rename european-date-diary-pattern.
999 Keep old name as alias, update users.
1000 (calendar-iso-date-display-form): Rename iso-calendar-display-form.
1001 Keep old name as alias, update users.
1002 (calendar-european-date-display-form): Rename
1003 european-calendar-display-form. Keep old name as alias, update users.
1004 (calendar-american-date-display-form): Rename
1005 european-calendar-display-form. Keep old name as alias, update users.
1006 (diary-show-holidays-flag): Rename holidays-in-diary-buffer.
1007 Keep old name as alias, update users.
1008 (holiday-general-holidays): Rename general-holidays.
1009 Keep old name as alias, update users.
1010 (holiday-oriental-holidays): Rename oriental-holidays.
1011 Keep old name as alias, update users.
1012 (holiday-local-holidays): Rename local-holidays.
1013 Keep old name as alias, update users.
1014 (holiday-other-holidays): Rename other-holidays.
1015 Keep old name as alias, update users.
1016 (holiday-hebrew-holidays): Rename hebrew-holidays.
1017 Keep old name as alias, update users.
1018 (holiday-christian-holidays): Rename christian-holidays.
1019 Keep old name as alias, update users.
1020 (holiday-islamic-holidays): Rename islamic-holidays.
1021 Keep old name as alias, update users.
1022 (holiday-bahai-holidays): Rename bahai-holidays.
1023 Keep old name as alias, update users.
1024 (holiday-solar-holidays): Rename solar-holidays.
1025 Keep old name as alias, update users.
1026 (diary-fancy-buffer): Rename fancy-diary-buffer.
1027 Keep old name as alias, update users.
1028 (calendar-other-calendars-buffer): Rename other-calendars-buffer.
1030 (calendar-hebrew-yahrzeit-buffer): Rename cal-hebrew-yahrzeit-buffer.
1032 (calendar-increment-month): Rename increment-calendar-month.
1033 Keep old name as alias, update callers.
1034 (calendar-increment-month-cons): Rename old calendar-increment-month.
1036 (calendar-extract-month): Rename extract-calendar-month.
1037 Keep old name as alias, update callers
1038 (calendar-extract-day): Rename extract-calendar-day.
1039 Keep old name as alias, update callers.
1040 (calendar-extract-year): Rename extract-calendar-year.
1041 Keep old name as alias, update callers.
1042 (calendar-generate-window): Rename generate-calendar-window.
1044 (calendar-generate): Rename generate-calendar. Update callers.
1045 (calendar-generate-month): Rename generate-calendar-month.
1047 (calendar-redraw): Rename redraw-calendar. Update callers.
1048 (calendar-describe-mode): Rename describe-calendar-mode. Update uses.
1049 (calendar-mouse-other-month): Rename mouse-calendar-other-month.
1051 (calendar-update-mode-line): Rename update-calendar-mode-line.
1053 (calendar-exit): Rename exit-calendar. Keep old name as alias,
1055 (calendar-mark-visible-date): Rename mark-visible-calendar-date.
1056 Keep old name as alias, update callers.
1057 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
1058 * calendar/cal-dst.el, calendar/cal-french.el, calendar/cal-hebrew.el:
1059 * calendar/cal-html.el, calendar/cal-islam.el, calendar/cal-iso.el:
1060 * calendar/cal-julian.el, calendar/cal-menu.el, calendar/cal-move.el:
1061 * calendar/cal-persia.el, calendar/cal-tex.el, calendar/cal-x.el:
1062 * calendar/diary-lib.el, calendar/holidays.el, calendar/lunar.el:
1063 * calendar/solar.el: Update for calendar.el name changes.
1064 * org/org.el (org-agenda-format-date-aligned)
1065 (org-agenda-execute-calendar-command): Access date elements directly
1066 rather than using calendar functions.
1067 (org-read-date, org-goto-calendar, org-agenda-goto-calendar):
1068 Also set calendar-view-diary-initially-flag,
1069 calendar-view-holidays-initially-flag
1070 (org-get-entries-from-diary): Also set diary-fancy-buffer.
1071 (org-agenda-execute-calendar-command): No need to set displayed-day.
1073 2008-04-06 Alan Mackenzie <acm@muc.de>
1075 * progmodes/cc-langs.el (c-before-font-lock-function): Correct a
1076 typo in the doc string.
1078 * progmodes/cc-mode.el (c-basic-common-init):
1079 Set font-lock-extend-after-change-region-function.
1080 (c-extend-after-change-region): New function, used in
1081 font-lock-extend-after-change-region-function, thus superseding
1082 advice on the Font Lock after change functions.
1083 (c-advise-fl-for-region): Remove this macro.
1085 2008-04-06 Reiner Steib <Reiner.Steib@gmx.de>
1087 * textmodes/flyspell.el (flyspell-duplicate-distance):
1088 Improve custom type.
1090 2008-04-06 Glenn Morris <rgm@gnu.org>
1092 * calendar/diary-lib.el (diary-sexp-entry-symbol):
1093 Rename sexp-diary-entry-symbol. Keep old name as alias, update users.
1094 (diary-list-entries-hook): Rename list-diary-entries-hook.
1095 Keep old name as alias, update users.
1096 (diary-mark-entries-hook): Rename mark-diary-entries-hook.
1097 Keep old name as alias, update users.
1098 (diary-nongregorian-listing-hook): Rename
1099 nongregorian-diary-listing-hook. Keep old name as alias, update users.
1100 (diary-nongregorian-marking-hook): Rename
1101 nongregorian-diary-marking-hook. Keep old name as alias, update users.
1102 (diary-print-entries-hook): Rename print-diary-entries-hook.
1103 Keep old name as alias, update users.
1104 (diary-abbreviated-year-flag): Rename abbreviated-calendar-year.
1105 Keep old name as alias, update users.
1106 (diary-number-of-entries): Rename number-of-diary-entries.
1107 Keep old name as alias, update users.
1108 (view-diary-entries, list-diary-entries, show-all-diary-entries):
1109 Give version of obsolescence.
1110 (diary-view-other-diary-entries): Rename view-other-diary-entries.
1111 Keep old name as alias, update callers.
1112 (diary-add-to-list): Rename add-to-diary-list. Keep old name as alias,
1114 (diary-include-other-diary-files): Rename include-other-diary-files.
1115 Keep old name as alias, update callers.
1116 (diary-simple-display): Rename simple-diary-display.
1117 Keep old name as alias, update callers.
1118 (diary-fancy-display): Rename fancy-diary-display.
1119 Keep old name as alias, update callers.
1120 (diary-print-entries): Rename print-diary-entries.
1121 Keep old name as alias, update callers.
1122 (diary-marking-entries-flag): Rename marking-diary-entries.
1124 (diary-marking-entry-flag): Rename marking-diary-entry. Update users.
1125 (diary-mark-entries): Rename mark-diary-entries.
1126 Keep old name as alias, update callers.
1127 (diary-mark-sexp-entries): Rename mark-sexp-diary-entries.
1128 Keep old name as alias, update callers.
1129 (diary-mark-included-diary-files): Rename mark-included-diary-files.
1130 Keep old name as alias, update callers.
1131 (calendar-mark-days-named): Rename mark-calendar-days-named.
1132 Keep old name as alias, update callers.
1133 (calendar-mark-month): Rename mark-calendar-month.
1134 Keep old name as alias, update callers.
1135 (calendar-mark-date-pattern): Rename mark-calendar-date-pattern.
1136 Keep old name as alias, update callers.
1137 (diary-sort-entries): Rename sort-diary-entries.
1138 Keep old name as alias, update callers.
1139 (diary-list-sexp-entries): Rename list-sexp-diary-entries.
1140 Keep old name as alias, update callers.
1141 (diary-make-entry): Rename make-diary-entry. Keep old name as alias,
1143 (diary-insert-entry): Rename insert-diary-entry.
1144 Keep old name as alias.
1145 (diary-insert-weekly-entry): Rename insert-weekly-diary-entry.
1146 Keep old name as alias.
1147 (diary-insert-monthly-entry): Rename insert-monthly-diary-entry.
1148 Keep old name as alias.
1149 (diary-insert-yearly-entry): Rename insert-yearly-diary-entry.
1150 Keep old name as alias.
1151 (diary-insert-anniversary-entry): Rename insert-anniversary-diary-entry.
1152 Keep old name as alias.
1153 (diary-insert-block-entry): Rename insert-block-diary-entry.
1154 Keep old name as alias.
1155 (diary-insert-cyclic-entry): Rename insert-cyclic-diary-entry.
1156 Keep old name as alias.
1157 (diary-fancy-font-lock-keywords): Rename fancy-diary-font-lock-keywords.
1158 Keep old name as alias, update users.
1159 (diary-fancy-display-mode): Rename fancy-diary-display-mode.
1160 Keep old name as alias, update callers.
1161 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
1162 * calendar/cal-menu.el, calendar/cal-x.el, calendar/calendar.el:
1163 * calendar/icalendar.el: Update for diary-lib name changes.
1165 2008-04-06 Chong Yidong <cyd@stupidchicken.com>
1167 * dired-aux.el (dired-overwrite-confirmed): Revert last change.
1169 * dired.el (dired-dnd-handle-local-file): Obey dired-backup-overwrite
1170 for copy, move, and link operations.
1172 2008-04-06 Michael Kifer <kifer@cs.stonybrook.edu>
1174 * emulation/viper-init.el, emulation/viper-ex.el, emulation/viper-cmd.el
1175 (viper-search-wrap-around-t): Replace with viper-search-wrap-around.
1177 * ediff-util.el, ediff-vers.el, ediff-wind.el: Replace 3-argument
1178 'require' statements with 1-argument ones (wrapped in if's).
1179 For compatibility with the current stable version of XEmacs.
1181 2008-04-06 Dan Nicolaescu <dann@ics.uci.edu>
1183 * vc.el (vc-status-prepare-status-buffer): Reset vc-parent-buffer-name.
1185 2008-04-06 Jason Rumney <jasonr@gnu.org>
1187 * language/burmese.el ("Burmese"): Make sample text consistent with
1190 2008-04-06 Nick Roberts <nickrob@snap.net.nz>
1192 * progmodes/gdb-ui.el (gdb): New group.
1193 (gdb-debug-log-max, gdb-enable-debug)
1194 (gdb-cpp-define-alist-program, gdb-cpp-define-alist-flags)
1195 (gdb-show-main, gdb-many-windows, gdb-use-separate-io-buffer)
1196 (gdb-speedbar-auto-raise, gdb-use-colon-colon-notation)
1197 (gdb-show-changed-values, gdb-max-children)
1198 (gdb-delete-out-of-scope, gdb-same-frame, gdb-find-source-frame)
1199 (breakpoint-enabled, breakpoint-disabled, gdb-max-frames)
1200 (gdb-all-registers, gdb-memory-repeat-count, gdb-memory-format)
1201 (gdb-memory-unit): Move to new group from GUD group.
1202 (menu): Allow customization from GDB-UI menu-item.
1204 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
1206 * dired-aux.el (dired-overwrite-confirmed): Supply initial value.
1208 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
1210 * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-annotate-command)
1211 (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
1212 Revision numbers can include ".".
1214 * diff-mode.el (diff-end-of-hunk): Be careful not to overlook trailing
1215 "+" lines not accounted for by counting "-" and context lines.
1217 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1219 * term/mac-win.el (mac-service-open-file): Use file URL instead of
1222 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
1224 * vc-bzr.el (vc-bzr-annotate-command): Preserve line alignment.
1225 (vc-bzr-annotate-time): Accept space used to preserve alignment.
1227 2008-04-05 Richard Stallman <rms@gnu.org>
1229 * emacs-lisp/advice.el (defadvice): Add usage pattern.
1231 2008-04-05 Nick Roberts <nickrob@snap.net.nz>
1233 * progmodes/gdb-ui.el: Add advice about using Cygwin GDB (from a
1236 2008-04-05 Juanma Barranquero <lekktu@gmail.com>
1238 * files.el (abort-if-file-too-large): Fix typo in docstring.
1240 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
1242 * subr.el (functionp): Return nil for special forms.
1244 2008-04-05 Glenn Morris <rgm@gnu.org>
1246 * emacs-lisp/autoload.el (autoload-ensure-default-file):
1248 * calendar/calendar.el, calendar/diary-lib.el, calendar/holidays.el:
1249 Require loaddef file rather than loading it.
1250 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule now that
1251 autoload-ensure-default-file provides a feature.
1253 * Makefile.in (LOADDEFS): Add mh-loaddefs.el.
1254 (AUTOGENEL): mh-loaddefs is in $LOADDEFS now.
1255 (compile, compile-always, recompile): Use $LOADDEFS.
1256 (cal-autoloads): Remove.
1258 * calendar/cal-x.el (calendar-dedicate-diary): Use get-buffer rather
1259 than buffer-live-p. Reported by David Koppelman <koppel@ece.lsu.edu>.
1261 * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
1262 (hebrew-holidays-3, hebrew-holidays-4): Don't autoload obsolescence.
1264 * calendar/calendar.el (diary-hebrew-entry-symbol):
1265 Rename hebrew-diary-entry-symbol. Keep old name as alias.
1266 (diary-islamic-entry-symbol): Rename islamic-diary-entry-symbol.
1267 Keep old name as alias.
1268 (diary-bahai-entry-symbol): Rename bahai-diary-entry-symbol.
1269 Keep old name as alias.
1270 * calendar/cal-bahai.el: Update for rename bahai-diary-entry-symbol
1271 to diary-bahai-entry-symbol.
1272 * calendar/cal-hebrew.el: Update for rename hebrew-diary-entry-symbol
1273 to diary-hebrew-entry-symbol.
1274 * calendar/cal-islam.el: Update for rename islamic-diary-entry-symbol
1275 to diary-islamic-entry-symbol.
1276 * calendar/diary-lib.el: Update for diary-entry-symbol renames.
1278 * calendar/solar.el (diary-sabbath-candles-minutes)
1279 (diary-sabbath-candles): Move to cal-hebrew.
1280 * calendar/cal-hebrew.el (diary-hebrew-sabbath-candles-minutes)
1281 (diary-hebrew-sabbath-candles): Move here from solar.el and rename.
1282 Doc fix. Keep old name as alias.
1283 (diary-hebrew-sabbath-candles): Simplify.
1284 (solar-setup, solar-sunrise-sunset, calendar-latitude)
1285 (calendar-longitude, calendar-time-zone): Declare for compiler.
1286 * calendar/diary-lib.el (list-sexp-diary-entries): Update doc for
1289 * calendar/cal-coptic.el (calendar-coptic-month-name-array):
1290 Rename coptic-calendar-month-name-array. Update callers.
1291 (calendar-coptic-epoch): Rename coptic-calendar-epoch. Update callers.
1292 (calendar-coptic-name): Rename coptic-name. Update callers.
1293 (calendar-coptic-leap-year-p): Rename coptic-calendar-leap-year-p.
1295 (calendar-coptic-last-day-of-month):
1296 Rename coptic-calendar-last-day-of-month. Update callers.
1297 (calendar-coptic-to-absolute): Rename calendar-absolute-from-coptic.
1298 Keep old name as alias, update callers.
1299 (calendar-coptic-print-date): Rename calendar-print-coptic-date.
1300 Keep old name as alias, update callers.
1301 (calendar-coptic-goto-date): Rename calendar-goto-coptic-date.
1302 Keep old name as alias.
1303 (calendar-ethiopic-month-name-array):
1304 Rename ethiopic-calendar-month-name-array. Update callers.
1305 (calendar-ethiopic-epoch): Rename ethiopic-calendar-epoch.
1307 (calendar-ethiopic-name): Rename ethiopic-name. Update callers.
1308 (calendar-ethiopic-to-absolute): Rename calendar-absolute-from-ethiopic.
1309 Keep old name as alias, update callers.
1310 (calendar-ethiopic-print-date): Rename calendar-print-ethiopic-date.
1311 Keep old name as alias, update callers.
1312 (calendar-ethiopic-goto-date): Rename calendar-goto-ethiopic-date.
1313 Keep old name as alias.
1315 * calendar/cal-french.el (calendar-french-epoch):
1316 Rename french-calendar-epoch. Update callers.
1317 (calendar-french-month-name-array): Rename variable and function
1318 french-calendar-month-name-array. Update callers.
1319 (calendar-french-multibyte-month-name-array):
1320 Rename french-calendar-multibyte-month-name-array. Update callers.
1321 (calendar-french-day-name-array): Rename variable and function
1322 french-calendar-day-name-array. Update callers.
1323 (calendar-french-special-days-array): Rename variable and function
1324 french-calendar-special-days-array. Update callers.
1325 (calendar-french-multibyte-special-days-array):
1326 Rename french-calendar-multibyte-special-days-array. Update callers.
1327 (calendar-french-accents-p): Rename french-calendar-accents.
1329 (calendar-french-leap-year-p): Rename french-calendar-leap-year-p.
1331 (calendar-french-last-day-of-month):
1332 Rename french-calendar-last-day-of-month. Update callers.
1333 (calendar-french-to-absolute): Rename calendar-absolute-from-french.
1334 Keep old name as alias, update callers.
1335 (calendar-french-print-date): Rename calendar-print-french-date.
1336 Keep old name as alias, update callers.
1337 (calendar-french-goto-date): Rename calendar-goto-french-date.
1338 Keep old name as alias.
1340 * calendar/cal-menu.el, calendar/calendar.el:
1341 Update for Coptic and French name changes.
1343 * calendar/cal-china.el (calendar-chinese): Rename custom group
1344 from chinese-calendar. Update users.
1345 (calendar-chinese-time-zone): Rename chinese-calendar-time-zone.
1346 Keep old name as alias, update users.
1347 (calendar-chinese-location-name): Rename chinese-calendar-location-name.
1348 Keep old name as alias.
1349 (calendar-chinese-daylight-time-offset):
1350 Rename chinese-calendar-daylight-time-offset. Keep old name as alias,
1352 (calendar-chinese-standard-time-zone-name):
1353 Rename chinese-calendar-standard-time-zone-name.
1354 Keep old name as alias, update users.
1355 (calendar-chinese-daylight-saving-start):
1356 Rename chinese-calendar-daylight-savings-starts.
1357 Keep old name as alias, update users.
1358 (calendar-chinese-daylight-saving-end):
1359 Rename chinese-calendar-daylight-savings-ends. Keep old name as alias,
1361 (calendar-chinese-daylight-saving-start-time):
1362 Rename chinese-calendar-daylight-savings-starts-time.
1363 Keep old name as alias, update users.
1364 (calendar-chinese-daylight-saving-end-time):
1365 Rename chinese-calendar-daylight-savings-ends-time.
1366 Keep old name as alias, update users.
1367 (calendar-chinese-celestial-stem): Rename
1368 calendar-chinese-celestial-stem. Keep old name as alias, update users.
1369 (calendar-chinese-terrestrial-branch):
1370 Rename calendar-chinese-terrestrial-branch. Keep old name as alias,
1372 (calendar-chinese-zodiac-sign-on-or-after):
1373 Rename chinese-zodiac-sign-on-or-after. Update callers.
1374 (calendar-chinese-new-moon-on-or-after):
1375 Rename chinese-new-moon-on-or-after. Update callers.
1376 (calendar-chinese-month-list): Rename chinese-month-list.
1378 (calendar-chinese-number-months): Rename number-chinese-months.
1380 (calendar-chinese-compute-year): Rename compute-chinese-year.
1382 (calendar-chinese-year-cache): Rename chinese-year-cache. Update users.
1383 (calendar-chinese-year): Rename chinese-year. Update callers.
1384 (calendar-chinese-year-cache-init): Rename chinese-year-cache-init.
1385 (calendar-chinese-to-absolute): Rename calendar-absolute-from-chinese.
1386 Keep old name as alias, update callers.
1387 (calendar-chinese-print-date): Rename calendar-print-chinese-date.
1388 Keep old name as alias, update callers.
1389 (calendar-chinese-months-to-alist):
1390 Rename make-chinese-month-assoc-list. Update callers.
1391 (calendar-chinese-months): Rename chinese-months. Update callers.
1392 (calendar-chinese-goto-date): Rename calendar-goto-chinese-date.
1393 Keep old name as alias, update callers.
1395 * calendar/cal-hebrew.el (calendar-hebrew-leap-year-p):
1396 Rename hebrew-calendar-leap-year-p. Update callers.
1397 (calendar-hebrew-last-month-of-year):
1398 Rename hebrew-calendar-last-month-of-year. Update callers.
1399 (calendar-hebrew-elapsed-days): Rename hebrew-calendar-elapsed-days.
1401 (calendar-hebrew-days-in-year): Rename hebrew-calendar-days-in-year.
1403 (calendar-hebrew-long-heshvan-p): Rename hebrew-calendar-long-heshvan-p.
1405 (calendar-hebrew-short-kislev-p): Rename hebrew-calendar-short-kislev-p.
1407 (calendar-hebrew-last-day-of-month):
1408 Rename hebrew-calendar-last-day-of-month. Update callers.
1409 (calendar-hebrew-to-absolute): Rename calendar-absolute-from-hebrew.
1410 Keep old name as alias, update callers.
1411 (calendar-hebrew-print-date): Rename calendar-print-hebrew-date.
1412 Keep old name as alias, update callers.
1413 (calendar-hebrew-yahrzeit): Rename hebrew-calendar-yahrzeit.
1414 Keep old name as alias, update callers.
1415 (calendar-hebrew-goto-date): Rename calendar-goto-hebrew-date.
1416 Keep old name as alias.
1417 (holiday-hebrew-rosh-hashanah): Rename holiday-rosh-hashanah-etc.
1418 Keep old name as alias.
1419 (holiday-hebrew-hanukkah): Rename holiday-hanukkah.
1420 Keep old name as alias.
1421 (holiday-hebrew-passover): Rename holiday-passover-etc.
1422 Keep old name as alias.
1423 (holiday-hebrew-tisha-b-av): Rename holiday-tisha-b-av-etc.
1424 Keep old name as alias, update callers.
1425 (diary-hebrew-list-entries): Rename list-hebrew-diary-entries.
1426 Keep old name as alias.
1427 (calendar-hebrew-mark-date-pattern):
1428 Rename mark-hebrew-calendar-date-pattern. Keep old name as alias,
1430 (diary-hebrew-mark-entries): Rename mark-hebrew-diary-entries.
1431 Keep old name as alias.
1432 (diary-hebrew-insert-entry): Rename insert-hebrew-diary-entry.
1433 Keep old name as alias.
1434 (diary-hebrew-insert-monthly-entry):
1435 Rename insert-monthly-hebrew-diary-entry. Keep old name as alias.
1436 (diary-hebrew-insert-yearly-entry):
1437 Rename insert-yearly-hebrew-diary-entry. Keep old name as alias.
1438 (calender-hebrew-list-yahrzeits): Rename list-yahrzeit-dates.
1439 Keep old name as alias.
1440 (diary-hebrew-omer): Rename diary-omer. Keep old name as alias.
1441 (diary-hebrew-yahrzeit): Rename diary-yahrzeit. Keep old name as alias.
1442 (diary-hebrew-rosh-hodesh): Rename diary-rosh-hodesh.
1443 Keep old name as alias.
1444 (calendar-hebrew-parashiot-names):
1445 Rename hebrew-calendar-parashiot-names. Update callers.
1446 (calendar-hebrew-parasha-name): Rename hebrew-calendar-parasha-name.
1447 (calendar-hebrew-year-Saturday-incomplete-Sunday):
1448 Rename hebrew-calendar-year-Saturday-incomplete-Sunday.
1449 (calendar-hebrew-year-Saturday-complete-Tuesday):
1450 Rename hebrew-calendar-year-Saturday-complete-Tuesday.
1451 (calendar-hebrew-year-Monday-incomplete-Tuesday):
1452 Rename hebrew-calendar-year-Monday-incomplete-Tuesday.
1453 (calendar-hebrew-year-Monday-complete-Thursday):
1454 Rename hebrew-calendar-year-Monday-complete-Thursday.
1455 (calendar-hebrew-year-Tuesday-regular-Thursday):
1456 Rename hebrew-calendar-year-Tuesday-regular-Thursday.
1457 (calendar-hebrew-year-Thursday-regular-Saturday):
1458 Rename hebrew-calendar-year-Thursday-regular-Saturday.
1459 (calendar-hebrew-year-Thursday-complete-Sunday):
1460 Rename hebrew-calendar-year-Thursday-complete-Sunday.
1461 (calendar-hebrew-year-Saturday-incomplete-Tuesday):
1462 Rename hebrew-calendar-year-Saturday-incomplete-Tuesday.
1463 (calendar-hebrew-year-Saturday-complete-Thursday):
1464 Rename hebrew-calendar-year-Saturday-complete-Thursday.
1465 (calendar-hebrew-year-Monday-incomplete-Thursday):
1466 Rename hebrew-calendar-year-Monday-incomplete-Thursday.
1467 (calendar-hebrew-year-Monday-complete-Saturday):
1468 Rename hebrew-calendar-year-Monday-complete-Saturday.
1469 (calendar-hebrew-year-Tuesday-regular-Saturday):
1470 Rename hebrew-calendar-year-Tuesday-regular-Saturday.
1471 (calendar-hebrew-year-Thursday-incomplete-Sunday):
1472 Rename hebrew-calendar-year-Thursday-incomplete-Sunday.
1473 (calendar-hebrew-year-Thursday-complete-Tuesday):
1474 Rename hebrew-calendar-year-Thursday-complete-Tuesday.
1475 (diary-hebrew-parasha): Rename diary-parasha. Keep old name as alias.
1476 Update for above name changes of constants.
1478 * calendar/cal-menu.el, calendar/calendar.el:
1479 Update for chinese and hebrew name changes.
1480 * calendar/diary-lib.el: Update for hebrew name changes.
1482 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
1484 * subr.el (keymap-canonicalize): Correct thinko.
1486 * server.el: Undo part of the multi-tty change, which is only
1487 needed if server.el is preloaded, and broke server-running-p.
1488 (server-socket-dir): Initialize in the defvar, as before.
1489 (server-start): Remove initialization of server-socket-dir.
1491 2008-04-05 Eli Zaretskii <eliz@gnu.org>
1493 * ls-lisp.el (ls-lisp-format): Support inodes that are 2- or
1494 3-member cons cells.
1496 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
1498 * cus-face.el (custom-face-attributes): Handle roman slant.
1500 * faces.el (default): Ensure the face-defface-spec property is set.
1502 2008-04-05 Adrian Robert <Adrian.B.Robert@gmail.com>
1504 * files.el (abort-if-file-too-large): New function.
1505 (find-file-noselect, insert-file-1): Use it.
1507 2008-04-05 Reto Zimmermann <reto@gnu.org>
1509 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
1510 Replace C-c[a-zA-Z] key bindings.
1512 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
1514 * progmodes/hideif.el (hif-token-alist): New var.
1515 (hif-token-regexp, hif-tokenize): Use it.
1516 (hif-mathify-binop): New macro.
1517 (hif-plus, hif-minus, hif-notequal, hif-greater, hif-less)
1518 (hif-greater-equal, hif-less-equal): Use it.
1519 (hif-logior, hif-logand): New functions.
1520 (hif-math): Accept | and & as well.
1522 * progmodes/etags.el: Fix problem with completion for buffer-local
1523 tables. Reported by Radey Shouman <shouman@comcast.net>.
1524 (tags-complete-tag): Remove.
1525 (tags-lazy-completion-table): New function to replace it.
1526 (find-tag-tag, complete-tag): Update users.
1528 2008-04-04 Dan Nicolaescu <dann@ics.uci.edu>
1530 * vc-rcs.el (vc-rcs-dir-status):
1531 * vc-sccs.el (vc-sccs-dir-status): New function.
1533 * outline.el (outline-mode-menu-bar-map):
1534 * term.el (terminal-signal-menu): Add :help.
1536 * net/eudc.el (eudc-mode-map): Declare and define in one step.
1537 (eudc-tail-menu, eudc-server-menu, eudc-tools-menu): Add :help.
1539 * emacs-lisp/re-builder.el (reb-mode-map):
1540 * textmodes/nroff-mode.el (nroff-mode-map): Add menus.
1542 * diff-mode.el (diff-file-junk-re): Recognize the git format for
1543 new files, deleted files and for changing permissions.
1544 (diff-mode): Set beginning-of-defun-function and
1545 end-of-defun-function.
1547 * vc-bzr.el (vc-bzr-state): Use when instead of if.
1549 * vc.el (vc-default-status-fileinfo-extra): New function.
1550 (vc-status-mark-buffer-changed): Use it.
1551 (vc-update-vc-status-buffer): Allow for partial updates.
1553 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
1555 * net/tramp.el (after-init-hook): Don't wrap a lambda around
1556 tramp-register-completion-file-name-handler.
1558 * subr.el (keymap-canonicalize): New function.
1559 * mouse.el (mouse-menu-non-singleton): Use it.
1560 (mouse-major-mode-menu): Remove hack made unnecessary.
1562 * simple.el (set-fill-column): Prompt rather than error by default.
1564 2008-04-04 Andreas Schwab <schwab@suse.de>
1566 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
1567 Reset new-rules after each round.
1569 * Makefile.in (cal-autoloads): New target.
1570 (compile, compile-always, recompile): Depend on it.
1571 ($(lisp)/calendar/cal-loaddefs.el)
1572 ($(lisp)/calendar/diary-loaddefs.el)
1573 ($(lisp)/calendar/hol-loaddefs.el): Depend on calendar/*.el.
1575 2008-04-04 Michael Kifer <kifer@cs.stonybrook.edu>
1577 * ediff*.el: Replace load with require in eval-when-compile.
1579 * ediff-hook: Delete all invocations of (autoload ...).
1581 * ediff-util.el (ediff-setup): Make window-min-height a local variable
1582 in ediff control window, and set its min height to 2.
1583 (ediff-setup-control-buffer): Dedicate the control window.
1584 (ediff-toggle-multiframe): Undedicate control window.
1585 Work directly with ediff-setup-windows-multiframe and
1586 ediff-setup-windows-plain.
1588 * ediff-wind (ediff-choose-window-setup-function-automatically):
1590 (ediff-window-setup-function): Change initialization.
1591 (ediff-setup-windows-automatic): Delete.
1592 (ediff-setup-windows-plain-merge): Make control window dedicated.
1593 (ediff-destroy-control-frame): Do not skip frames if working in a
1596 * emulation/viper-ex.el: Move provide's forward, prevent recursion in
1599 * emulation/viper-util.el: Move provide's forward, prevent recursion in
1602 2008-04-04 Glenn Morris <rgm@gnu.org>
1604 * calendar/cal-bahai.el (calendar-bahai-to-absolute): Rename
1605 calendar-absolute-from-bahai. Update callers, keep old name as alias.
1607 * calendar/cal-islam.el (calendar-islamic-leap-year-p):
1608 Rename islamic-calendar-leap-year-p. Update callers.
1609 (calendar-islamic-last-day-of-month):
1610 Rename islamic-calendar-last-day-of-month. Update callers.
1611 (calendar-islamic-day-number):
1612 Rename islamic-calendar-day-number. Update callers.
1613 (calendar-islamic-to-absolute): Rename calendar-absolute-from-islamic.
1614 Update callers, keep old name as alias.
1615 (calendar-islamic-print-date): Rename calendar-print-islamic-date.
1616 Update callers, keep old name as alias.
1617 (calendar-islamic-goto-date): Rename calendar-goto-islamic-date.
1618 Keep old name as alias.
1619 (diary-islamic-list-entries): Rename list-islamic-diary-entries.
1620 Update callers, keep old name as alias.
1621 (calendar-islamic-mark-date-pattern):
1622 Rename mark-islamic-calendar-date-pattern. Update callers, keep old
1624 (diary-islamic-insert-entry): Rename insert-islamic-diary-entry.
1625 Keep old name as alias.
1626 (diary-islamic-insert-monthly-entry):
1627 Rename insert-monthly-islamic-diary-entry. Keep old name as alias.
1628 (diary-islamic-insert-yearly-entry):
1629 Rename insert-yearly-islamic-diary-entry. Keep old name as alias.
1631 * calendar/cal-iso.el (calendar-iso-to-absolute): Rename
1632 calendar-absolute-from-iso. Update callers, keep old name as alias.
1633 (calendar-iso-print-date): Rename calendar-print-iso-date.
1634 Update callers, keep old name as alias.
1635 (calendar-iso-goto-date): Rename calendar-goto-iso-date.
1636 Keep old name as alias.
1637 (calendar-iso-goto-week): Rename calendar-goto-iso-week.
1638 Keep old name as alias.
1640 * calendar/cal-julian.el (calendar-julian-to-absolute): Rename
1641 calendar-absolute-from-julian. Update callers, keep old name as alias.
1642 (calendar-julian-print-date): Rename calendar-print-julian-date.
1643 Update callers, keep old name as alias.
1644 (calendar-julian-goto-date): Rename calendar-goto-julian-date.
1645 Update callers, keep old name as alias.
1646 (calendar-astro-to-absolute): Rename calendar-absolute-from-astro.
1647 Update callers, keep old name as alias.
1648 (calendar-astro-print-day-number):
1649 Rename calendar-print-astro-day-number. Update callers, keep old
1651 (calendar-astro-goto-day-number): Rename calendar-goto-astro-day-number.
1652 Update callers, keep old name as alias.
1654 * calendar/cal-mayan.el (calendar-mayan-string-from-long-count):
1655 Rename calendar-string-to-mayan-long-count. Update callers.
1656 (calendar-mayan-print-date): Rename calendar-print-mayan-date.
1657 Update callers, keep old name as alias.
1658 (calendar-mayan-read-haab-date): Rename calendar-read-mayan-haab-date.
1660 (calendar-mayan-read-tzolkin-date):
1661 Rename calendar-read-mayan-tzolkin-date. Update callers.
1662 (calendar-mayan-next-haab-date): Rename calendar-next-haab-date.
1663 Keep old name as alias.
1664 (calendar-mayan-previous-haab-date): Rename calendar-previous-haab-date.
1665 Keep old name as alias.
1666 (calendar-mayan-next-tzolkin-date): Rename calendar-next-tzolkin-date.
1667 Keep old name as alias.
1668 (calendar-mayan-previous-tzolkin-date):
1669 Rename calendar-previous-tzolkin-date. Keep old name as alias.
1670 (calendar-mayan-next-round-date):
1671 Rename calendar-next-calendar-round-date. Keep old name as alias.
1672 (calendar-mayan-previous-round-date):
1673 Rename calendar-previous-calendar-round-date. Keep old name as alias.
1674 (calendar-mayan-long-count-to-absolute): Rename
1675 calendar-absolute-from-mayan-long-count. Keep old name as alias.
1676 (calendar-mayan-goto-long-count-date):
1677 Rename calendar-goto-mayan-long-count-date. Keep old name as alias.
1679 * calendar/cal-persia.el (calendar-persian-month-name-array):
1680 Rename persian-calendar-month-name-array. Update callers.
1681 (calendar-persian-epoch): Rename persian-calendar-epoch.
1683 (calendar-persian-leap-year-p): Rename persian-calendar-leap-year-p.
1685 (calendar-persian-last-day-of-month):
1686 Rename persian-calendar-last-day-of-month. Update callers.
1687 (calendar-persian-to-absolute): Rename calendar-absolute-from-persian.
1688 Update callers, keep old name as alias.
1689 (calendar-persian-print-date): Rename calendar-print-persian-date.
1690 Update callers, keep old name as alias.
1691 (calendar-persian-goto-date): Rename calendar-goto-persian-date.
1692 Keep old name as alias.
1694 * calendar/cal-china.el, calendar/cal-coptic.el, calendar/cal-islam.el:
1695 * calendar/cal-persia.el, calendar/holidays.el, calendar/lunar.el:
1696 * calendar/solar.el: Update for cal-julian name changes.
1698 * calendar/cal-dst.el: Update for persian name changes.
1700 * calendar/cal-menu.el, calendar/calendar.el:
1701 Update for islamic, iso, julian, mayan, persian name changes.
1703 * calendar/diary-lib.el: Update for islamic name changes.
1705 * calendar/calendar.el (calendar-hebrew-all-holidays-flag):
1706 Rename all-hebrew-calendar-holidays. Update callers, keep old name
1708 (calendar-christian-all-holidays-flag):
1709 Rename all-christian-calendar-holidays. Update callers, keep old
1711 (calendar-islamic-all-holidays-flag):
1712 Rename all-islamic-calendar-holidays. Update callers, keep old
1714 (calendar-bahai-all-holidays-flag): Rename all-bahai-calendar-holidays.
1715 Update callers, keep old name as alias.
1716 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/holidays.el:
1717 Update for the above name changes.
1719 2008-04-04 Juanma Barranquero <lekktu@gmail.com>
1721 * hilit-chg.el (global-highlight-changes-mode)
1722 (highlight-changes-passive-string, highlight-changes-active-string):
1723 Mark as obsolete since 23.1, not 22.1.
1725 2008-04-03 Juanma Barranquero <lekktu@gmail.com>
1727 * hilit-chg.el (highlight-changes-visibility-initial-state)
1728 (hilit-chg-update, highlight-changes-mode-turn-on):
1729 Fix typos in docstrings.
1731 2008-04-03 Stephen Berman <Stephen.Berman@gmx.net>
1733 * newcomment.el (comment-enter-backward): Be careful to restore
1734 position changed during narrowing.
1736 2008-04-03 Giuliano Procida <giuliano.procida@googlemail.com> (tiny change)
1738 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
1739 Recognize `sub ($$)'.
1741 2008-04-03 Richard Sharman <rsharman@pobox.com>
1743 * hilit-chg.el (highlight-changes-mode): Rename from
1744 highlight-changes; no longer uses sub-modes active and passive;
1745 implemented by define-minor-mode.
1746 (highlight-changes-toggle-visibility): New function, to replace
1747 the old passive/active submodes of global-highlight-changes-mode;
1748 implemented by define-minor-mode.
1749 (global-highlight-changes-mode): Rename from global-highlight-changes;
1750 rewrite using define-globalized-minor-mode.
1751 (hilit-chg-major-mode-hook, hilit-chg-check-global)
1752 (hilit-chg-post-command-hook, hilit-chg-check-global)
1753 (hilit-chg-update-all-buffers, hilit-chg-turn-off-maybe): Remove due
1754 to use of define-globalized-minor-mode.
1755 (highlight-changes-global-initial-state): Change to be boolean.
1756 (highlight-changes-visible-string, highlight-changes-invisible-string):
1757 Rename from highlight-changes-active-string and
1758 highlight-changes-passive-string.
1759 (hilit-chg-update, hilit-chg-set): Use them.
1760 (global-highlight-changes-mode): Rename from global-highlight-changes.
1761 (hilit-chg-map-changes, hilit-chg-display-changes): Add arguments to
1763 (hilit-chg-hide-changes): Rewrite to use dolist.
1764 (hilit-chg-set-face-on-change, hilit-chg-update)
1765 (highlight-changes-rotate-faces): Use highlight-changes-visible-mode
1766 variable instead of testing highlight-changes-mode.
1767 (highlight-markup-buffers): Add reuire ediff-util; argument on calls
1768 to highlight-changes-mode changed.
1769 (highlight-compare-with-file): Fix problems with interactive
1770 call giving invalid default file.
1772 2008-04-03 Nick Roberts <nickrob@snap.net.nz>
1774 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
1775 Fix in disassembly buffer (regression in 22.2).
1777 2008-04-03 Michael Kifer <kifer@cs.stonybrook.edu>
1779 * emulation/viper-macs.el (viper-read-fast-keysequence):
1780 Use viper-read-event instead of viper-read-key.
1782 * emulation/viper.el (viper-mode): Move the check for fundamental mode.
1784 * emulation/viper-utils.el (viper-get-saved-cursor-color-in-insert-mode)
1785 (viper-get-saved-cursor-color-in-replace-mode): Get rid of redundant
1788 * emulation/viper-ex.el, emulation/viper-macs.el:
1789 * emulation/viper-mous.el:
1790 Replace load with require in eval-when-compile.
1792 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
1794 * files.el (auto-mode-alist): Use archive-mode for Debian packages.
1796 * arc-mode.el (archive-mode-map): Obey mouse-1-click-follows-link.
1797 (archive-try-jka-compr): New function.
1798 (archive-set-buffer-as-visiting-file): Use it.
1800 * tar-mode.el (tar-mode-map): Obey mouse-1-click-follows-link.
1802 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
1804 * simple.el (handle-shift-selection): New arg.
1806 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
1808 * emacs-lisp/cl-macs.el (defsetf): Accept a lambda for the 2-arg form.
1810 * vc-bzr.el (vc-bzr-previous-revision, vc-bzr-next-revision): New funs.
1812 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
1814 * shell.el (shell-dynamic-complete-filename): New fun.
1815 (shell-dynamic-complete-functions): Use it.
1817 * help-fns.el (describe-variable): Undo 2008-02-25 change.
1819 2008-04-03 Kenichi Handa <handa@m17n.org>
1821 * international/fontset.el (create-fontset-from-x-resource):
1822 Handle the error of X resource more gracefully.
1824 * international/latin1-disp.el (latin1-display): Don't use make-char.
1825 Fix the argument to set-char-table-range.
1826 (latin1-display-identities): Don't use make-char.
1827 (latin1-display-reset): Use map-charset-chars instead of directly
1828 calling standard-display-default.
1829 (latin1-display-check-font): Don't use make-char.
1830 (latin1-display-setup): Likewise.
1831 (latin1-display-ucs-per-lynx): Likewise.
1833 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
1835 * emacs-lisp/timer.el (timer): Define as a defstruct, so we can
1836 name the fields, to make the code clearer.
1837 Rewrite all `aset' and `aref' using the defined accessors.
1838 (timer--time): New pseudo-field.
1839 (timer-set-time, timer-set-idle-time, timer-inc-time)
1840 (timer-set-time-with-usecs, with-timeout-suspend): Use it.
1841 (timer--time-less-p): New function.
1842 (timer--activate): New function, extracted from timer-activate.
1843 (timer-activate-when-idle, timer-activate): Use it.
1844 (cancel-function-timers): Use dolist.
1846 2008-04-03 Glenn Morris <rgm@gnu.org>
1848 * add-log.el (c-beginning-of-defun, c-end-of-defun):
1849 Remove declarations; no longer used.
1850 (c-cpp-define-name, c-defun-name): Declare as functions.
1852 * calendar/cal-bahai.el (holiday-fixed): Autoload it.
1853 (holiday-bahai-new-year, holiday-bahai-ridvan): New functions.
1855 * calendar/cal-hebrew.el (holiday-rosh-hashanah-etc)
1856 (holiday-passover-etc, holiday-hanukkah): Doc fix.
1857 Add optional argument. Simplify.
1858 (holiday-tisha-b-av-etc): Use memq rather than unless.
1859 (holiday-julian): Autoload it.
1860 (holiday-hebrew-misc): New function.
1862 * calendar/cal-islam.el (holiday-islamic-new-year): New function.
1864 * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
1865 (hebrew-holidays-3, hebrew-holidays-4): Make obsolete.
1866 (hebrew-holidays-2): Just use holiday-hanukkah now it respects
1867 all-hebrew-calendar-holidays.
1868 (hebrew-holidays, christian-holidays, islamic-holidays, bahai-holidays):
1869 Simplify using new functions.
1870 (calendar-holidays): Doc fix.
1871 (generate-calendar-window): Use bound-and-true-p.
1873 * calendar/diary-lib.el (diary-mail-addr): Use bound-and-true-p.
1875 * calendar/holidays.el (calendar-holiday-list): Fix previous change.
1876 (holiday-filter-visible-calendar): Doc fix. Use mapcar.
1877 (holiday-easter-etc): Fix nesting of result. Tweak holiday order.
1878 Use calendar-date-is-visible-p, not holiday-filter-visible-calendar.
1880 * net/tramp.el (tramp-drop-volume-letter): Move definition before use.
1882 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
1884 * vc-mtn.el (vc-mtn-command): Avoid localization of messages.
1886 * vc-bzr.el (vc-bzr-checkout): Simplify.
1888 * image-mode.el (image-mode-fit-frame): New command.
1890 * simple.el (beginning-of-buffer, end-of-buffer, goto-line, undo)
1891 (copy-region-as-kill, kill-ring-save, use-region-p, mark-word)
1892 (keyboard-escape-quit): Check region-active-p i.s.o
1893 transient-mark-mode.
1895 2008-04-02 Simon Josefsson <simon@josefsson.org>
1897 * net/imap.el (imap-enable-exchange-bug-workaround): New variable.
1898 (imap-message-copyuid-1): Use it.
1899 (imap-message-appenduid-1): Likewise. Based on patch by Nathan
1901 <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
1903 2008-04-02 Alan Mackenzie <acm@muc.de>
1905 * progmodes/cc-cmds.el (c-defun-name, c-cpp-define-name):
1906 New optimised functions to get the name of the current defun/macro.
1908 * add-log.el (add-log-current-defun): Move the functionality which
1909 gets the current function name for C like modes to cc-cmds.el,
1910 thus optimising for speed.
1912 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
1914 * simple.el (deactivate-mark): When the mark is temporarily
1915 active, restore the original value of transient-mark-mode.
1916 (set-mark-command): First deactivate the mark if was temporarily active.
1917 (exchange-point-and-mark): Reactivate the mark if it was
1919 (handle-shift-selection): New fun.
1920 (transient-mark-mode): Move var documentation here from buffer.c.
1921 (next-line, previous-line, backward-word, move-end-of-line)
1922 (move-beginning-of-line, forward-to-indentation)
1923 (backward-to-indentation, back-to-indentation)
1924 (beginning-of-buffer, end-of-buffer): Add ^ interactive spec.
1926 * mouse.el (mouse-set-region-1): Save the old value of
1927 transient-mark-mode.
1928 (mouse-drag-track): Ignore the now-obsolete value `identity' for
1929 transient-mark-mode.
1931 * textmodes/paragraphs.el (forward-paragraph)
1932 (backward-paragraph, forward-sentence, backward-sentence): Add ^
1935 * emulation/cua-base.el (cua-mode): Turn off shift-select-mode.
1937 2008-04-02 Michael Albinus <michael.albinus@gmx.de>
1939 * net/tramp.el (tramp-make-tramp-temp-file):
1940 Use `tramp-drop-volume-letter' for the local file name part.
1942 2008-04-02 Dan Nicolaescu <dann@ics.uci.edu>
1944 * progmodes/sh-script.el (sh-mode-map): Rename the menu. Add :help.
1945 Add menu entries corresponding to all the key bindings.
1947 * emacs-lisp/debug.el (debugger-mode-map):
1948 * textmodes/conf-mode.el (conf-mode-map): Add a menu.
1949 (conf-align-assignments): Only work on the region if it is active.
1950 (conf-quote-normal): Use when instead of if. Remove redundant test.
1952 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
1953 for tracing and re-builder.
1955 2008-04-02 Glenn Morris <rgm@gnu.org>
1957 * calendar/appt.el (appt-disp-window-function): Doc fix.
1958 (appt-display-message): Move beep before display.
1959 (appt-check): Make interactive. Reduce the number of lets.
1960 Use string-equal to compare mode-line strings.
1961 (appt-disp-window): Pluralize "minute" as needed. Make appt buffer
1963 (appt-select-lowest-window, appt-make-list): Reduce the number of lets.
1964 (appt-delete): Simplify.
1966 * calendar/cal-china.el (holiday-chinese-new-year): Use a single let.
1968 * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
1970 * calendar/cal-hebrew.el (list-yahrzeit-dates):
1971 * calendar/cal-tex.el (cal-tex-insert-blank-days-at-end)
1972 (cal-tex-last-blank-p, cal-tex-daily-page): Expand calendar-for-loops.
1974 * calendar/calendar.el (diary-entry-marker, calendar-today-marker)
1975 (calendar-holiday-marker, mark-visible-calendar-date):
1976 * calendar/diary-lib.el (fancy-diary-display):
1977 Check for font-lock-mode before using faces.
1979 * calendar/calendar.el (hebrew-holidays-3, generate-calendar-month)
1980 (calendar-gregorian-from-absolute): Reduce the number of lets.
1981 (hebrew-holidays-4, generate-calendar-window): Simplify.
1982 (calendar-for-loop): Make obsolete.
1983 (calendar-nth-named-day): Doc fix.
1985 * calendar/diary-lib.el (diary-list-entries, fancy-diary-display)
1986 (print-diary-entries, mark-sexp-diary-entries, calendar-mark-complex)
1987 (calendar-mark-1, list-sexp-diary-entries, diary-remind):
1988 Reduce the number of lets.
1989 (mark-sexp-diary-entries, calendar-mark-complex):
1990 Expand calendar-for-loops.
1992 2008-04-01 Chong Yidong <cyd@stupidchicken.com>
1994 * find-dired.el (find-dired-filter): Fix last patch to handle
1995 multi-line process input. Pad link numbers too.
1997 2008-04-01 Jari Aalto <jari.aalto@cante.net>
1999 * find-dired.el (find-dired-filter): Align columns by padding file sizes.
2001 2008-04-01 Jason Rumney <jasonr@gnu.org>
2003 * international/characters.el (script-list): Add phonetic script,
2004 covering IPA (previously Latin), Phonetic Extensions and
2005 Phonetic Extensions Supplement (both previously unassigned).
2007 * international/fontset.el (setup-default-fontset): Use unicode fonts
2008 that cover bopomofo script for bopomofo.
2009 Likewise for braille and mathematical.
2010 Use unicode scripts that cover the phonetic script for IPA.
2012 2008-04-01 Johan Bockgård <bojohan@gnu.org>
2014 * emacs-lisp/cl-macs.el (frame-parameter) <defsetf>: Make it
2015 return the assigned value.
2017 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
2019 * abbrev.el (abbrev-mode): Use define-minor-mode.
2021 * mouse.el (mouse-major-mode-menu-prefix): Remove. Remove uses.
2022 (mouse-menu-non-singleton): Rename from mouse-major-mode-menu-1.
2024 (minor-mode-menu-from-indicator): Use it. Simplify.
2026 * bindings.el (mode-line-mode-menu): Move before (new) first use.
2027 (mode-line-major-mode-keymap, mode-line-minor-mode-keymap):
2028 Bind the key directly to the menu.
2029 (mode-line-mode-menu-1, mode-line-mode-menu): Remove functions.
2031 2008-04-01 Daiki Ueno <ueno@unixuser.org>
2033 * epa.el (epa-decrypt-region): Explain the reason why this
2034 function should not be used in Lisp programs.
2035 (epa-decrypt-armor-in-region): Ditto.
2036 (epa-verify-region): Ditto.
2037 (epa-verify-cleartext-in-region): Ditto.
2038 (epa-sign-region): Ditto.
2039 (epa-encrypt-region): Ditto.
2041 * epg.el (epg-start-receive-keys): Fix typo in docstring.
2043 * epa.el (epa-select-keys): Show menu even if there is no key in
2046 2008-04-01 Glenn Morris <rgm@gnu.org>
2048 * calendar/calendar.el (calendar-make-temp-face): New function.
2049 (mark-visible-calendar-date):
2050 * calendar/diary-lib.el (fancy-diary-display): Use it.
2052 * vc-hooks.el (vc-responsible-backend): Declare as function.
2054 * calendar/calendar.el (calendar-nongregorian-visible-p): New function.
2055 * calendar/cal-hebrew.el (calendar-hebrew-date-is-visible-p):
2056 * calendar/cal-julian.el (holiday-julian): Use it.
2058 * calendar/cal-hebrew.el (hebrew-calendar-elapsed-days): Doc fix.
2059 (calendar-hebrew-date-is-visible-p): Extract some common code into
2061 (holiday-hebrew, mark-hebrew-calendar-date-pattern): Use it.
2063 * calendar/cal-menu.el (cal-menu-holidays-menu):
2064 * calendar/calendar.el (calendar-mode-map): Use calendar-mark-holidays
2065 rather than obsolete alias.
2067 * calendar/calendar.el (mark-visible-calendar-date): Also use overlay
2068 for mark characters.
2069 (calendar-unmark): Unmark by removing all overlays, rather than
2071 (calendar-starred-day): Remove.
2072 (calendar-mode): Disable undo. Don't make calendar-starred-day local.
2073 (calendar-cursor-to-date): No need for special star handling now
2075 (calendar-star-date): Use overlays.
2077 * calendar/cal-french.el (calendar-goto-french-date):
2078 * calendar/cal-hebrew.el (calendar-hebrew-from-absolute)
2079 (holiday-hanukkah, mark-hebrew-calendar-date-pattern):
2080 * calendar/cal-move.el (calendar-forward-month, calendar-end-of-month):
2081 * calendar/cal-persia.el (calendar-persian-date-string):
2082 * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
2083 (cal-tex-cursor-month, cal-tex-LaTeXify-string):
2084 * calendar/lunar.el (lunar-phase-list, lunar-new-moon-on-or-after):
2085 * calendar/solar.el (solar-equinoxes-solstices):
2086 Reduce nesting of some lets.
2088 * calendar/cal-mayan.el (calendar-string-to-mayan-long-count):
2089 (calendar-goto-mayan-long-count-date): Simplify.
2091 * calendar/holidays.el (calendar-holiday-list, holiday-easter-etc):
2092 Simplify by using mapcar.
2093 (calendar-list-holidays): Return holiday-list.
2094 (list-holidays): Use let rather than let*. Remove un-needed locals
2096 (calendar-check-holidays): Return result from dolist.
2097 (holiday-float): Use a single let*. Simplify if-and to and.
2098 (holiday-sexp, holiday-advent, holiday-greek-orthodox-easter): Use a
2101 2008-04-01 Jay Belanger <jay.p.belanger@gmail.com>
2103 * calc/calc.el: Autoload `calc-yank'.
2104 (calc-mode-map): Add keybindings for `calc-yank'.
2105 * calc/calc-ext.el (calc-init-extensions): Remove keybinding
2106 assignments for `calc-yank'.
2108 2008-03-31 Dan Nicolaescu <dann@ics.uci.edu>
2110 * vc.el (vc-status-add-entry): Assume ENTRY is a list, not a cons.
2111 (vc-status-mark-buffer-changed): Handle the extra field.
2113 * vc-bzr.el (vc-bzr-after-dir-status):
2114 * vc-cvs.el (vc-cvs-after-dir-status):
2115 * vc-hg.el (vc-hg-after-dir-status):
2116 * vc-svn.el (vc-svn-after-dir-status): Return a list, not a cons.
2118 2008-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
2120 * doc-view.el: Compute displayed pages first (in PDF).
2121 (doc-view-current-converter-processes): Rename from
2122 doc-view-current-converter-process. Update users.
2123 (doc-view-sentinel): Test buffer's liveness.
2124 (doc-view-pdf/ps->png-sentinel): Remove.
2125 (doc-view-start-process): New function.
2126 (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
2127 (doc-view-ps->pdf): Use it.
2128 (doc-view-pdf->png-1, doc-view-pdf->png, doc-view-active-pages):
2130 (doc-view-convert-current-doc, doc-view-goto-page): Use them.
2131 (doc-view-mode): Kill the processes when leaving the mode.
2133 2008-03-31 Juanma Barranquero <lekktu@gmail.com>
2135 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p):
2136 Use `byte-compile-warning-types'. Add docstring.
2138 2008-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
2140 * smerge-mode.el (smerge-apply-resolution-patch): New fun.
2141 (smerge-resolve): Add various resolution heuristics.
2143 * smerge-mode.el (smerge-refine): Allow highlighting other subparts
2146 2008-03-31 Glenn Morris <rgm@gnu.org>
2148 * calendar/cal-bahai.el (diary-bahai-mark-entries):
2149 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
2150 * calendar/cal-islam.el (mark-islamic-diary-entries):
2151 Fix argument order in call to diary-mark-entries-1.
2153 * calendar/cal-bahai.el (calendar-bahai-date-string): Avoid an error for
2155 (holiday-bahai): Use an algorithm actually relevant to this calendar
2158 * calendar/cal-china.el (holiday-chinese-new-year): Doc fix.
2160 * calendar/cal-islam.el (holiday-islamic): Remove un-needed let.
2163 * calendar/cal-julian.el (holiday-julian): Fix a problem with holidays
2164 in the last fortnight in Julian October.
2166 * calendar/calendar.el (increment-calendar-month): Optionally handle
2167 systems without 12 months per year.
2169 (calendar-date-is-visible-p): Doc fix. Simplify.
2171 * calendar/holidays.el (holiday-filter-visible-calendar): Return result
2174 2008-03-30 Juanma Barranquero <lekktu@gmail.com>
2176 * hi-lock.el (hi-lock-mode): Fix typos in docstring.
2177 (hi-lock-unload-function): New function.
2179 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
2181 * net/tramp.el (tramp-do-copy-or-rename-file): Fix check for
2182 overwriting when NEWNAME is a local file.
2184 * net/trampver.el: Update release number.
2186 2008-03-30 Alexandre Julliard <julliard@winehq.org>
2188 * vc-git.el: Make vc-status display information about copies,
2189 renames and permission changes.
2190 (vc-git-extra-fileinfo): New defstruct.
2191 (vc-git-escape-file-name, vc-git-file-type-as-string)
2192 (vc-git-rename-as-string, vc-git-permissions-as-string)
2193 (vc-git-status-printer): New functions.
2194 (vc-git-after-dir-status-stage2): Also return vc-git-extra-fileinfo.
2195 (vc-git-after-dir-status-stage1): Look for copies, renames and
2197 (vc-git-after-dir-status-stage1-empty-db): Set permissions.
2198 (vc-git-dir-status): Ask for staged files and renames.
2200 2008-03-30 Dan Nicolaescu <dann@ics.uci.edu>
2202 * vc.el: Allow backends to display backend specific information in
2203 the vc-status listing.
2204 (vc-status-fileinfo): Add a field for backend specific information.
2205 (vc-status-printer): Rename to ...
2206 (vc-default-status-printer): ... this.
2207 (vc-status-printer): New function.
2208 (vc-update-vc-status-buffer): Set the backend specific file info
2211 2008-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
2213 * textmodes/remember.el (remember-diary-convert-entry): Revert last
2214 change (ill-conceived).
2216 2008-03-29 Glenn Morris <rgm@gnu.org>
2218 * calendar/cal-hebrew.el (holiday-hebrew): Simplify.
2219 * calendar/cal-julian.el (holiday-julian): Simplify.
2221 * calendar/holidays.el (list-holidays): Use or.
2223 2008-03-29 Juri Linkov <juri@jurta.org>
2225 * window.el (split-window-preferred-horizontally): New function.
2227 * cus-start.el (split-window-preferred-function):
2228 Set choice for "vertically" to nil instead of split-window.
2229 Set choice for "horizontally" to split-window-preferred-horizontally
2232 2008-03-29 Juri Linkov <juri@jurta.org>
2234 * simple.el (minibuffer-default-add-function): New variable with
2235 the default to minibuffer-default-add-completions.
2236 (minibuffer-default-add-done): New variable. Make it buffer-local.
2237 (minibuffer-default-add-completions): New function.
2238 (goto-history-element): Set minibuffer-default-add-done to t and
2239 call a function in minibuffer-default-add-function when the
2240 specified absolute history position is greater than the length of
2241 the minibuffer-default list and minibuffer-default-add-done is nil.
2242 Change "^End of history; no next item$" to "^End of defaults;
2245 * bindings.el (debug-ignored-errors): Change "^End of history;
2246 no next item$" to "^End of defaults; no next item$".
2248 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
2250 * subr.el (with-temp-buffer): Assume kill-buffer can change cur-buf.
2252 * textmodes/remember.el (remember-diary-convert-entry): Prefer boundp
2253 to with-no-warnings.
2255 2008-03-29 Michael Albinus <michael.albinus@gmx.de>
2257 Sync with Tramp 2.1.13.
2259 * net/tramp-ftp.el: Require 'cl when byte-compiling.
2261 * net/trampver.el: Update release number.
2263 2008-03-29 Dan Nicolaescu <dann@ics.uci.edu>
2265 * vc-hooks.el (vc-menu-map-filter): Be more careful when finding
2266 the current backend.
2268 * vc.el (vc-status-menu-map, vc-status-mode-map): Bind vc-revert.
2269 (vc-status-refresh): Create a temporary buffer and call the
2270 `dir-status' backend function from that buffer.
2272 * vc-bzr.el (vc-bzr-dir-status): Don't create a buffer.
2273 (vc-bzr-after-dir-status): Don't kill the buffer.
2275 * vc-cvs.el (vc-cvs-dir-status): Don't create a buffer.
2276 (vc-cvs-after-dir-status): Don't kill the buffer.
2278 * vc-git.el (vc-git-dir-status): Don't create a buffer.
2279 (vc-git-after-dir-status-stage2): Don't kill the buffer.
2281 * vc-hg.el (vc-hg-dir-status): Don't create a buffer.
2282 (vc-hg-after-dir-status): Don't kill the buffer.
2284 * vc-svn.el (vc-svn-dir-status): Don't create a buffer.
2285 (vc-svn-after-dir-status): Don't kill the buffer.
2287 2008-03-29 Glenn Morris <rgm@gnu.org>
2289 * calendar/calendar.el (diary-file, american-date-diary-pattern)
2290 (european-date-diary-pattern, european-calendar-display-form)
2291 (american-calendar-display-form, diary-display-hook): Doc fixes.
2292 (european-calendar-style): Doc fix. Use calendar-set-date-style for
2293 custom :set. Mark as obsolete.
2294 (calendar-date-style, iso-date-diary-pattern)
2295 (iso-calendar-display-form): New user variables.
2296 (diary-date-forms, calendar-date-display-form): Set using
2297 calendar-date-style. Doc fix.
2298 (calendar-set-date-style): New command.
2299 (european-calendar, american-calendar): Use calendar-set-date-style.
2302 * calendar/diary-lib.el (number): Move declaration where needed.
2303 (diary-mail-entries, list-sexp-diary-entries): Doc fixes.
2304 (diary-make-date): New function.
2305 (diary-date, diary-block, diary-anniversary, diary-cyclic): Doc fix.
2306 Use diary-make-date.
2307 (diary-date-display-form, diary-insert-entry-1): New functions.
2308 (insert-monthly-diary-entry, insert-yearly-diary-entry):
2309 Use diary-insert-entry-1.
2310 (insert-anniversary-diary-entry, insert-block-diary-entry)
2311 (insert-cyclic-diary-entry): Use diary-date-display-form.
2313 * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
2314 Autoload diary-insert-entry-1.
2315 * calendar/cal-bahai.el (diary-bahai-insert-entry)
2316 (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
2317 * calendar/cal-hebrew.el (insert-hebrew-diary-entry)
2318 (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry)
2319 * calendar/cal-islam.el (insert-islamic-diary-entry)
2320 (insert-monthly-islamic-diary-entry, insert-yearly-islamic-diary-entry):
2321 Use diary-insert-entry-1.
2323 * calendar/cal-hebrew.el (diary-make-date): Autoload it.
2324 (diary-yahrzeit): Doc fix. Use diary-make-date.
2326 * calendar/icalendar.el (icalendar--datetime-to-american-date):
2327 New name for icalendar--datetime-to-noneuropean-date. Make old name
2329 (icalendar--datetime-to-iso-date): New function.
2330 (icalendar--datetime-to-diary-date): Doc fix. Respect
2331 calendar-date-style if bound.
2333 * textmodes/remember.el (remember-diary-convert-entry):
2334 Respect calendar-date-style if bound.
2336 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
2338 * xt-mouse.el (xterm-mouse-mode): Use delete-terminal-functions.
2339 (xterm-mouse-handle-delete-frame): Delete.
2341 * term/xterm.el (terminal-init-xterm): Use delete-terminal-functions.
2342 (xterm-turn-on-modify-other-keys, xterm-turn-off-modify-other-keys)
2343 (xterm-remove-modify-other-keys): Lookup terminal rather than frame
2344 in xterm-modify-other-keys-terminal-list.
2346 * vc-bzr.el (vc-bzr-state-heuristic): Fix last change for when there
2349 2008-03-29 Dan Nicolaescu <dann@ics.uci.edu>
2351 * vc.el (vc-update): Check if the buffer is unsaved only if it
2353 (vc-status-mode-map, vc-status-menu-map): Bind vc-update and
2356 2008-03-28 Magnus Henoch <mange@freemail.hu>
2358 * net/dns.el (dns-write): Use set-buffer-multibyte.
2360 2008-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
2362 * vc-bzr.el (vc-bzr-sha1): New fun.
2363 (vc-bzr-state-heuristic): New fun, extracted from vc-bzr-registered.
2364 (vc-bzr-registered): Use it.
2366 2008-03-28 Dan Nicolaescu <dann@ics.uci.edu>
2368 * vc.el (vc-status-kill-dir-status-process): Simplify.
2369 (vc-status-refresh): Make sure the buffer is live.
2370 (ring): Don't require it, not used.
2372 2008-03-28 Wilson Snyder <wsnyder@wsnyder.org>
2374 * progmodes/verilog-mode.el (verilog-auto-inout-module):
2375 Add optional regular expression to AUTOINOUTMODULE.
2376 (verilog-inject-auto, verilog-auto-arg, verilog-auto-inst)
2377 (verilog-auto-inst-param, verilog-auto-reg)
2378 (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
2379 (verilog-auto-output-every, verilog-auto-input)
2380 (verilog-auto-inout, verilog-auto-sense, verilog-auto-tieoff)
2381 (verilog-auto-unused, verilog-auto): Update documentation to use
2382 more obvious instance module names versus cell names.
2384 2008-03-28 Jan Djärv <jan.h.d@swipnet.se>
2386 * progmodes/compile.el (compilation-mode-tool-bar-map): Only enable
2387 kill if a process is running.
2389 * progmodes/grep.el (grep-mode-tool-bar-map): The same.
2391 2008-03-28 Dan Nicolaescu <dann@ics.uci.edu>
2393 * vc.el: Add new backend function 'status-extra-headers.
2394 (vc-default-status-extra-headers): New function.
2395 (vc-status-headers): Call 'status-extra-headers. Add colors.
2397 * vc-git.el (vc-git-status-extra-headers): New function.
2399 2008-03-28 Glenn Morris <rgm@gnu.org>
2401 * calendar/cal-menu.el (cal-menu-holidays-menu)
2402 (cal-menu-list-holidays-year, cal-menu-list-holidays-following-year)
2403 (cal-menu-list-holidays-previous-year): Simplify now that 2nd arg of
2404 holiday-list is optional.
2405 (calendar-mouse-holidays): Remove un-needed local `l'.
2407 * calendar/cal-move.el (calendar-cursor-to-nearest-date):
2408 Remove un-needed local `date'.
2409 (calendar-cursor-to-visible-date): Use let rather than let*.
2410 Remove un-needed local `first-of-month-weekday'.
2412 * calendar/calendar.el (abbreviated-calendar-year): Move to diary-lib.
2414 * calendar/diary-lib.el (print-diary-entries-hook, diary-list-entries):
2416 (abbreviated-calendar-year): Move here from calendar.el. Doc fix.
2417 (diary-header-line-flag, diary-header-line-format): Declare.
2418 (diary-pull-attrs): Check for multiple matches.
2419 (diary-list-entries-2): Simplify finding start of date.
2420 (diary-show-all-entries, make-diary-entry): Respect non-nil values of
2422 (diary-mark-entries-1): Re-use offset in abbreviated-year case.
2423 (mark-sexp-diary-entries): Remove superfluous call to diary-pull-attrs.
2425 2008-03-27 Dan Nicolaescu <dann@ics.uci.edu>
2427 * vc-hg.el (vc-hg-state, vc-hg-dir-state): Deal with 'missing files.
2429 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Fix predicate.
2431 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
2433 * vc-hooks.el (vc-before-save): Don't prevent saving the file.
2435 * image-mode.el (image-mode-reapply-winprops): Fix last change.
2437 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
2439 * international/mule-conf.el (define-iso-single-byte-charset):
2440 Don't make latin-iso8859-* supplementary.
2441 (#'set-charset-priority): Don't change the priority of charsets
2442 `unicode' and `emacs'.
2444 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
2446 * vc.el (vc-do-command): Don't pop to the buffer if it's an internal
2449 2008-03-27 Glenn Morris <rgm@gnu.org>
2451 * calendar/cal-bahai.el (diary-bahai-list-entries):
2452 * calendar/cal-hebrew.el (list-hebrew-diary-entries):
2453 * calendar/cal-islam.el (list-islamic-diary-entries): Doc fix.
2455 * calendar/calendar.el (diary-file): Doc fix.
2457 * calendar/diary-lib.el (diary-face-attrs): Fix `height' regexp.
2458 (list-diary-entries-hook, mark-diary-entries-hook)
2459 (include-other-diary-files, diary-mail-entries)
2460 (mark-included-diary-files, list-sexp-diary-entries): Doc fixes.
2461 (diary-set-header): New function.
2462 (diary-header-line-flag, diary-header-line-format):
2463 Use diary-set-header for custom :set function.
2464 (diary-set-maybe-redraw): Use symbol-value rather than eval.
2465 (diary-attrtype-convert): Use intern-soft rather than read.
2466 (diary-display-no-entries): New function.
2467 (simple-diary-display, fancy-diary-display): Use it.
2468 (fancy-diary-display): Doc fix. Remove unneeded local entry-list.
2469 (diary-mark-entries-1): Fix position offsets in non-gregorian case.
2471 * calendar/holidays.el (list-holidays): Doc fix.
2473 2008-03-26 Jay Belanger <jay.p.belanger@gmail.com>
2475 * calc/calc-store.el (calc-read-var-name-history): New variable.
2476 (calc-read-var-name): Use `calc-read-var-name-history'.
2478 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
2480 * image-mode.el (image-mode-reapply-winprops): Simplify now that
2481 window-configuration-change-hook works buffer-locally.
2483 2008-03-26 Johan Bockgård <bojohan@gnu.org>
2485 * emacs-lisp/lisp-mnt.el (lm-with-file): Use mode and syntax table
2486 for Emacs Lisp, not Lisp.
2488 2008-03-26 Juanma Barranquero <lekktu@gmail.com>
2490 * help-fns.el (describe-function-1, describe-variable):
2491 If CURRENT-NAME is nil, don't end obsolescence info with semicolon.
2493 * emacs-lisp/bytecomp.el (byte-compile-obsolete): If no
2494 replacement is provided, don't print "use nil instead".
2496 2008-03-26 Johan Bockgård <bojohan@gnu.org>
2498 * complete.el (PC-do-completion): Use regexp-quote.
2500 2008-03-26 Dan Nicolaescu <dann@ics.uci.edu>
2502 * vc-cvs.el (vc-cvs-parse-status, vc-cvs-after-dir-status):
2503 Detect missing files.
2505 * vc-git.el (vc-git-extra-menu-map): New key map.
2506 (vc-git-extra-menu, vc-git-extra-status-menu, vc-git-grep):
2509 * vc-hooks.el (vc-default-mode-line-string): Deal with 'removed
2512 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
2514 * calendar/holidays.el (list-holidays): Make Y2 optional.
2516 * calendar/appt.el (appt-buffer-name): Don't use a leading space for
2517 buffers shown to the user.
2518 (appt-disp-window): Disable undo explicitly now that the leading space
2521 * simple.el (activate-mark): New function.
2522 (set-mark-command): Use it with region-active-p to clean up the code.
2523 (exchange-point-and-mark): Invert the meaning of C-u when
2524 transient-mark-mode is active.
2526 * dired-aux.el (dired-create-files): Use dolist.
2528 * bindings.el (mode-line-change-eol): Use with-selected-window.
2530 * apropos.el (apropos-command): Include macros.
2532 2008-03-26 Glenn Morris <rgm@gnu.org>
2534 * calendar/cal-bahai.el: Require calendar, not cal-julian.
2535 (calendar-bahai-epoch): Doc fix.
2537 * calendar/cal-china.el: Explicitly require calendar.
2539 * calendar/cal-coptic.el, calendar/cal-islam.el, calendar/cal-persia.el:
2540 Require calendar rather than cal-julian.
2541 Autoload calendar-absolute-from-julian.
2542 * calendar/cal-coptic.el (coptic-calendar-epoch):
2543 * calendar/cal-islam.el (calendar-islamic-epoch):
2544 * calendar/cal-persia.el (persian-calendar-epoch): Set when compiling.
2546 * calendar/cal-islam.el (calendar-islamic-epoch): Doc fix.
2548 * calendar/cal-dst.el: Don't require cal-persia.
2549 (calendar-absolute-from-persian): Autoload it.
2550 (dst-adjust-time): Doc fix.
2552 * calendar/cal-menu.el (cal-menu-diary-menu): Remove menu headings that
2553 cause cal-bahai, cal-islam, cal-hebrew to be loaded on starting the
2556 * calendar/cal-menu.el: Require calendar rather than declaring
2558 * calendar/calendar.el: Provide calendar before requiring cal-menu.
2560 * calendar/cal-x.el (calendar-after-frame-setup-hook): New name for
2561 calendar-after-frame-setup-hooks. Update callers, make old name an
2562 obsolete alias. Doc fix.
2563 (calendar-frame-1): Doc fix.
2565 * calendar/calendar.el (solar-holidays): Simplify holiday-sexp calls.
2567 * calendar/calendar.el (oriental-holidays, solar-holidays):
2568 * calendar/holidays.el (list-holidays): Assume atan always bound.
2570 * calendar/lunar.el, calendar/solar.el: Remove floating-point check.
2571 Explicitly require calendar, not cal-julian.
2572 * calendar/lunar.el: Explicitly require cal-dst.
2574 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
2576 * autorevert.el (auto-revert-buffers): Use buffer-live-p.
2578 * help-fns.el (describe-function-1, describe-variable): If no
2579 replacement is provided, don't print "use nil instead".
2581 2008-03-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2583 * proced.el: New file.
2585 2008-03-25 Tetsurou Okazaki <okazaki@be.to> (tiny change)
2587 * emacs-lisp/byte-opt.el (side-effect-free-fns): Fix typo.
2589 2008-03-25 Juri Linkov <juri@jurta.org>
2591 * battery.el: Add file cookie coding:iso-8859-1 for the degree sign
2592 in battery-mode-line-format.
2594 * bindings.el (minibuffer-local-map): For the command
2595 file-cache-minibuffer-complete replace keymap minibuffer-local-map
2596 with map which is already locally bound to minibuffer-local-map.
2598 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
2600 * subr.el (map-keymap-sorted): Rename from map-keymap-internal.
2601 Remove `sort-first' argument.
2603 * subr.el (redisplay-end-trigger-functions)
2604 (window-redisplay-end-trigger, set-window-redisplay-end-trigger)
2605 (process-filter-multibyte-p, set-process-filter-multibyte):
2608 2008-03-25 Juanma Barranquero <lekktu@gmail.com>
2610 * emacs-lisp/re-builder.el (reb-mode-common): Remove reference to
2611 bogus variable `reb-kill-buffer'; don't make hooks buffer-local,
2612 use the LOCAL arg of `add-hook'.
2613 (reb-blink-delay, reb-mode-hook, reb-re-syntax, reb-auto-match-limit):
2614 Remove spurious * from defcustom docstrings.
2615 (reb-next-match, reb-prev-match, reb-enter-subexp-mode):
2616 Fix typos in messages.
2617 (reb-mode-buffer-p): New function.
2618 (re-builder, reb-kill-buffer): Use `reb-mode-buffer-p'. Use `when'.
2619 (top, reb-show-subexp, reb-auto-update, reb-auto-update)
2620 (reb-delete-overlays, reb-cook-regexp, reb-update-regexp)
2621 (reb-update-overlays): Use `unless', `when'.
2622 (re-builder-unload-function): New function.
2624 2008-03-25 Dan Nicolaescu <dann@ics.uci.edu>
2626 * vc-hooks.el (vc-state): Add documentation for 'missing.
2628 2008-03-25 Wilson Snyder <wsnyder@wsnyder.org>
2630 * progmodes/verilog-mode.el (verilog-auto-output)
2631 (verilog-auto-input, verilog-auto-inout, verilog-auto)
2632 (verilog-delete-auto): Add optional regular expression to
2633 AUTOINPUT/AUTOOUTPUT/AUTOINOUT.
2634 (verilog-signals-matching-regexp): New internal function for
2637 2008-03-25 Johan Bockgård <bojohan@gnu.org>
2639 * info.el (Info-isearch-search): Always return point.
2641 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
2643 * diff-mode.el (diff-remembered-defdir): New var.
2644 (diff-find-file-name): Use it to flush diff-remembered-files-alist.
2646 2008-03-25 Glenn Morris <rgm@gnu.org>
2648 * calendar/cal-bahai.el (calendar-bahai-read-date): New name for
2649 calendar-bahai-prompt-for-date. Update callers, make old name an
2650 obsolete alias. Doc fix.
2651 * calendar/cal-coptic.el (calendar-coptic-read-date): New name for
2652 coptic-prompt-for-date. Update callers, make old name an
2653 obsolete alias. Doc fix.
2654 * calendar/cal-hebrew.el (calendar-hebrew-read-date): New name for
2655 calendar-hebrew-prompt-for-date. Update callers. Doc fix.
2656 * calendar/cal-islam.el (calendar-islamic-read-date): New name for
2657 calendar-islamic-prompt-for-date. Update callers. Doc fix.
2658 * calendar/cal-iso.el (calendar-iso-read-date): New name for
2659 calendar-iso-read-args. Update callers, make old name an obsolete
2661 * calendar/cal-persia.el (calendar-persian-read-date): New name for
2662 persian-prompt-for-date. Update callers, make old name an
2663 obsolete alias. Doc fix. Move definition before use.
2665 * calendar/cal-x.el (diary-frame-parameters)
2666 (calendar-frame-parameters, calendar-and-diary-frame-parameters):
2667 (calendar-frame-1): Doc fixes.
2668 (make-fancy-diary-buffer): Remove declaration.
2669 (calendar-dedicate-diary): Replace call to deleted function
2670 make-fancy-diary-buffer.
2671 (calendar-frame-setup): New function.
2672 (calendar-one-frame-setup, calendar-only-one-frame-setup)
2673 (calendar-two-frame-setup): Call calendar-frame-setup to do the actual
2674 work, and mark as obsolete.
2675 (special-display-buffer-names): Don't mess with this; it's not our
2677 (cal-x-load-hook): Defvar it, and mark as obsolete.
2679 * calendar/calendar.el (calendar-remove-frame-by-deleting):
2680 Default to t. Add to 'calendar group.
2681 (calendar): Doc fix. Use calendar-frame-setup.
2682 (calendar-basic-setup): Doc fix. Add optional NODISPLAY argument.
2683 (generate-calendar-window): Doc fix.
2685 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
2687 * vc-bzr.el (vc-bzr-print-log, vc-bzr-diff): Do it asynchronously.
2689 2008-03-24 Drew Adams <drew.adams@oracle.com>
2691 * finder.el (finder-mode-syntax-table, finder-font-lock-keywords):
2693 (finder-mode): Use finder-mode-syntax-table. Set font-lock-defaults.
2694 (finder-exit): Ignore errors rather than avoiding them.
2695 Kill *Finder-package* buffer also.
2697 2008-03-24 Andreas Schwab <schwab@suse.de>
2699 * xt-mouse.el (xterm-mouse-event): Avoid error with buttons > 5.
2701 2008-03-24 Dan Nicolaescu <dann@ics.uci.edu>
2703 * vc-hg.el (vc-hg-after-dir-status):
2704 * vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
2706 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-parse-status):
2707 Detect removed files.
2709 * vc.el (vc-status-printer): Use a different face for missing files.
2710 (vc-status-hide-up-to-date): Rename from
2711 vc-status-remove-up-to-date. Update all callers.
2712 (vc-status-mode-map): Bind C-m.
2714 2008-03-24 Alexandre Julliard <julliard@winehq.org>
2716 * vc-git.el (vc-git-after-dir-status-stage1): Move state matching
2718 (vc-git--state-code): ... to this new function.
2719 (vc-git-state): Use it.
2721 2008-03-24 Trent Buck <trentbuck@gmail.com> (tiny change)
2723 * textmodes/remember.el (remember-mail-date)
2724 (remember-store-in-mailbox): Write date and From line in such a
2725 way that Mutt can read it.
2727 2008-03-23 Chong Yidong <cyd@stupidchicken.com>
2729 * simple.el (transient-mark-mode): Turn on by default.
2731 2008-03-23 Dan Nicolaescu <dann@ics.uci.edu>
2733 * vc-bzr.el (vc-bzr-state): Return 'removed for removed files and
2734 'unregistered for unregistered files.
2736 * vc-hg.el (vc-hg-state): Return 'removed for removed files.
2738 * bindings.el (standard-mode-line-modes): Avoid duplicating a string.
2740 * vc-cvs.el (vc-cvs-parse-status): Note there are problems with
2743 * vc.el (vc-status-prepare-status-buffer): Fix thinko.
2744 (vc-status-menu-map): Add binding for vc-status-kill-dir-status-process.
2745 Add :enable for vc-status-refresh.
2746 (vc-status-menu-map-filter): Remove vc-ignore-menu-filter test.
2747 (vc-status-tool-bar-map): Add binding for
2748 vc-status-kill-dir-status-process.
2749 Don't test display-graphic-p and don't bind vc-ignore-menu-filter.
2750 (vc-update-vc-status-buffer, vc-status-kill-dir-status-process):
2751 Reset vc-status-process-buffer.
2752 (vc-status-refresh): Don't run two refreshes at a time.
2753 (vc-status): If the buffer is already in vc-status-mode only refresh.
2754 (vc-status-mark-buffer-changed): Add an optional file parameter.
2755 (vc-resynch-buffer): Use it.
2756 (vc-delete-file): Expand the file name before using it.
2757 Be careful to not create a new buffer with the old file contents.
2758 Update the VC state after performing the operation.
2760 2008-03-23 Andreas Schwab <schwab@suse.de>
2762 * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]:
2763 Fix radio button condition.
2765 [customize]: Add radio button.
2767 2008-03-23 Jay Belanger <jay.p.belanger@gmail.com>
2769 * calc/calc.el (calc-was-keypad-mode, calc-full-mode)
2770 (calc-user-parse-tables, calc-gnuplot-default-device)
2771 (calc-gnuplot-default-output, calc-gnuplot-print-device)
2772 (calc-gnuplot-print-output, calc-gnuplot-geometry)
2773 (calc-graph-default-resolution, calc-graph-default-resolution-3d)
2774 (calc-invocation-macro, calc-trail-pointer, calc-trail-overlay)
2775 (calc-undo-list, calc-redo-list, calc-main-buffer)
2776 (calc-trail-buffer, calc-why, calc-last-kill, calc-dollar-values)
2777 (calc-dollar-used, calc-hashes-used, calc-quick-prev-results)
2778 (calc-said-hello, calc-executing-macro, calc-any-selections)
2779 (calc-help-phase, calc-full-help-flag, calc-refresh-count)
2780 (calc-display-dirty, calc-embedded-info, calc-embedded-active)
2781 (calc-standalone-flag, var-EvalRules, math-expr-function-mapping)
2782 (math-expr-variable-mapping, calc-mode-map, calc-digit-map)
2783 (calc-dispatch-map, calc-do-dispatch, calc-read-key-sequence)
2784 (calc-create-buffer, calc-quit): Add docstrings.
2786 2008-03-23 Juanma Barranquero <lekktu@gmail.com>
2788 * makefile.w32-in (WINS_ALMOST): Add org.
2790 2008-03-23 Dan Nicolaescu <dann@ics.uci.edu>
2792 * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
2793 New functions to implement vc-status support.
2795 2008-03-22 Dan Nicolaescu <dann@ics.uci.edu>
2797 * vc.el (vc-status-prepare-status-buffer): New function.
2798 (vc-status): Use it.
2800 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add ... where
2803 2008-03-22 Alexandre Julliard <julliard@winehq.org>
2805 * vc-git.el (vc-git--empty-db-p)
2806 (vc-git-after-dir-status-stage1-empty-db): New functions.
2807 (vc-git-dir-status, vc-git-after-dir-status-stage1, vc-git-state):
2808 Add support for empty repositories.
2810 2008-03-22 Dan Nicolaescu <dann@ics.uci.edu>
2812 * vc-git.el (vc-git-annotate-extract-revision-at-line):
2813 Allow "^" in a version name.
2815 * vc-mtn.el (vc-mtn-state): Support the added state.
2817 2008-03-22 Carsten Dominik <dominik@science.uva.nl>
2819 * org: New directory for Org-mode.
2821 * org/org-export-latex.el: Moved from lisp/texmodes.
2823 * org/org-irc.el: Moved from lisp/texmodes.
2825 * org/org-mac-message.el: Moved from lisp/texmodes.
2827 * org/org-mouse.el: Moved from lisp/texmodes.
2829 * org/org-publish.el: Moved from lisp/texmodes.
2831 2008-03-21 Juri Linkov <juri@jurta.org>
2833 * comint.el (comint-dynamic-simple-complete):
2834 Use variable `stub' for the second arg `common-substring'
2835 of `comint-dynamic-list-completions'.
2836 (comint-dynamic-list-filename-completions):
2837 Use variable `filenondir' for the second arg `common-substring'
2838 of `comint-dynamic-list-completions'.
2839 (comint-dynamic-list-completions): Add new optional arg
2840 `common-substring'. Add `common-substring' as the second arg of
2841 the call to `display-completion-list'. Doc fix.
2843 * comint.el (comint-dynamic-complete-as-filename)
2844 (comint-dynamic-list-filename-completions)
2845 (comint-dynamic-simple-complete): Use `minibuffer-message'
2846 to display message "No completions of %s" when a command
2847 is called in the minibuffer.
2848 (comint-dynamic-simple-complete): Don't display other
2849 completion messages when a command is called in the minibuffer.
2850 (comint-dynamic-list-completions): Use `minibuffer-message'
2851 to display message " [Type space to flush ...]" when a command
2852 is called in the minibuffer.
2854 * shell.el (shell-dynamic-complete-command)
2855 (shell-dynamic-complete-environment-variable): Don't display
2856 completion messages when command is called in the minibuffer.
2858 * emacs-lisp/lisp.el (lisp-complete-symbol):
2859 Use `minibuffer-message' to display message "No completions of %s"
2860 when this command is called in the minibuffer.
2862 * bindings.el (standard-mode-line-modes): Put special help-echo
2863 tooltip on recursive edit %[ %] mode-line constructs.
2865 * dabbrev.el (debug-ignored-errors): Remove $ from the end of
2866 "^No dynamic expansion for .* found$" to allow error messages like
2867 "No dynamic expansion for \"%s\" found in this-buffer".
2869 2008-03-21 Michael Albinus <michael.albinus@gmx.de>
2871 * net/tramp.el (tramp-methods): Fix tramp-copy-args of "pscp" and
2874 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
2876 * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
2877 * vc.el (vc-default-dired-state-info): Use just "modified".
2878 * vc-cvs.el (vc-cvs-state-heuristic): Turn rev 0 into `added'.
2879 (vc-cvs-mode-line-string): Make use of the better default.
2880 (vc-cvs-parse-entry): Use the new `added'.
2881 (vc-cvs-dired-state-info): Remove.
2882 * vc-svn.el (vc-svn-dired-state-info): Remove.
2883 * vc-hg.el (vc-hg-dired-state-info): Remove.
2884 * vc-git.el (vc-git-dired-state-info): Remove.
2886 2008-03-21 Dan Nicolaescu <dann@ics.uci.edu>
2888 * vc-git.el (vc-git-status-result): New variable.
2889 (vc-git-dir-status): Split out ...
2890 (vc-git-after-dir-status-stage1, vc-git-after-dir-status-stage2):
2891 ... these new functions and work asynchronously.
2893 2008-03-21 Alexandre Julliard <julliard@winehq.org>
2895 * vc-git.el (vc-git-after-dir-status): Remove.
2896 (vc-git-dired-state-info): Reimplement.
2898 2008-03-21 Dan Nicolaescu <dann@ics.uci.edu>
2900 * replace.el (occur-mode-map): Add :help.
2902 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entry
2905 * vc.el (vc-status-mark-buffer-changed): Better deal with files in
2907 (vc-status-remove-up-to-date): New function.
2908 (vc-status-mode-map, vc-status-menu-map): Bind it.
2909 (vc-status-printer): Use a different face up-to-date files.
2910 (vc-resynch-buffer): Update the vc-status buffer if it exists.
2911 (Todo): Remove solved entries.
2913 * vc-hg.el (vc-hg-state):
2914 * vc-git.el (vc-git-state):
2915 * vc-cvs.el (vc-cvs-parse-status):
2916 * vc-bzr.el (vc-bzr-state): Return 'added when the file is in that
2919 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2921 * progmodes/compile.el (compile):
2922 * progmodes/grep.el (grep, grep-find): Use read-shell-command.
2924 * simple.el (minibuffer-local-shell-command-map): New var.
2925 (minibuffer-complete-shell-command, read-shell-command): New funs.
2926 (shell-command, shell-command-on-region): Use them.
2928 2008-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2930 * vc.el (vc-status-mark-buffer-changed): New function to implement
2931 updating of the *vc-status* buffer when a buffer is saved.
2932 (vc-status-mode): Use it for after-change-hook.
2933 (vc-add-to-vc-status-buffer): Rename to ...
2934 (vc-status-add-entry): ... this.
2935 (Todo): Add new entry.
2937 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2939 * sort.el (sort-reorder-buffer): Preserve the buffer's multibyteness.
2941 2008-03-20 Juanma Barranquero <lekktu@gmail.com>
2943 * icomplete.el (icomplete-prospects-length, icomplete-max-delay-chars)
2944 (icomplete-show-key-bindings, icomplete-minibuffer-setup-hook):
2945 Remove spurious * from defcustom docstrings.
2946 (icomplete-compute-delay): Fix docstring and remove spurious *.
2947 (icomplete-delay-completions-threshold): Fix typo in docstring and
2949 (icomplete-completions): While collecting the list of prospective
2950 candidates, don't overshoot `icomplete-prospects-length'.
2952 2008-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2954 * textmodes/refbib.el:
2955 * textmodes/reftex.el:
2956 * textmodes/reftex-global.el:
2957 * textmodes/reftex-vars.el:
2958 * textmodes/reftex-toc.el: Don't use eval-and-compile for byte
2959 compiler pacifying defvars.
2960 (reftex-toc-mode): Only make zmacs-regions local on XEmacs.
2961 * textmodes/reftex-index.el (zmacs-regions): Remove pacifier,
2964 2008-03-20 Wilson Snyder <wsnyder@wsnyder.org>
2966 * progmodes/verilog-mode.el (verilog-easy-menu-filter): New function.
2967 (verilog-stmt-menu, verilog-menu): Add :help and filter it.
2968 (verilog-customize, verilog-font-customize)
2969 (electric-verilog-backward-sexp, electric-verilog-forward-sexp)
2970 (verilog-mode): Update documentation strings to match tool tips.
2971 (verilog-auto-search-do, verilog-auto-re-search-do)
2972 (verilog-skip-forward-comment-or-string): Fix verilog-auto
2973 expansion when a .* appears inside a string.
2974 (verilog-re-search-forward, verilog-re-search-backward):
2975 Add comment to recall how this works.
2976 (verilog-read-decls): Fix AUTOINPUT/AUTOOUTPUT mis-including genvars.
2978 2008-03-20 Glenn Morris <rgm@gnu.org>
2980 * calendar/calendar.el (calendar-other-dates): New function.
2981 (calendar-print-other-dates): Use calendar-other-dates.
2982 * calendar/cal-menu.el (calendar-other-dates): Declare it, and removes
2983 the declarations it replaces.
2984 (calendar-mouse-print-dates): Use calendar-other-dates.
2986 * calendar/cal-bahai.el (calendar-bahai-leap-year-p)
2987 (calendar-bahai-leap-base, calendar-bahai-from-absolute): Doc fixes.
2988 (calendar-absolute-from-bahai): Fix the leap-year case.
2989 (calendar-bahai-from-absolute): Re-use the Gregorian month.
2990 (calendar-bahai-date-string, calendar-bahai-print-date):
2991 Handle pre-Bahai dates.
2993 * calendar/cal-china.el (chinese-calendar-celestial-stem)
2994 (chinese-calendar-terrestrial-branch): Make defcustoms.
2996 * calendar/cal-menu.el (calendar-mouse-holidays): Re-use the title.
2997 (calendar-mouse-view-diary-entries): Use or.
2998 (calendar-mouse-chinese-date): Remove unused command.
2999 (cal-menu-load-hook): Mark as obsolete.
3001 * calendar/solar.el (calendar-location-name, calendar-latitude)
3002 (calendar-longitude, solar-arctan, sunrise-sunset)
3003 (solar-mean-equinoxes/solstices): Use the appropriate equality test.
3005 2008-03-20 Jay Belanger <jay.p.belanger@gmail.com>
3007 * calc/calc.el: Remove outdated comments.
3008 (defcalcmodevar, calc-mode-var-list-restore-default-values)
3009 (calc-mode-var-list-restore-saved-values, calc-autorange-units):
3012 2008-03-19 Jason Rumney <jasonr@gnu.org>
3014 * w32-fns.el (x-alternatives-map): Add S-tab mapping.
3016 2008-03-19 Reiner Steib <Reiner.Steib@gmx.de>
3018 * net/tls.el (open-tls-stream): Reindent.
3020 2008-03-19 Michael Albinus <michael.albinus@gmx.de>
3022 * net/tramp.el (tramp-let-maybe): Removed.
3023 (tramp-drop-volume-letter): Don't use `replace-regexp-in-string'.
3024 It does not exist under XEmacs.
3025 (tramp-handle-file-truename, tramp-handle-expand-file-name)
3026 (tramp-completion-file-name-handler): Let-bind
3027 `directory-sep-char'.
3029 * net/tramp-fish.el (tramp-fish-handle-expand-file-name): Let-bind
3030 `directory-sep-char'.
3032 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
3034 * help-fns.el (describe-function-1): Don't signal "missing arglist"
3035 for autoloaded keymaps.
3037 * progmodes/verilog-mode.el (verilog-syntax-ppss): New function.
3038 (electric-verilog-terminate-line, verilog-in-struct-region-p)
3039 (verilog-backward-ws&directives, verilog-forward-ws&directives)
3040 (verilog-in-comment-p, verilog-in-star-comment-p)
3041 (verilog-in-slash-comment-p, verilog-skip-backward-comments)
3042 (verilog-parenthesis-depth, verilog-skip-backward-comment-or-string)
3043 (verilog-skip-forward-comment-or-string, verilog-in-paren)
3044 (verilog-skip-forward-comment-p): Use it.
3046 2008-03-19 Juanma Barranquero <lekktu@gmail.com>
3048 * textmodes/org.el (org-link-store, org-link-follow, org-latex)
3049 (org-remember-templates, org-time-stamp-rounding-minutes)
3050 (org-back-over-empty-lines, org-find-base-buffer-visiting)
3051 (org-columns-new): Fix typos in docstrings.
3053 2008-03-19 Glenn Morris <rgm@gnu.org>
3055 * net/tramp.el (tramp-drop-volume-letter): Evaluate when compiling.
3056 (tramp-handle-shell-command): Use condition-case rather than
3059 2008-03-19 Dan Nicolaescu <dann@ics.uci.edu>
3061 * diff-mode.el (diff-header): Make the color louder.
3062 (diff-refine-change): Tone the color down.
3064 2008-03-19 Juanma Barranquero <lekktu@gmail.com>
3066 * descr-text.el (describe-char): When `describe-char-unidata-list'
3067 is set to show all properties, list them in the right order.
3069 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
3071 * international/mule.el (load-with-code-conversion): Avoid setting
3072 default-enable-multibyte-characters.
3074 2008-03-19 Gustav Hållberg <gustav@virtutech.com> (tiny change)
3076 * vc.el (vc-annotate-background): Fix custom type.
3078 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
3080 * descr-text.el (describe-char-unidata-list): Allow specifying
3081 just all properties.
3082 (describe-char): Handle that new value.
3084 * emulation/cua-base.el (cua-paste): Signal an error in read-only buf.
3086 2008-03-18 Tassilo Horn <tassilo@member.fsf.org>
3088 * doc-view.el (doc-view-initiate-display): Use doc-view-doc-type
3089 instead of file name extension to make docs with uncommon
3092 2008-03-18 Tassilo Horn <tassilo@member.fsf.org>
3094 * doc-view.el (require): Require cl at compile time because
3097 2008-03-18 Glenn Morris <rgm@gnu.org>
3099 * calendar/calendar.el (initial-calendar-window-hook)
3100 (today-visible-calendar-hook): Doc fixes.
3102 2008-03-17 Michael Albinus <michael.albinus@gmx.de>
3104 * net/tramp.el (tramp-root-regexp): Simplify.
3105 (tramp-completion-file-name-regexp-separate): Don't insist on
3106 leading "[". This prevents method or user or host completion.
3107 (tramp-let-maybe): Autoload it.
3108 (tramp-drop-volume-letter): Don't autoload. When not on W32, it
3109 is an alias for `identity'.
3110 (tramp-handle-write-region): Protect `last-coding-system-used'
3111 over the trailing statements.
3112 (tramp-completion-file-name-handler-post-function): Remove.
3113 (tramp-completion-file-name-handler): Let-bind `directory-sep-char'
3114 instead of calling `tramp-drop-volume-letter'.
3118 * net/trampver.el: Move coding cookie at the end.
3120 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
3122 * net/tramp.el (tramp-completion-mode-p): Don't use char-equal for
3123 elements which may be something else than characters.
3125 2008-03-17 Dan Nicolaescu <dann@ics.uci.edu>
3127 * vc-bzr.el (vc-bzr-dir-status, vc-bzr-after-dir-status):
3128 New functions to implement vc-status support.
3130 * vc.el (vc-default-extra-status-menu)
3131 (vc-add-to-vc-status-buffer): New functions.
3133 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
3136 2008-03-17 Glenn Morris <rgm@gnu.org>
3138 * calendar/cal-x.el (diary-frame-parameters)
3139 (calendar-frame-parameters, calendar-and-diary-frame-parameters):
3140 Fix custom type; add options.
3141 (calendar-frame, diary-frame): Doc fixes.
3142 (calendar-dedicate-diary, calendar-frame-1): Extract common code into
3144 (calendar-one-frame-setup, calendar-two-frame-setup): Doc fixes.
3145 Use calendar-frame-1 and calendar-dedicate-diary.
3146 (calendar-one-frame-setup): Also handle only-one-frame case.
3147 (calendar-only-one-frame-setup): Doc fix. Just call
3148 calendar-one-frame-setup.
3150 * calendar/diary-lib.el: Re-order some definitions before their use.
3151 (nongregorian-diary-listing-hook, nongregorian-diary-marking-hook)
3152 (diary-list-entries): Doc fixes.
3153 (make-fancy-diary-display): Remove function.
3155 * calendar/calendar.el (calendar-today-marker)
3156 (initial-calendar-window-hook, today-visible-calendar-hook)
3157 (today-invisible-calendar-hook, diary-file, calendar-basic-setup):
3158 (calendar-star-date, calendar-mark-today): Doc fixes.
3159 (today-visible-calendar-hook): Add options.
3160 (calendar-in-read-only-buffer): New macro.
3161 (calendar-basic-setup): Adapt for change in calendar-read-date.
3162 Place holiday let inside if.
3163 (calendar-day-name-array, calendar-month-name-array): Make defcustoms.
3164 (calendar-read-date): Set day to 1 rather than nil in the NODAY case.
3165 (calendar-print-other-dates): Use one let rather than many.
3167 * calendar/calendar.el (calendar-in-read-only-buffer): New macro.
3168 (calendar-print-other-dates):
3169 * calendar/cal-hebrew.el (list-yahrzeit-dates):
3170 * calendar/diary-lib.el (simple-diary-display, fancy-diary-display):
3171 * calendar/holidays.el (calendar-list-holidays, list-holidays)
3172 (calendar-cursor-holidays):
3173 * calendar/lunar.el (calendar-phases-of-moon): Use
3174 calendar-in-read-only-buffer to replace previous code and disable undo.
3176 2008-03-16 Juri Linkov <juri@jurta.org>
3178 * isearch.el (isearch-edit-string): Use search-ring-yank-pointer
3179 and regexp-search-ring-yank-pointer for the HISTPOS argument of
3180 read-from-minibuffer to provide the correct initial minibuffer
3181 history position in isearch-edit-string when it is called from
3182 isearch-ring-adjust.
3184 * menu-bar.el (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
3185 to check if the current buffer is the minibuffer, and in this case
3186 call abort-recursive-edit to kill the minibuffer. Doc fix.
3187 (kill-this-buffer-enabled-p): Allow this function to return non-nil
3188 when the current buffer is the minibuffer.
3190 * simple.el (goto-line): Leave mark at previous position. Doc fix.
3192 2008-03-16 Tassilo Horn <tassilo@member.fsf.org>
3194 * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
3195 Use non-nil PARENTS attribute of make-directory instead of
3196 explicitly checking existence the current cache directory.
3198 2008-03-16 Daiki Ueno <ueno@unixuser.org>
3200 * epa-file.el (epa-file-select-keys): Fix bug with C-x C-s after
3201 M-x epa-file-select-keys.
3203 2008-03-16 Kenichi Handa <handa@m17n.org>
3205 * international/mule.el (auto-coding-alist):
3206 Use no-conversion-multibyte for archive files.
3208 2008-03-16 Glenn Morris <rgm@gnu.org>
3210 * calendar/diary-lib.el (calendar-mark-complex, calendar-mark-1):
3212 * calendar/cal-bahai.el (calendar-mark-1): Autoload it.
3213 (calendar-bahai-mark-date-pattern): Add optional argument `color'.
3214 Use calendar-mark-1.
3215 * calendar/cal-hebrew.el (calendar-mark-complex): Autoload it.
3216 (mark-hebrew-calendar-date-pattern): Add optional argument `color'.
3217 Use calendar-mark-complex.
3218 * calendar/cal-islam.el (calendar-mark-1): Autoload it.
3219 (mark-islamic-calendar-date-pattern): Add optional argument `color'.
3220 Use calendar-mark-1.
3222 * calendar/calendar.el (calendar-mod): Remove.
3223 * calendar/cal-china.el (calendar-chinese-from-absolute)
3224 (calendar-chinese-date-string): Expand calendar-mod calls.
3225 * calendar/cal-mayan.el (calendar-mayan-tzolkin-from-absolute):
3226 Expand calendar-mod calls.
3228 * calendar/cal-bahai.el (calendar-bahai-date-string): Use a single let.
3229 (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
3230 (diary-bahai-insert-yearly-entry): Use let rather than let*.
3231 Move obsolete aliases after the functions that replaced them.
3233 * calendar/cal-hebrew.el (calendar-absolute-from-hebrew)
3234 (hebrew-calendar-yahrzeit, insert-hebrew-diary-entry)
3235 (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry):
3236 Use let rather than let*.
3237 (calendar-hebrew-prompt-for-date): New function.
3238 (calendar-goto-hebrew-date): Use calendar-hebrew-prompt-for-date.
3239 (holiday-tisha-b-av-etc): Use unless, let.
3241 * calendar/cal-islam.el (calendar-islamic-prompt-for-date): New func.
3242 (calendar-goto-islamic-date): Use calendar-islamic-prompt-for-date.
3244 * calendar/cal-mayan.el (calendar-mayan-haab-to-string): Simplify.
3246 * calendar/calendar.el (calendar-for-loop): Add indent spec.
3248 * calendar/diary-lib.el (diary-remind-message, mark-sexp-diary-entries)
3249 (list-sexp-diary-entries, diary-font-lock-sexps): Use format rather
3251 (diary): Remove un-needed let.
3252 (view-other-diary-entries): Rename argument.
3253 (diary-list-entries-2): New function.
3254 (diary-list-entries-1, diary-list-entries): Use diary-list-entries-2.
3255 (print-diary-entries): Use unless.
3256 (diary-mark-entries-1): Change argument order, make all but
3257 markfunc optional. Handle the standard (Gregorian) case.
3258 Use match-string-no-properties. Handle marks.
3259 (mark-diary-entries): Use diary-mark-entries-1.
3260 (diary-font-lock-keywords-1): New macro.
3261 (diary-font-lock-keywords): Use diary-font-lock-keywords-1.
3263 2008-03-16 Ulf Jasper <ulf.jasper@web.de>
3265 * icalendar.el (icalendar-version): Increase to 0.18.
3266 (icalendar-export-hidden-diary-entries): New variable.
3267 (icalendar-export-region): Use icalendar-export-hidden-diary-entries.
3268 In case of error, insert full error-val.
3269 (icalendar-first-weekday-of-year): Remove `offset' argument. Doc fix.
3270 Use calendar-day-of-week. Return the day number.
3271 (icalendar--convert-weekly-to-ical): Use funcall rather than apply.
3273 2008-03-16 Craig Markwardt <Craig.Markwardt@nasa.gov>
3275 * icalendar.el (icalendar-recurring-start-year): New variable.
3276 (icalendar--diarytime-to-isotime): Fix treatment of 12:00pm - 12:59pm.
3277 (icalendar-export-region): Ignore hidden diary entries.
3278 (icalendar--convert-ordinary-to-ical): Fix case where event
3279 spans across midnight boundary.
3280 (icalendar-first-weekday-of-year): New function.
3281 (icalendar--convert-weekly-to-ical): Allow user-selectable start
3282 year for recurring events (Mozilla calendars do not propagate
3283 recurring events forever, so year 2000 start date was not working).
3284 (icalendar--convert-yearly-to-ical): Remove extra spaces in
3285 formatting of BYMONTH and BYMONTHDAY (not allowed by ical spec).
3287 2008-03-15 Michael Albinus <michael.albinus@gmx.de>
3289 * net/tramp.el (tramp-root-regexp): New defconst.
3290 (tramp-completion-file-name-regexp-unified)
3291 (tramp-completion-file-name-regexp-separate)
3292 (tramp-completion-file-name-regexp-url): Use it.
3293 (tramp-do-copy-or-rename-file-via-buffer):
3294 Set `enable-multibyte-characters' to nil. Set `jka-compr-inhibit' to
3295 t for `insert-file-contents-literally'.
3296 (tramp-drop-volume-letter): Rewrite, using `tramp-root-regexp'.
3298 (tramp-completion-file-name-handler-post-function): New defconst.
3299 (tramp-completion-file-name-handler): Use it.
3300 (tramp-maybe-open-connection): Update calls to
3301 `tramp-flush-connection-property' for removed 2nd argument.
3303 2008-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
3305 * vc-bzr.el (vc-bzr-diff): Use a faster invocation when possible.
3306 (vc-bzr-complete-with-prefix, vc-bzr-revision-completion-table):
3309 2008-03-15 Glenn Morris <rgm@gnu.org>
3311 * calendar/diary-lib.el (diary-list-entries-1, diary-mark-entries-1):
3313 * calendar/cal-bahai.el (number, original-date, add-to-diary-list)
3314 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
3315 (diary-list-entries-1, diary-mark-entries-1): Autoload.
3316 (diary-bahai-list-entries): Use diary-list-entries-1.
3317 (diary-bahai-mark-entries): Doc fix. Use diary-mark-entries-1.
3318 * calendar/cal-hebrew.el (number, original-date, add-to-diary-list)
3319 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
3320 (diary-list-entries-1, diary-mark-entries-1): Autoload.
3321 (list-hebrew-diary-entries): Use diary-list-entries-1.
3322 (mark-hebrew-diary-entries): Doc fix. Use diary-mark-entries-1.
3323 * calendar/cal-islam.el (number, original-date, add-to-diary-list)
3324 (diary-name-pattern, mark-calendar-days-named): Remove declarations.
3325 (diary-list-entries-1, diary-mark-entries-1): Autoload.
3326 (list-islamic-diary-entries): Use diary-list-entries-1.
3327 (mark-islamic-diary-entries): Doc fix. Use diary-mark-entries-1.
3329 * calendar/appt.el (appt-check, appt-delete, appt-make-list): Use caar.
3331 * calendar/cal-bahai.el (calendar-bahai-epoch): Doc fix.
3333 * calendar/cal-china.el (number-chinese-months)
3334 (calendar-chinese-from-absolute): Use nth, caar.
3336 * calendar/cal-coptic.el (coptic-calendar-epoch): Doc fix.
3338 * calendar/cal-french.el (french-calendar-accents): Doc fix.
3340 * calendar/cal-hebrew.el (calendar-hebrew-month-name-array-common-year)
3341 (calendar-hebrew-month-name-array-leap-year)
3342 (hebrew-calendar-parashiot-names): Make constants.
3343 (diary-parasha): Move definition after constants it uses.
3345 * calendar/cal-html.el (cal-html-insert-link-yearpage)
3346 (cal-html-htmlify-list): Doc fix.
3347 (cal-html-htmlify-entry): Use nth.
3349 * calendar/cal-islam.el (calendar-islamic-month-name-array)
3350 (calendar-islamic-epoch): Make constants.
3351 (calendar-islamic-epoch): Doc fix.
3353 * calendar/cal-menu.el (cal-menu-goto-menu): Use "Go To".
3355 * calendar/cal-tex.el (cal-tex-hook, cal-tex-insert-preamble)
3356 (cal-tex-month-name): Doc fix.
3357 (cal-tex-last-blank-p): Use zerop.
3359 * calendar/calendar.el (european-calendar-style, calendar-for-loop)
3360 (calendar-sum, calendar-insert-indented, mouse-calendar-other-month)
3361 (calendar-cursor-to-date): Doc fix.
3362 (hebrew-holidays-1, hebrew-holidays-4): Simplify.
3363 (extract-calendar-day, extract-calendar-year): Use cadr, nth.
3364 (calendar-day-number): Use when.
3365 (generate-calendar-month): Use dotimes.
3366 (exit-calendar, calendar-print-other-dates): Use let rather than let*.
3367 (calendar-set-mark): Reverse conditional.
3368 (calendar-make-alist): Move definition before use.
3370 * calendar/diary-lib.el (diary-face-attrs)
3371 (diary-glob-file-regexp-prefix, diary-selective-display)
3372 (number-of-diary-entries, diary-list-entries, diary-goto-entry):
3373 (list-sexp-diary-entries, diary-date, diary-block, diary-float)
3374 (diary-anniversary, diary-cyclic)
3375 (diary-fancy-font-lock-fontify-region-function): Doc fixes.
3376 (diary-header-line-format): Change wording.
3377 (diary-list-entries): Set `date-start' in let.
3378 (include-other-diary-files, mark-included-diary-files): Use format.
3379 (simple-diary-display, fancy-diary-display): Use cadr, unless.
3380 (mark-diary-entries): Use 1+.
3381 (mark-sexp-diary-entries, list-sexp-diary-entries): Use when.
3382 (mark-calendar-month): Use dotimes.
3384 * calendar/holidays.el (displayed-month, displayed-year):
3385 Move declarations where needed.
3386 (calendar-list-holidays): Doc fix.
3388 * calendar/parse-time.el (parse-time-string): Simplify.
3390 * calendar/solar.el (solar-n-hemi-seasons, solar-s-hemi-seasons):
3392 (solar-sunrise-sunset): Rename some local variables for clarity.
3393 (sunrise-sunset): Use zerop.
3394 (solar-mean-equinoxes/solstices): Doc fix.
3396 * calendar/timeclock.el (timeclock-time-to-seconds, timeclock-log-data):
3398 (timeclock-completing-read, timeclock-generate-report): Use zerop.
3399 (timeclock-mean, timeclock-generate-report): Use dolist.
3401 * calendar/todo-mode.el (todo-add-category): Simplify.
3402 (todo-more-important-p, todo-delete-item, todo-file-item):
3404 (todo-top-priorities): Use zerop.
3406 2008-03-14 Nick Roberts <nickrob@snap.net.nz>
3408 * buff-menu.el (list-buffers-noselect): Display buffer name in
3409 tooltip instead of mouse binding when it doesn't fit in the list.
3411 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
3413 * faces.el (xw-defined-colors):
3414 * simple.el (widget-convert, shell-mode): Declare as functions
3415 instead of autoloading.
3421 * emacs-lisp/backquote.el:
3422 * emacs-lisp/timer.el:
3428 * textmodes/fill.el:
3429 * textmodes/paragraphs.el: Remove autoloads, redundant when the
3430 files are preloaded.
3432 2008-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
3434 * desktop.el (desktop-create-buffer): Don't catch errors if
3435 debug-on-error is set.
3437 2008-03-14 Eli Zaretskii <eliz@gnu.org>
3439 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
3440 ($(lisp)/calendar/diary-loaddefs.el)
3441 ($(lisp)/calendar/hol-loaddefs.el): New targets.
3442 (LOADDEFS): New macro.
3443 (autoloads): Depend on $(LOADDEFS).
3445 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
3447 * font-lock.el (featurep): Remove test, not useful anymore.
3448 (facemenu-keymap): Move key binding ...
3449 * facemenu.el (facemenu-keymap): ... here.
3451 * vc-bzr.el (vc-bzr-print-log): Insert a file marker. Run the log
3452 for each file in the list.
3453 (vc-bzr-log-view-mode): Recognize the file marker.
3455 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
3456 for checkdoc and profiling.
3458 2008-03-14 Bastien Guerry <bzg@altern.org>
3460 * textmodes/flyspell.el (nxml-mode): Add the right
3461 `flyspell-mode-predicate'.
3463 * wid-edit.el (link): Use 'mouse-face for :follow-link.
3465 2008-03-14 Glenn Morris <rgm@gnu.org>
3467 * calendar/solar.el: Reorder so that functions are defined before use.
3468 (displayed-month, displayed-year): Move declarations where needed.
3469 (solar-get-number): Move definition before use. Use unless.
3470 (solar-equatorial-coordinates): Simplify.
3471 (solar-sunrise-and-sunset): Use let rather than let*.
3472 (solar-longitude, solar-equinoxes-solstices): Use cadr, nth.
3474 * startup.el (command-line-1): Rename -internal-script back to
3475 -scriptload (reverts previous change).
3477 * calendar/cal-bahai.el (calendar-bahai-month-name-array)
3478 (calendar-bahai-leap-base): Add doc strings.
3479 (calendar-bahai-prompt-for-date, calendar-bahai-mark-date-pattern):
3480 Move definition before use.
3481 (calendar-bahai-goto-date, diary-bahai-list-entries): Doc fix.
3482 (diary-bahai-list-entries, diary-bahai-mark-entries): Move some constant
3483 variables outside the loop. Use dolist.
3484 (holiday-bahai, calendar-bahai-mark-date-pattern): Use unless.
3486 * calendar/cal-china.el: Re-order so that functions are defined before
3488 (displayed-month, displayed-year): Move declarations where needed.
3489 (chinese-calendar-time-zone, calendar-goto-chinese-date): Doc fix.
3490 (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
3492 (chinese-year-cache): Recenter on 2010. Doc fix.
3493 (chinese-year, number-chinese-months, calendar-absolute-from-chinese):
3495 (chinese-year-cache-init): New function.
3496 (compute-chinese-year, holiday-chinese-new-year)
3497 (calendar-chinese-date-string, calendar-goto-chinese-date)
3498 (make-chinese-month-assoc-list): Use cadr, nth.
3499 (chinese-months): Remove un-needed let.
3501 * calendar/cal-coptic.el (coptic-calendar-month-name-array):
3502 (ethiopic-calendar-month-name-array, ethiopic-name): Add doc strings.
3503 (coptic-prompt-for-date): Move definition before use.
3505 * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
3506 (calendar-dst-find-data, calendar-daylight-time-offset)
3507 (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
3508 (calendar-daylight-savings-starts-time)
3509 (calendar-daylight-savings-ends-time): Use cadr, nth.
3511 * calendar/cal-french.el (french-calendar-epoch)
3512 (calendar-goto-french-date): Doc fix.
3513 (french-calendar-month-name-array)
3514 (french-calendar-multibyte-month-name-array)
3515 (french-calendar-day-name-array, french-calendar-special-days-array):
3518 * calendar/cal-hebrew.el (displayed-month, displayed-year)
3519 (original-date): Move declarations where needed.
3520 (calendar-goto-hebrew-date, list-hebrew-diary-entries, diary-yahrzeit):
3522 (list-hebrew-diary-entries, mark-hebrew-diary-entries): Move some
3523 constant variables outside the loop. Use dolist.
3525 * calendar/cal-islam.el (displayed-month, displayed-year)
3526 (original-date): Move declarations where needed.
3527 (islamic-calendar-day-number): Remove unused local variable `day'.
3528 (calendar-goto-islamic-date): Doc fix.
3529 (holiday-islamic): Use unless.
3530 (list-islamic-diary-entries, mark-islamic-diary-entries): Move some
3531 constant variables outside the loop. Use dolist.
3532 (mark-islamic-calendar-date-pattern): Move definition before use.
3534 (mark-islamic-diary-entries): Doc fix.
3535 (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
3536 (insert-yearly-islamic-diary-entry): Use let rather than let*.
3538 * calendar/cal-julian.el (calendar-absolute-from-julian):
3539 Move definition before use. Remove un-needed local `day'.
3540 (calendar-goto-julian-date, calendar-goto-astro-day-number): Doc fix.
3542 * calendar/cal-mayan.el (calendar-mayan-haab-month-name-array)
3543 (calendar-mayan-tzolkin-names-array): Add doc strings.
3544 (calendar-mayan-long-count-from-absolute): Use a single let.
3545 (calendar-string-to-mayan-long-count): Simplify.
3546 (calendar-next-haab-date, calendar-previous-haab-date)
3547 (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
3548 (calendar-previous-calendar-round-date)
3549 (calendar-goto-mayan-long-count-date, calendar-mayan-date-string):
3551 (calendar-mayan-tzolkin-haab-on-or-before): Use zerop.
3552 (calendar-mayan-date-string, calendar-print-mayan-date)
3553 (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
3554 (calendar-mayan-long-count-common-era): Move definitions before use.
3556 * calendar/cal-menu.el (displayed-year): Move declaration where needed.
3557 (calendar-event-to-date, cal-tex-mouse-week, cal-tex-mouse-week-iso):
3559 (calendar-mouse-goto-date): Move definition before use.
3561 * calendar/cal-move.el (calendar-cursor-to-nearest-date): Use or, when.
3562 Move definition before use.
3563 (calendar-cursor-to-visible-date): Move definition before use.
3564 (calendar-scroll-left): Use unless and zerop. Combine lets into one,
3565 and place inside the conditional.
3566 (calendar-forward-day): Simplify.
3567 (calendar-end-of-month): Use unless.
3568 (calendar-goto-day-of-year): Doc fix.
3569 Relocate obsolete aliases after their replacements.
3571 * calendar/cal-persia.el (calendar-goto-persian-date): Doc fix.
3573 * calendar/diary-lib.el (mark-diary-entries): Move some constant
3574 variables outside the diary-date-forms loop.
3576 * calendar/calendar.el (diary-file): Doc fix.
3577 (calendar-buffer-list): Return buffers rather than strings (fixes
3579 (hebrew-holidays-4): Fix typo.
3581 * calendar/holidays.el (displayed-month, displayed-year):
3582 Move declarations where needed.
3583 (calendar-holiday-list, calendar-list-holidays)
3584 (holiday-filter-visible-calendar): Move definitions before use.
3585 (list-holidays): Use cadr.
3586 Relocate obsolete aliases after their replacements.
3588 * calendar/lunar.el (date, displayed-month, displayed-year):
3589 Move declarations where needed.
3590 (lunar-phase-list): Move definition after functions it uses.
3591 (calendar-phases-of-moon, diary-phases-of-moon)
3592 (lunar-new-moon-on-or-after): Use cadr, nth.
3593 (lunar-new-moon-on-or-after): Doc fix.
3595 * textmodes/org-irc.el (top-level): CL not required when compiling.
3596 (org-irc-visit-erc): Replace runtime CL functions.
3598 * textmodes/org-publish.el (declare-function): Add compatibility stub.
3599 (org-publish-delete-dups): Declare as function.
3601 2008-03-14 Dan Nicolaescu <dann@ics.uci.edu>
3603 * vc-bzr.el (vc-bzr-log-view-mode): "." can be part of a revno.
3604 (vc-bzr-show-log-entry): Make regexp match more cases.
3605 (vc-diff-switches-list): Remove autoload, not needed.
3607 2008-03-14 Juri Linkov <juri@jurta.org>
3609 * isearch.el (isearch-edit-string): Remove one call to
3610 `isearch-push-state' not to push an inconsistent state,
3611 but keep another correct call to `isearch-push-state'.
3612 (isearch-ring-adjust): Call `isearch-push-state' only when
3613 `search-ring-update' is non-nil since `isearch-edit-string'
3614 already pushes its state.
3615 (isearch-message): Improve matching the failed part by checking
3616 if the original message starts with the last successful message.
3618 * dired.el (dired-warn-writable): Rename to `dired-perm-write'.
3619 (dired-perm-write): Rename from `dired-warn-writable'.
3620 Change parent face from `font-lock-warning-face' to
3621 `font-lock-comment-delimiter-face'.
3622 (dired-warn-writable-face): Rename to `dired-perm-write-face'.
3623 (dired-perm-write-face): Rename from `dired-warn-writable-face'.
3624 (dired-font-lock-keywords): Replace `dired-warn-writable-face'
3625 with `dired-perm-write-face'.
3627 2008-03-13 Tassilo Horn <tassilo@member.fsf.org>
3629 * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
3630 Create cache dir only if it doesn't already exist.
3632 2008-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
3634 * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Fix handling
3637 2008-03-13 Johan Bockgård <bojohan@gnu.org>
3639 * net/browse-url.el (browse-url-text-xterm):
3640 Unquote browse-url-text-browser.
3642 2008-03-13 Carsten Dominik <dominik@science.uva.nl>
3644 * textmodes/org-mouse.el: Version number change.
3646 * textmodes/org-publish.el (org-publish-expand-components):
3647 Remove null projects from the list of components.
3648 (org-publish-attachment): Bugfix: handle mandatory argument pub-dir.
3649 Remove unused retrieval of the :publishing-directory property.
3650 (org-publish-file): Bugfix: when using a relative directory as the
3651 publishing directory, convert it to a directory filename.
3652 (org-publish-project): New alias.
3653 (org-publish-get-files): Protect against empty p.
3654 (org-publish-file): Send an error when file is not part of any project.
3655 (org-publish-file): Offer to refresh the list of files in known
3656 project when the current file is not part of any project.
3657 (org-publish-before-export-hook)
3658 (org-publish-after-export-hook): New hooks.
3659 (org-publish-org-to): Use new hooks and kill buffers.
3660 (org-publish-file): Remove the code for killing buffers.
3661 (org-publish-initialize-files-alist): Use interactive.
3662 (org-publish-file): If the publishing function creates a new
3663 buffer, kill it after publishing.
3664 (org-publish-timestamp-filename): Protect ":" in file name path
3667 * textmodes/org-export-latex.el (org-export-as-latex): Revert the
3668 change that killed the LaTeX buffer.
3670 * textmodes/org.el (org-ctrl-c-star): Implement a missing branch
3671 in the decision tree.
3672 (org-select-remember-template): Clean the code.
3673 (org-prepare-dblock): Add the extra :content parameter.
3674 (org-write-agenda): New output type ".ics" files.
3675 (org-write-agenda): Call `org-icalendar-verify-function', both for
3676 time stamps and for TODO entries.
3677 (org-agenda-collect-markers, org-create-marker-find-array)
3678 (org-check-agenda-marker-table): New functions.
3679 (org-agenda-marker-table): New variable.
3680 (org-export-as-html): Revert the change that killed the html
3681 buffer. Side effects first need to be studied carefully.
3682 (org-get-tags-at): Fix the structure of the condition-case statement.
3683 (org-ts-regexp0, org-repeat-re, org-display-custom-time)
3684 (org-timestamp-change): Fix regulear expressions to swallow the
3685 extra character for repeat-shift control.
3686 (org-auto-repeat-maybe): Implement the new repeater mechanisms.
3687 (org-get-legal-level): Alias to `org-get-valid-level'.
3688 (org-dblock-write:clocktable): Add a :link parameter, linking
3689 headlines to their location in the Org agenda files.
3690 (org-get-tags-at): Bugfix: prevent `org-back-to-heading' from
3691 throwing an error when getting tags before headlines.
3692 (org-timestamp-change, org-modify-ts-extra)
3693 (org-ts-regexp1): Fix timestamp editing.
3694 (org-agenda-custom-commands-local-options): New constant.
3695 (org-agenda-custom-commands):
3696 Use `org-agenda-custom-commands-local-options' to improve customize
3697 type. "htmlize": Removed hack to fix face problem with htmlize,
3698 it no longer seem necessary.
3699 (org-follow-link-hook): New hook.
3700 (org-agenda-custom-commands): Add "Component" as a tag for each
3701 item in a command serie.
3702 (org-open-at-point): Run `org-follow-link-hook'.
3703 (org-agenda-schedule): Bugfix: don't display marker type when it
3705 (org-store-link): org-irc required.
3706 (org-set-regexps-and-options): Parse the new logging options.
3707 (org-extract-log-state-settings): New function.
3708 (org-todo): Handle the new ways of recording state change stuff.
3709 (org-local-logging): New function.
3710 (org-columns-open-link): Fix bug with opening link in column view.
3711 (org-local-logging): New function
3712 (org-todo): Make sure that LOGGING properties are honoured.
3713 (org-todo-keywords): Improve docstring.
3714 (org-startup-options): Cleanup startup options.
3715 (org-set-regexps-and-options): Process the "!" markers.
3716 (org-todo): Respect the new logging stuff.
3717 (org-log-note-how): New variable.
3718 (org-add-log-maybe): New parameter HOW that defines how logging
3719 should be done and also overrides PURPOSE. Add a docstring.
3720 (org-add-log-note): Check if we really need to ask for a note.
3721 (org-get-current-options): Digest the new keyword.
3722 (org-agenda-reset-markers): Rename from
3723 `org-agenda-maybe-reset-markers'. Remove FORCE argument.
3724 (org-diary, org-agenda-quit, org-prepare-agenda): Call the renamed
3725 function, without force argument.
3726 (org-buffer-property-keys): Bind local variables s and p.
3727 (org-make-tags-matcher): Allow "" to match an empty or
3728 non-existent property value.
3729 (org-export-as-html): Join unsorted lists when they directly
3730 follow each other. Such lists may be created by headlines that
3731 are converted to lists.
3732 (org-nofm-to-completion): New function.
3733 (org-export-as-html): Use :html-extension instead of
3734 org-export-html-extension.
3735 (org-store-link): Support for links from `rmail-summary-mode'.
3736 (org-columns-new, org-complete, org-set-property): Set the
3737 `include-columns' argument in the call to
3738 `org-buffer-property-keys'.
3739 (org-buffer-property-keys): New argument `include-columns', to
3740 include properties expected by any of the COLUMS formats in the
3742 (org-cleaned-string-for-export): Get rid of drawers first, so that
3743 they will be removed also in the text before the first headline.
3744 (org-clock-report): Show the clocktable when found.
3745 (org-refile): Fix positioning bug when `org-reverse-note-order' is nil.
3746 (org-version): With prefix argument, insert `org-version' at point.
3747 (org-agenda-goto): Recenter the window after finding the target
3748 location, to make sure the correct position will be displayed.
3749 (org-agenda-get-deadlines): Don't scale priority with the warning
3751 (org-insert-heading): Don't break line in the middle of the line.
3752 (org-agenda-get-deadlines): Allow `org-deadline-warning-days' to
3754 (org-update-checkbox-count): Revamp to deal with hierarchical
3755 beckboxes. This was a patch from Miguel A. Figueroa-Villanueva.
3756 (org-remove-timestamp-with-keyword): New function.
3757 (org-schedule, org-deadline):
3758 Use `org-remove-timestamp-with-keyword' to make sure all such time
3760 (org-mode): Support for `align'.
3761 (org-agenda-get-deadlines): Make sure priorities increase as the
3762 due date approaches and is passed.
3763 (org-remember-apply-template): Fix problem with tags that
3765 (org-make-link-regexps): Improve the regular expression for plain links.
3766 (org-agenda-get-closed): List each clocking entry.
3767 (org-set-tags): Only tabify before tags if indent-tabs-mode is t.
3768 (org-special-ctrl-k): New option.
3769 (org-kill-line): New function.
3770 (org-archive-all-done): Fix incorrect number of stars in regexp.
3771 (org-refile-get-location): New function.
3772 (org-refile-goto-last-stored): New function.
3773 (org-global-tags-completion-table): Add the value of org-tag-alist
3774 in each buffer, to make sure that also unused tags will be
3775 available for completion.
3776 (org-columns-edit-value)
3777 (org-columns-next-allowed-value): Only update if not in agenda.
3778 (org-clocktable-steps): New function.
3779 (org-dblock-write:clocktable): Call `org-clocktable-steps'.
3780 (org-archive-subtree): Add the outline tree context as a property.
3781 (org-closest-date): New optional argument `prefer'.
3782 (org-goto-auto-isearch): New option.
3783 (org-goto-map, org-get-location): Implement auto-isearch.
3784 (org-goto-local-auto-isearch-map): New variable.
3785 (org-goto-local-search-forward-headings)
3786 (org-goto-local-auto-isearch): New functions.
3788 2008-03-13 Philip Jackson <emacs@shellarchive.co.uk>
3790 * textmodes/org-irc.el: New file.
3792 2008-03-13 John Wiegley <johnw@gnu.org>
3794 * textmodes/org-mac-message.el: New file.
3796 2008-03-13 Dan Nicolaescu <dann@ics.uci.edu>
3798 * font-lock.el (font-lock-comment-face): Set the foreground for
3799 the light background 8 colors case.
3801 2008-03-13 Glenn Morris <rgm@gnu.org>
3803 * font-lock.el (lisp-font-lock-keywords-1): Support wider range of
3804 generate-autoload-cookie patterns.
3806 * startup.el (command-line-1): Rename -scriptload to -internal-script.
3808 * Makefile.in ($(lisp)/loaddefs.el): Remove this target.
3809 (MH_E_SRC): Remove variable.
3810 ($(lisp)/mh-e/mh-loaddefs.el): Remove $MH_E_SRC dependency.
3811 Simplify file header. Use $@ for generated-autoload-file.
3813 * Makefile.in (LOADDEFS): New variable.
3814 (AUTOGENEL): Use $LOADDEFS.
3815 (autoloads): Remove $(lisp)/loaddefs.el dependency; add $LOADDEFS.
3816 ($(lisp)/calendar/cal-loaddefs.el, $(lisp)/calendar/diary-loaddefs.el):
3817 ($(lisp)/calendar/hol-loaddefs.el): New targets.
3818 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
3819 * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-html.el:
3820 * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
3821 * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
3822 * calendar/cal-tex.el, calendar/cal-x.el, calendar/diary-lib.el:
3823 * calendar/holidays.el, calendar/lunar.el, calendar/solar.el:
3824 Add calendar-specific autoload cookies, and remove any setting of
3825 generated-autoload-file.
3826 * calendar/calendar.el: Remove explicit autoloads now in cal-loaddefs.
3827 * calendar/diary-lib.el: Replace explicit autoloads with reading of
3829 * calendar/holidays.el: Replace explicit autoloads with reading of
3832 * calendar/calendar.el (cal-hebrew-yahrzeit-buffer): New constant.
3833 (calendar-buffer-list): Simplify.
3834 (generate-calendar-window): Use calendar-mark-holidays rather than
3837 * calendar/cal-hebrew.el (list-yahrzeit-dates):
3838 Use cal-hebrew-yahrzeit-buffer.
3840 * calendar/cal-x.el (calendar-only-one-frame-setup)
3841 (calendar-two-frame-setup): Doc fixes.
3842 (special-display-buffer-names): Use cal-hebrew-yahrzeit-buffer.
3844 * calendar/appt.el (appt-mode-string): Mark as risky.
3845 (appt-check): Apply mode-line-emphasis face to appt-mode-string.
3847 * calendar/cal-html.el (diary-list-entries):
3848 * calendar/cal-tex.el (calendar-holiday-list, diary-list-entries)
3849 (calendar-iso-from-absolute): Fix autoloads.
3851 * calendar/cal-iso.el (calendar-absolute-from-iso)
3852 (calendar-iso-read-args): Simplify.
3853 (calendar-iso-date-string, calendar-iso-read-args)
3854 (calendar-goto-iso-date, calendar-goto-iso-week): Doc fixes.
3856 * calendar/cal-julian.el (calendar-julian-from-absolute): Use zerop.
3857 (displayed-month, displayed-year): Move declarations where needed.
3858 (calendar-print-astro-day-number): Doc fix.
3860 * calendar/cal-persia.el (persian-calendar-month-name-array)
3861 (persian-calendar-epoch, calendar-persian-date-string): Doc fixes.
3862 (persian-prompt-for-date): Remove local variable `today'.
3864 * calendar/diary-lib.el (mark-calendar-month): Use zerop.
3866 * calendar/solar.el (solar-moment, solar-exact-local-noon)
3867 (solar-sunrise-sunset, solar-sunrise-sunset-string)
3868 (solar-ephemeris-time, solar-date-next-longitude, solar-sidereal-time):
3869 (diary-sabbath-candles, solar-equinoxes/solstices)
3870 (solar-equinoxes-solstices): Use cadr, cdar, nth, zerop.
3871 (solar-time-equation, solar-date-to-et): Simplify.
3873 * mail/supercite.el: Remove the `function' in `(function (lambda'.
3874 Replace `(car (cdr' with cadr'.
3876 * progmodes/f90.el (f90-font-lock-n): New function.
3877 (f90-font-lock-1, f90-font-lock-2, f90-font-lock-3, f90-font-lock-4):
3878 Use f90-font-lock-n.
3879 (f90-indent-region, f90-indent-subprogram, f90-match-end): Use cadr.
3881 * progmodes/f90.el (f90-mode-abbrev-table):
3882 * progmodes/fortran.el (fortran-mode-abbrev-table):
3883 Use newer form of define-abbrev, where supported. No need to bind
3884 abbrevs-changed for system abbrevs.
3886 2008-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
3888 * term/xterm.el (terminal-init-xterm): delete-frame-hook ->
3889 delete-frame-functions.
3891 * bookmark.el (Info-current-node): Remove.
3893 2008-03-12 Juri Linkov <juri@jurta.org>
3895 * help.el (describe-project): Remove defaliases for view-todo and
3896 describe-project that are now unnecessary after the merge from
3897 emacs--rel--22 that added define-obsolete-function-alias.
3899 * startup.el (inhibit-startup-screen): Revert incomplete
3900 2008-03-10 merge from emacs--rel--22 that partly reverted
3901 2008-02-28 change that added initial message to *scratch* buffer
3902 regardless of the value of `inhibit-startup-screen'.
3903 Now keep this change in the trunk, but not in the 22 branch.
3905 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
3907 * international/quail.el (quail-setup-completion-buf, quail-help):
3908 * mail/binhex.el (binhex-decode-region-internal):
3909 * mail/uudecode.el (uudecode-decode-region-internal):
3910 * net/dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
3911 * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
3912 setting default-enable-multibyte-characters.
3914 * emulation/viper-util.el (viper-file-remote-p): Remove, unused.
3916 * comint.el: Fix up indentation and comment style. Remove `function'.
3918 * international/mule-cmds.el (reset-language-environment)
3919 (set-language-environment-nonascii-translation):
3920 Don't set-unibyte-charset.
3922 * doc-view.el: Remove all cb-args, use closures instead.
3923 (doc-view-sentinel): Merge doc-view-dvi->pdf-sentinel,
3924 doc-view-ps->pdf-sentinel, and doc-view-pdf->txt-sentinel (which was
3925 doing an incorrect check). Update all callers to use the new name.
3926 (doc-view-doc->txt): Add missing `txt' argument.
3928 2008-03-12 Tassilo Horn <tassilo@member.fsf.org>
3930 * doc-view.el (doc-view-current-cache-dir): Set buffer used for
3931 md5 sum calculation to single-byte.
3933 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
3935 * doc-view.el (doc-view-new-window-function): Add assertion.
3936 (doc-view-doc-type): New var.
3937 (doc-view-convert-current-doc, doc-view-doc->txt): Use it.
3938 (doc-view-intersection): New fun.
3939 (doc-view-mode): Use it to set the new var.
3941 2008-03-12 Tassilo Horn <tassilo@member.fsf.org>
3943 * doc-view.el (doc-view-doc->txt, doc-view-open-text)
3944 (doc-view-already-converted-p): New functions.
3945 (doc-view-clear-cache): Don't recreate doc-view-cache-directory.
3946 (doc-view-mode-map): Bind C-c C-t to doc-view-open-text.
3947 (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
3948 (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
3949 (doc-view-ps->pdf-sentinel, doc-view-ps->pdf)
3950 (doc-view-convert-current-doc): Don't hardwire the functions the
3951 sentinels call. Now they're provided by two args CALLBACK and
3952 CB-ARGS to the functions.
3953 (doc-view-search): Use doc-view-doc->txt.
3954 (doc-view-initiate-display): Use doc-view-already-converted-p.
3955 Mention new binding C-c C-t if doc-view-mode doesn't work.
3957 2008-03-12 Dan Nicolaescu <dann@ics.uci.edu>
3959 * diff-mode.el (diff-refine-change): Adjust colors to be more visible.
3961 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
3963 * textmodes/sgml-mode.el (sgml-font-lock-syntactic-keywords):
3964 Mark " outside of tags as punctuation.
3966 2008-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3968 * menu-bar.el (minibuffer-local-map): Use the same command for the
3969 "Quit" menu as used for the C-g key, so the shortcut displayed is C-g.
3970 Prefer RET over C-j for exit-minibuffer.
3972 * files.el (display-buffer-other-frame): Eliminate problematic code.
3974 * menu-bar.el (menu-bar-update-buffers-maxbuf): Remove.
3975 (menu-bar-select-buffer): Remove.
3976 (menu-bar-select-frame): Make non-interactive and take a frame arg.
3977 (menu-bar-update-buffers): Don't use buffer-names or frame names as events.
3979 2008-03-11 Juanma Barranquero <lekktu@gmail.com>
3981 * icomplete.el (icomplete-completions): Remove obsolete code.
3983 * net/net-utils.el (iwconfig-program-options): Doc fix.
3984 (net-utils-run-program, run-network-program): Define as functions.
3986 2008-03-11 Dan Nicolaescu <dann@ics.uci.edu>
3988 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Fix typo.
3990 2008-03-11 Glenn Morris <rgm@gnu.org>
3992 * faces.el (mode-line-emphasis): New face.
3993 * vc.el (vc-set-mode-line-busy-indicator): Use mode-line-emphasis face.
3995 * calendar/calendar.el (top-level): Load cal-loaddefs when compiling.
3997 2008-03-11 Chong Yidong <cyd@stupidchicken.com>
3999 * simple.el (set-mark-command): Doc fix.
4001 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
4003 * Makefile.in (bootstrap-prepare): Don't chmod cal-loaddefs.el.
4005 * emacs-lisp/autoload.el (autoload-find-destination):
4006 Don't force raw-text.
4008 * calendar/calendar.el ("cal-loaddefs"): Load, rather than require.
4009 * calendar/cal-loaddefs.el: Don't version control.
4011 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
4013 * progmodes/make-mode.el (makefile-mode-abbrev-table): Add menu
4014 entries and add :help to the existing ones.
4016 2008-03-10 Glenn Morris <rgm@gnu.org>
4018 * calendar/cal-hebrew.el (date, entry, number): Move declarations
4019 to where they are needed.
4021 * calendar/calendar.el (diary-file, hebrew-holidays-1)
4022 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
4023 (calendar, calendar-basic-setup, calendar-mode-map, calendar-set-mark)
4024 (calendar-version): Doc fixes.
4025 (calendar-absolute-from-gregorian): Use zerop.
4026 (calendar-mode-line-format): Make it a defcustom.
4028 * calendar/diary-lib.el (diary-face-attrs): Fix custom :type.
4029 (diary-face-attrs, diary-glob-file-regexp-prefix, diary-unknown-time)
4030 (diary-pull-attrs, diary-header-line-flag, diary-list-entries)
4031 (diary-unhide-everything, include-other-diary-files, diary-goto-entry)
4032 (mark-included-diary-files, mark-calendar-days-named)
4033 (mark-calendar-date-pattern, mark-calendar-month, diary-entry-compare)
4034 (diary-remind, insert-diary-entry, insert-weekly-diary-entry)
4035 (insert-monthly-diary-entry, insert-yearly-diary-entry)
4036 (insert-anniversary-diary-entry, insert-block-diary-entry)
4037 (insert-cyclic-diary-entry, fancy-diary-font-lock-keywords)
4038 (diary-font-lock-sexps): Doc fixes.
4039 (diary-remind-message, mark-calendar-month): Use zerop.
4040 (diary-attrtype-convert, diary-pull-attrs): Simplify.
4041 (diary-list-entries): Revert let to let* (previous change).
4043 * Makefile.in (bootstrap-prepare): Also chmod cal-loaddefs.el.
4045 2008-03-10 Kim F. Storm <storm@cua.dk>
4047 * help.el (view-emacs-todo, describe-gnu-project): Define obsolete
4048 function aliases for the old names.
4050 2008-03-10 Juanma Barranquero <lekktu@gmail.com>
4052 * iswitchb.el (iswitchb-use-faces): Doc fix.
4053 (iswitchb-buffer-ignore, iswitchb-read-buffer):
4054 Fix typos in docstrings.
4056 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
4058 * progmodes/verilog-mode.el (verilog-highlight-grouping-keywords):
4060 (verilog-type-font-keywords): Reindent.
4062 2008-03-10 Michael McNamara <mac@mail.brushroad.com>
4064 * verilog-mode.el (verilog-font-grouping-keywords): Fix bug in the
4065 grouping-keyword regular expression.
4066 (verilog-font-lock-keywords): Allow users to toggle special
4067 highlight of grouping-keywords.
4068 (verilog-highlight-grouping-keywords): The toggle for special
4069 highlighting of grouping keywords.
4071 2008-03-10 Juri Linkov <juri@jurta.org>
4073 * startup.el: Revert 2008-02-28 change that adds initial message
4074 to *scratch* buffer regardless of the value of
4075 `inhibit-startup-screen'.
4077 2008-03-10 Dan Nicolaescu <dann@ics.uci.edu>
4079 * textmodes/css-mode.el (css-indent-offset, css-electric-keys):
4080 * textmodes/bibtex-style.el (bibtex-style-indent-basic):
4081 * progmodes/verilog-mode.el (verilog-mode):
4082 * net/socks.el (socks):
4083 * vc-mtn.el (vc-mtn-mode-line-rewrite): Add :version.
4085 2008-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
4087 * doc-view.el (bookmark-buffer-file-name, bookmark-prop-get): Declare.
4088 (doc-view-bookmark-make-record): Use them.
4089 (doc-view-bookmark-jump): Use them. Fix find-file ->find-file-noselect.
4090 (bookmark-get-filename, bookmark-get-bookmark-record): Remove.
4092 * bookmark.el (bookmark-make-record-function): Change expected return
4093 value to include a suggested bookmark name.
4094 (bookmark-make): Split into bookmark-make-record and bookmark-store.
4095 Fix reversed `overwrite' semantics.
4096 (bookmark-set): Call bookmark-make-record before prompting the user.
4097 Then pass the result to bookmark-store later on.
4098 (bookmark-make-name-function): Remove.
4099 (bookmark-buffer-file-name, bookmark-buffer-name): Don't use it.
4100 * info.el (bookmark-make-name-function): Remove.
4101 (Info-mode): Don't set it.
4102 (Info-bookmark-make-name): Remove.
4103 (Info-bookmark-make-record): Use Info-current-node as suggested default
4106 * bookmark.el (bookmark-set): Make bookmark before reading annotations.
4107 I.e. use bookmark-edit-annotation rather than bookmark-read-annotation.
4108 (bookmark-read-annotation-mode-map, bookmark-annotation-paragraph)
4109 (bookmark-annotation-buffer, bookmark-annotation-file)
4110 (bookmark-annotation-point, bookmark-send-annotation)
4111 (bookmark-read-annotation-mode, bookmark-read-annotation): Remove.
4112 (bookmark-edit-annotation-text-func): Rename from
4113 bookmark-read-annotation-text-func. Keep old name as an obsolete alias.
4114 (bookmark-edit-annotation-mode-map): Move initialization into
4117 * bookmark.el: Remove spurious * in docstrings.
4118 (bookmark-minibuffer-read-name-map): New var.
4119 (bookmark-set): Use it. Also pass the default value as it should.
4120 (bookmark-send-edited-annotation): Take no chances with text properties.
4121 (bookmark-insert-current-bookmark): Inline bookmark-insert-buffer-name.
4122 (bookmark-insert-buffer-name): Remove.
4123 (bookmark-buffer-file-name): Signal an error rather than returning nil.
4125 2008-03-09 Thomas Hühn <xf27@arcor.de> (tiny change)
4127 * tutorial.el (tutorial--default-keys): Update `C-l' binding.
4129 2008-03-09 Dan Nicolaescu <dann@ics.uci.edu>
4131 * diff-mode.el (diff-mode-menu): Add :help.
4133 2008-03-09 Glenn Morris <rgm@gnu.org>
4135 * calendar/calendar.el (general-holidays, oriental-holidays)
4136 (local-holidays, other-holidays, hebrew-holidays-1, hebrew-holidays-2)
4137 (hebrew-holidays-3, hebrew-holidays-4, hebrew-holidays)
4138 (christian-holidays, islamic-holidays, bahai-holidays, solar-holidays)
4139 (calendar-holidays): Restore autoload cookies, because people are
4140 used to using these variables without loading calendar.el.
4142 * calendar/cal-islam.el (diary-islamic-date): Move to end.
4143 (date, number): Declare where needed.
4145 * calendar/diary-lib.el (nongregorian-diary-marking-hook)
4146 (list-sexp-diary-entries): Doc fixes.
4147 (diary-list-entries): Doc fix. Remove free variable `entry'.
4148 (fancy-diary-display): Use dolist, bobp. Remove free variable `entry'.
4149 Simplify setting of `date-holiday-list'.
4150 (mark-diary-entries): Remove free variable `entry'.
4151 (diary-list-entries, include-other-diary-files, fancy-diary-display):
4152 Use let where let* is not needed.
4154 2008-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
4156 * bookmark.el (bookmark-make): Don't pass the `annotation' to the
4157 make-record function, instead paste it in afterwards.
4158 (bookmark-make-record-for-text-file):
4159 * doc-view.el (doc-view-bookmark-make-record):
4160 * info.el (Info-bookmark-make-record): Don't mess with annotations.
4162 2008-03-08 Glenn Morris <rgm@gnu.org>
4164 * calendar/diary-lib.el (entry): Declare for compiler part-way through.
4166 2008-03-08 Stefan Monnier <monnier@iro.umontreal.ca>
4168 * calendar/diary-lib.el (diary-list-entries)
4169 (include-other-diary-files, mark-diary-entries)
4170 (mark-sexp-diary-entries, mark-included-diary-files)
4171 (diary-entry-time, list-sexp-diary-entries): Remove the special
4172 handling of ^M that dates back to the use of selective-display.
4173 (simple-diary-display): Obey setting of pop-up-frames.
4174 (body, entry): Remove unnecessary declarations.
4176 * bookmark.el (bookmark-prop-get, bookmark-prop-set): New funs.
4177 (bookmark-get-annotation, bookmark-set-annotation)
4178 (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
4179 (bookmark-set-position, bookmark-get-front-context-string)
4180 (bookmark-set-front-context-string, bookmark-get-rear-context-string)
4181 (bookmark-set-rear-context-string, bookmark-get-handler): Use them.
4182 * info.el (Info-bookmark-make-record): Don't bother recording point.
4183 (bookmark-get-filename, bookmark-get-front-context-string)
4184 (bookmark-get-rear-context-string, bookmark-get-position):
4185 Don't declare any more.
4186 (bookmark-get-info-node): Remove.
4187 (bookmark-prop-get): Declare.
4188 (Info-bookmark-jump): Use it.
4190 2008-03-08 Johan Bockgård <bojohan@gnu.org>
4192 * subr.el (while-no-input): Don't splice BODY directly into the
4195 2008-03-08 Dan Nicolaescu <dann@ics.uci.edu>
4197 * diff-mode.el (diff-ignore-whitespace-hunk):
4198 Bind inhibit-read-only before trying to change the buffer.
4200 2008-03-08 Glenn Morris <rgm@gnu.org>
4202 * calendar/appt.el (appt): Move custom group here from calendar.el.
4203 (appt-disp-window, appt-convert-time): Doc fixes.
4205 * calendar/cal-bahai.el (calendar-bahai-prompt-for-date)
4206 (calendar-bahai-mark-date-pattern):
4207 * calendar/cal-hebrew.el (mark-hebrew-calendar-date-pattern):
4208 * calendar/cal-islam.el (mark-islamic-calendar-date-pattern):
4209 * calendar/cal-julian.el (calendar-absolute-from-julian):
4210 * calendar/cal-persia.el (persian-prompt-for-date): Use zerop.
4212 * calendar/cal-china.el (chinese-calendar): Move custom group here from
4214 (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
4216 (chinese-calendar-time-zone, chinese-calendar-daylight-time-offset)
4217 (chinese-calendar-daylight-savings-starts)
4218 (chinese-calendar-daylight-savings-ends)
4219 (chinese-calendar-daylight-savings-starts-time)
4220 (chinese-calendar-daylight-savings-ends-time)
4221 (chinese-zodiac-sign-on-or-after, chinese-new-moon-on-or-after):
4224 * calendar/cal-coptic.el (coptic-name): Add doc string.
4226 * calendar/cal-french.el (french-calendar-month-name-array)
4227 (french-calendar-day-name-array, french-calendar-special-days-array):
4230 * calendar/cal-bahai.el (diary-bahai-mark-entries)
4231 (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
4232 (diary-bahai-insert-yearly-entry):
4233 * calendar/cal-dst.el (calendar-next-time-zone-transition)
4234 (calendar-time-zone):
4235 * calendar/cal-hebrew.el (hebrew-calendar-leap-year-p)
4236 (hebrew-calendar-elapsed-days, hebrew-calendar-long-heshvan-p)
4237 (hebrew-calendar-short-kislev-p, mark-hebrew-diary-entries)
4238 (insert-hebrew-diary-entry, insert-monthly-hebrew-diary-entry)
4239 (insert-yearly-hebrew-diary-entry, diary-yahrzeit):
4240 * calendar/cal-islam.el (islamic-calendar-leap-year-p)
4241 (list-islamic-diary-entries, mark-islamic-diary-entries)
4242 (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
4243 (insert-yearly-islamic-diary-entry):
4244 * calendar/cal-iso.el (calendar-iso-read-args):
4245 * calendar/cal-mayan.el (calendar-string-to-mayan-long-count)
4246 (calendar-mayan-haab-to-string, calendar-mayan-tzolkin-to-string)
4247 (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
4248 (calendar-next-calendar-round-date)
4249 (calendar-mayan-long-count-common-era):
4250 * calendar/cal-menu.el (cal-menu-holiday-window-suffix)
4251 (cal-menu-x-popup-menu, calendar-mouse-holidays)
4252 (calendar-mouse-view-diary-entries, calendar-mouse-print-dates)
4253 (calendar-mouse-goto-date):
4254 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
4255 * calendar/holidays.el (holidays):
4256 * calendar/lunar.el (phases-of-moon, lunar-new-moon-on-or-after):
4257 * calendar/time-date.el (date-to-time, time-subtract, time-add)
4258 (safe-date-to-time): Doc fixes.
4260 * calendar/cal-persia.el (persian-calendar-month-name-array)
4261 (persian-calendar-epoch): Make constants.
4263 * calendar/cal-tex.el (calendar-tex): Move custom group here from
4266 * calendar/cal-x.el (diary-frame-parameters)
4267 (calendar-frame-parameters, calendar-and-diary-frame-parameters)
4268 (calendar-after-frame-setup-hooks): Make defcustoms.
4269 (calendar-one-frame-setup, calendar-only-one-frame-setup)
4270 (calendar-two-frame-setup): Doc fix.
4272 * calendar/cal-loaddefs.el: New file.
4274 * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
4275 * calendar/cal-french.el, calendar/cal-html.el:
4276 * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
4277 * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
4278 * calendar/cal-tex.el, calendar/cal-x.el:
4279 Unquote lambda functions. Add autoload cookies to functions formerly
4280 autoloaded in calendar.el. Set `generated-autoload-file' to
4283 * calendar/calendar.el: Move many autoloads to separate file,
4284 cal-loaddefs.el. Move defcustoms to start and re-order.
4285 (calendar-month-name-array, calendar-starred-day): No need to
4286 declare for compiler.
4287 (cal-loaddefs): Require it.
4288 (appt, chinese-calendar, calendar-tex): Move custom groups to the
4290 (diary-entry-marker, calendar-today-marker, calendar-holiday-marker):
4292 (diary-face, diary-file-name-prefix-function, diary-include-string)
4293 (diary-glob-file-regexp-prefix, diary-face-attrs)
4294 (diary-file-name-prefix, sexp-diary-entry-symbol)
4295 (print-diary-entries-hook, list-diary-entries-hook)
4296 (nongregorian-diary-listing-hook, mark-diary-entries-hook)
4297 (nongregorian-diary-marking-hook, diary-list-include-blanks):
4299 (all-christian-calendar-holidays, all-islamic-calendar-holidays)
4300 (all-bahai-calendar-holidays): Doc fix.
4301 (calendar-insert-indented): Doc fix. Use when rather than if.
4302 (exit-calendar): Use mapc rather than mapcar.
4303 (calendar-cursor-to-date): Use zerop.
4304 (calendar-mark-ring): Add doc-string.
4305 (calendar-starred-day): Defvar it.
4306 (calendar-mode): Make calendar-starred-day local.
4307 (calendar-star-date): No need to make calendar-starred-day local.
4309 * calendar/diary-lib.el: Move defcustoms to start.
4310 (diary-include-string, diary-list-include-blanks)
4311 (diary-glob-file-regexp-prefix, diary-face, diary-face-attrs)
4312 (diary-file-name-prefix, diary-file-name-prefix-function)
4313 (sexp-diary-entry-symbol, list-diary-entries-hook)
4314 (mark-diary-entries-hook, nongregorian-diary-listing-hook)
4315 (nongregorian-diary-marking-hook, print-diary-entries-hook):
4316 Move here from calendar.el.
4317 (diary-file-name-prefix-function): Use 'identity.
4318 (diary-face): Make it a defcustom, and mark as obsolete.
4319 (top-level): No need to require cal-hebrew, cal-islam when compiling.
4320 (calendar-hebrew-month-name-array-leap-year)
4321 (calendar-islamic-month-name-array, calendar-bahai-month-name-array):
4322 Define for compiler.
4323 (diary-font-lock-keywords): Use format rather than concat.
4324 Add bahai-diary-entry-symbol.
4326 * calendar/cal-hebrew.el, calendar/holidays.el, calendar/lunar.el:
4327 * calendar/solar.el: Unquote lambda functions.
4329 * calendar/solar.el (calendar-location-name, calendar-latitude)
4330 (calendar-longitude, solar-setup, solar-sin-degrees)
4331 (solar-cosine-degrees, solar-tangent-degrees, solar-xy-to-quadrant)
4332 (solar-degrees-to-quadrant, solar-atn2, solar-arccos)
4333 (solar-sunrise-and-sunset, solar-moment, solar-daylight)
4334 (solar-exact-local-noon, solar-julian-ut-centuries)
4335 (solar-ephemeris-time, solar-date-next-longitude)
4336 (solar-horizontal-coordinates, solar-equatorial-coordinates)
4337 (solar-ecliptic-coordinates, solar-data-list, solar-longitude)
4338 (solar-ephemeris-correction, solar-sidereal-time, solar-date-to-et)
4339 (sunrise-sunset, solar-seasons-data, solar-equinoxes/solstices):
4341 (solar-horizontal-coordinates, solar-equatorial-coordinates)
4342 (solar-ecliptic-coordinates): Rename argument `for-sunrise-sunset'.
4343 (solar-ecliptic-coordinates): Use unless.
4344 (calendar-sunrise-sunset, diary-sunrise-sunset, diary-sabbath-candles):
4347 * calendar/timeclock.el: Add doc-strings to all functions.
4348 (timeclock-workday, timeclock-in, timeclock-completing-read): Doc fixes.
4349 (timeclock-entry-list-length, timeclock-entry-list-projects)
4350 (timeclock-day-list-projects, timeclock-day-list): Use dolist.
4352 * calendar/todo-mode.el: Remove un-needed eval-when-compile.
4354 * textmodes/org.el (list-diary-entries-hook): Declare for compiler.
4355 (org-get-entries-from-diary): Require diary-lib.
4357 2008-03-08 Juanma Barranquero <lekktu@gmail.com>
4359 * info.el (bookmark-make-name-function, bookmark-get-bookmark-record):
4360 Pacify byte-compiler.
4362 2008-03-07 Alan Mackenzie <acm@muc.de>
4364 * progmodes/cc-engine.el (c-in-knr-argdecl): Limit number of
4365 paren/bracket pairs parsed, to solve performance problem.
4367 2008-03-07 Bastien Guerry <bzg@altern.org>
4369 * bookmark.el (bookmark-set): Don't check for
4370 `bookmark-make-name-function' since `bookmark-buffer-file-name'
4371 already takes care of this.
4372 (bookmark-buffer-name, bookmark-buffer-file-name):
4373 Remove Info-mode specific code.
4375 * info.el (bookmark-get-info-node): Define this function in
4376 info.el, not in bookmark.el.
4377 (Info-mode): Set `bookmark-make-name-function' to
4378 `Info-bookmark-make-name' locally.
4379 (Info-bookmark-make-name): New function.
4381 * bookmark.el (bookmark-make-name-function): New variable.
4383 2008-03-07 Karl Fogel <kfogel@red-bean.com>
4385 * bookmark.el (bookmark-set): Make `bookmark-make-record-function'
4386 buffer-local, not `bookmark-make-cell-function' (the old name).
4388 2008-03-07 Tassilo Horn <tassilo@member.fsf.org>
4390 * doc-view.el (doc-view-bookmark-make-record):
4391 * image-mode.el (image-bookmark-make-record):
4392 * info.el (Info-bookmark-make-record): Delete obsolete second arg.
4394 2008-03-07 Jan Djärv <jan.h.d@swipnet.se>
4396 * vc.el (vc-status-menu-map-filter): Return orig-binding if
4397 boundp 'vc-ignore-menu-filter.
4398 (vc-status-tool-bar-map): Make it defvar.
4399 (vc-status-mode): vc-status-tool-bar-map now variable.
4400 (vc-status-toggle-mark): toggle-mark-file => vc-status-toggle-mark-file.
4402 2008-03-07 Karl Fogel <kfogel@red-bean.com>
4404 Give a better name to part of the bookmark interface.
4406 This was originally a much larger change, but halfway through I
4407 updated and discovered that Stefan Monnier had done the rest.
4408 It looks like he anticipated the new name too, because he used
4409 `the-record' instead of `the-cell' for some internal variable names.
4411 * bookmark.el (bookmark-make-record-function): Was
4412 `bookmark-make-cell-function'.
4413 (bookmark-make, bookmark-send-annotation): Update for above.
4414 (bookmark-make-record-for-text-file):
4415 Was `bookmark-make-cell-for-text-file'. Fix doc string re 2008-03-07T05:00:18Z!monnier@iro.umontreal.ca.
4417 * info.el: Adjust accordingly.
4418 (Info-bookmark-make-record): Was `Info-bookmark-make-cell'.
4420 * image-mode.el: Adjust accordingly.
4421 (image-bookmark-make-record): Was `image-bookmark-make-cell'.
4423 * doc-view.el: Adjust accordingly.
4424 (doc-view-bookmark-make-record): Was `doc-view-bookmark-make-cell'.
4426 2008-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
4428 * bookmark.el (bookmark-map, bookmark-read-annotation-mode-map):
4429 Move initialization into declaration.
4430 (bookmark-get-info-node, bookmark-set-info-node): Remove.
4431 (bookmark-make, bookmark-make-cell-for-text-file): Remove info-node arg.
4432 (bookmark-info-current-node): Remove.
4433 (bookmark-jump-noselect): Rename from bookmark-jump-internal.
4434 Add relocation fallback. Set bookmark-current-bookmark.
4435 (bookmark-default-handler): Rename from bookmark-jump-noselect.
4436 Remove relocation fallback. Don't set bookmark-current-bookmark.
4437 (bookmark-set): Let it be used even if there's no buffer-file-name
4438 as long as there is a bookmark-make-cell-function.
4439 * info.el (Info-bookmark-jump): Remove relocation fallback.
4440 Don't set bookmark-current-bookmark.
4442 2008-03-07 Glenn Morris <rgm@gnu.org>
4444 * calendar/appt.el (appt-issue-message)
4445 (appt-message-warning-time, appt-audible, appt-visible)
4446 (appt-msg-window, appt-display-mode-line, appt-display-duration)
4447 (appt-display-diary): Remove autoload cookies.
4449 * calendar/cal-china.el, calendar/timeclock.el, calendar/todo-mode.el:
4450 Remove leading `*' from defcustom doc-strings.
4452 * calendar/cal-dst.el (calendar-dst): New custom group.
4453 (calendar-daylight-savings-starts, calendar-daylight-savings-ends)
4454 (calendar-time-zone, calendar-daylight-time-offset)
4455 (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
4456 (calendar-daylight-savings-starts-time)
4457 (calendar-daylight-savings-ends-time): Convert from defvar to defcustom.
4458 (calendar-daylight-savings-starts, calendar-daylight-savings-ends):
4461 * calendar/cal-menu.el (holidays-in-diary-buffer): Declare for compiler.
4463 * calendar/calendar.el (calendar-version): Use emacs-version and
4464 make it obsolete. Move to end.
4465 (calendar-offset, view-diary-entries-initially)
4466 (mark-diary-entries-in-calendar, calendar-remove-frame-by-deleting)
4467 (view-calendar-holidays-initially, all-hebrew-calendar-holidays)
4468 (all-christian-calendar-holidays, all-islamic-calendar-holidays)
4469 (all-bahai-calendar-holidays, calendar-load-hook)
4470 (initial-calendar-window-hook, today-visible-calendar-hook)
4471 (today-invisible-calendar-hook, calendar-move-hook)
4472 (diary-nonmarking-symbol, hebrew-diary-entry-symbol)
4473 (islamic-diary-entry-symbol, bahai-diary-entry-symbol)
4474 (diary-include-string, sexp-diary-entry-symbol)
4475 (abbreviated-calendar-year, american-date-diary-pattern)
4476 (european-date-diary-pattern, european-calendar-display-form)
4477 (american-calendar-display-form, print-diary-entries-hook)
4478 (list-diary-entries-hook, diary-hook, diary-display-hook)
4479 (nongregorian-diary-listing-hook, mark-diary-entries-hook)
4480 (nongregorian-diary-marking-hook, diary-list-include-blanks)
4481 (holidays-in-diary-buffer, general-holidays, oriental-holidays)
4482 (local-holidays, other-holidays, hebrew-holidays-1)
4483 (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
4484 (hebrew-holidays, christian-holidays, islamic-holidays)
4485 (bahai-holidays, solar-holidays, calendar-setup)
4486 (calendar-week-start-day): Remove autoload cookies.
4487 (diary-glob-file-regexp-prefix): Doc fix.
4488 (calendar-goto-info-node): Use `info' rather than `Info-find-node'.
4489 (Info-find-emacs-command-nodes, Info-find-node): Remove declarations.
4490 (calendar-week-start-day, calendar-debug-sexp): Move to start.
4492 * calendar/solar.el: Remove leading `*' from defcustom doc-strings.
4493 (calendar-time-display-form, calendar-latitude)
4494 (calendar-longitude, solar-equinoxes-solstices): Remove autoload
4496 (calendar-latitude, calendar-longitude): Move functions after
4498 (diary-sabbath-candles-minutes): Move to start.
4499 (solar-setup): Use or rather than if.
4500 (solar-sin-degrees, solar-cosine-degrees, solar-tangent-degrees):
4501 Remove condition-case.
4502 (solar-atn2): Use zerop.
4503 (solar-equinoxes-solstices): Doc fix.
4505 * mail/supercite.el: Remove leading `*' from defcustom doc-strings.
4506 (sc-mode-map-prefix): Doc fix. Make it a defcustom.
4508 * textmodes/org.el (org-agenda-sunrise-sunset): Require solar.
4509 (calendar-longitude, calendar-latitude, calendar-location-name):
4510 Declare for compiler.
4512 2008-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
4514 * arc-mode.el (archive-ar-file-header-re): New const.
4515 (archive-ar-summarize, archive-ar-extract): New funs.
4516 (archive-find-type): Recognize ar archives.
4518 * vc-bzr.el (vc-bzr-resolve-when-done, vc-bzr-find-file-hook):
4521 * info.el (Info-bookmark-make-cell): Don't use the info-node argument.
4523 2008-03-06 Lennart Borgman <lennart.borgman@gmail.com>
4525 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
4526 Replace :enable (mark-active) with :enable mark-active.
4528 2008-03-06 Juanma Barranquero <lekktu@gmail.com>
4530 * vms-patch.el (make-legal-file-name): New obsolete alias.
4531 (make-valid-file-name): Rename from `make-legal-file-name'.
4532 (make-auto-save-file-name): Use it.
4534 * calendar/calendar.el (calendar-date-is-legal-p): New obsolete alias.
4535 (calendar-date-is-valid-p): Rename from `calendar-date-is-legal-p'.
4536 (calendar-date-is-visible-p, mark-visible-calendar-date): Use it.
4538 * textmodes/org.el (org-export-html-style): Doc fix.
4539 (org-get-legal-level): New obsolete alias.
4540 (org-get-valid-level): Rename from `org-get-legal-level'.
4541 (org-promote, org-demote, org-archive-subtree)
4542 (org-remember-handler, org-refile, org-put-clock-overlay): Use it.
4544 2008-03-06 Jan Djärv <jan.h.d@swipnet.se>
4546 * term/x-win.el (x-gtk-stock-map): Add bookmark_add.
4548 * vc.el (vc-status-tool-bar-map, vc-status-toggle-mark-file)
4549 (vc-status-toggle-mark): New functions.
4550 (vc-status-mode): Set tool bar map.
4552 2008-03-05 Chong Yidong <cyd@stupidchicken.com>
4554 * emacs-lisp/lisp.el (parens-require-spaces): Doc fix.
4555 Reported by Drew Adams <drew.adams@oracle.com>.
4557 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
4559 * subr.el (read-quoted-char): Resolve modifers of the character
4562 * comint.el (comint-exec-1): Don't change the coding-system for
4563 decoding to dos-like EOL.
4564 (comint-carriage-motion): Fully rewrite.
4566 2008-03-05 Juanma Barranquero <lekktu@gmail.com>
4568 * epg.el (epg-context-include-certs): Reflow docstring.
4569 (epg-start-sign-keys, epg-sign-keys, epg-context-armor)
4570 (epg-context-signers, epg-context-sig-notations, epg-context-set-armor)
4571 (epg-context-set-signers, epg-context-set-sig-notations)
4572 (epg-make-import-status, epg-make-import-result)
4573 (epg-start-delete-keys): Fix typos in docstrings.
4574 (epg-start-sign-keys, epg-sign-keys):
4575 Fix typos in obsolescence declarations.
4577 * iswitchb.el: Don't check for `cadr' and `last'.
4578 (iswitchb-define-mode-map, iswitchb-default-keybindings):
4579 Add obsolescence declaration and remove redundant info from docstring.
4580 (iswitchb-set-common-completion, iswitchb-set-matches)
4581 (iswitchb-get-matched-buffers, iswitchb-visit-buffer): Use `let'.
4582 (recentf-list, most-len, most-is-exact):
4583 Don't wrap defvars within `eval-when-compile'.
4585 2008-03-05 Glenn Morris <rgm@gnu.org>
4587 * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
4588 * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
4589 * ediff-diff.el, ediff-help.el, ediff-hook.el, ediff-init.el:
4590 * ediff-mult.el, ediff-util.el, ediff-wind.el: Expand all
4591 ediff-cond-compile-for-xemacs-or-emacs calls to a featurep test.
4593 * ediff-hook.el (ediff-window-setup-function): Don't autoload
4594 declaration for compiler.
4595 (ediff-xemacs-init-menus): Use when rather than if.
4597 * ediff-init.el (top-level, ediff-frame-iconified-p): Simplify
4599 (ediff-read-event, ediff-overlayp, ediff-make-overlay)
4600 (ediff-delete-overlay): Move the XEmacs test inside the definition.
4602 * ediff-mult.el (ediff-get-meta-info): Use or and unless rather than if.
4604 * ediff-util.el (ediff-kill-bottom-toolbar): Place (ediff-use-toolbar-p)
4605 test inside XEmacs test.
4606 (ediff-make-bottom-toolbar): Place whole cond inside XEmacs test,
4607 since it was doing nothing on Emacs.
4608 (ediff-make-bullet-proof-overlay): Use when rather than if.
4610 * ediff-wind.el (ediff-select-lowest-window): Use when rather than if.
4611 (ediff-setup-control-frame): Remove
4612 ediff-cond-compile-for-xemacs-or-emacs, since it is already inside
4613 a (featurep 'xemacs) test.
4615 2008-03-05 Jay Belanger <jay.p.belanger@gmail.com>
4617 * calc/calc-ext.el (calc-extended-command-history): New variable.
4618 (calc-exectute-extended-command): Use `calc-extended-command-history'.
4620 2008-03-05 Dan Nicolaescu <dann@ics.uci.edu>
4622 * bindings.el (mode-line-remote): Add mouse-face. Improve tooltip.
4623 (standard-mode-line-position): Add mouse-face.
4625 * progmodes/compile.el (compilation-menu-map):
4626 (compilation-mode-map):
4627 * progmodes/grep.el (grep-mode-map): Add :help.
4629 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Define and
4630 initialize in one step. Add :help. Use :enable to activate menu
4631 items. Show the key binding for edebug-defun.
4632 (lisp-interaction-mode-map): Add a menu.
4634 * term.el (term-mode-map): Define and initialize in one step.
4636 * ediff-init.el (ediff-color-display-p): Simplify.
4637 (Xor): Remove unused function.
4638 (ediff-with-syntax-table): Simplify for Emacs.
4640 * ediff-hook.el (menu-bar-ediff-menu): Don't depend on the
4641 menu-bar being loaded, it always is.
4643 2008-03-05 Glenn Morris <rgm@gnu.org>
4645 * textmodes/tex-mode.el (tex-mode): Suppress warning about
4646 multiple definitions when compiling.
4648 2008-03-04 Alan Mackenzie <acm@muc.de>
4650 * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix coding bug.
4652 * progmodes/cc-langs.el (c-before-font-lock-function): Fix bug in
4653 doc-string, "c-old-LEN" -> "c-old-END".
4655 2008-03-04 Jason Rumney <jasonr@gnu.org>
4657 * nxml/rng-nxml.el (rng-preferred-prefix-alist): Add dublin core
4660 2008-03-04 Glenn Morris <rgm@gnu.org>
4662 * textmodes/tex-mode.el (tex-cmd-bibtex-args): Add :version and :group.
4664 * ediff-init.el (ediff-clear-fine-diff-vector): Use mapc rather
4667 2008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
4669 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
4670 (byte-compile-nilconstp): Can't use recursion in a defsubst.
4672 * textmodes/tex-mode.el (latex-mode): Remove % from paragraph-separate
4673 so that M-q can fill comments.
4674 (tex-executable-exists-p, tex-compile): Extend with special syntax for
4675 commands implemented in elisp.
4676 (tex-compile-commands): Add an entry to use doc-view for pdf files.
4677 (tex-format-cmd): New function.
4678 (tex-compile): Use it to let the user specify default arguments.
4679 (tex-cmd-bibtex-args): New var.
4680 (tex-cmd-doc-view): New function.
4682 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
4684 * faces.el (face-spec-set): Fix typos in docstring.
4686 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
4688 * bindings.el (mode-line-column-line-number-mode-map): New variable.
4689 (standard-mode-line-position): Use it to add a menu for toggling
4690 column number and line number display.
4692 2008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
4694 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
4695 Remove optimization that was working around the form-code-walker bug.
4697 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
4698 Walk into the body of lambdas after byte-compile-unfold-lambda.
4700 2008-03-03 Glenn Morris <rgm@gnu.org>
4702 * emulation/viper-util.el (viper-frame-value): Prefer buffer-local
4703 value, if set, over frame value.
4705 * simple.el (transient-mark-mode): Don't turn on by default.
4707 * net/tls.el (open-tls-stream): Restore the 2007-11-04 change
4708 accidentally removed by the 2007-12-05 merge from Gnus.
4710 2008-03-02 Dan Nicolaescu <dann@ics.uci.edu>
4712 * progmodes/compile.el (compilation-menu-map): Add menu entries
4715 2008-03-01 Dan Nicolaescu <dann@ics.uci.edu>
4716 Glenn Morris <rgm@gnu.org>
4718 * emacs-lisp/bytecomp.el (byte-recompile-directory)
4719 (byte-compile-file, batch-byte-compile, batch-byte-compile-file):
4720 Give a `bytecomp-' prefix to local variables with common names.
4722 2008-03-01 Glenn Morris <rgm@gnu.org>
4724 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Restore
4725 code commented out 2007-11-10.
4727 * emulation/edt.el (zmacs-region-stays): Define for compiler once only.
4729 * emulation/viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
4731 * emulation/viper-cmd.el, emulation/viper-ex.el:
4732 * emulation/viper-init.el, emulation/viper-keym.el:
4733 * emulation/viper-mous.el, emulation/viper-util.el:
4734 * emulation/viper.el:
4735 Expand all viper-cond-compile-for-xemacs-or-emacs calls to a
4738 Replace obselete frame-local variables with frame-parameters.
4739 * emulation/viper-init.el (viper-replace-overlay-cursor-color)
4740 (viper-insert-state-cursor-color, viper-emacs-state-cursor-color)
4741 (viper-vi-state-cursor-color): Only call make-variable-frame-local
4743 * emulation/viper-util.el (viper-frame-value): New macro.
4744 * emulation/viper-cmd.el (viper-insert-state-post-command-sentinel)
4745 (viper-R-state-post-command-sentinel)
4746 (viper-replace-state-post-command-sentinel)
4747 (viper-change-state-to-insert, viper-change-state-to-emacs):
4748 * emulation/viper-util.el (viper-set-cursor-color-according-to-state)
4749 (viper-save-cursor-color, viper-get-saved-cursor-color-in-replace-mode)
4750 (viper-get-saved-cursor-color-in-insert-mode)
4751 (viper-get-saved-cursor-color-in-emacs-mode, viper-set-replace-overlay):
4752 Use viper-frame-value for viper-replace-overlay-cursor-color,
4753 viper-emacs-state-cursor-color, viper-insert-state-cursor-color, and
4754 viper-vi-state-cursor-color values.
4756 * emulation/viper-cmd.el (zmacs-region-stays):
4757 * emulation/viper-util.el (zmacs-region-stays): No need to define
4760 * emulation/viper-keym.el (viper-add-keymap): Use mapc rather than
4763 * emulation/viper-mous.el (viper-counting-clicks-p): Only define
4766 * emulation/viper-util.el (viper-set-minibuffer-overlay): Use when
4769 2008-03-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
4771 * whitespace.el: New version 9.3. As the glyph code generation was
4772 fixed, it is possible now to use character code above ?\x1FFFF in the
4773 display table. Fix `whitespace-indentation-regexp' to not include an
4774 extra ending character. Reported by Michael Welsh Duggan
4775 <mwd@cert.org>. Added hook actions when buffer is written or killed as
4776 the original whitespace package had. Suggested by Eric Cooper
4777 <ecc@cmu.edu>. Doc fix.
4778 (whitespace-action): New option.
4779 (whitespace-display-mappings): Changed default newline visualization to
4780 display downwards arrow, as the glyph code generation was fixed.
4781 (whitespace-unload-function): Assure that all local whitespace mode is
4783 (whitespace-global-modes): Fix type customization.
4784 (whitespace-mode, global-whitespace-mode, whitespace-cleanup-region)
4785 (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
4786 (whitespace-turn-off, whitespace-color-on, whitespace-display-char-on):
4788 (whitespace-buffer): Command removed.
4789 (whitespace-trailing-regexp, whitespace-mark-x)
4790 (whitespace-display-window, whitespace-action-when-on)
4791 (whitespace-add-local-hook, whitespace-remove-local-hook)
4792 (whitespace-write-file-hook, whitespace-kill-buffer-hook)
4793 (whitespace-action): New funs.
4794 (whitespace-report-list, whitespace-report-text)
4795 (whitespace-report-buffer-name): New consts.
4796 (whitespace-report, whitespace-report-region): New commands.
4798 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
4800 * disp-table.el (make-glyph-code): Don't test the result of
4801 `face-id', which already signals an error for invalid faces.
4802 (glyph-face): Simplify.
4804 * desktop.el (desktop-read): Set `desktop-dirname' to nil before
4805 running `desktop-not-loaded-hook' to allow modifying it.
4806 Don't show warning message if `desktop-dirname' was modified.
4808 2008-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
4810 * diff-mode.el (diff-sanity-check-hunk): Only accept an empty line if
4811 we still expect more lines.
4813 * textmodes/fill.el (fill-comment-paragraph): Don't try to do
4814 comment-paragraph filling if the commark doesn't match
4817 2008-03-01 Daiki Ueno <ueno@unixuser.org>
4819 * international/utf-7.el (utf-7-encode): Never skip the trailing - for
4822 2008-03-01 Jason Rumney <jasonr@gnu.org>
4824 * files.el (make-auto-save-file-name): Encode more characters in
4825 non-file buffer names. Use url-encoding.
4827 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
4829 * net/net-utils.el (ftp-program): Fix typo in docstring.
4830 (ifconfig-program-options, netstat-program-options)
4831 (arp-program-options, route-program-options, nslookup-program-options)
4832 (ftp-program-options, smbclient-program-options)
4833 (dns-lookup-program-options, arp, route): Doc fixes.
4835 * progmodes/gdb-ui.el (gdb-pc-address, gdb-source-file-list)
4836 (gdb-cpp-define-alist-program, gdb-mouse-jump, gdb-get-buffer-create)
4837 (gdb-set-gud-minor-mode-existing-buffers-1, gdb-debug-log):
4838 Fix typos in docstrings.
4839 (gdb-pending-triggers): Reflow docstring.
4840 (gdb, gdb-init-1): Fix typos in docstrings of gud-def definitions.
4842 2008-03-01 Alan Mackenzie <acm@muc.de>
4844 * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix a bug on
4847 2008-03-01 Juanma Barranquero <lekktu@gmail.com>
4849 * emulation/cua-base.el (cua-remap-control-z): Fix typo in docstring.
4851 2008-02-29 Kim F. Storm <storm@cua.dk>
4853 * emulation/cua-base.el (cua-remap-control-v)
4854 (cua-remap-control-z): New defcustoms.
4855 (cua-mode): Add them to set-after property.
4856 (cua--init-keymaps): Use them.
4857 Add C-x/C-c home, end, next, and prior to cua--prefix-repeat-keymap.
4859 * help.el (view-emacs-todo): Rename from view-todo.
4860 (describe-gnu-project): Rename from describe-project. Users changed.
4861 (view-help-file): New helper function.
4862 (describe-distribution, describe-copying, describe-gnu-project)
4863 (view-todo, view-order-manuals, view-emacs-problems): Use it.
4864 (view-emacs-debugging, view-external-packages): New commands.
4865 (help-map): Move describe-distribution to C-h C-o (ordering).
4866 Move view-emacs-problems to C-h C-p (problems).
4867 Bind view-emacs-debugging to C-h C-d (debugging).
4868 Bind view-external-packages to C-h C-e (extras).
4869 (help-for-help-internal): Cleanup and align descriptions.
4870 Remove command names to reduce clutter.
4872 2008-02-29 Nick Roberts <nickrob@snap.net.nz>
4874 * vc.el (vc-set-mode-line-busy-indicator): Use shorter message
4875 and quieter face (not a warning).
4877 2008-02-29 Dan Nicolaescu <dann@ics.uci.edu>
4879 * vc.el (vc-status-crt-marked): New variable.
4880 (vc-status-mode): Make it local.
4881 (vc-status-refresh): Use it to save the marked files.
4882 (vc-update-vc-status-buffer): Use it to restore the marked files.
4884 * vc-svn.el (vc-svn-after-dir-status):
4885 * vc-hg.el (vc-hg-after-dir-status): Clean up the temporary buffer.
4887 2008-02-29 Glenn Morris <rgm@gnu.org>
4889 * allout.el (allout-topic-encryption-bullet)
4890 (allout-passphrase-verifier-handling, allout-passphrase-hint-handling)
4891 (allout-encrypt-unencrypted-on-saves): Change defcustom :version
4894 * net/imap.el (imap-ping-server):
4895 * net/tls.el (tls-checktrust, tls-untrusted, tls-hostmismatch):
4896 Change defcustom :version from 23.0 to 23.1.
4898 2008-02-29 Juanma Barranquero <lekktu@gmail.com>
4900 * desktop.el (desktop-save): Save the buffer name if the
4901 uniquified base name is empty.
4903 2008-02-29 Nick Roberts <nickrob@snap.net.nz>
4905 * progmodes/gdb-ui.el (gdb-info-stack-custom): Apply function-name-face
4906 correctly when user has "set print address off".
4908 2008-02-28 Juanma Barranquero <lekktu@gmail.com>
4910 * cus-edit.el (custom-mode, custom-mode-hook): Use 23.1 as
4911 version number of the next major Emacs release, not 23.0.
4913 * longlines.el (longlines-unload-function): New function.
4915 2008-02-28 Juri Linkov <juri@jurta.org>
4917 * startup.el (normal-splash-screen): Add argument `concise'.
4918 Remove unused binding `prev-buffer'. Let-bind `splash-buffer'
4919 to the created buffer. If `concise' is non-nil, call
4920 `display-buffer', otherwise `switch-to-buffer'. Doc fix.
4921 (display-startup-screen): Add argument `concise' to the call to
4922 `normal-splash-screen'.
4924 2008-02-28 Kim F. Storm <storm@cua.dk>
4926 * startup.el (startup-echo-area-message): Check for about-emacs.
4928 2008-02-28 Juri Linkov <juri@jurta.org>
4930 * startup.el: Always add initial message to *scratch* buffer if
4931 `initial-scratch-message' is non-nil regardless of the value of
4932 `inhibit-startup-screen'.
4933 (inhibit-startup-screen, initial-scratch-message): Doc fix.
4934 (command-line-1): Move code that inserts `initial-scratch-message'
4935 up before the if-form that checks for `inhibit-startup-screen'.
4936 Suggested by Jonathan Rockway <jon@jrock.us>.
4938 2008-02-28 Juri Linkov <juri@jurta.org>
4940 * cus-edit.el (custom-mode-map, custom-mode-link-map):
4941 Rename `custom-mode' to `Custom-mode' in docstrings.
4942 (custom-buffer-create-internal, customize-browse):
4943 Rename `custom-mode' to `Custom-mode'.
4944 (custom-mode-hook): Rename to `Custom-mode-hook'.
4945 (Custom-mode-hook): Renamed from `custom-mode-hook'.
4946 (custom-mode): Rename to `Custom-mode'.
4947 (Custom-mode): Renamed from `custom-mode'. Doc fix.
4948 (custom-mode): Add backward-compatible non-interactive variant of
4949 `Custom-mode' that simply calls `Custom-mode'. Mark it obsoleted.
4950 (custom-mode-hook): Mark it as obsolete alias of `Custom-mode-hook'.
4952 * info-look.el: Rename `custom-mode' to `Custom-mode'.
4954 * emulation/viper.el (viper-emacs-state-mode-list):
4955 Rename `custom-mode' to `Custom-mode'.
4957 * menu-bar.el (menu-bar-search-menu, menu-bar-replace-menu):
4958 Capitalize "Tagged Files".
4959 (minibuffer-local-map): Add menu items for next/previous
4960 history elements and isearch history forward/backward.
4962 * progmodes/hideshow.el (hs-minor-mode-menu): Compare
4963 `hs-isearch-open' with t instead of `comment' in :selected
4964 for "Code and Comment blocks" menu item.
4966 2008-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
4968 * uniquify.el (uniquify-buffer-base-name): Undo last change.
4969 Should be done in desktop.el instead.
4971 2008-02-28 Glenn Morris <rgm@gnu.org>
4973 * autoinsert.el (auto-insert-alist): Update to FDL 1.2.
4975 * emacs-lisp/byte-run.el (make-obsolete): Doc fix.
4977 * mail/emacsbug.el: Remove leading `*' from defcustom doc-strings.
4978 (Info-menu, Info-goto-node): Remove declarations.
4979 (report-emacs-bug-info): Use info rather than Info-goto-node.
4981 * progmodes/idlwave.el (Info-goto-node): Remove declaration.
4982 (idlwave-convert-xml-system-routine-info): Don't require xml.
4983 (idlwave-show-commentary, idlwave-shell-show-commentary):
4984 Don't require finder.
4985 (idlwave-info): Don't require info. Use info rather than
4988 * textmodes/org.el (Info-goto-node): Remove declaration.
4989 (org-info): Use info rather than Info-goto-node.
4991 * textmodes/reftex.el (reftex-show-commentary): Don't require finder.
4992 (reftex-info): Don't require info. Use info rather than Info-goto-node.
4994 2008-02-28 Dan Nicolaescu <dann@ics.uci.edu>
4996 * progmodes/hideshow.el (hs-minor-mode-menu): Add some options to
4999 * vc.el (vc-deduce-fileset, vc-next-action, vc-start-entry)
5000 (vc-finish-logentry): Check for vc-status-mode, not only for
5003 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
5005 * isearch.el (isearch-printing-char): Don't check
5006 keyboard-coding-system.
5007 Call isearch-process-search-multibyte-characters only when
5008 current-input-method is non-nil.
5010 2008-02-27 Kim F. Storm <storm@cua.dk>
5012 * disp-table.el (make-glyph-code): Encode as cons if face id > 63.
5013 (glyph-char, glyph-face): Handle cons encoding.
5015 2008-02-27 Juanma Barranquero <lekktu@gmail.com>
5017 * uniquify.el (uniquify-buffer-base-name): If the base name is an
5018 empty string, return nil to allow the caller to default to the
5019 buffer name. Reported by Martin Fischer <parozusa@web.de>.
5021 * tool-bar.el (tool-bar-setup): Doc fix.
5023 * mail/supercite.el (sc-describe):
5024 Fix typos in obsolescence declaration.
5026 2008-02-27 Glenn Morris <rgm@gnu.org>
5028 * autoinsert.el (auto-insert-alist): Change permission text to
5029 match FSF's GPLv3 form.
5031 * mail/supercite.el (sc-cite-original): Doc fix.
5032 (sc-version): Make obsolete.
5033 (sc-describe): Show the SC info page. Make obsolete.
5035 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
5037 * simple.el (set-mark-command): Deactivate mark on second C-SPC C-SPC
5038 when using transient-mark-mode.
5039 (default-indicate-unused-lines): Remove unused var.
5041 2008-02-26 Jan Djärv <jan.h.d@swipnet.se>
5043 * progmodes/grep.el (grep-mode-tool-bar-map): Change place on next
5046 * progmodes/compile.el (compilation-mode-tool-bar-map): The same.
5048 2008-02-26 Glenn Morris <rgm@gnu.org>
5050 * net/net-utils.el (top-level): Don't require comint when compiling.
5051 (nslookup-font-lock-keywords): Don't require font-lock.
5052 Use font-lock faces rather than variables.
5053 (nslookup, ftp, smbclient, network-service-connection):
5054 Don't require comint.
5055 (comint-prompt-regexp, comint-input-autoexpand)
5056 (comint-input-ring): Declare for compiler.
5057 (comint-mode, ffap-string-at-point, comint-exec): Autoload.
5058 (dns-lookup-host): Don't require ffap. Remove `with-no-warnings'.
5060 * ibuffer.el (ibuffer-do-toggle-read-only): Don't use `iff' in
5063 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
5065 * doc-view.el (doc-view-current-page): Add a `win' argument.
5067 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
5069 * doc-view.el (doc-view-conversion-buffer): Give it an internal name.
5070 Demote it to plain defvar.
5071 (doc-view-conversion-refresh-interval): Reduce interval.
5072 (doc-view-goto-page): Allow moving to pages not yet rendered.
5073 (doc-view-goto-page): Construct a file name rather than extracting it
5074 from doc-view-current-files.
5075 (doc-view-kill-proc): Ignore errors from kill-process.
5076 (doc-view-pdf/ps->png-sentinel): Die gracefully if the buffer is dead.
5077 (doc-view-insert-image): Use appropriate text if the page hasn't been
5078 rendered yet. Adjust scrolling so the text is displayed.
5079 (doc-view-display): Detect not just that a page is available, but also
5080 that it wasn't available before, so as to avoid refreshing all pages
5082 (doc-view-mode): Make doc-view-cache-directory if needed.
5084 2008-02-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5086 * ibuffer.el (ibuffer-do-toggle-read-only): New optional arg as in
5089 * textmodes/bibtex.el (bibtex-format-entry): Handle error message
5090 refering to a missing required field with the OPT prefix.
5091 Make unwindform more robust.
5093 * textmodes/bibtex.el: Remove support for hideshow minor mode as
5094 it duplicates the bibtex support in progmodes/hideshow.el.
5095 * progmodes/hideshow.el (hs-special-modes-alist): Allow bibtex
5096 entries that do not start at the beginning of a line.
5098 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
5100 * files.el (shell-quote-wildcard-pattern): Quote ' and " as well.
5102 2008-02-25 Robert J. Chassell <bob@rattlesnake.com>
5104 * help-fns.el (describe-variable): Add phrases about
5105 initialization file with and without customization;
5106 use new button type help-info-variable.
5108 * help-mode.el (help-info-variable):
5109 New button able to read Info files for help-fns.el.
5111 2008-02-25 Jan Djärv <jan.h.d@swipnet.se>
5113 * progmodes/grep.el (grep-mode-tool-bar-map): New variable.
5114 (grep-mode): Use grep-mode-tool-bar-map.
5116 * progmodes/compile.el (tool-bar): Require tool-bar.
5117 (compilation-mode-tool-bar-map): New variable.
5118 (compilation-mode): Use compilation-mode-tool-bar-map.
5120 * term/x-win.el (x-gtk-stock-map): Add cancel. Remove extensions.
5122 2008-02-25 Glenn Morris <rgm@gnu.org>
5124 * vc-sccs.el (vc-sccs-diff): Fix setting of oldvers and newvers.
5126 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
5128 * diff-mode.el (diff-file-junk-re): New const.
5129 (diff-beginning-of-file-and-junk): Use it.
5130 (diff-file-kill): Make sure we were really inside a file diff.
5132 * diff-mode.el: Make it more robust in the presence of empty context
5133 lines in unified hunks.
5134 (diff-valid-unified-empty-line): New var.
5135 (diff-unified->context, diff-sanity-check-hunk): Obey it.
5136 (diff-end-of-hunk): Obey it. New arg `donttrustheader'.
5137 (diff-fixup-modifs, diff-post-command-hook): Use this new arg.
5138 (diff-hunk-header-re-unified): New const.
5139 (diff-font-lock-keywords, diff-hunk-header-re, diff-split-hunk)
5140 (diff-fixup-modifs, diff-unified->context, diff-next-complex-hunk)
5141 (diff-sanity-check-hunk): Use it.
5143 * diff-mode.el (diff-beginning-of-file-and-junk): If we're on the
5144 Index: line, don't search backward for the previous one.
5146 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
5148 * international/fontset.el (setup-default-fontset): Add non-OTF
5149 lao font for lao script.
5151 * language/tibetan.el: Register tibetan-composition-function in
5152 composition-function-table.
5154 * language/tibet-util.el (tibetan-composition-function):
5155 Adjust for the new calling way (argument changed). Try font-shape-text
5158 * language/lao.el: Register lao-composition-function in
5159 composition-function-table.
5161 * language/lao-util.el (lao-composition-function): Adjust for the new
5162 calling way (argument changed). Try font-shape-text if possible.
5164 2008-02-25 Jason Rumney <jasonr@gnu.org>
5166 * files.el (file-name-invalid-regexp): Fix octal/decimal confusion.
5168 2008-02-25 Juri Linkov <juri@jurta.org>
5170 * isearch.el (isearch-fail): Use "RosyBrown1" for a light
5171 background, "red4" for a dark background, "red" for 16 and
5172 8 colors, "grey" for grayscale, and inverse video otherwise.
5174 (isearch-message): Keep the original isearch-message intact, and
5175 add text properties to it where necessary. Add `isearch-error' to
5176 the condition that checks if isearch is unsuccessful.
5178 2008-02-24 Juri Linkov <juri@jurta.org>
5180 * progmodes/compile.el (compilation-handle-exit):
5181 Use compilation-error face instead of font-lock-warning-face.
5182 Display the same message in the minibuffer as is inserted
5183 at the end of the compilation buffer.
5185 2008-02-24 Glenn Morris <rgm@gnu.org>
5187 * vc-cvs.el (vc-cvs-register): Fix registering of directories in
5190 * vc-mcvs.el (vc-mcvs-register): Fix let-binding (for use of `file').
5192 * vc-rcs.el (vc-rcs-register): Fix treatment of directories in
5193 multiple file case. Use a single `let' rather than two.
5195 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
5197 * progmodes/compile.el (compilation-start): Specify a face for
5199 (compilation-handle-exit): Specify a face and a tooltip for
5202 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
5204 * hilit-chg.el: Remove spurious * in defcustom docstrings.
5205 (hilit-chg-make-ov): Simplify.
5206 (hilit-chg-fixup): Use remove-overlays.
5207 (hilit-chg-set-face-on-change): Remove redundant call to
5208 `remove-text-properties'.
5210 * dired.el (dired-mark-prompt): Don't count/display the t element.
5211 Reported by Carsten Blaauw <it-media.blaauw@daimler.com>.
5213 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
5215 * progmodes/verilog-mode.el (eval-when-compile): Don't define
5217 (verilog-xemacs-menu): Add :keys for C-M-a, C-M-e and C-M-h.
5218 Remove. Move contents to the only use ...
5219 (verilog-menu): ... here.
5220 (verilog-statement-menu): Remove. Move contents to the only use ...
5221 (verilog-stmt-menu): ... here.
5222 (verilog-mark-defun): Simply call mark-defun for emacs.
5223 (occur-pos-list): Declare for byte compiler.
5224 (mode-popup-menu): Don't defvar.
5225 (verilog-add-statement-menu): Remove.
5226 (verilog-mode-hook): Don't add verilog-add-statement-menu.
5227 (verilog-mode): Call easy-menu-add and set mode-popup-menu for XEmacs.
5229 2008-02-24 Michael McNamara <mac@mail.brushroad.com>
5231 * progmodes/verilog-mode.el (verilog-xemacs-menu): Remove XEmacs
5233 (verilog-font-grouping-keywords-face): Make the begin..end
5234 keywords standout more than other verilog keywords.
5235 (verilog-type-font-keywords): Move the begin..end out of this list
5236 to facilitate making them to (potentially) stand out more.
5237 (verilog-backward-token): Fix indent of bare always{_*}?, initial,
5238 function & task blocks.
5239 (verilog-behavioral-block-beg-re): Fix indent of bare always{_*}?,
5240 initial, function & task blocks.
5241 (verilog-forward-sexp): Handle the new "disable fork" statement of
5243 (verilog-beg-block-re-ordered): Handle the new "disable fork"
5244 statement of IEEE-1800 Verilog.
5245 (verilog-calc-1): Handle the new "disable fork" statement of
5247 (verilog-disable-fork-re): Add const to help handle the new
5248 "disable fork" statement of IEEE-1800 Verilog.
5249 (verilog-declaration-core-re): Add port directions by themselves,
5250 with no qualification, as base item of a declaration.
5251 (verilog-pretty-declarations): Add new flag to ask it to refrain
5252 from printing to the message buffer.
5253 (verilog-pretty-expr): Add a QUIET flag to ask it to refrain from
5254 printing to the message buffer. Improve handling of the many
5255 types of expression line up.
5256 (verilog-just-one-space): Remove printing of an empty message.
5257 (verilog-get-lineup-indent): Rework to support the better handling
5258 of expression lineup for verilog-pretty-expr.
5259 (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
5261 2008-02-24 Alan Mackenzie <acm@muc.de>
5263 * progmodes/cc-mode.el (c-extend-region-for-CPP): Bug fix from
5266 2008-02-24 Nick Roberts <nickrob@snap.net.nz>
5268 * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint): Fall back
5269 to mouse-set-point in buffers that aren't associated with files.
5271 * progmodes/gud.el: Rename menu item to "Show GUD tooltips".
5273 2008-02-24 Alan Mackenzie <acm@muc.de>
5275 Set of changes so that "obtrusive" syntactic elements in a
5276 C/C++/ObjC preprocessor line (e.g. an unbalanced string quote or
5277 unmatched paren) don't interact syntactically with stuff outside
5280 * progmodes/cc-awk.el (c-awk-beyond-logical-line, c-awk-old-ByLL):
5281 Replace c-awk-end-of-logical-line and c-awk-old-EoLL to solve an
5283 (c-awk-record-region-clear-NL): Replaces c-awk-before-change, with
5284 a bit of refactoring.
5285 (c-awk-extend-and-syntax-tablify-region): Takes some of the
5286 functionality of c-awk-advise-fl-for-awk-region, which has been
5289 * progmodes/cc-defs.el (c-clear-char-property-with-value-function)
5290 (c-clear-char-property-with-value): New function and macro which
5291 remove text-properties `equal' to a supplied value.
5293 * progmodes/cc-engine.el: Comment about text properties amended.
5295 * progmodes/cc-fonts.el (c-cpp-matchers): Make it put regexp
5296 parens around "error\\|warning".
5298 * progmodes/cc-langs.el (c-get-state-before-change-function)
5299 (c-before-font-lock-function, c-anchored-cpp-prefix):
5300 New language variables.
5301 (c-cpp-message-directives): Handle "#warning" in C, C++ and ObjC.
5303 * progmodes/cc-mode.el (c-basic-common-init): C and ObjC now use
5304 syntax-table text properties.
5305 (c-common-init): Call language specific before/after-change
5306 functions at mode initialisation.
5307 (c-new-BEG, c-new-END, c-old-BOM, c-old-EOM): New variables.
5308 (c-extend-region-for-CPP, c-neutralize-CPP-line)
5309 (c-neutralize-syntax-in-CPP): New functions.
5310 (c-before-change, c-after-change): Call the new language specific
5311 change functions defined in cc-langs.el.
5312 (c-advise-fl-for-region): New macro.
5313 (awk-mode): Remove AWK specific stuff which has been refactored
5314 into language independent stuff.
5316 2008-02-24 Nick Roberts <nickrob@snap.net.nz>
5318 * progmodes/gdb-ui.el (gdba): Recreate as an alias for gdb.
5319 (gdb): (Re)set gdb-flush-pending-output to nil here...
5320 (gdb-init-1): ...instead of here (before gdb-prompt).
5322 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
5324 * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
5325 Recognize ''' just like any other char-constant.
5327 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
5329 * vc-hooks.el (vc-find-root): Remove initial loop because it's not
5330 careful enough. Detect the uid-change all within the main loop.
5332 2008-02-24 Stefan Monnier <monnier@pastel.home>
5334 * textmodes/sgml-mode.el (sgml-mode): Fix comment syntax.
5336 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
5338 * hilit-chg.el (highlight-save-buffer-state): New macro.
5339 (highlight-save-buffer-state, hilit-chg-set-face-on-change)
5340 (hilit-chg-clear): Use it to preserve the modified-p flag.
5341 (highlight-changes-rotate-faces): Don't mess with the undo-list.
5343 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
5345 * font-lock.el (font-lock-set-defaults): Unset previously set variables
5348 2008-02-24 Ævar Arnfjörð Bjarmason <avar@cpan.org> (tiny change)
5350 * net/rcirc.el (rcirc-url-regexp): Replace definition by copying
5351 from gnus-button-url-regexp.
5353 2008-02-24 Eli Zaretskii <eliz@gnu.org>
5355 * progmodes/compile.el (compilation-next-error): Doc fix.
5356 (compilation-find-file): Doc fix.
5358 2008-02-24 Glenn Morris <rgm@gnu.org>
5360 * net/net-utils.el (ipconfig-program, ipconfig-program-options):
5361 Add obsolete aliases to the old names.
5363 2008-02-24 Richard Stallman <rms@gnu.org>
5365 * net/net-utils.el (ifconfig): Rename from ipconfig.
5366 (ipconfig): Alias to ifconfig.
5367 (ifconfig-program): Rename from ipconfig-program.
5368 (ifconfig-program-options): Rename from ipconfig-program-options.
5370 2008-02-24 Michael McNamara <mac@mail.brushroad.com>
5372 * progmodes/verilog-mode.el (verilog-declaration-core-re):
5373 Add port directions by themselves, with no qualification, as base
5374 item of a declaration.
5375 (verilog-pretty-declarations): Add new flag that inhibits printing
5376 to the message buffer.
5377 (verilog-pretty-expr): Add new flag that inhibits printing to the
5378 message buffer. Improve handling of the many types of expression
5380 (verilog-just-one-space): Don't print an empty message.
5381 (verilog-get-lineup-indent): Rework to support the better handling
5382 of expression lineup for verilog-pretty-expr.
5383 (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
5384 (verilog-mode-version, verilog-mode-release-date): Update.
5386 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
5388 * subr.el (cancel-change-group): Don't move point.
5390 2008-02-23 Markus Triska <markus.triska@gmx.at>
5392 * linum.el (linum-after-config): Update all visible windows.
5394 2008-02-23 Glenn Morris <rgm@gnu.org>
5396 * menu-bar.el (menu-bar-games-menu): Add Bubbles and Pong.
5397 Add :help for Solitaire and Tetris.
5399 * tree-widget.el (tree-widget-lookup-image): Let-bind `file'.
5401 * mail/smtpmail.el: Remove leading `*' from defcustom doc-strings.
5402 (smtpmail-code-conv-from): Doc fix. Fix custom type.
5403 (smtpmail-queue-index-file): Make it a defcustom.
5404 (smtpmail-queue-index): Delete.
5405 (smtpmail-send-it, smtpmail-send-queued-mail):
5406 Use smtpmail-queue-index-file and smtpmail-queue-dir rather than
5407 smtpmail-queue-index.
5409 * net/net-utils.el (iwconfig-program, iwconfig-program-options):
5412 2008-02-23 Yoni Rabkin <yoni@rabkins.net> (tiny change)
5414 * net/net-utils.el (iwconfig-program, iwconfig-program-options):
5416 (iwconfig): New function.
5418 2008-02-23 Dan Nicolaescu <dann@ics.uci.edu>
5420 * vc.el (vc-find-revision): Make vc-parent-buffer local before
5422 (vc-status-menu-map): Do not define using easy-menu.
5423 (vc-status-menu-map): New defalias.
5424 (vc-status-mode-map): Hook up the menu.
5425 (top-level): Update TODO.
5427 * vc-hg.el (vc-hg-extra-status-menu): Return a keymap.
5429 * vc-bzr.el (vc-bzr-init-version): Rename to ...
5430 (vc-bzr-init-revision): ... this.
5432 2008-02-23 Jason Rumney <jasonr@gnu.org>
5434 * makefile.w32-in (WINS_ALMOST): Remove term.
5435 (WINS): Add term here.
5436 (custom-deps, finder-data): Use WINS_ALMOST.
5438 2008-02-22 Juanma Barranquero <lekktu@gmail.com>
5440 * faces.el (font-weight-table): Fix value of `semi-light'.
5442 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
5444 * faces.el (font-weight-table, font-slant-table, font-swidth-table):
5445 Make those tables bijective.
5447 2008-02-22 Ken Manheimer <ken.manheimer@gmail.com>
5449 Finish pdbtrack integration cleanup, settling missing-functions
5450 byte compiler warnings appropriately.
5452 * progmodes/python.el (python-point): Remove this - beginning-of-line
5453 was all that was necessary for `python-pdbtrack-overlay-arrow'.
5454 (python-end-of-def-or-class, python-beginning-of-def-or-class)
5455 (python-goto-initial-line): Drop these - they were only needed for
5457 (python-comint-output-filter-function): Use condition-case and
5458 beginning-of-line directly, instead of python-mode.el functions
5459 which require all sorts of baggage.
5460 (point-safe): Unnecessary - we're using condition-case directly,
5462 (python-execute-file): Include for python-shell, which I'm leaving
5463 in keeping despite it being unnecessary for pdb tracking.
5465 2008-02-22 Peter Danenberg <pcd@wikitex.org> (tiny change)
5467 * progmodes/scheme.el (scheme-font-lock-keywords-2):
5468 Add SRFI 11 support.
5469 (let-values, let*-values): Specify scheme-indent-function.
5471 2008-02-22 Dan Nicolaescu <dann@ics.uci.edu>
5473 * vc.el (vc-exec-after): Move setting mode-line-process in the
5475 (vc-set-mode-line-busy-indicator): ... in this new function.
5476 (vc-status-refresh): Call vc-set-mode-line-busy-indicator.
5477 (vc-update-vc-status-buffer): Reset mode-line-process.
5478 (vc-status-mark-all-files, vc-status-unmark-all-files): Change to
5479 mark/unmark all the files with the same state as the current one.
5480 With a prefix argument mark/unmark all files.
5481 (vc-status-mode-menu): Adjust strings.
5482 (vc-update-vc-status-buffer): Only do something when the argument
5484 (vc-status-kill-dir-status-process): New function.
5485 (vc-status-mode-map): Bind it.
5486 (vc-status-process-buffer): New variable.
5487 (vc-status-mode): Make it local.
5488 (vc-status-refresh): Set it.
5490 * vc-hg.el (vc-hg-dir-status):
5491 * vc-git.el (vc-git-dir-status):
5492 * vc-svn.el (vc-svn-dir-status): Return the buffer in which the
5495 2008-02-22 Glenn Morris <rgm@gnu.org>
5497 * json.el (top-level): No need to require thingatpt.
5498 (json-read-keyword): Use thing-at-point rather than word-at-point.
5500 * time.el (top-level): No need to require time-date when compiling.
5502 * emacs-lisp/copyright.el (copyright-update-year):
5503 Fix subexpression numbering for the case when years are split over
5504 lines, and for the replace case.
5506 * emulation/tpu-edt.el (tpu-have-ispell): Doc fix. Make obsolete.
5507 (tpu-caar, tpu-cadr): Delete functions.
5508 (zmacs-regions): No need to declare for compiler.
5509 (tpu-goto-breadcrumb): Use cadr rather than tpu-cadr.
5510 (tpu-spell-check): Rewrite, and handle mark after point.
5511 (tpu-special-insert): Use or rather than if.
5513 * emulation/vip.el (vip-special-prefix-com): Use ispell-region
5514 rather than spell-region.
5516 * textmodes/spell.el (spell-buffer, spell-word): Suppress compiler
5517 warnings about spell-region.
5519 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
5521 * ldefs-boot.el: Regenerated.
5523 * loadup.el: Don't load language/devanagari, language/kannanda,
5524 language/malayalam, and language/tamil. Load language/sinhala.
5526 * language/indian.el (indian-font-foundry)
5527 (indian-script-language-alist, indian-font-char-index-table)
5528 (indian-font-char, indian-font-char-range, indian-script-table)
5529 (indian-default-script, indian-composable-pattern): Delete them.
5530 ("Devanagari", "Kannada", "Malayalam", "Tamil"): Definitions of
5531 language environments moved to here.
5532 ("Bengali", "Punjabi", "Gujarati", "Oriya", "Telugu"):
5533 New language environments.
5535 * language/devanagari.el, language/devan-util.el,
5536 * language/kannanda.el, language/knd-util.el, language/malayalam.el,
5537 * language/mlm-util.el, language/tamil.el, language/tml-util.el:
5540 * language/sinhala.el: New file.
5542 2008-02-21 Ken Manheimer <ken.manheimer@gmail.com>
5544 Update Nick Robert's port of pdb tracking from python-mode.el.
5546 * progmodes/python.el (python-pdbtrack-toggle-stack-tracking):
5548 (python-pdbtrack-minor-mode-string): A sign indicating that pdb
5549 tracking is happening.
5550 (python-pdbtrack-stack-entry-regexp): Better recognize stack traces.
5551 (python-pdbtrack-input-prompt): Better recognize PDB prompts.
5552 (comint-output-filter-functions): Add python-pdbtrack-track-stack-file.
5553 Tracking is plugged in to all comint buffers once python.el is loaded.
5554 (python-pdbtrack-overlay-arrow): Toggle activation of
5555 `python-pdbtrack-minor-mode-string' in addition to the overlay arrow.
5556 (python-pdbtrack-track-stack-file): Use new
5557 `python-pdbtrack-get-source-buffer' for more flexible access to
5558 debugging source files.
5559 (python-pdbtrack-get-source-buffer): Identify debugging target buffer
5560 according to pdb stack trace, optionally using new
5561 `python-pdbtrack-grub-for-buffer' if file is not locally available.
5562 (python-pdbtrack-grub-for-buffer): Find most recent python-mode
5563 named buffer, or having function with indicated name.
5564 (python-shell): Remove comint-output-filter-functions hook
5565 addition, it's being done elsewhere. Wrap long line.
5567 2008-02-21 Michael Olson <mwolson@gnu.org>
5569 * json.el: Replace XEmacs compatibility code to get rid of
5572 * time.el: Fix compiler warning.
5574 2008-02-21 Edward O'Connor <ted@oconnor.cx>
5576 * json.el: New file (JavaScript Object Notation parser / generator).
5578 2008-02-21 Dave Love <fx@gnu.org>
5580 * progmodes/sym-comp.el: New file.
5582 * progmodes/python.el: Merge from Dave Love's 2008-01-20 version.
5583 Require sym-comp. Add Python buffer to same-window-buffer-names.
5585 (python-font-lock-keywords): Add highlighting for Python builtins.
5586 (python-font-lock-syntactic-keywords): Rewrite.
5587 (python-quote-syntax): Use syntax-ppss-context instead of parsing
5589 (python-mode-map): Add binding for python-find-function.
5590 (python-calculate-indentation): Clean up the logic.
5591 (python-beginning-of-defun): Explicitly set return value.
5592 (python-beginning-of-statement): Stop looping if we get stuck
5594 (python-next-statement): Stop looping if we somehow end up inside
5595 a string while advancing.
5596 (python-preoutput-continuation, python-version-checked): New vars.
5597 (python-check-version): New function.
5598 (run-python): Set default command to python-command instead of
5599 python-python-command.
5600 (run-python): Use python-check-version. Give PYTHONPATH
5601 precedence over data-directory in the process environment.
5602 Load function definitions in python process after.
5603 (python-check-comint-prompt): New function.
5604 (python-send-command, python-send-receive): Use it.
5605 (python-complete-symbol, python-try-complete): Functions deleted.
5606 Use symbol-complete instead of python-complete-symbol throughout.
5607 (python-fill-paragraph): Further refine the fenced-string regexp.
5608 (def-python-skeleton): Expand to the original abbrev instead if in
5609 a comment or string. Tweak skeletons for `if', `while', `for',
5610 `try/except', `try/finally', `name'.
5611 (python-pea-hook, python-abbrev-pc-hook): New functions.
5612 (python-abbrev-syntax-table): New var.
5613 (python-mode): Add python-pea-hook to pre-abbrev-expand-hook.
5614 Use symbol-completion-try-complete for hippie expansion.
5615 Turn on font lock unconditionally.
5616 (python-mode-hook): Defcustom it. No need to use make-local
5617 variable on indent-tabs-mode in "Turn off Indent Tabs mode"
5618 option, since it's buffer-local.
5620 2008-02-21 Juanma Barranquero <lekktu@gmail.com>
5622 * play/hanoi.el (hanoi-internal): Set `show-trailing-whitespace' to nil.
5624 2008-02-21 Drew Adams <drew.adams@oracle.com>
5626 * mouse.el (minor-mode-menu-from-indicator): Create a menu with a
5627 "Turn off" and a "Help" entry when the minor mode has no menu.
5629 2008-02-21 Dan Nicolaescu <dann@ics.uci.edu>
5631 * vc.el (vc-status-mark, vc-status-unmark): New functions.
5632 (vc-status-mode-map, vc-status-mode-menu): Bind them instead of
5633 vc-status-mark-file and vc-status-unmark-file.
5634 (vc-status-mark-unmark): New function.
5635 (vc-status-previous-line, vc-status-next-line): No longer interactive.
5637 2008-02-21 Glenn Morris <rgm@gnu.org>
5639 * composite.el (encode-composition-rule): Fix typo in error message.
5640 (composition-function-table, auto-composition-mode): Doc fixes.
5642 * subr.el (sit-for): Fix obsolete form for nil second argument.
5644 * textmodes/spell.el (spell-buffer, spell-word, spell-region)
5645 (spell-string): Make obsolete, in favor of ispell.
5647 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
5649 * language/devanagari.el: Don't setup composition-function-table
5651 ("Devanagari"): Change charset, coding-system, coding-priority to
5652 Unicode-based ones. Don't require the feature devan-util.
5654 * composite.el (compose-chars-after): Fix arguments for a function
5655 in composition-function-table.
5656 (auto-compose-region): Likewise.
5658 * ps-mule.el (ps-mule-font-info-database-bdf): Use ethio16f-uni.bdf
5660 (ps-mule-plot-string): Ignore glyph-string based compositions.
5662 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
5664 * doc-view.el: Allow different windows to show different pages.
5665 (doc-view-current-page, doc-view-current-slice, doc-view-current-info)
5666 (doc-view-current-image, doc-view-current-overlay): Remove variables,
5667 add them back as macros instead, using image-mode-winprops instead.
5668 Update all users of those variables.
5669 (doc-view-new-window-function): New function to create a new overlay
5670 for each new window.
5671 (doc-view-mode): Use it and image-mode-setup-winprops.
5672 (doc-view-clone-buffer-hook): Rewrite accordingly.
5674 * image-mode.el: Extend [hv]scroll support to per-window properties.
5675 (image-mode-current-vscroll, image-mode-current-hscroll): Remove.
5676 (image-mode-winprops-alist): New var to replace them.
5677 (image-mode-new-window-functions): New hook.
5678 (image-mode-winprops, image-mode-window-get, image-mode-window-put):
5680 (image-set-window-vscroll, image-set-window-hscroll): Use them.
5681 Remove the `window' argument, update callers.
5682 (image-mode-reapply-winprops): Rename image-reset-current-vhscroll.
5683 Use the new functions.
5684 (image-mode-reapply-winprops): New fun.
5685 (image-mode): Use it.
5687 2008-02-20 Jay Belanger <jay.p.belanger@gmail.com>
5689 * calc/calc-math.el (math-sin-raw): Add optional argument
5690 to keep track of original argument.
5691 (math-cos-raw): Use optional argument when calling math-sin-raw.
5692 (math-sin-raw-2, math-cos-raw-2): Check for a zero argument
5693 with close to original precision.
5695 2008-02-20 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5697 * textmodes/bibtex.el (bibtex-convert-alien): Do not use optional
5698 args in calls of sit-for.
5700 2008-02-20 Juanma Barranquero <lekktu@gmail.com>
5702 * vc-svn.el (vc-svn-program): Fix typo in docstring.
5703 (vc-svn-checkin): Fix typo in error message.
5705 * help-mode.el: Require easymenu when compiling.
5707 2008-02-20 Dan Nicolaescu <dann@ics.uci.edu>
5709 * help-mode.el (help-mode-menu): New menu.
5711 2008-02-20 Glenn Morris <rgm@gnu.org>
5713 * mail/rmail.el (rmail-autodetect): Add .exe extension to movemail
5716 2008-02-20 Kenichi Handa <handa@ni.aist.go.jp>
5718 * ps-mule.el (ps-mule-encode-region): Return a single string.
5719 (ps-mule-plot-string): Adjust for the above change.
5720 (ps-mule-encode-header-string): Likewise.
5722 * international/latin1-disp.el (latin1-display): Don't use
5723 ucs-mule-8859-to-mule-unicode. Fix the way of resetting
5724 standard-display-table.
5725 (latin1-display-identities): Adjust for the change of what is
5726 returned by (get-language-info charset 'charset).
5728 * international/mule-util.el (char-displayable-p): Fix for Latin-1
5729 characters and terminal case.
5731 2008-02-19 Ken Manheimer <ken.manheimer@gmail.com>
5733 Minor Adaptions by Nick Roberts <nickrob@snap.net.nz> for Emacs.
5735 * progmodes/python.el: Also require comint when loading.
5736 (python-mode-map): Bind python-pdbtrack-toggle-stack-tracking.
5737 Replace python-shell with run-python on menu bar.
5738 (python-shell-map): New map.
5739 (python-default-interpreter, python-python-command-args)
5740 (python-jython-command-args, python-pdbtrack-do-tracking-p):
5742 (python-which-shell, python-which-args, python-which-bufname):
5743 New buffer local variables.
5744 (python-file-queue, python-pdbtrack-is-tracking-p): New variables.
5746 * progmodes/python.el (python-pdbtrack-stack-entry-regexp)
5747 (python-pdbtrack-input-prompt, python-pdbtrack-track-range):
5752 (python-point, python-end-of-def-or-class)
5753 (python-beginning-of-def-or-class, python-goto-initial-line)
5754 (python-comint-output-filter-function)
5755 (python-pdbtrack-overlay-arrow)
5756 (python-pdbtrack-track-stack-file, python-toggle-shells)
5757 (python-shell, python-pdbtrack-toggle-stack-tracking)
5758 (turn-on-pdbtrack, turn-off-pdbtrack, python-sentinel):
5761 2008-02-19 Katsumi Yamaoka <yamaoka@jpl.org>
5763 * net/ange-ftp.el (ange-ftp-quote-string): Return the null string
5764 when the argument is nil.
5766 2008-02-19 Dan Nicolaescu <dann@ics.uci.edu>
5768 * vc.el (dir-status): Add a brief description.
5770 2008-02-19 Thien-Thi Nguyen <ttn@gnuvola.org>
5772 * vc-hooks.el (vc-find-root): Take optional arg INVERT.
5773 If non-nil, reverse the sense of the check.
5775 * vc-rcs.el (vc-rcs-root): New func.
5776 * vc-cvs.el (vc-cvs-root): New func.
5777 * vc-svn.el (vc-svn-root): New func.
5778 * vc-sccs.el (vc-sccs-root): New func.
5780 2008-02-18 Kenichi Handa <handa@ni.aist.go.jp>
5782 * language/japan-util.el (setup-japanese-environment-internal):
5783 Call use-cjk-char-width-table.
5785 * language/japanese.el ("Japanese"): Set exit-function to
5786 use-default-char-width-table.
5788 * international/characters.el: Delete occurrences of non-Unicode
5789 tibetan and ethiopic characters.
5790 (cjk-char-width-table): New variable.
5791 (use-cjk-char-width-table, use-default-char-width-table):
5794 2008-02-19 Dan Nicolaescu <dann@ics.uci.edu>
5796 * vc.el (vc-status-menu, vc-status-menu-map-filter): New functions.
5797 (vc-status-mode-menu): Add a :filter.
5798 (vc-status-printer): Add faces.
5800 * vc-hg.el (vc-hg-extra-status-menu): New function.
5801 (vc-hg-dir-status): Clean up the buffer before using it.
5803 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
5805 * progmodes/gdb-ui.el (gdb-output-sink): Define with an invalid value.
5806 (gdb): Initialize it here instead.
5808 * files.el (locate-dominating-file): Fix thinko in last change.
5809 Reported by Bruce Stephens <bruce.stephens@isode.com>.
5811 2008-02-18 Dan Nicolaescu <dann@ics.uci.edu>
5813 * vc.el (vc-status-mode-menu): New menu for vc-status.
5815 2008-02-18 Juanma Barranquero <lekktu@gmail.com>
5817 * progmodes/verilog-mode.el (customize): Fix typo in error message.
5818 (verilog-mode, verilog-mode-indent, verilog-mode-actions)
5819 (verilog-mode-auto, verilog-indent-level-module)
5820 (verilog-minimum-comment-distance, verilog-library-flags)
5821 (verilog-library-directories, verilog-library-files)
5822 (verilog-auto-reset-widths, verilog-imenu-generic-expression)
5823 (verilog-xemacs-menu, verilog-set-compile-command)
5824 (verilog-set-compile-command, verilog-mode-syntax-table, verilog-mode)
5825 (verilog-get-expr, verilog-strip-comments, verilog-one-line)
5826 (verilog-lint-off, verilog-batch-auto, verilog-batch-delete-auto)
5827 (verilog-batch-inject-auto, verilog-batch-indent)
5828 (verilog-continued-line, verilog-type-keywords)
5829 (verilog-read-sub-decls-sig, verilog-read-sub-decls-line)
5830 (verilog-read-inst-pins, verilog-read-arg-pins)
5831 (verilog-read-auto-template, verilog-read-signals, verilog-getopt-file)
5832 (verilog-add-list-unique, verilog-symbol-detick, verilog-modi-filename)
5833 (verilog-auto-star, verilog-auto-inst, verilog-auto-wire)
5834 (verilog-enum-ascii, verilog-sk-begin, verilog-sk-fork)
5835 (verilog-sk-datadef, verilog-colorize-include-files-buffer)
5836 (verilog-mode-version, verilog-mode-release-date)
5837 (verilog-mode-release-emacs, verilog-linter, verilog-coverage)
5838 (verilog-simulator, verilog-compiler)
5839 (verilog-auto-sense-defines-constant, verilog-company)
5840 (verilog-project, verilog-mark-defun, verilog-submit-bug-report):
5841 Fix typos in docstrings.
5842 (verilog-set-auto-endcomments, verilog-calculate-indent)
5843 (verilog-inject-auto, verilog-auto-arg, verilog-auto-inout-module):
5845 (verilog-tab-always-indent, verilog-highlight-p1800-keywords)
5846 (verilog-auto-star-save, verilog-auto-inst-vector, verilog-mode-hook)
5847 (electric-verilog-forward-sexp, verilog-in-case-region-p)
5848 (verilog-in-struct-region-p, verilog-in-generate-region-p)
5849 (verilog-leap-to-head, verilog-current-indent-level)
5850 (verilog-case-indent-level, verilog-cpp-keywords)
5851 (verilog-defun-keywords, verilog-block-keywords, verilog-tf-keywords)
5852 (verilog-case-keywords, verilog-separator-keywords, verilog-completion)
5853 (verilog-signals-not-in, verilog-symbol-detick-text)
5854 (verilog-modi-cache-preserve-tick, verilog-modi-cache-preserve-buffer)
5855 (verilog-forward-close-paren, verilog-backward-open-paren)
5856 (verilog-backward-open-bracket): Doc fixes.
5858 * progmodes/gud.el (gud-def, gud-last-speedbar-stackframe): Doc fixes.
5859 (gud-symbol, gud-expansion-speedbar-buttons, gud-speedbar-buttons)
5860 (gud-gdb-run-command-fetch-lines, gud-dbx-use-stopformat-p)
5861 (gud-jdb-classpath, gud-jdb-find-source-using-classpath, jdb)
5862 (gud-find-class, gdb-script-mode, gud-tooltip-event, gud-tooltip-tips):
5863 Fix typos in docstrings.
5865 * w32-vars.el (w32-system-shells): Add TCC (new name for 4NT).
5867 2008-02-18 Bastien Guerry <Bastien.Guerry@ens.fr>
5869 * info.el (Info-read-node-name): Removed unused `default' arg.
5871 2008-02-18 Thien-Thi Nguyen <ttn@gnuvola.org>
5873 * vc-git.el (vc-git-after-dir-status, vc-git-dir-status): New funcs.
5875 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
5877 * image-mode.el (image-get-display-property): New fun.
5878 (image-forward-hscroll, image-next-line, image-eol, image-eob)
5879 (image-mode, image-minor-mode, image-toggle-display-text)
5880 (image-toggle-display): Use it.
5882 2008-02-18 Jason Rumney <jasonr@gnu.org>
5884 * international/mule.el (xml-find-file-coding-system): Don't warn
5885 about utf-16 with BOM.
5887 * nxml/nxml-mode.el (nxml-mode): Don't add a write-contents-hook.
5889 * international/mule.el (sgml-xml-auto-coding-function): Detect and
5890 warn if file encoding is not utf-8 and encoding not specified.
5891 (xml-find-file-coding-system): New function.
5892 * international/mule-conf.el (file-coding-system-alist): Use it.
5894 2008-02-17 Glenn Morris <rgm@gnu.org>
5896 * international/mule-cmds.el (set-locale-environment):
5897 Pass `frame' to getenv for LC_MESSAGES.
5899 2008-02-17 Juri Linkov <juri@jurta.org>
5901 * time.el (emacs-init-time): Use format instead of format-seconds.
5903 2008-02-17 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5905 * textmodes/bibtex.el (bibtex-search-entry): Rename from
5906 bibtex-find-entry. Add autoload cookie.
5907 (bibtex-find-entry): Alias for bibtex-search-entry.
5908 (bibtex-search-crossref): Rename from bibtex-find-crossref.
5909 (bibtex-find-crossref): Alias for bibtex-search-crossref.
5910 (bibtex-clean-entry): atomic-change-group removed.
5911 (bibtex-format-entry): Use atomic-change-group. Use unwind-protect
5912 to locate buffer location where error occurred.
5913 Make error messages more specific.
5914 (bibtex-parse-keys): Only parse if buffer uses bibtex-mode.
5916 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
5918 * progmodes/hideshow.el (hs-minor-mode-map): Move menu creation to
5921 * simple.el (transient-mark-mode): Add an :init-value.
5923 * startup.el (command-line): Use custom-reevaluate-setting for
5924 transient-mark-mode.
5926 2008-02-17 Michaël Cadilhac <michael@cadilhac.name>
5928 * wdired.el (wdired-allow-to-change-permissions): Fix typo.
5930 2008-02-16 Juri Linkov <juri@jurta.org>
5932 * startup.el (after-init-time): New variable.
5933 (command-line): Set `after-init-time' to the current time.
5935 * time.el (emacs-init-time): New function.
5937 2008-02-16 Stefan Monnier <monnier@iro.umontreal.ca>
5939 * files.el (locate-dominating-file): Remove initial loop because it's
5940 not careful enough. Detect the uid-change all within the main loop.
5942 2008-02-16 Lawrence Mitchell <wence@gmx.li> (tiny change)
5944 * ielm.el (ielm-is-whitespace-or-comment): Docstring fix.
5946 2008-02-16 Dan Nicolaescu <dann@ics.uci.edu>
5948 * vc.el (vc-annotate): Add new argument.
5949 (vc-annotate-warp-revision): Pass the current line to vc-annotate.
5951 * progmodes/hideshow.el: Remove the minor-mode bookkeeping.
5952 Move make-variable-buffer-local code after the corresponding defvar.
5953 (hs-minor-mode-map): Define and initialize in one step.
5954 (hs-minor-mode): Change from defun to define-minor-mode.
5956 2008-02-16 Nick Roberts <nickrob@snap.net.nz>
5958 * progmodes/gud.el (gud-gdb): Don't reset gdb-ready.
5959 (gdb-ready): Move declaration...
5961 * progmodes/gdb-ui.el (gdb-ready): ...to here.
5962 (gdb-early-user-input): New variable.
5963 (gdb): Reset gdb-flush-pending-output to nil and set
5964 comint-input-sender here (before gdb-prompt), instead of...
5965 (gdb-init-1): ...here.
5966 (gdb-send): If Emacs is not ready, defer user input to...
5967 (gdb-prompt): ...here.
5969 2008-02-16 Glenn Morris <rgm@gnu.org>
5971 * nxml/test.invalid.xml, nxml/test.valid.xml: Move to etc/nxml.
5973 * startup.el (emacs-startup-time): Rename to `before-init-time'.
5974 (before-init-time): New name for `emacs-startup-time'.
5975 (command-line): Use before-init-time rather than emacs-startup-time.
5976 * time.el (emacs-uptime): Use before-init-time rather than
5979 * composite.el (composition-function-table): Doc fix.
5981 * calendar/time-date.el (format-seconds): Remove `nonzero' argument
5982 in favor of `%z' specifier.
5983 (emacs-uptime): Move to time.el.
5984 * time.el (emacs-uptime): Move here from time-date.el. Add optional
5985 `format' argument. Doc fix. Use `%z' rather than removed `nonzero'
5986 argument of format-seconds.
5988 2008-02-16 Dan Nicolaescu <dann@ics.uci.edu>
5990 * bindings.el (mode-line-mule-info): Make the tooltips more explicit.
5992 2008-02-15 Lawrence Mitchell <wence@gmx.li> (tiny change)
5994 * ielm.el (ielm-is-whitespace): Remove.
5995 (ielm-is-whitespace-or-comment): New function.
5996 (ielm-eval-input): Use it.
5998 2008-02-15 Jason Rumney <jasonr@gnu.org>
6000 * term/mac-win.el: Fix coding tag.
6002 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
6004 * vc-hooks.el (vc-menu-map):
6005 * bindings.el (mode-line-mode-menu): Add tooltips.
6007 * bindings.el (help-echo): Add more tooltips. Use a less
6008 telegraphic style for existing tooltips.
6010 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
6012 * frame.el (frame-notice-user-settings): Distinguish explicit parent-id
6013 from the auto-generated one.
6015 2008-02-14 Glenn Morris <rgm@gnu.org>
6017 * mail/rmail-spam-filter.el (rmail-spam-filter):
6018 Let-bind message-spam-status.
6020 * mail/smtpmail.el (password-cache-add): Declare as function.
6022 2008-02-14 Justus Piater <Justus-bulk@Piater.name> (tiny change)
6024 * mail/smtpmail.el: Use password-cache.
6026 2008-02-14 Juanma Barranquero <lekktu@gmail.com>
6028 * uniquify.el (uniquify-buffer-base-name): New function.
6029 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
6031 * desktop.el (uniquify-managed): Don't defvar.
6032 (desktop-buffer-info): Use `uniquify-buffer-base-name', not
6033 `uniquify-managed'. Return also the buffer's base name.
6034 (desktop-save): When saving the buffer info, filter out the base name,
6035 and save it as buffer name if the buffer is managed by uniquify.
6036 (uniquify-item-base): Don't declare; not called anymore.
6038 2008-02-14 Dan Nicolaescu <dann@ics.uci.edu>
6040 * vc.el (vc-annotate-find-revision-at-line): New function.
6041 (vc-annotate-mode-map): Bind it.
6042 (vc-annotate-mode-menu): Add a menu entry for it. Add :help for
6045 2008-02-14 Glenn Morris <rgm@gnu.org>
6047 * calendar/time-date.el (format-seconds): New function.
6048 (emacs-uptime): Use format-seconds.
6050 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
6051 Remove `LC_ALL=C', since it's included in $(emacs) now.
6053 2008-02-14 Zhang Wei <id.brep@gmail.com>
6055 * textmodes/org-publish.el (org-publish-timestamp-filename):
6056 Replace colon characters in filename too.
6058 2008-02-13 Bastien Guerry <bzg@altern.org>
6060 * mail/rmail.el (rmail-header-name): New face.
6061 (rmail-font-lock-keywords): Use rmail-header-name.
6063 * mail/rmail-spam-filter.el (rsf-definitions-alist): Allow check
6064 against X-Spam-Status header field.
6065 (rmail-spam-filter): Also check X-Spam-Status header field.
6067 2008-02-14 Mark A. Hershberger <mah@everybody.org>
6069 * progmodes/flymake.el (flymake-allowed-file-name-masks):
6070 Add support for .pm files and .php files.
6071 (flymake-err-line-patterns): Add pattern for PHP errors.
6072 (flymake-php-init): New function. PHP support for flymake.
6074 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6075 Add regular expression for PHP errors.
6077 2008-02-13 Michael Albinus <michael.albinus@gmx.de>
6079 * net/ange-ftp.el (ange-ftp-quote-string): Use `shell-quote-argument'.
6080 This DTRT even on w32 machines.
6081 (ange-ftp-cf1): Quote FILENAME.
6083 2008-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
6085 * smerge-mode.el (smerge-auto-combine-max-separation): New var.
6086 (smerge-auto-combine): New fun.
6088 2008-02-12 Juri Linkov <juri@jurta.org>
6090 * startup.el (fancy-startup-screen, normal-splash-screen):
6091 Set default-directory to command-line-default-directory.
6093 * desktop.el (after-init-hook): Set inhibit-startup-screen to t
6094 after reading the desktop.
6096 * progmodes/compile.el (compilation-auto-jump):
6097 Call compile-goto-error only when compilation-auto-jump-to-first-error
6099 (compilation-scroll-output): Replace :type 'boolean with a choice
6100 that has three options including a third option `first-error'.
6102 (compilation-start, compilation-forget-errors): Add an alternate
6103 condition comparing compilation-scroll-output with `first-error'
6104 in addition to compilation-auto-jump-to-first-error (to call
6105 compilation-auto-jump in the proper place).
6107 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
6109 * international/mule.el (sgml-html-meta-auto-coding-function):
6110 Make sure the search limit is ahead.
6112 * tar-mode.el: Fix broken indentation.
6113 (tar-mouse-extract, tar-extract, tar-subfile-save-buffer):
6114 Use with-current-buffer.
6116 2008-02-12 Juanma Barranquero <lekktu@gmail.com>
6118 * hexl.el (hexl-mode): Don't make `font-lock-defaults' buffer-local;
6119 it is already automatically buffer-local.
6121 2008-02-11 Drew Adams <drew.adams@oracle.com>
6123 * help.el (describe-key): Join some split lines to facilitate filling.
6124 * help-fns.el (describe-function-1): Fill text of overlong lines.
6126 2008-02-12 Kenichi Handa <handa@ni.aist.go.jp>
6128 * emacs-lisp/bytecomp.el (byte-compile-lapcode):
6129 Use unibyte-string instead of string-make-unibyte.
6131 * Makefile.in (AUTOGENEL): Remove charprop.el and uni-*.el.
6133 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
6135 * doc-view.el (doc-view-display): Change file arg to buffer arg, so it
6136 works also for buffers w/o buffer-file-name. Update callers.
6137 (doc-view-clone-buffer-hook): New fun.
6138 (doc-view-mode): Use it for indirect clones. Mark the overlays with
6139 the `doc-view' property so they can be recognized.
6141 * simple.el (clone-indirect-buffer-hook): New hook.
6142 (clone-indirect-buffer): Run it.
6144 2008-02-11 Daiki Ueno <ueno@unixuser.org>
6146 * epa.el (epa-menu-mode): Merge into epa-mode.
6147 (epa-menu-items): Rename the label "EasyPG Assistant" to
6148 "Encryption/Decryption".
6150 * epa-dired.el: Define a new minor-mode epa-dired-mode for dired.
6151 (epa-dired-mode-map): Rename from epa-dired-map.
6152 (epa-global-dired-mode): Rename the global minor mode.
6154 2008-02-11 Drew Adams <drew.adams@oracle.com>
6156 * isearch.el (isearch-fail): New face.
6157 (isearch-message): Highlight failure part of input.
6159 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6161 * ibuffer.el (ibuffer-header-line-format): New var.
6162 (ibuffer-mode): Set it instead of header-line-format.
6163 (ibuffer-update): Use it to set header-line-format.
6165 * international/mule-cmds.el (ucs-insert): Inherit surrounding
6166 properties like self-insert-command.
6168 2008-02-11 Drew Adams <drew.adams@oracle.com>
6170 * progmodes/etags.el: Add many doc strings.
6172 2008-02-11 Jason Rumney <jasonr@gnu.org>
6174 * ldefs-boot.el: Regenerated.
6176 2008-02-11 Glenn Morris <rgm@gnu.org>
6178 * progmodes/compile.el (compilation-error-regexp-alist-alist):
6181 * ffap.el (ffap-rfc-directories): Add :version.
6183 2008-02-11 Chris Moore <christopher.ian.moore@gmail.com>
6185 * jka-cmpr-hook.el (jka-compr-compression-info-list): Handle .sifz
6186 files, and backup files of same.
6188 2008-02-11 Kevin Ryde <user42@zip.com.au>
6190 * ffap.el (ffap-rfc-directories): New variable.
6191 (ffap-rfc): Look in those dirs before offering ffap-rfc-path.
6193 * info.el (Info-next-reference, Info-prev-reference)
6194 (Info-try-follow-nearest-node): Move to and follow https:// links too.
6196 * simple.el (completion-list-mode): Show full completion-list-mode-map
6199 2008-02-11 Sam Steingold <sds@gnu.org>
6201 * vc-hooks.el (vc-prefix-key): Remove (undo 2008-02-06 patch).
6203 2008-02-11 Glenn Morris <rgm@gnu.org>
6205 * startup.el (emacs-startup-time): New variable.
6206 (command-line): Set emacs-startup-time.
6208 * calendar/time-date.el (emacs-uptime): New function.
6210 2008-02-10 Bastien Guerry <bzg@altern.org>
6212 * mail/rmail.el (rmail-nonignored-headers): Allow to be nil.
6213 (rmail-clear-headers): Don't check `rmail-nonignored-headers' when
6216 2008-02-10 Daiki Ueno <ueno@unixuser.org>
6218 * epg-config.el: Expand the contents of epg-package-info.el.
6219 (epg-package-name): New constant.
6220 (epg-version-number): New constant.
6221 (epg-bug-report-address): New constant.
6223 * epa-mail.el (epa-mail-mode): Add autoload cookie.
6224 (epa-global-mail-mode): New global minor mode.
6226 * epa-file.el (epa-file-mode): New global minor mode.
6228 * epa-dired.el (epa-dired-mode): New global minor mode.
6230 * epa.el (epa-menu): New variable.
6231 (epa-menu-items): New variable.
6232 (epa-menu-mode): New global minor mode.
6233 (epa-global-minor-modes): New user option.
6234 (epa-mode): New global minor mode.
6236 2008-02-10 Michael Albinus <michael.albinus@gmx.de>
6238 * net/dbus.el: Remove `no-byte-compile' cookie.
6239 (dbus-call-method, dbus-register-signal, dbus-debug)
6240 (dbus-registered-functions-table): Declare them with
6241 `declare-function' or `defvar', respectively.
6242 (top): Don't assert any longer. Require 'cl when compiling.
6243 Apply `ignore-errors' but `dbus-ignore-errors'.
6245 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
6247 * diff-mode.el (diff-add-change-log-entries-other-window):
6248 Use add-change-log-entry.
6250 2008-02-09 Jason Rumney <jasonr@gnu.org>
6252 * button.el (button-map):
6253 * wid-edit.el (widget-keymap): Avoid line-end confusion in autoloads.
6254 * ldefs-boot.el: Regenerate.
6256 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
6258 * epa.el (epa-faces, epa):
6259 * epa-file.el (epa-file):
6260 * epg-config.el (epg): Add :version.
6262 2008-02-09 Thien-Thi Nguyen <ttn@gnuvola.org>
6264 * vc.el (vc-exec-after): Append CODE to previous fragments.
6265 (vc-diff-finish): Take BUFFER directly, not BUFFER-NAME;
6266 take MESSAGES instead of VERBOSE; use it when non-nil.
6267 (vc-diff-internal): Compute messages once; use them;
6268 update call to vc-diff-finish.
6270 2008-02-09 Michael Olson <mwolson@gnu.org>
6272 * net/tramp.el (tramp-process-sentinel): Avoid error when process
6273 buffer has been killed, such as by
6274 `tramp-cleanup-all-connections'.
6276 2008-02-09 Miles Bader <miles@gnu.org>
6278 * net/rcirc.el (rcirc-omit-mode): Suppress invisibility ellipsis.
6280 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
6282 * diff-mode.el (diff-add-change-log-entries-other-window): Avoid the
6283 splitter in context hunks.
6285 2008-02-08 Kenichi Handa <handa@ni.aist.go.jp>
6287 * international/fontset.el (setup-default-fontset): Fix arabic otf
6290 2008-02-08 Daiki Ueno <ueno@unixuser.org>
6298 * epg-package-info.el:
6299 * epg.el: Initial check-in of EasyPG.
6301 2008-02-08 Glenn Morris <rgm@gnu.org>
6303 * woman.el (woman-locale): New defcustom.
6304 (woman-expand-locale, woman-manpath-add-locales): New functions.
6305 (woman-manpath): Call woman-manpath-add-locales. Bump :version.
6307 * international/mule-cmds.el (locale-translate): New function,
6308 with old code extracted from set-locale-environment.
6309 (set-locale-environment): Use locale-translate. Set woman-locale.
6311 * cus-start.el (selection-coding-system): Remove, since it's now
6312 defined in select.el rather than in xselect.c.
6313 * select.el (selection-coding-system): Make it a defcustom, and
6314 add the properties from cus-start.el. Bump :version.
6316 * custom.el (custom-theme-set-variables): Sort symbols that are
6317 dependencies before symbols that depend on them.
6318 (custom-enabled-themes): Set after custom-theme-directory.
6320 * pcmpl-unix.el (top-level): Move provide statement to end.
6321 (pcmpl-unix-group-file, pcmpl-unix-passwd-file): Remove leading
6322 `*' from doc-string. Allow to be nil.
6323 (pcmpl-ssh-known-hosts-file): Convert comment into expanded doc-string.
6324 Allow to be nil. Add :version.
6325 (pcmpl-ssh-hosts): Move definition before use. Handle lines
6326 without hostnames, and multiple hostnames per line.
6328 * term/x-win.el (x-handle-parent-id): Remove free variable `parent-id'.
6330 2008-02-08 Phil Hagelberg <phil@evri.com>
6332 * pcmpl-unix.el (pcmpl-ssh-known-hosts-file): New defcustom.
6333 (pcomplete/ssh, pcomplete/scp, pcmpl-ssh-hosts): New functions.
6335 2008-02-07 Timo Savola <timo.savola@iki.fi>
6337 * startup.el (command-line-x-option-alist): Add --parent-id.
6339 * term/x-win.el (x-handle-parent-id): New function.
6341 2008-02-07 Chris Moore <christopher.ian.moore@gmail.com>
6343 * mouse.el (x-fixed-font-alist): Use consistent capitalization for
6346 2008-02-06 Michael Albinus <michael.albinus@gmx.de>
6348 * net/dbus.el (dbus-interface-peer): New defconst.
6349 (dbus-ping): New defun.
6351 2008-02-06 Sam Steingold <sds@gnu.org>
6353 * vc-hooks.el (vc-prefix-key): New user-customizable variable.
6355 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
6357 * net/ange-ftp.el (ange-ftp-unhandled-file-name-directory):
6358 Just return nil and let the C code provide a fallback.
6360 2008-02-05 Glenn Morris <rgm@gnu.org>
6362 * net/tramp-cmds.el (tramp-cleanup-connection): Update calls to
6363 tramp-flush-connection-property for removed 2nd argument.
6365 2008-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
6367 * diff-mode.el (diff-add-change-log-entries-other-window):
6368 Rename from diff-create-changelog. Change users.
6369 Minor change to hopefully work with plain diffs.
6370 (diff-mode-map): Add binding for it.
6372 2008-02-04 Dan Nicolaescu <dann@ics.uci.edu>
6374 * diff-mode.el: Add new TODO entry.
6375 (diff-create-changelog): New function.
6376 (diff-mode-menu): Bind it.
6378 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
6380 * international/mule-diag.el (print-fontset-element): Handle the
6381 case of inhibiting the fallback fonts.
6383 2008-02-04 Kim F. Storm <storm@cua.dk>
6385 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
6386 (ido-magic-delete-char): Use prefix arg.
6388 2008-02-03 Juanma Barranquero <lekktu@gmail.com>
6390 * term/w32-win.el (image-library-alist): Prefer libpng12 to libpng13,
6391 because the latter is in fact a 1.2.8 build distributed with GTK+ (as
6392 of today, the most recent libpng is 1.2.24).
6394 2008-02-03 Michael Albinus <michael.albinus@gmx.de>
6396 * ediff-util.el (ediff-compute-custom-diffs-maybe): Handle remote files.
6398 * net/dbus.el (top): Check (featurep 'dbusbind).
6400 * net/tramp.el (tramp-process-sentinel): New defun.
6401 (tramp-do-copy-or-rename-file-out-of-band)
6402 (tramp-maybe-open-connection): Use it as process sentinel.
6403 (tramp-handle-delete-directory): Don't use the "-f" option; it
6405 (tramp-handle-start-file-process): Echo `tramp-end-of-output'
6407 (tramp-handle-shell-command): Set `mode-line-process' in the
6410 * net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT.
6412 * net/tramp-fish.el (tramp-fish-maybe-open-connection):
6413 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
6414 Use `tramp-process-sentinel' as process sentinel.
6416 2008-02-02 Juanma Barranquero <lekktu@gmail.com>
6418 * whitespace.el (global-whitespace-mode): Revert last change.
6419 (whitespace-unload-function): Force `global-whitespace-mode'
6420 to deactivate local modes in a slightly less intrusive way.
6422 2008-02-02 Eli Zaretskii <eliz@gnu.org>
6424 * view.el (kill-buffer-if-not-modified): Add an autoload cookie.
6426 2008-02-02 Glenn Morris <rgm@gnu.org>
6428 * international/latin1-disp.el (latin1-display):
6429 * progmodes/fortran.el (fortran-comment-indent-char):
6430 * progmodes/idlw-shell.el (top-level):
6431 * term/mac-win.el (mac-keyboard-translate-char):
6432 * whitespace.el (whitespace-char-valid-p):
6433 * wid-edit.el (widget-key-sequence-read-event):
6434 Use characterp rather than char-valid-p.
6436 * progmodes/cap-words.el (capitalized-next-word-boundary): Rename
6437 to capitalized-find-word-boundary. Doc fix. Update callers.
6438 (capitalized-next-word-boundary-function-table): Rename to
6439 capitalized-find-word-boundary-function-table. Doc fix. Update users.
6441 * ps-bdf.el (bdf-read-font-info): Use string-to-number rather than
6444 * ps-def.el (declare-function): Add compatibility definition.
6445 (ps-plot-with-face, ps-plot-string): Declare as functions.
6446 (ps-bold-faces, ps-italic-faces): Declare variables.
6448 * ps-print.el (ps-mule-initialize, ps-mule-begin-job)
6449 (ps-mule-end-job): Declare as functions.
6451 * wid-edit.el (widget-string-complete): Use assoc-string rather
6452 than assoc-ignore-case.
6454 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
6456 * progmodes/etags.el (next-file): Improve revert message.
6458 2008-02-01 Andreas Schwab <schwab@suse.de>
6460 * loadup.el: Load language/burmese instead of language/myanmar.
6462 2008-02-01 Richard Stallman <rms@gnu.org>
6464 * language/burmese.el: Rename from myanmar.el.
6465 ("Burmese"): Rename from "Myanmar".
6467 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6469 * international/fontset.el (script-representative-chars): Add cham
6471 (setup-default-fontset): Add iso10646-1 font for latin and ipa.
6472 Add fontconfig spec for cjk-misc. Explicitly specify font font
6475 * international/characters.el (script-list): Add cham.
6477 * language/cham.el: New file.
6479 2008-02-01 Mark A. Hershberger <mah@everybody.org>
6481 * xml.el (xml-escape-string): Don't do any encoding changes on the
6484 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6486 * language/ind-util.el (in-is13194-post-read-conversion):
6487 Delete unnecessary call of indian-compose-region.
6489 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6491 * ps-print.el: Some face attributes (like :strike-through) were not
6492 being recognised. Reported by Leo <sdl.web@gmail.com>.
6493 (ps-print-version): New version 7.3.2.
6494 (ps-screen-to-bit-face): Fix code. Call ps-face-strikout-p,
6495 ps-face-overline-p and ps-face-box-p functions.
6497 * ps-def.el (ps-face-strikout-p, ps-face-overline-p, ps-face-box-p):
6500 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6502 * international/fontset.el (font-encoding-alist): Add an entry for
6504 (setup-default-fontset): Add iso8859-16 to latin.
6506 * descr-text.el (describe-char-display): Convert a GLYPH-CODE to a
6508 (describe-char): Adjust for the above change.
6510 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6512 * international/fontset.el (font-encoding-alist): Don't set the
6513 repertory of GB18030 fonts.
6515 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6517 * language/indian.el: Set font-shape-text for all Indic characters
6518 in composition-function-table.
6520 * language/khmer.el: New file.
6522 * language/myanmar.el: New file.
6524 * loadup.el: Load "language/khmer" and "language/myanmar".
6526 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6528 * international/fontset.el (setup-default-fontset): Fix lao OTF
6531 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6533 * composite.el (terminal-composition-modification): Delete it.
6535 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6537 * international/fontset.el (x-complement-fontset-spec):
6538 Complement size too.
6540 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6542 * international/fontset.el (font-encoding-charset-alist):
6544 (otf-script-alist): Fix typo of canadian-aboriginal.
6545 (setup-default-fontset): Specify font-specs for many more scripts.
6546 (x-complement-fontset-spec): Change the first argument to a
6548 (create-fontset-from-fontset-spec): Adjust for the above change.
6550 2008-02-01 Kenichi Handa <handa@m17n.org>
6552 * language/devanagari.el: Register font-shape-text in
6553 composition-function-table.
6555 * language/tibetan.el: Register font-shape-text in
6556 composition-function-table.
6558 * language/thai-util.el (thai-composition-function): Fix arguments.
6560 * language/tamil.el: Register font-shape-text in
6561 composition-function-table.
6563 * language/malayalam.el: Register font-shape-text in
6564 composition-function-table.
6566 * language/lao.el: Register font-shape-text in
6567 composition-function-table.
6569 * language/kannada.el: Register font-shape-text in
6570 composition-function-table.
6572 * language/european.el (diacritic-composition-function): Fix arguments.
6574 * language/ethio-util.el (ethio-composition-function): Fix arguments.
6576 * language/tv-util.el (tai-viet-composition-function): Fix arguments.
6578 * composite.el (composition-function-table): Fix docstring.
6579 (terminal-composition-function): Fix arguments.
6580 (auto-compose-current-font): Delete it.
6581 (auto-compose-chars): Adjust for the change of
6582 composition-function-table.
6584 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6586 * international/fontset.el (font-encoding-alist): Add the entry of
6589 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6591 * composite.el (auto-compose-chars): Be sure to calculate
6592 composition at least at POS.
6594 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6596 * printing.el: Fix pr-interface-map initialization code.
6597 (pr-version): New version 6.9.3.
6598 (pr-f-set-keymap-parents): Replace by pr-set-keymap-parents.
6599 (pr-f-set-keymap-name): Replace by pr-set-keymap-name.
6600 (pr-f-read-string): Replace by pr-read-string.
6601 (pr-set-keymap-parents, pr-set-keymap-name, pr-read-string):
6603 (pr-interactive-n-up, pr-interactive-regexp): Code fix.
6605 2008-02-01 Kenichi Handa <handa@m17n.org>
6607 * language/tv-util.el (tai-viet-re): Include '-'.
6608 (tai-viet-glyph-info): Handle '-'.
6610 2008-02-01 Kenichi Handa <handa@m17n.org>
6612 * descr-text.el (describe-char): Handle a composition of the new
6613 format. Show font name.
6615 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6617 * language/tibet-util.el (tibetan-composition-function): Use
6618 font-shape-text if auto-compose-current-font is non-nil.
6620 * language/tibetan.el: Fix the range for recording
6621 tibetan-composition-function in composition-function-table.
6623 * language/mlm-util.el (malayalam-composition-function): Use
6624 font-shape-text if auto-compose-current-font is non-nil.
6626 * international/mule-conf.el: Flag many charsets as supplementary.
6628 * international/mule.el (define-charset): Update the docstring for
6631 * international/fontset.el (setup-default-fontset): Add OpenType
6632 fonts for malayalam and tibetan.
6634 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6636 * international/fontset.el (x-complement-fontset-spec): Use font-spec.
6638 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6640 * international/fontset.el (otf-script-alist): Make all otf tags
6642 (setup-default-fontset): Add OpenType fonts for devanagari and tamil.
6644 * language/tml-util.el (tamil-composition-function): Use
6645 font-shape-text if auto-compose-current-font is non-nil.
6647 * language/devan-util.el (devanagari-composition-function): Use
6648 font-shape-text if auto-compose-current-font is non-nil.
6650 * composite.el (auto-compose-chars): Change argument font-object
6653 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6655 * ps-print.el (ps-lpr-switches): Docstring fix.
6656 (ps-string-list): New function.
6657 (ps-do-despool): Code fix.
6659 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6661 * international/utf-7.el (utf-7-imap-post-read-conversion)
6662 (utf-7-imap-pre-write-conversion): New functions.
6664 * international/mule-conf.el (utf-7-imap): New coding system.
6666 2008-02-01 Kenichi Handa <handa@m17n.org>
6668 * term/x-win.el (x-selection-value): If x-select-request-type is
6669 nil, try also STRING at last.
6670 (x-select-request-type): Doc fix for the change of x-selection-value.
6672 * select.el (selection-coding-system, next-selection-coding-system):
6673 Move declarations from xselect.c.
6674 (x-get-selection): Decode by selection-coding-system if it is non-nil.
6675 If it is nil, decode by a proper coding system. Handle C_STRING.
6676 (ccl-check-utf-8, string-utf-8-p): Delete them.
6677 (xselect-convert-to-string): Fix determining data-type in the case
6678 that TEXT is requested. Don't use selection-coding-system if it's
6679 not proper for the data-type.
6681 2008-02-01 Kenichi Handa <handa@m17n.org>
6683 * term/x-win.el (x-selection-value): If x-select-request-type is
6684 nil, simply try UTF8_STRING and COMPOUND-TEXT in this order.
6686 2008-02-01 Jason Rumney <jasonr@gnu.org>
6688 * term/w32-win.el (w32-initialize-window-system): Use t, not nil
6689 to signify default fontset.
6691 2008-02-01 Kenichi Handa <handa@m17n.org>
6693 * international/mule-cmds.el (describe-language-environment):
6694 Check if the specified input method exists or not.
6696 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6698 * ps-print.el (ps-begin-job): Error if ps-lpr-switches is not a list.
6699 (ps-face-background-name): Remove this function. It's already defined
6702 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6704 * ps-print.el: Eliminate the check if ps-print was running on Lucid or
6707 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6709 * ps-print.el: Now detect if text foreground and background colors are
6710 equals and replace the foreground color by another color, so the text
6711 becomes visible. Doc fix.
6712 (ps-print-version): New version 7.3.
6713 (ps-default-fg, ps-default-bg): Docstring fix.
6714 (ps-fg-list, ps-fg-validate-p): New options.
6715 (ps-foreground-list): New variable.
6716 (ps-generate-header-line): Replace fboundp by functionp.
6717 (ps-setup, ps-begin-job, ps-plot-region): Fix code.
6719 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6721 * printing.el: Pacify byte compiler, that is, no compiler warnings.
6722 Move (again) some variable definitions before use, define some
6723 function aliases, no code change.
6724 (pr-version): New version 6.9.2.
6725 (pr-path-style, pr-auto-region, pr-menu-char-height)
6726 (pr-menu-char-width, pr-menu-lock, pr-ps-printer-alist)
6727 (pr-txt-printer-alist, pr-ps-utility-alist): Options declaration
6729 (pr-menu-lookup, pr-menu-lock, pr-menu-alist, pr-even-or-odd-pages)
6730 (pr-menu-get-item, pr-menu-set-item-name, pr-menu-set-utility-title)
6731 (pr-menu-set-ps-title, pr-menu-set-txt-title, pr-region-active-p)
6732 (pr-do-update-menus, pr-update-mode-line, pr-f-read-string)
6733 (pr-f-set-keymap-parents, pr-keep-region-active): Function aliases.
6734 (pr-menu-print-item, pr-ps-printer-menu-modified)
6735 (pr-txt-printer-menu-modified, pr-ps-utility-menu-modified)
6736 (pr-even-or-odd-alist): Move variable definitions.
6738 2008-02-01 Kenichi Handa <handa@m17n.org>
6740 * language/chinese.el (cp936): Delete duplicated alias.
6742 * international/mule-diag.el (list-block-of-chars): Don't insert
6743 non-Unicode characters.
6745 2008-02-01 Jason Rumney <jasonr@gnu.org>
6747 * loadup.el [windows-nt]: Don't load code-pages and ccl.
6748 * term/w32-win.el: Don't require code-pages.
6750 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
6752 Fix up multi-tty merge.
6754 * version.el (emacs-version): Bump to 23.0.60.
6756 * term/x-win.el (x-initialize-window-system): Don't try to create
6757 a fontset from a font-specification anymore. This was removed on the
6758 unicode branch and mistakenly re-added by the multi-tty merge.
6760 * term/w32-win.el: Remove duplicate code that's now in
6761 w32-initialize-window-system.
6762 (w32-initialize-window-system): Don't try to create a fontset from
6763 a font-specification anymore. This was removed on the unicode branch
6764 and mistakenly re-added by the multi-tty merge.
6766 * term/mac-win.el: Remove duplicate top-level code.
6768 * language/ethio-util.el:
6769 * international/characters.el: Use utf-8 rather than utf-8-emacs
6770 since it works as well and has the advantage of working with
6771 non-unicode versions of Emacs.
6773 * international/encoded-kb.el (encoded-kbd-setup-display): Use the new
6774 multi-tty code, which includes the previous local change.
6776 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6778 * ps-print.el (ps-print-version): New version 7.2.5.
6779 (ps-background, ps-begin-file, ps-build-reference-face-lists):
6780 Use `mapc' rather than `mapcar'.
6782 2008-02-01 Kenichi Handa <handa@m17n.org>
6784 * skeleton.el (skeleton-internal-1): Use integerp and stringp
6785 instead of char-or-string-p to catch -1.
6787 2008-02-01 Kenichi Handa <handa@m17n.org>
6789 * international/mule-cmds.el (inactivate-input-method):
6790 Set input-method-function to nil before calling
6791 inactivate-current-input-method-function.
6793 2008-02-01 Kenichi Handa <handa@m17n.org>
6795 * play/gamegrid.el (gamegrid-setup-default-font): Calculate a font
6796 height that doesn't exceed the requested height by rounding off.
6798 2008-02-01 Andreas Schwab <schwab@suse.de>
6800 * international/mule-diag.el (print-fontset-element):
6801 Use fontp only if defined.
6803 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6805 * ps-mule.el (ps-mule-prepare-font, ps-mule-encode-region)
6806 (ps-mule-plot-composition, ps-mule-encode-header-string): Docstring fix.
6807 (ps-mule-prologue-generated): Code fix.
6809 2008-02-01 Kenichi Handa <handa@m17n.org>
6811 * dnd.el (dnd-get-local-file-name): Call replace-regexp-in-string
6814 2008-02-01 Kenichi Handa <handa@m17n.org>
6816 * international/mule-diag.el (print-fontset-element): Fix for the
6817 format change of a fontset element for font-backend feature.
6819 2008-02-01 Kenichi Handa <handa@m17n.org>
6821 * descr-text.el (describe-char): Fix for the case that a component
6824 2008-02-01 Kenichi Handa <handa@m17n.org>
6826 * international/mule-cmds.el (select-safe-coding-system-interactively):
6827 Fix printing of rejected and unsafe coding-systems.
6829 * international/fontset.el (setup-default-fontset): Add tai-viet.
6831 * international/characters.el: Setup syntax/category table for Tai Viet.
6832 (script-list): Add tai-viet.
6834 * loadup.el: Load "language/tai-viet".
6836 * language/tai-viet.el: New file.
6838 * language/tv-util.el: New file.
6840 2008-02-01 Jason Rumney <jasonr@gnu.org>
6842 * faces.el (font-weight-table): Use defaults on w32 that match
6845 * term/w32-win.el: Don't create fontset from command-line font.
6847 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
6849 * international/mule-cmds.el (toggle-enable-multibyte-characters)
6850 (sort-coding-systems, search-unencodable-char): Doc fixes.
6851 (default-input-method, input-method-verbose-flag)
6852 (input-method-highlight-flag): Remove * in defcustom's docstrings.
6853 (exit-language-environment-hook, set-default-coding-systems)
6854 (coding-system-change-eol-conversion, prefer-coding-system)
6855 (find-multibyte-characters, leim-list-entry-regexp)
6856 (set-input-method, input-method-exit-on-first-char, princ-list)
6857 (locale-language-names, locale-charset-language-names)
6858 (define-char-code-property): Fix typos in docstrings.
6860 2008-02-01 Kenichi Handa <handa@m17n.org>
6862 * disp-table.el (make-glyph-code, glyph-char, glyph-face):
6863 Fix for a new character code space (22-bit).
6865 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
6867 * printing.el (pr-ps-fast-fire): Fix typos in docstring.
6869 2008-02-01 Kenichi Handa <handa@m17n.org>
6871 * international/characters.el: Add more cases/syntaxes from Latin
6874 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6876 * ps-def.el (installation-directory): Must be initialized when defining
6878 (coding-system-for-read): Eliminate duplicated definition.
6880 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6882 * ps-print.el: Replace some (defvar VAR) by (defvar VAR nil).
6884 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6886 * ps-print.el: Replace (defvar VAR nil) by (defvar VAR).
6887 (ps-print-emacs-type): Eliminate variable.
6888 (ps-setup): Remove ps-print-emacs-type. Print which Emacsen is
6889 running ps-print package.
6891 * ps-def.el: Replace (defvar VAR nil) by (defvar VAR).
6892 (ps-frame-parameter): Replace defun by defalias.
6893 (mark-active): Eliminate defvar.
6895 * ps-samp.el (ps-prsc, ps-c-prsc, ps-s-prsc): Eliminate macros.
6896 (ps-rmail-mode-hook, ps-vm-mode-hook, ps-gnus-summary-setup)
6897 (ps-jts-ps-setup): Replace macros by vector key definition.
6899 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6901 * progmodes/ebnf-abn.el (ebnf-abn-skip-comment):
6902 * progmodes/ebnf-bnf.el (ebnf-bnf-skip-comment):
6903 * progmodes/ebnf-dtd.el (ebnf-dtd-skip-comment):
6904 * progmodes/ebnf-ebx.el (ebnf-ebx-skip-comment):
6905 * progmodes/ebnf-iso.el (ebnf-iso-skip-comment):
6906 * progmodes/ebnf-yac.el (ebnf-yac-skip-comment): New version.
6907 New command actions for EPS header and EPS footer.
6909 * progmodes/ebnf2ps.el: New command actions for EPS header and EPS
6910 footer. Fix some problems with one-or-more, zero-or-more and
6911 alternative constructions generation. Some implementation of log
6913 (ebnf-version): New version 4.4.
6914 (ebnf-eps-header-font, ebnf-eps-header, ebnf-eps-footer-font)
6915 (ebnf-eps-footer, ebnf-log): New options.
6916 (ebnf-find-style, ebnf-eps-header-footer, ebnf-eps-header)
6917 (ebnf-eps-footer, ebnf-eps-string, ebnf-eps-header-footer-comment)
6918 (ebnf-eps-header-footer-p, ebnf-eps-header-comment)
6919 (ebnf-eps-footer-comment, ebnf-eps-header-footer-file)
6920 (ebnf-eps-header-footer-set, ebnf-log-header, ebnf-log): New functions.
6921 (ebnf-style-custom-list, ebnf-style-database): Put new values.
6922 (ebnf-print-directory, ebnf-print-file, ebnf-print-buffer)
6923 (ebnf-print-region, ebnf-spool-directory, ebnf-spool-file)
6924 (ebnf-spool-buffer, ebnf-spool-region, ebnf-eps-directory)
6925 (ebnf-eps-file, ebnf-eps-buffer, ebnf-eps-region)
6926 (ebnf-syntax-directory, ebnf-syntax-file, ebnf-syntax-buffer)
6927 (ebnf-syntax-region, ebnf-parse-and-sort, ebnf-begin-job)
6928 (ebnf-dimensions, ebnf-production-dimension, ebnf-terminal-dimension)
6929 (ebnf-non-terminal-dimension, ebnf-special-dimension)
6930 (ebnf-terminal-dimension1, ebnf-repeat-dimension)
6931 (ebnf-except-dimension, ebnf-alternative-dimension)
6932 (ebnf-optional-dimension, ebnf-one-or-more-dimension)
6933 (ebnf-zero-or-more-dimension, ebnf-sequence-dimension):
6934 Insert log message function.
6935 (ebnf-setup, ebnf-generate-one-or-more, ebnf-generate-zero-or-more)
6936 (ebnf-begin-job, ebnf-begin-file, ebnf-eps-finish-and-write)
6937 (ebnf-insert-ebnf-prologue, ebnf-production-dimension)
6938 (ebnf-terminal-dimension1, ebnf-alternative-dimension)
6939 (ebnf-one-or-more-dimension, ebnf-zero-or-more-dimension)
6940 (ebnf-eps-add-context, ebnf-eps-add-production): Fix code.
6941 (ebnf-eps-filename, ebnf-trim-right): Replace `?\s' by `?\ ' to keep
6942 compatibility with Emacs 20 & 21.
6943 (ebnf-eps-header-comment, ebnf-eps-footer-comment)
6944 (ebnf-eps-file-alist, ebnf-basic-width-extra)
6945 (ebnf-basic-empty-height): New variables.
6946 (ebnf-prologue): Fix PostScript code.
6947 (ebnf-make-empty, ebnf-make-terminal1, ebnf-make-or-more1)
6948 (ebnf-make-production, ebnf-make-alternative, ebnf-make-optional)
6949 (ebnf-make-except, ebnf-make-repeat, ebnf-make-sequence)
6950 (ebnf-make-dup-sequence, ebnf-token-alternative): Add comments.
6952 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6954 * printing.el: Group together all XEmacs/Emacs definitions.
6955 (pr-version): New version 6.9.
6956 (pr-global-menubar, pr-menu-char-height, pr-menu-char-width):
6958 (pr-menu-char-height, pr-menu-char-width): Fix initialization code.
6959 (pr-menu-bind): Fix code.
6960 (pr-e-frame-char-height, pr-e-frame-char-width)
6961 (pr-e-mouse-pixel-position, pr-x-add-submenu, pr-x-event-function)
6962 (pr-x-event-object, pr-x-find-menu-item, pr-x-font-height)
6963 (pr-x-font-width, pr-x-get-popup-menu-response, pr-x-make-event)
6964 (pr-x-misc-user-event-p, pr-x-relabel-menu-item, pr-x-event-x-pixel)
6965 (pr-x-event-y-pixel): Eliminate aliases.
6966 (pr-xemacs-global-menubar): Move macro.
6967 (current-menubar, current-mouse-event, zmacs-region-stays)
6968 (deactivate-mark, pr-menu-position, pr-menu-state, pr-ps-name-old)
6969 (pr-txt-name-old, pr-ps-utility-old, pr-even-or-odd-old, pr-temp-menu):
6971 (pr-region-active-p, pr-menu-position, pr-menu-lookup, pr-menu-lock)
6972 (pr-update-mode-line, pr-do-update-menus, pr-menu-alist)
6973 (pr-relabel-menu-item, pr-menu-set-ps-title, pr-menu-set-txt-title)
6974 (pr-menu-set-utility-title, pr-even-or-odd-pages)
6975 (pr-f-set-keymap-parents, pr-f-set-keymap-name, pr-f-read-string)
6976 (pr-keep-region-active, pr-menu-get-item, pr-menu-set-item-name):
6979 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6981 * ps-print.el: The ps-print commands without face printing should not
6982 print background color. Reported by Leo <sdl.web@gmail.com>.
6983 (ps-print-version): New version 7.2.2.
6984 (ps-begin-job): New arg. Fix ps-default-background and
6985 ps-default-foreground initialization.
6986 (ps-face-attributes): Fix doc string.
6987 (ps-face-background, ps-generate-postscript, ps-generate): Fix code.
6989 * printing.el: Fix ps-print link.
6991 2008-02-01 Kenichi Handa <handa@m17n.org>
6993 * international/mule-diag.el (list-character-sets-2): Don't print width.
6995 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6997 * ps-print.ps: Fix background height.
6998 (ps-print-version): New version 7.2.1.
7000 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7002 * ps-print.el: Split XEmacs/Emacs definitions and sample setup code
7003 into separate files.
7004 (ps-print-version): New version 7.2.
7005 (ps-postscript-code-directory): Fix XEmacs initialization.
7006 (ps-generate-postscript-with-faces):
7007 Call ps-generate-postscript-with-faces1 (new function).
7008 (ps-color-format, ps-float-format): Move variables to ps-def.el.
7009 (ps-xemacs-color-name, ps-mapper, ps-extent-sorter)
7010 (ps-xemacs-face-kind-p, ps-mark-active-p, ps-face-foreground-name)
7011 (ps-face-background-name, ps-frame-parameter, ps-color-device)
7012 (ps-color-values, ps-face-bold-p, ps-face-italic-p):
7013 Move functions to ps-def.el.
7014 (ps-prsc, ps-c-prsc, ps-s-prsc, ps-rmail-mode-hook)
7015 (ps-rmail-print-message-from-summary, ps-print-message-from-summary)
7016 (ps-article-subject, ps-article-author, ps-gnus-article-prepare-hook)
7017 (ps-vm-mode-hook, ps-gnus-print-article-from-summary)
7018 (ps-vm-print-message-from-summary, ps-gnus-summary-setup, ps-info-file)
7019 (ps-info-node, ps-info-mode-hook, ps-jts-ps-setup, ps-jack-setup):
7020 Move functions to ps-samp.el.
7022 * ps-bdf.el (installation-directory, coding-system-for-read):
7023 Move variables to ps-def.el.
7025 * ps-mule.el (leading-code-private-22): Move variables to ps-def.el.
7026 (charset-bytes, charset-dimension, charset-id, charset-width)
7027 (find-charset-region, char-width, chars-in-region, forward-point)
7028 (decompose-composite-char, encode-coding-string, coding-system-p)
7029 (ccl-execute-on-string, define-ccl-program, multibyte-string-p)
7030 (string-make-multibyte, encode-char): Move functions to ps-def.el.
7032 * ps-def.el: New file. XEmacs/Emacs definitions.
7033 (ps-generate-postscript-with-faces1): New function.
7034 (ps-color-format, ps-float-format): Move variables from ps-print.el.
7035 (ps-xemacs-color-name, ps-mapper, ps-extent-sorter)
7036 (ps-xemacs-face-kind-p, ps-mark-active-p, ps-face-foreground-name)
7037 (ps-face-background-name, ps-frame-parameter, ps-color-device)
7038 (ps-color-values, ps-face-bold-p, ps-face-italic-p):
7039 Move functions from ps-print.el.
7040 (installation-directory, coding-system-for-read):
7041 Move variables from ps-bdf.el.
7042 (leading-code-private-22): Move variable from ps-mule.el.
7043 (charset-bytes, charset-dimension, charset-id, charset-width)
7044 (find-charset-region, char-width, chars-in-region, forward-point)
7045 (decompose-composite-char, encode-coding-string, coding-system-p)
7046 (ccl-execute-on-string, define-ccl-program, multibyte-string-p)
7047 (string-make-multibyte, encode-char): Move functions from ps-mule.el.
7049 * ps-samp.el: New file. Sample setup code.
7050 (ps-prsc, ps-c-prsc, ps-s-prsc, ps-rmail-mode-hook)
7051 (ps-rmail-print-message-from-summary, ps-print-message-from-summary)
7052 (ps-article-subject, ps-article-author, ps-gnus-article-prepare-hook)
7053 (ps-vm-mode-hook, ps-gnus-print-article-from-summary)
7054 (ps-vm-print-message-from-summary, ps-gnus-summary-setup, ps-info-file)
7055 (ps-info-node, ps-info-mode-hook, ps-jts-ps-setup, ps-jack-setup):
7056 Move functions from ps-print.el.
7058 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7060 * ps-print.el: Handle frame parameters (background and/or foreground
7061 colors) changing dynamically. Reported by Leo <sdl.web@gmail.com>.
7062 (ps-print-version): New version 7.1.
7063 (ps-x-frame-property, ps-e-frame-parameter): New aliases.
7064 (ps-frame-parameter): New function.
7065 (ps-default-fg, ps-default-bg): New default value ('frame-parameter).
7066 Fix doc and customization.
7067 (ps-begin-job): Get frame parameters (background and/or foreground
7069 (ps-do-despool): Ensure ps-printer-name has a valid value.
7071 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7073 * progmodes/ebnf-abn.el:
7074 * progmodes/ebnf-bnf.el:
7075 * progmodes/ebnf-dtd.el:
7076 * progmodes/ebnf-ebx.el:
7077 * progmodes/ebnf-iso.el:
7078 * progmodes/ebnf-otz.el:
7079 * progmodes/ebnf-yac.el:
7080 * progmodes/ebnf2ps.el:
7085 * ps-print.el: Remove 'Time-stamp' comment mark.
7087 * printing.el (pr-menu-bind): Replace 'easy-menu-change' by
7088 'easy-menu-add-item' when called in Emacs 21 or higher.
7090 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7092 * ps-print.el : Fix doc.
7093 (ps-print-version): New version 7.0.
7095 2008-02-01 Kenichi Handa <handa@m17n.org>
7097 * mail/emacsbug.el (report-emacs-bug): Insert also the value of
7100 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7102 * ps-print.el: Fix maintainer email. Eliminate function declaration
7103 that kept compatibility with older Emacs version.
7104 (ps-print-version): New version 6.7.
7106 2008-02-01 Kenichi Handa <handa@m17n.org>
7108 * international/quail.el (quail-get-translations):
7109 Make quail-current-key multibyte if not yet done.
7111 2008-02-01 Zhang Wei <id.brep@gmail.com>
7113 * language/chinese.el ("Chinese-GBK"): Add tutorial.
7114 ("Chinese-GB18030"): Add sample-text and tutorial.
7116 * international/fontset.el (font-encoding-alist)
7117 (setup-default-fontset): Add gb18030.
7118 (x-pixel-size-width-font-regexp, vertical-centering-font-regexp)
7119 (charset-script-alist): Add gbk and gb18030.
7121 * international/characters.el: Put property
7122 preferred-coding-system on gbk and gb18030.
7124 * international/mule-cmds.el (locale-language-names): Add an entry
7125 for "zh_CN.UTF-8" and change "chs" to "Chinese-GBK".
7127 * faces.el (face-font-registry-alternatives): Add gb18030.
7129 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7131 * ps-mule.el: Fix maintainer email.
7133 2008-02-01 Kenichi Handa <handa@m17n.org>
7135 * international/quail.el (quail-insert-kbd-layout): Check the
7136 length of (cdr translation).
7137 (quail-get-current-str): Check the length of (cdr def).
7139 2008-02-01 Kenichi Handa <handa@m17n.org>
7141 * ruler-mode.el (ruler-mode-ruler): Make the string `ruler' multibyte.
7143 2008-02-01 Kenichi Handa <handa@m17n.org>
7145 * international/mule-cmds.el (ucs-insert): Re-implement.
7147 2008-02-01 Kenichi Handa <handa@m17n.org>
7149 * composite.el (terminal-composition-modification): New function.
7150 (terminal-composition-function): Create composition with the above
7151 modification function.
7153 2008-02-01 Zhang Wei <id.brep@gmail.com>
7155 * international/characters.el: Add more full-width characters in
7158 2008-02-01 Kenichi Handa <handa@m17n.org>
7160 * international/fontset.el (create-fontset-from-fontset-spec):
7161 Fix script name handling.
7163 2008-02-01 Kenichi Handa <handa@m17n.org>
7165 * composite.el (terminal-composition-function): New function.
7166 (terminal-composition-function-table): New variable.
7167 (auto-compose-chars): If running on a terminal, use
7168 terminal-composition-function-table.
7170 * loadup.el: Load "composite" after "international/characters".
7172 * international/characters.el: Delete codes for setting up charset
7173 property nospace-between-words. Fix setting up of
7174 char-width-table. Don't make ethiopic and tibetan double column.
7176 * textmodes/fill.el (fill-find-break-point-function-table):
7177 Don't set it up in defvar.
7178 (fill-nospace-between-words-table): New variable.
7179 (fill-delete-newlines): Check fill-nospace-between-words-table
7180 instead of charset property nospcae-between-words.
7182 2008-02-01 Kenichi Handa <handa@m17n.org>
7184 * composite.el (global-auto-composition-mode): Make the initial
7185 value not depend on emacs-basic-display.
7187 * textmodes/fill.el: Don't use charset property
7188 `fill-find-break-point-function'.
7189 (fill-find-break-point-function-table): New variable.
7190 (fill-find-break-point): Lookup fill-find-break-point-function-table.
7192 2008-02-01 Kenichi Handa <handa@m17n.org>
7194 * international/mule.el (coding-system-list): Be sure to exclude
7195 subsidiary coding systems.
7197 2008-02-01 Kenichi Handa <handa@m17n.org>
7199 * composite.el (auto-composition-after-change)
7200 (toggle-auto-composition): Remove `auto-composed' property instead
7201 of setting it to nil.
7203 2008-02-01 Kenichi Handa <handa@m17n.org>
7205 * language/misc-lang.el (iso-8859-6): New coding system.
7207 2008-02-01 Kenichi Handa <handa@m17n.org>
7209 * dnd.el (dnd-get-local-file-name): Give a unibyte string to
7210 replace-regexp-in-string as replacement.
7212 2008-02-01 Kenichi Handa <handa@m17n.org>
7214 * international/fontset.el (otf-script-alist): Add byzm, math,
7217 * international/characters.el (script-list): Add nko,
7218 byzantine-musical-symbol, musical-symbol, and mathematical.
7220 2008-02-01 Kenichi Handa <handa@m17n.org>
7222 * composite.el (auto-compose-current-font): New variable.
7223 (auto-compose-chars): New arg FONT-OBJECT.
7225 2008-02-01 Kenichi Handa <handa@m17n.org>
7227 * international/characters.el: Modify category-table and
7228 script-table for new Ethiopic character range.
7230 2008-02-01 Kenichi Handa <handa@m17n.org>
7232 * international/mule-cmds.el (set-language-environment-fontset):
7235 2008-02-01 Kenichi Handa <handa@m17n.org>
7237 * international/fontset.el (otf-script-alist): Set it.
7239 2008-02-01 Kenichi Handa <handa@m17n.org>
7241 * international/fontset.el (font-encoding-alist):
7242 Fix for "ethiopic-unicode".
7244 2008-02-01 Kenichi Handa <handa@m17n.org>
7246 * international/fontset.el (script-representative-chars):
7247 Add an entry for latin script.
7249 2008-02-01 Kenichi Handa <handa@m17n.org>
7251 * faces.el (font-weight-table): Treat regular and normal as the
7253 (font-slant-table): Add (roman . 100).
7255 2008-02-01 Kenichi Handa <handa@m17n.org>
7257 These changes are for the new font handling codes.
7259 * faces.el (font-weight-table, font-slant-table)
7260 (font-swidth-table): New customizable variables.
7262 * international/fontset.el (font-encoding-alist): Add koi8-4.
7263 (script-representative-chars): Set the default value.
7264 (create-fontset-from-x-resource): Delete `message'.
7266 2008-02-01 Kenichi Handa <handa@m17n.org>
7268 * tar-mode.el (tar-untar-buffer, tar-summarize-buffer):
7269 Call set-buffer-multibyte with arg `to'.
7271 2008-02-01 Kenichi Handa <handa@m17n.org>
7273 * info.el (Info-fontify-node): Check if already fontified or not
7274 by next-single-property-change.
7276 2008-02-01 Kenichi Handa <handa@m17n.org>
7278 * international/mule.el (ctext-pre-write-conversion): Produce
7279 extra designation sequence for ASCII at the end off extended segment.
7281 2008-02-01 Kenichi Handa <handa@m17n.org>
7283 * international/mule.el (ctext-non-standard-encodings-table):
7284 Reverse the returning list.
7285 (ctext-pre-write-conversion): Fix encoding with extended segments.
7287 * international/mule-conf.el (compound-text)
7288 (compound-text-with-extensions): Add long-form in :flags.
7290 2008-02-01 Kenichi Handa <handa@m17n.org>
7292 * international/fontset.el (create-fontset-from-fontset-spec): Fix
7293 regexp for paring FONTSET-SPEC (allow spaces after `:').
7295 2008-02-01 Kenichi Handa <handa@m17n.org>
7297 * international/fontset.el (create-fontset-from-fontset-spec): Fix
7298 for the case that a charset is specified as target.
7300 2008-02-01 Kenichi Handa <handa@m17n.org>
7302 * international/ccl.el (ccl-embed-string): Check string length.
7303 Set special flag for multibyte character sequence.
7304 (ccl-compile-write-string, ccl-compile-write-repeat): Don't make
7306 (ccl-compile-write): If the character code doesn't fit in 22-bit
7307 (ccl-dump-write-const-string): Check special flag for multibyte
7310 2008-02-01 Kenichi Handa <handa@m17n.org>
7312 * ps-mule.el (ps-mule-eight-bit-char): Delete this function.
7313 (ps-mule-encode-region, ps-mule-plot-composition): Don't use
7314 ps-mule-eight-bit-char.
7316 2008-02-01 Kenichi Handa <handa@m17n.org>
7318 * language/chinese.el ("Chinese-BIG5"):
7319 Set ctext-non-standard-encodings property to "big5-0".
7321 * international/mule.el (ctext-non-standard-encodings):
7323 (ctext-non-standard-encodings-alist): Set charset `big5' in the
7325 (ctext-non-standard-encodings-table): Return a list instead of
7327 (ctext-pre-write-conversion): Adjust for the above change.
7329 2008-02-01 Zhang Wei <id.brep@gmail.com>
7331 * international/mule.el (ctext-non-standard-encodings-alist):
7332 Add an entry for gbk-0.
7333 (ctext-post-read-conversion): Use multibyt-char-to-unibyte to read
7336 * language/chinese.el ("Chinese-GBK"):
7337 Set ctext-non-standard-encodings property to "gbk-0".
7338 Add sample-text property.
7340 2008-02-01 Kenichi Handa <handa@m17n.org>
7342 * international/kkc.el (kkc-region): Use
7343 this-single-command-raw-keys on pushing back an unhandled key sequence.
7345 2008-02-01 Kenichi Handa <handa@m17n.org>
7347 * international/encoded-kb.el (encoded-kbd-mode):
7348 Check saved-input-mode on turning off Encoded Kbd mode.
7350 * composite.el (auto-composition-after-change): Use save-buffer-state.
7351 (turn-on-auto-composition-if-enabled): Don't turn on
7352 auto-composition-mode in a unibyte buffer.
7354 2008-02-01 Kenichi Handa <handa@m17n.org>
7356 * startup.el (command-line): Use custom-reevaluate-setting for
7357 global-auto-composition-mode.
7359 * composite.el (auto-composition-function): Make it buffer local.
7360 (auto-composition-mode): New minor mode.
7361 (turn-on-auto-composition-if-enabled): New function.
7362 (global-auto-composition-mode): New global minor mode.
7364 2008-02-01 Kenichi Handa <handa@m17n.org>
7366 * descr-text.el (describe-char): Use insert-text-button instead of
7367 widget-create for "customize what to show" button.
7369 2008-02-01 Naoto Takahashi <ntakahas@m17n.org>
7371 * language/ethiopic.el: Fix copyright.
7372 (composition-function-table): Support a new character in Unicode 4.1.
7374 * language/ethio-util.el (ethio-fidel-to-tex-buffer)
7375 (ethio-tex-to-fidel-buffer, ethio-composition-function)
7376 ("ethiopic-tex"): Support new characters in Unicode 4.1.
7378 2008-02-01 Kenichi Handa <handa@m17n.org>
7380 * international/characters.el: Register characters in
7381 auto-fill-chars. Put nospace-between-words to more charsets.
7383 2008-02-01 Zhang Wei <id.brep@gmail.com>
7385 * international/mule-cmds.el (locale-language-names): Add entries
7386 for zh_CN.GB2312, zh_CN.GBK, and zh_CN.GB18030.
7387 (locale-preferred-coding-systems): Fix entries for Chinese locales.
7389 2008-02-01 Kenichi Handa <handa@etlken>
7391 * international/utf-7.el: Delete the definition of utf-7.
7392 (utf-7-post-read-conversion, utf-7-pre-write-conversion):
7393 Add autoload cookies.
7395 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7397 * term/mac-win.el: Delete the code to create a fontset from the X
7400 2008-02-01 Naoto Takahashi <ntakahas@m17n.org>
7402 * international/robin.el (robin-define-package): Be sure to call
7403 put-char-code-property.
7405 2008-02-01 Kenichi Handa <handa@m17n.org>
7407 * language/korean.el (iso-2022-kr): Set :suitable-for-keyboard
7410 * international/mule-conf.el (cp1125): Set :ascii-compatible-p
7413 * international/mule.el (coding-system-get):
7414 Check `ascii-incompatible' for backward compatiblity.
7415 (set-file-name-coding-system): Signal an error for a coding system
7416 not suitable for file name.
7417 (set-keyboard-coding-system): Signal an error for a coding system
7418 not suitable for keyboard.
7420 * language/chinese.el (iso-2022-cn, iso-2022-cn-ext):
7421 Set :suitable-for-keyboard property to 1.
7423 * language/japanese.el (iso-2022-jp, iso-2022-jp-2)
7424 (iso-2022-jp-2004): Set :suitable-for-keyboard property to 1.
7426 * language/vietnamese.el (vietnamese-viscii, vietnamese-vscii)
7427 (vietnamese-tcvn): Set :suitable-for-file-name property to t.
7429 2008-02-01 Naoto Takahashi <ntakahas@m17n.org>
7431 * international/robin.el (robin-define-package): Delete redundant code.
7432 (robin-add-rule): Allow N-1 reverse conversion.
7434 2008-02-01 Naoto Takahashi <ntakahas@m17n.org>
7436 * international/robin.el (robin-define-package): Make the
7437 expanded form shorter.
7439 2008-02-01 Zhang Wei <id.brep@gmail.com>
7441 * language/chinese.el (chinese-iso-8bit): Fix mime-charset of
7444 2008-02-01 Kenichi Handa <handa@m17n.org>
7446 * loadup.el: If we are byte-compiling unidata-gen.el or running
7447 unidata-ge-files, set purify-flag to nil.
7449 2008-02-01 Kenichi Handa <handa@m17n.org>
7451 * loadup.el: Load international/charprop.el with NOERROR t.
7453 * Makefile.in (AUTOGENEL): Add charprop.el and uni-*.el.
7455 2008-02-01 Kenichi Handa <handa@m17n.org>
7457 * term/mac-win.el (mac-centraleurroman, mac-cyrillic):
7458 New charsets and coding systems.
7459 (mac-symbol, mac-dingbats): New charsets.
7461 2008-02-01 Kenichi Handa <handa@m17n.org>
7463 * international/characters.el: Set syntax of NBSP to punctuation.
7465 2008-02-01 Kenichi Handa <handa@m17n.org>
7467 * international/mule-cmds.el: Don't require wid-edit.
7469 2008-02-01 Naoto Takahashi <ntakahas@m17n.org>
7471 * international/robin.el: New file.
7473 * language/ethiopic.el: Change encoding to utf-8-emacs.
7474 Register ethio-composition-function in composition-function-table.
7475 ("Ethiopic"): Change coding-systems to utf-8-emacs.
7477 * language/ethio-util.el: Change encoding to utf-8-emacs.
7478 Rewrite all transliteration functions to use robin.el.
7479 (ethio-fidel-to-sera-map, ethio-fidel-to-tex-map)
7480 (ethio-sera-to-fidel-table, ethio-implicit-period-conversion)
7481 (ethio-prefer-ascii-punctuation): Delete variables.
7482 (ethio-char-to-ethiocode, ethio-convert-digit)
7483 (ethio-ethiocode-to-char, ethio-fidel-to-sera-mail)
7484 (ethio-fidel-to-sera-mail-or-marker, ethio-lone-consonant-p)
7485 (ethio-sera-to-fidel-english, ethio-sera-to-fidel-ethio)
7486 (ethio-sera-to-fidel-mail, ethio-sera-to-fidel-mail-or-marker)
7487 (ethio-tilde-escape, ethio-toggle-punctuation): Delete functions.
7488 (ethio-adjust-robin, ethio-composition-function)
7489 (ethio-get-consonant, ethio-prefer-amharic, ethio-process-digits)
7490 (ethio-sera-to-fidel-region-ethio)
7491 (ethio-sera-to-fidel-region-noethio)
7492 (ethio-use-colon-for-colon, ethio-use-three-dot-question):
7495 2008-02-01 Miles Bader <miles@gnu.org>
7497 * international/mule.el (auto-coding-regexp-alist)
7498 (ctext-pre-write-conversion): Replace embedded control characters
7499 with octal escapes; this prevents diff from thinking the file is binary.
7501 2008-02-01 Miles Bader <miles@gnu.org>
7503 * descr-text.el (describe-char-unidata-list):
7504 * emacs-lisp/bytecomp.el (byte-compile-fix-header)
7505 (byte-compile-insert-header):
7506 * international/mule.el (charset-list, set-coding-priority)
7507 (ignore-relative-composition):
7508 * international/mule-util.el (detect-coding-with-priority):
7509 * international/mule-diag.el:
7510 * international/mule-cmds.el (language-info-custom-alist):
7511 * international/codepage.el (codepage-setup):
7512 Replace references to Emacs version "22" with "23".
7514 2008-02-01 Kenichi Handa <handa@m17n.org>
7516 * Makefile.in (DONTCOMPILE): Include charprop.el and uni-*.el.
7518 * international/fontset.el (font-encoding-alist): Add an entry for
7520 (setup-default-fontset): Add entries for microsoft-cp1251 and
7521 koi8-r for cyrillic.
7523 * international/mule-cmds.el (char-code-property-alist): New variable.
7524 (define-char-code-property): New function.
7525 (get-char-code-property, put-char-code-property): Handle a
7526 char-table registerd in char-code-property-alist.
7527 (set-language-environment): Check :ascii-compatible-p property of
7528 nonascii charset instead of its dimension.
7530 * international/uni-bidi.el, international/uni-category.el:
7531 * international/uni-combining.el, international/uni-comment.el:
7532 * international/uni-decimal.el, international/uni-decomposition.el:
7533 * international/uni-digit.el, international/uni-lowercase.el:
7534 * international/uni-mirrored.el, international/uni-name.el:
7535 * international/uni-numeric.el, international/uni-old-name.el:
7536 * international/uni-titlecase.el, international/uni-uppercase.el:
7537 * international/charprop.el: New files automatically generated by
7538 admin/unidata/Makefile.
7540 * loadup.el: Load internationnal/charprop.el.
7542 * descr-text.el (describe-char-unidata-list): New variable.
7543 (describe-char-unicode-data): Use char-code-property-description.
7544 (describe-char): Add lines for describing Unicode-based character
7547 2008-02-01 Kenichi Handa <handa@m17n.org>
7549 * textmodes/ispell.el: These changes are to fix the code merged
7550 from trunk for the change on 2008-02-01.
7551 (ispell-unified-chars-table): Delete it.
7552 (ispell-get-decoded-string): Don't check ispell-unified-chars-table.
7554 2008-02-01 Kenichi Handa <handa@m17n.org>
7556 * international/mule-util.el (char-displayable-p): Check
7557 :charset-list property of CODING.
7559 2008-02-01 Kenichi Handa <handa@m17n.org>
7561 * international/mule-cmds.el (select-safe-coding-system-interactively):
7562 Change 'mime-charset to :mime-charset.
7563 (select-safe-coding-system): Use above.
7564 (set-language-environment): Delete unnecessary code for handling
7565 overriding-fontspec.
7567 2008-02-01 Kenichi Handa <handa@m17n.org>
7569 * international/mule-conf.el: New coding system aliases unix, dos,
7572 2008-02-01 Kenichi Handa <handa@m17n.org>
7574 * international/titdic-cnv.el (tit-process-header): Fix embedded
7576 (titdic-convert): Bind coding-system-for-write to the coding
7577 system specfied in the map file. Remove `charset' property after
7579 (miscdic-convert): Bind coding-system-for-write to the coding
7580 system specfied for the map file. Fix LANGUAGE arg to
7581 quail-define-package.
7582 (batch-miscdic-convert): Check if a file is directory or not.
7584 2008-02-01 Kenichi Handa <handa@m17n.org>
7586 * international/mule.el (coding-system-equal): Move from mule-util.el.
7588 * international/mule-util.el (coding-system-equal): Move to mule.el.
7590 2008-02-01 Kenichi Handa <handa@m17n.org>
7592 * international/encoded-kb.el (encoded-kbd-decode-code-list):
7594 (encoded-kbd-self-insert-charset, encoded-kbd-setup-keymap):
7595 Support multibyte charsets.
7597 2008-02-01 Kenichi Handa <handa@m17n.org>
7599 * language/china-util.el (hz-set-msb-table): Turn chars beyond 128
7602 * international/mule-conf.el: Don't define coding system
7605 2008-02-01 Kenichi Handa <handa@m17n.org>
7607 * international/mule-cmds.el (locale-language-names): Fix for
7610 2008-02-01 Kenichi Handa <handa@m17n.org>
7612 * international/fontset.el (font-encoding-alist): Add gbk.
7613 (charset-script-alist): Add chinese-gbk.
7615 2008-02-01 Kenichi Handa <handa@m17n.org>
7617 * language/chinese.el (chinese-gbk): Include ascii in charset-list.
7619 2008-02-01 Kenichi Handa <handa@m17n.org>
7621 * language/japanese.el ("Japanese"): Fix ordering of charsets.
7623 2008-02-01 Kenichi Handa <handa@m17n.org>
7625 * international/encoded-kb.el (encoded-kbd-self-insert-charset)
7626 (encoded-kbd-self-insert-utf-8, encoded-kbd-setup-keymap)
7627 (encoded-kbd-mode): Adjust code merged from trunk for unicode branch.
7629 2008-02-01 Kenichi Handa <handa@m17n.org>
7631 * descr-text.el (describe-char): Fix for the case CODE is a cons
7634 2008-02-01 Steven Tamm <steventamm@mac.com>
7636 * term/mac-win.el: Use mac-standard-fontset-spec to create fontset-mac.
7637 (mac-standard-fontset-spec): Create.
7639 2008-02-01 Kenichi Handa <handa@m17n.org>
7641 * international/mule-diag.el (unicode-data):
7642 Call find-file-noselect with NOWARN t.
7644 2008-02-01 Kenichi Handa <handa@m17n.org>
7646 * international/mule-conf.el (cp932-2-byte): Fix :code-space.
7648 2008-02-01 Kenichi Handa <handa@m17n.org>
7650 * international/characters.el: Give more CJK characters the
7653 * descr-text.el (describe-char): Make it work on *Help* buffer.
7654 Suppress auto-composition on a region describing about composition.
7656 * language/european.el (diacritic-compose-region)
7657 (diacritic-compose-string, diacritic-composition-function):
7658 Compose diacritical marks only with a character whose syntax is
7660 (diacritic-post-read-conversion): Delete it.
7662 2008-02-01 Kenichi Handa <handa@m17n.org>
7664 * composite.el (auto-compose-chars): Execute the main code in
7667 2008-02-01 Kenichi Handa <handa@m17n.org>
7669 * international/fontset.el (x-complement-fontset-spec):
7670 Don't change CHARSET_REGISTRY and CHARSET_ENCODING fields.
7672 2008-02-01 Kenichi Handa <handa@m17n.org>
7674 * international/characters.el (next-word-boundary-kana):
7675 Handle half-width kana.
7677 2008-02-01 Kenichi Handa <handa@m17n.org>
7679 * international/mule-conf.el (indian-1-column): Fix :emacs-mule-id.
7681 2008-02-01 Kenichi Handa <handa@m17n.org>
7683 * language/japanese.el (japanese-iso-8bit): Fix order of :charset-list.
7685 * mail/rmail.el (rmail-decode-babyl-format):
7686 Use with-coding-priority instead of detect-coding-with-priority.
7688 2008-02-01 Kenichi Handa <handa@m17n.org>
7690 * international/mule.el (make-translation-table)
7691 (make-translation-table-from-vector): Set the second extra slot of
7692 the char table to 1.
7693 (make-translation-table-from-alist): Fix handling of multiple entries.
7695 2008-02-01 Kenichi Handa <handa@m17n.org>
7697 * language/japanese.el (jisx0213-to-unicode, unicode-to-jisx0213):
7698 New translation tables.
7700 * international/mule.el (make-translation-table-from-alist):
7703 2008-02-01 Kenichi Handa <handa@m17n.org>
7705 * international/mule.el (translate-region): Re-implement it here.
7706 Make it interactive.
7708 2008-02-01 Kenichi Handa <handa@m17n.org>
7710 * ps-mule.el (ps-mule-font-info-database): Doc fix.
7712 2008-02-01 Kenichi Handa <handa@m17n.org>
7714 * international/mule-conf.el (chinese-cns11643-15): New charset.
7716 2008-02-01 Kenichi Handa <handa@m17n.org>
7718 * international/fontset.el (font-encoding-alist): Add entries for
7719 variations of cns11643 fonts.
7720 (setup-default-fontset): Add cns11643 fonts as fallback fonts.
7722 2008-02-01 Kenichi Handa <handa@m17n.org>
7724 * international/mule-diag.el (list-charset-chars): Put charset
7727 * international/fontset.el (setup-default-fontset): Delete the
7728 entry for symbol script, add JISX0213 to kana script, specify
7731 2008-02-01 Kenichi Handa <handa@m17n.org>
7733 * international/fontset.el (setup-default-fontset)
7734 (font-encoding-alist): Register "JISX0213.2004-1".
7736 * international/mule-diag.el (list-character-sets): Fix the first
7738 (sort-listed-character-sets): Adjust for the change of
7739 list-characters-sets-1.
7740 (list-character-sets-1): List supplementary character sets in a
7742 (list-charset-chars): Validate charset at early stage.
7744 * international/characters.el: Fix `han' script range.
7746 * international/mule-conf.el (japanese-jisx0213.2004-1):
7747 Specify :code-space.
7748 (cp932-2-byte): Fix :code-space.
7749 (unicode-smp, unicode-sip, unicode-ssp): New charsets.
7751 2008-02-01 Kenichi Handa <handa@m17n.org>
7753 * international/mule-conf.el (japanese-jisx0213.2004-1):
7754 Specify :dimension 2.
7756 * language/japanese.el (iso-2022-jp): Exclude japanese-jisx0212.
7757 (iso-2022-jp-2004, euc-jis-2004, japanese-shift-jis-2004):
7759 (iso-2022-jp-3, euc-jisx0213, shift_jis-2004): New coding system
7761 ("Japanese"): Add new charsets and coding systems.
7763 2008-02-01 Kenichi Handa <handa@m17n.org>
7765 * language/japanese.el (japanese-ucs-cp932-to-jis-map):
7766 Rename from japanese-ucs-cp932-map.
7767 (japanese-ucs-jis-to-cp932-map): Rename from japanese-ucs-jis-map.
7768 (japanese-ucs-glibc-map): Delete this translation table.
7769 (japanese-ucs-glibc-to-jis-map, japanese-ucs-jis-to-glibc-map):
7770 New translation tables.
7772 2008-02-01 Kenichi Handa <handa@m17n.org>
7774 * cus-start.el: Handle charset-map-path, not charset-map-directory.
7776 2008-02-01 Kenichi Handa <handa@m17n.org>
7778 * term/x-win.el (x-selection-value): Optimize for ASCII only case.
7780 2008-02-01 Kenichi Handa <handa@m17n.org>
7782 * language/japanese.el: Add map #x00A6 <-> #xFFE4 to translation
7783 tables japanese-ucs-*-map.
7785 2008-02-01 Kenichi Handa <handa@m17n.org>
7787 * international/eucjp-ms.el: New file (automatically generated by
7788 admin/charsets/Makefile).
7790 * international/cp51932.el: New file (automatically generated by
7791 admin/charsets/Makefile).
7793 * language/japanese.el: Load cp51932 and eucjp-ms.
7794 (japanese-ucs-cp932-map, japanese-ucs-jis-map)
7795 (japanese-ucs-glibc-map): New translation tables.
7796 (eucjp-ms): New coding system.
7798 * international/mule.el (coding-system-put): Delete it.
7799 It's implemented in C now.
7801 * international/mule-conf.el (katakana-sjis): Fix :superset to :subset.
7802 (japanese-jisx0213-a): New supplementary charset.
7803 (japanese-jisx0213.2004-1): New charset.
7805 2008-02-01 Kenichi Handa <handa@m17n.org>
7807 * language/japanese.el (japanese-cp932): New coding system.
7808 (cp932): New alias of it.
7810 * international/mule-conf.el (katakana-sjis, cp932-2-byte)
7811 (cp932): New charsets.
7813 * international/mule.el (define-charset): If :code-space is not
7814 given, generate it from :dimension.
7816 2008-02-01 Kenichi Handa <handa@m17n.org>
7818 * composite.el (reference-point-alist): Doc fix.
7819 (encode-composition-rule, decode-composition-rule):
7820 Handle a rule (GREF NREF XOFF YOFF).
7822 2008-02-01 Kenichi Handa <handa@m17n.org>
7824 * language/european.el (diacritic-composition-function): Fix for
7825 the case that POS is at the head. Allow combining with more characters.
7827 2008-02-01 Kenichi Handa <handa@m17n.org>
7829 * descr-text.el (describe-char): Check `charset' property.
7830 Show the code point in the charset in hexadigits.
7832 * international/mule-diag.el (stretches-for-character-list):
7834 (list-block-of-chars): Use tabs instead of `display' property for
7835 aligning characters.
7836 (print-fontset-element): Fix the printing of XLFD.
7838 2008-02-01 Kenichi Handa <handa@m17n.org>
7840 * international/encoded-kb.el (encoded-kbd-self-insert-utf-8):
7842 (encoded-kbd-setup-keymap, encoded-kbd-mode): Add code for
7845 2008-02-01 Kenichi Handa <handa@m17n.org>
7847 * faces.el (read-face-font): Include fontsets in the completion list.
7849 * international/mule-cmds.el (set-locale-environment):
7850 Insert locale-translation-file-name in a unibyte buffer.
7852 * international/characters.el: Fix setting of category `|'.
7854 2008-02-01 Kenichi Handa <handa@m17n.org>
7856 * language/chinese.el (chinese-gb18030): Fix :charset-list.
7858 2008-02-01 Kenichi Handa <handa@m17n.org>
7860 * international/mule-cmds.el (select-safe-coding-system): Fix for
7861 the case that the first element of default-coding-system is t.
7862 Fix a message when some coding systems are rejected.
7864 2008-02-01 Kenichi Handa <handa@m17n.org>
7866 * international/mule-cmds.el (set-language-environment): Put
7867 higher priority to charsets listed in `charset' property of the
7868 language environment.
7870 2008-02-01 Kenichi Handa <handa@m17n.org>
7872 * composite.el (auto-compose-chars): Don't do unnecessary
7873 save-exclusion and save-restriction.
7875 2008-02-01 Kenichi Handa <handa@m17n.org>
7877 * international/mule-conf.el (ctext-no-compositions):
7878 Remove garbage arguments.
7880 * international/mule.el (make-coding-system): Fix generation of
7883 * international/fontset.el (setup-default-fontset): Specify fonts
7884 for `symbol' script.
7886 * international/characters.el (script-list): Include `currency'
7889 2008-02-01 Alex Schroeder <alex@gnu.org>
7891 * timezone.el (timezone-parse-date): Fix style 8 to accept ISO
7892 8601 format (a capital T between the date and the time).
7894 2008-02-01 Kenichi Handa <handa@m17n.org>
7896 * international/mule.el (private-char-area-1-min)
7897 (private-char-area-1-max, private-char-area-2-min)
7898 (private-char-area-2-max, emacs-mule-charset-table): New variables.
7899 (convert-define-charset-argument): New function.
7900 (define-charset): Handle the old calling style.
7901 Update emacs-mule-charset-table.
7902 (make-char-internal): New function.
7904 2008-02-01 Jason Rumney <jasonr@gnu.org>
7906 * w32-charset-info-alist: Define iso10646-1 always.
7908 2008-02-01 Kenichi Handa <handa@m17n.org>
7910 * composite.el (compose-region): Doc fix (delete duplicated line).
7912 2008-02-01 Kenichi Handa <handa@m17n.org>
7914 * international/characters.el: Fix syntax for Ethiopic.
7916 2008-02-01 Jason Rumney <jasonr@gnu.org>
7918 * w32-fns.el (w32-charset-info-alist): Accept more charset aliases.
7920 * makefile.w32-in (DONTCOMPILE): Remove old languages.
7921 Add international/latin1-disp.el.
7922 (LC_ALL): Define as C.
7924 2008-02-01 Jason Rumney <jasonr@gnu.org>
7926 * term/w32-win.el: Don't set fontsets to use sjis.
7928 2008-02-01 Kenichi Handa <handa@m17n.org>
7930 * language/japanese.el (iso-2022-jp, iso-2022-jp-2)
7931 (japanese-iso-8bit): Fix the order of charsets in :charset-list.
7933 2008-02-01 Kenichi Handa <handa@m17n.org>
7935 * composite.el (auto-composition-chunk-size): Delete variable.
7936 (auto-compose-chars): Always stop after processing a newline.
7938 2008-02-01 Kenichi Handa <handa@m17n.org>
7940 * international/mule.el (define-coding-system): Fix attribute
7943 2008-02-01 Kenichi Handa <handa@m17n.org>
7945 * ps-bdf.el: Largely re-write.
7947 * ps-mule.el: Largely re-write.
7949 * ps-print.el (ps-generate-string-list): Delete function.
7950 (ps-rh-cache, ps-lf-cache, ps-rf-cache): Delete variables.
7951 (ps-header-footer-string): Delete function.
7952 (ps-encode-header-string-function): New variable.
7953 (ps-generate-header-line): Call ps-encode-header-string-function.
7954 (ps-basic-plot-string-function): New variable
7955 (ps-begin-job): Set ps-basic-plot-string-function and
7956 ps-encode-header-string-function. For setting up headers and
7957 footers, don't use caches such as ps-rh-cache. Don't call
7959 (ps-basic-plot-str, ps-basic-plot-string, ps-control-character):
7960 Don't call ps-mule-prepare-ascii-font.
7961 (ps-plot-region): Don't pay attention to composition and
7962 non-ASCII characters.
7963 (ps-generate): Call ps-mule-end-job.
7964 (ps-mule-prepare-ascii-font, ps-mule-set-ascii-font)
7965 (ps-mule-plot-string, ps-mule-begin-page): Delete autoload.
7966 (ps-mule-end-job): Declare autoload.
7968 * composite.el (auto-compose-region): New function.
7970 2008-02-01 Dave Love <fx@gnu.org>
7972 * international/mule-util.el
7973 (detect-coding-with-language-environment): Doc fix.
7975 * composite.el: Doc fixes.
7976 (auto-compose-chars): Use functionp, not fboundp.
7978 * international/mule-diag.el (list-charset-chars): Set buffer file
7981 * progmodes/cap-words.el (capitalized-words-mode): Add autoload
7984 2008-02-01 Dave Love <fx@gnu.org>
7986 * international/mule-diag.el (list-charset-chars): Set buffer file
7989 * progmodes/cap-words.el (capitalized-words-mode): Add autoload
7992 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
7993 * progmodes/sh-script.el (sh-font-lock-syntactic-face-function):
7994 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
7995 * eshell/esh-opt.el (eshell-process-option):
7996 * emulation/keypad.el (keypad-setup):
7997 * emacs-lisp/lisp-mode.el (prin1-char):
7998 * emacs-lisp/generic.el (generic-mode-set-comments):
7999 * edmacro.el (edmacro-parse-keys):
8000 * disp-table.el (standard-display-default): Use characterp.
8002 2008-02-01 Kenichi Handa <handa@m17n.org>
8004 * international/mule-conf.el (utf-16-be): Make it an alias of
8005 utf-16be-with-signature.
8006 (utf-16-le): Make it an alias of utf-16le-with-signature.
8007 (utf-16-be-with-signature, utf-16-le-with-signature): Remove these
8008 coding system aliases.
8010 * international/utf-7.el (utf-7-decode, utf-7-encode):
8011 Use utf-16be, not utf-16-be.
8013 2008-02-01 Kenichi Handa <handa@m17n.org>
8015 * international/mule.el (coding-system-category): New function.
8016 (set-coding-priority): Re-write.
8017 (make-translation-table): Re-write.
8019 * international/mule-cmds.el (universal-coding-system-argument):
8020 Check the coding system type `undecided', not `t'.
8021 (sort-coding-systems): Fix for iso-2022 coding systems.
8022 (find-multibyte-characters): Fix for eight-bit chars.
8023 (set-language-environment): Set charset priorities according to
8024 the charsets supported by the coding systems of higher priorities.
8026 2008-02-01 Kenichi Handa <handa@m17n.org>
8029 (font-lock-match-c-style-declaration-item-and-skip-to-next):
8030 Check (match-end 2) before going there.
8032 2008-02-01 Kenichi Handa <handa@m17n.org>
8034 * international/mule.el (ctext-non-standard-designations-alist):
8035 Exclude entries for iso8859-1[03456]. Fix docstring.
8036 (ctext-pre-write-conversion): Make it work for the case that FROM
8037 is a string. Don't do unnecessary save-restriction and
8040 2008-02-01 Kenichi Handa <handa@m17n.org>
8042 * international/mule.el (ctext-non-standard-encodings-alist):
8043 Rename from non-standard-icccm-encodings-alist.
8044 (ctext-non-standard-encodings-regexp): New variable
8045 (ctext-post-read-conversion): Full rewrite.
8046 (ctext-non-standard-designations-alist): Rename from
8047 non-standard-designations-alist.
8048 (ctext-pre-write-conversion): Full rewrite.
8049 (define-coding-system): Doc fix (escape '"' by '\').
8051 2008-02-01 Dave Love <fx@gnu.org>
8053 * international/mule-conf.el (utf-16le, utf-16be-16be)
8054 (utf-16le-with-signature, utf-16be-with-signature, utf-16):
8055 Define :mime-text-unsuitable. Rename `utf-16{b,l}e...' from
8056 `-16-{b,l}e-' and define aliases for the old names.
8058 * international/mule.el (define-coding-system): Doc fix.
8060 2008-02-01 Dave Love <fx@gnu.org>
8062 * international/utf-7.el: New file.
8064 * international/mule-conf.el (utf-7): New.
8066 2008-02-01 Kenichi Handa <handa@m17n.org>
8068 * international/mule-conf.el (utf-16): Add :endian 'big.
8070 * international/mule.el (define-coding-system): Fix docstring
8071 about :bom and :endian.
8073 2008-02-01 Dave Love <fx@gnu.org>
8075 * international/mule-diag.el (describe-character-set):
8076 Fix printing dimensions. Use `×', not `x'.
8078 2008-02-01 Kenichi Handa <handa@m17n.org>
8080 * international/fontset.el: Register CDAC fonts in
8081 face-font-rescale-alist instead of face-resizing-fonts.
8083 2008-02-01 Kenichi Handa <handa@m17n.org>
8085 * international/mule-conf.el (utf-16-le): Rename from utf-16-le-nosig.
8086 (utf-16-be): Rename from utf-16-be-nosig.
8087 (utf-16-le-with-signature): Rename from utf-16-le.
8088 (utf-16-be-with-signature): Rename from utf-16-be.
8089 (utf-16): Set :bom to (utf-16-le-with-signature .
8090 utf-16-be-with-signature).
8092 2008-02-01 Dave Love <fx@gnu.org>
8094 * language/georgian.el (georgian-ps, georgian-academy): New coding
8097 * language/chinese.el (chinese-big5-hkscs): New coding system.
8098 (big5-hkscs, cn-big5-hkscs): New aliases.
8100 * international/mule-conf.el (big5-hkscs, georgian-academy):
8103 (pt154): Add mime-charset.
8104 (ptcp154, cp154): New aliases.
8106 2008-02-01 Dave Love <fx@gnu.org>
8108 * international/mule.el (charset-iso-final-char, define-coding-system):
8111 2008-02-01 Kenichi Handa <handa@m17n.org>
8113 * international/ccl.el (define-ccl-program): Fset charset-id
8114 to charset-id-internal temporarily.
8116 2008-02-01 Kenichi Handa <handa@m17n.org>
8118 * international/mule-diag.el (list-block-of-chars):
8119 Use decode-char instead of make-char.
8121 2008-02-01 Kenichi Handa <handa@m17n.org>
8123 * international/fontset.el: Enable the default fontset to use
8124 unicode fonts for ASCII characters.
8125 (x-decompose-font-name): Don't try to resolve PATTERN by
8126 x-resolve-font-name.
8127 (x-complement-fontset-spec): Never prepend an ASCII font.
8128 (create-fontset-from-fontset-spec): If a fontset of the same name
8129 already exists, override it instead of signalling an error. Don't
8130 turn `ascii' into `latin'. Don't update fontset-alias-alist here.
8132 * international/mule-conf.el (unicode-bmp): Delete duplicated
8133 definition. Give it :code-offset 0.
8135 * international/mule-diag.el (print-fontset-element): New function.
8136 (print-fontset): Use print-fontset-element to print the elements
8137 of a fontset. Use it also to print fonts fallen back to the
8140 * term/x-win.el: Delete the code to create a fontset from the X
8143 2008-02-01 Kenichi Handa <handa@m17n.org>
8145 * international/mule-diag.el (print-fontset): Insert proper
8146 newline and indentation spaces.
8148 2008-02-01 Dave Love <fx@gnu.org>
8150 * emacs-lisp/byte-opt.el (side-effect-free-fns): Add langinfo,
8151 multibyte-char-to-unibyte.
8153 * emacs-lisp/cl-macs.el (cl-make-type-test): Use characterp.
8155 * international/mule-cmds.el (find-coding-systems-for-charsets):
8156 Use coding-system-type, coding-system-charset-list.
8157 (standard-keyboard-coding-systems): Delete.
8158 (set-locale-environment): Maybe set keyboard coding system.
8159 Avoid typical warning about codeset in C locale.
8161 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8163 * international/fontset.el (x-complement-fontset-spec): If a
8164 fontname doesn't conform to XLFD format, try to get XLFD name by
8167 2008-02-01 Dave Love <fx@gnu.org>
8169 * international/mule-conf.el (mik, pt154): New charsets.
8171 * language/cyrillic.el (mik, pt154): New coding systems.
8173 2008-02-01 Dave Love <fx@gnu.org>
8175 * international/characters.el: Move parts around so that syntax
8176 definitions aren't overwritten wrongly.
8178 * international/mule-diag.el (unicode-data): Fix treatment of
8179 numeric-value fields.
8181 2008-02-01 Dave Love <fx@gnu.org>
8183 * progmodes/cap-words.el: New file.
8185 2008-02-01 Kenichi Handa <handa@m17n.org>
8187 The following changes are to make character composition happen
8188 automatically on displaying.
8190 * composite.el: Remove all autoload cookies.
8191 (composition-function-table): Move variable declaration from
8192 composite.c. Change format.
8193 (save-buffer-state): Copy from font-lock.el.
8194 (auto-composition-chunk-size): New variable.
8195 (auto-compose-chars): New function. Set
8196 auto-composition-function to it.
8197 (toggle-auto-composition): New function.
8199 * international/characters.el: Make all chararacters in the
8200 charset tibetan to tibetan script.
8202 * international/mule-conf.el (tibetan): Fix :code-space property.
8203 (tibetan-1-column): Delete :superset property, add :code-offset
8206 * international/quail.el (quail-input-string-to-events): Don't
8207 generate compose-chars-after events.
8209 * language/devanagari.el: Register devanagari-composable-function
8210 in composition-function-table for Devanagari characters.
8212 * language/devan-util.el: Register devanagari-composable-pattern
8213 in indian-composable-pattern.
8214 (devanagari-composition-function): Add autoload cookie. Change
8215 arguments to conform to composition-function-table.
8217 * language/european.el: Register combining characters in
8218 composition-function-table.
8219 (diacritic-composition-function): Change arguments to conform to
8220 composition-function-table.
8222 * language/indian.el (indian-composable-pattern): New variable.
8224 * language/ind-util.el (indian-compose-region): Don't call
8225 compose-chars-after, instead call a function registered in
8226 composition-function-table.
8228 * language/lao.el: Register lao-composition-function in
8229 composition-function-table for Lao vowels and tones.
8230 (lao): Don't use lao-post-read-conversion.
8232 * language/lao-util.el (lao-post-read-conversion): Delete this function.
8233 (lao-composition-function): Change arguments to conform to
8234 composition-function-table.
8236 * language/thai.el: Register thai-composition-function in
8237 composition-function-table for Thai vowels and tones.
8238 (thai-tis620): Don't use thai-post-read-conversion.
8240 * language/thai-util.el (thai-post-read-conversion): Delete function.
8241 (thai-composition-function): Change arguments to conform to
8242 composition-function-table.
8244 * language/tibetan.el: Register tibetan-composition-function in
8245 composition-function-table for Tibetan characters.
8247 * language/tibet-util.el (tibetan-composition-function):
8248 Change arguments to conform to composition-function-table.
8250 * loadup.el: Load composite.
8252 2008-02-01 Dave Love <fx@gnu.org>
8254 * international/mule-diag.el (unicode-data): Find unicodedata-file
8257 2008-02-01 Dave Love <fx@gnu.org>
8259 * international/fontset.el: Doc fixes.
8260 ("fontset-default"): Add iso8859-15.
8262 2008-02-01 Kenichi Handa <handa@m17n.org>
8264 * international/fontset.el ("fontset-default"): Add an entry for
8265 `indian-is13194' charset.
8267 * international/mule-conf.el (indian-is13194): Delete :unify-map
8268 property. Don't unify this charset.
8269 (indian-2-column): Delete :superset property, add :code-offset property.
8271 * language/devan-util.el: Delete the superfluous autoload cookie
8272 near the head of the file.
8273 (devanagari-compose-region): Add autoload cookie.
8275 * language/ind-util.el (indian-2-column-to-ucs-region):
8276 Add autoload cookie.
8278 2008-02-01 Kenichi Handa <handa@m17n.org>
8280 * international/fontset.el ("fontset-default"): Add an entry for
8281 `devanagari' script and `malayalam-glyph' charset.
8282 (face-resizing-fonts): Register CDAC fonts.
8284 * international/mule-conf.el (malayalam-glyph): New charset.
8286 2008-02-01 Dave Love <fx@gnu.org>
8288 * term/x-win.el: Fix typo in loop setting x-keysym-table.
8290 2008-02-01 Dave Love <fx@gnu.org>
8292 * international/mule-conf.el (utf-8-emacs): Delete :mime-charset.
8294 * term/x-win.el: Remove some ancient compatibility code. Populate
8297 * international/mule-cmds.el (wid-edit): Require when compiling.
8298 (set-locale-environment): Check locale against coding system
8301 2008-02-01 Kenichi Handa <handa@m17n.org>
8303 * language/indian.el (in-is13194-devanagari):
8304 Fix :post-read-conversion and :pre-write-conversion.
8306 2008-02-01 Dave Love <fx@gnu.org>
8308 * international/mule-cmds.el (charset): Supply doc, :tag.
8310 2008-02-01 Kenichi Handa <handa@m17n.org>
8312 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Be sure to
8313 return a unibyte string.
8315 2008-02-01 Kenichi Handa <handa@m17n.org>
8317 * international/mule-cmds.el (set-locale-environment):
8318 Delete superfluous ')'s at the tail.
8320 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8322 * international/mule.el (define-coding-system): Fix typo;
8323 "docode" -> "decode".
8325 2008-02-01 Dave Love <fx@gnu.org>
8327 * emacs-lisp/byte-opt.el (side-effect-free-fns):
8328 Add string-make-unibyte string-make-multibyte string-to-multibyte
8329 string-as-multibyte string-as-unibyte.
8331 2008-02-01 Dave Love <fx@gnu.org>
8333 * language/english.el (ibm1047, cp1047): New.
8335 * international/mule-conf.el (alternativnyj): Use new table.
8336 (cp866): Define standalone, not as alias.
8337 (ibm866): Change alias.
8340 * language/cyrillic.el (cyrillic-alternativnyj):
8341 Remove mime-charset. Use alternativnj charset.
8342 (cp866): Remove alias. Define standalone.
8344 2008-02-01 Dave Love <fx@gnu.org>
8346 * language/european.el ("Latin-2", "Latin-5"): Doc fix.
8348 * language/cyrillic.el ("Bulgarian"): Fix input method and charset.
8349 ("Tajik", "Belarusian"): Fix charset.
8351 * international/mule-cmds.el (describe-language-environment):
8352 Be case-insensitive when looking for input methods.
8353 (locale-name-match): Doc fix.
8354 (locale-charset-match-p): New.
8355 (set-locale-environment): Warn if coding system doesn't agree
8358 2008-02-01 Kenichi Handa <handa@m17n.org>
8360 * international/mule-cmds.el (select-safe-coding-system): If
8361 :mime-charset property of a coding system is not equal to that
8362 coding system, don't show that :mime-charset name.
8364 2008-02-01 Dave Love <fx@gnu.org>
8366 * international/quail.el (quail-help): Fix underlining.
8368 * language/chinese.el (chinese-gb18030, gb18030)
8369 ("Chinese-GB18030"): New.
8371 * international/mule-cmds.el (locale-language-names): Add GB18030.
8373 * international/swedish.el: Don't require latin-1.
8375 2008-02-01 Dave Love <fx@gnu.org>
8377 * language/czech.el ("Czech"):
8378 * language/slovak.el ("Slovak"):
8379 * language/romanian.el ("Romanian"): Remove unibyte-syntax property.
8381 * language/greek.el ("Greek"): Remove unibyte-syntax property.
8382 (cp737): New coding system.
8384 * language/european.el: Remove unibyte-syntax properties.
8385 Augment some coding-system properties.
8387 * international/mule-cmds.el (set-language-environment):
8388 Check for charset property of environment.
8389 (language-info-alist): Doc fix.
8391 * Makefile.in (DONTCOMPILE): Remove latin-N.el.
8393 * international/characters.el: Add Latin-1.
8395 * international/latin-1.el, international/latin-2.el,
8396 * international/latin-3.el, international/latin-4.el,
8397 * international/latin-5.el, international/latin-8.el,
8398 * international/latin-9.el: Delete.
8400 * loadup.el: Remove international/latin-N.el.
8402 * case-table.el (set-case-syntax-charset, set-case-syntax-1)
8403 (set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
8406 * international/mule-diag.el (unicode-data): Check that
8407 `unicodedata-file' exists.
8409 2008-02-01 Kenichi Handa <handa@m17n.org>
8411 * international/fontset.el (charset-script-alist): Fix script names.
8413 2008-02-01 Kenichi Handa <handa@m17n.org>
8415 * international/latin-1.el: Bind set-case-syntax-charset to
8416 iso-8859-1. Never provide latin-1.
8418 * international/latin-2.el: Bind set-case-syntax-charset to
8419 iso-8859-2. Never provide latin-2.
8421 * international/latin-3.el: Bind set-case-syntax-charset to
8422 iso-8859-3. Never provide latin-3.
8424 * international/latin-4.el: Bind set-case-syntax-charset to
8425 iso-8859-4. Never provide latin-4.
8427 * international/latin-5.el: Bind set-case-syntax-charset to
8428 iso-8859-9. Never provide latin-5.
8430 * international/latin-8.el: Bind set-case-syntax-charset to
8431 iso-8859-14. Never provide latin-8.
8433 * international/latin-9.el: Bind set-case-syntax-charset to
8434 iso-8859-15. Never provide latin-9.
8436 * case-table.el (set-case-syntax-set-multibyte): Delete variable.
8437 (set-case-syntax-charset): New variable.
8438 (set-case-syntax-1): New function.
8439 (set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
8440 Call set-case-syntax-1 on arguments.
8442 * international/mule-cmds.el (set-language-environment): Delete
8443 unnecessary setup of syntax/case for unibyte case.
8445 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8447 * international/fontset.el (generate-fontset-menu): Exclude the
8450 * faces.el (describe-face): Describe :fontset property too.
8452 2008-02-01 Dave Love <fx@gnu.org>
8454 * international/characters.el: Don't set char width of CJK
8455 charsets generally. Add some non-word syntax cases.
8456 (korean-ksc5601): Fix ranges with symbol syntax.
8458 2008-02-01 Dave Love <fx@gnu.org>
8460 * Makefile.in (DONTCOMPILE): Add indian.el.
8462 * language/ind-util.el:
8463 (ucs-bengali-to-is13194-alist, ucs-assamese-to-is13194-alist)
8464 (ucs-gurmukhi-to-is13194-alist, ucs-gujarati-to-is13194-alist)
8465 (ucs-oriya-to-is13194-alist, ucs-tamil-to-is13194-alist)
8466 (ucs-telugu-to-is13194-alist, ucs-malayalam-to-is13194-alist):
8467 Remove declarations and let-bind them in re-written top-level loop
8468 over scripts, including ucs-devanagari-to-is13194-alist.
8470 2008-02-01 Dave Love <fx@gnu.org>
8472 * international/mule-cmds.el (charset): Move.
8473 (language-info-custom-alist): Move. Alter :set.
8474 (find-coding-systems-for-charsets): Check charset type before
8475 getting :charset-list.
8477 * language/ind-util.el (iscii-to-ucs-region): Fix typo.
8479 2008-02-01 Dave Love <fx@gnu.org>
8481 * wid-edit.el (widget-string-complete): New.
8482 (widget-coding-system-prompt-value-history): Delete.
8483 (coding-system): Use coding-system-value-history.
8485 * international/mule-cmds.el (charset): New widget.
8486 (language-info-custom-alist): Use it.
8487 (default-input-method): Modify :type.
8489 2008-02-01 Dave Love <fx@gnu.org>
8491 * language/ind-util.el (ucs-devanagari-to-is13194-alist)
8492 (indian-glyph-char, indian-char-glyph): Delete.
8493 (is13194-default-repertory): Rename from is13194-default-repartory.
8494 (iscii-to-ucs-region): Hoist evals from loop.
8496 * language/devan-util.el (dev-charseq): Avoid indian-glyph-char.
8498 * language/indian.el (indian-script-table)
8499 (ccl-encode-indian-glyph-font): Delete.
8501 * international/mule-cmds.el (language-info-custom-alist): New.
8502 (input-method-activate-hook, input-method-inactivate-hook)
8503 (input-method-after-insert-chunk-hook)
8504 (input-method-use-echo-area, set-language-environment-hook)
8505 (exit-language-environment-hook): Customize.
8506 (find-coding-systems-for-charsets): Rewrite.
8507 (default-input-method): Add :link.
8509 2008-02-01 Dave Love <fx@gnu.org>
8511 * international/mule-conf.el (eight-bit): Add :docstring,
8512 :short-name properties.
8516 * case-table.el (set-case-syntax-pair): Remove check on byte lengths.
8518 * language/european.el (cp858): New.
8519 ("Turkish"): Add special case rules.
8521 2008-02-01 Dave Love <fx@gnu.org>
8523 * international/characters.el: Make Ÿ and ÿ a case pair.
8525 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8527 * international/mule-conf.el: Don't define the charset iso-8859-1
8528 here, just setup its properties.
8530 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8532 * international/mule-conf.el (utf-8): Give :mime-charset property.
8534 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8536 * international/characters.el: Remove duplicated case setting for
8537 Cyrillic and Greek letters. Don't setup printable-chars here.
8539 * case-table.el (describe-buffer-case-table): Handle the case
8540 that KEY is a cons within map-char-table.
8542 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8544 * international/characters.el: Fix categories ?A and ?C.
8545 Treat ASCII characters as `latin' script.
8547 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8549 * international/fontset.el (fontset-plain-name): If the fontset
8550 name doesn't ends with "-fontset-*", use family name as the first
8551 part of the plain name.
8552 (create-fontset-from-ascii-font): If "fontset-startup" is not yet
8553 created, use that name for the fontset. Fix arguments to
8554 subst-char-in-string.
8556 2008-02-01 Dave Love <fx@gnu.org>
8558 * term.el (term-char-mode): Remove generic-character-list code.
8560 * ruler-mode.el (ruler-mode-character-validate): Use characterp.
8562 * wid-edit.el (character): Use characterp.
8564 * international/mule-diag.el (describe-coding-system): Add utf-16 case.
8566 * language/viet-util.el (viet-encode-viscii-char): Use encode-char.
8568 * language/cyrillic.el ("Tajik", "Bulgarian", "Belarusian"):
8572 * language/georgian.el (georgian-ps): New coding system.
8574 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8576 * international/mule-cmds.el (reset-language-environment):
8577 Don't set nonascii-translation-table and nonascii-insert-offset.
8578 Call set-unibyte-charset, not set-primary-charset.
8579 (nonascii-translation-table, nonascii-insert-offset):
8580 Declare these variable as obsolete ones.
8581 (set-language-environment): Call set-unibyte-charset, not
8582 set-primary-charset. Call set-charset-priority with `charset'
8583 info of the language environment.
8585 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8587 * international/characters.el (next-word-boundary-han):
8588 Don't treat katakana following han characters as a part of a word.
8590 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8592 * international/characters.el: Call map-charset-chars on big5 (not
8593 chinese-big5-1/2) to set categories `c', `C', and `|'.
8594 (next-word-boundary-han, next-word-boundary-kana): New function.
8595 Register it in next-word-boundary-function-table.
8597 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8599 * arc-mode.el (archive-file-name-coding-system): New variable.
8600 Make it permanent-local.
8601 (byte-after, bref, insert-unibyte): New function. Change most of
8602 char-after, aref, insert to them respectively.
8603 (archive-mode): Set archive-file-name-coding-system.
8604 (archive-summarize): Don't change the buffer's multibyteness.
8605 (archive-extract): Inherit archive-file-name-coding-system from
8606 archive-superior-buffer. Bind coding-system-for-write to
8607 archive-file-name-coding-system.
8608 (archive-*-write-file-member): Encode ENAME by
8609 archive-file-name-coding-system. Bind coding-system-for-write to
8611 (archive-rename-entry): Encode the filename by
8612 archive-file-name-coding-system.
8613 (archive-mode-revert): Don't change the buffer's multibyteness.
8614 (archive-arc-summarize, archive-lzh-summarize)
8615 (archive-zoo-summarize): Don't change the buffer's multibyteness.
8616 Decode filenames by archive-file-name-coding-system.
8617 (archive-arc-rename-entry, archive-zip-chmod-entry): Don't change
8618 the buffer's multibyteness.
8620 * tar-mode.el (tar-file-name-coding-system): New variable.
8621 Make it permanent-local.
8622 (tar-header-block-tokenize): Decode filename and linkname by
8623 tar-file-name-coding-system.
8624 (tar-header-block-checksum): Call multibyte-char-to-unibyte to get
8625 the byte value of eight-bit chars.
8626 (tar-summarize-buffer): Call set-buffer-multibyte with METHOD
8627 `to'. Delete unnecessary call of position-bytes.
8628 (tar-mode): Set tar-file-name-coding-system. Delete unnecessary
8629 call of position-bytes.
8630 (tar-extract): Simplify by calling decode-coding-region with
8631 DESTINATION argument. Don't toggle multibyteness of tar buffer.
8632 (tar-copy, tar-expunge): Don't toggle multibyteness of tar buffer.
8633 (tar-clear-modification-flags): Delete unnecessary call of
8635 (tar-rename-entry): Call tar-alter-one-field with encoded new name.
8636 (tar-alter-one-field): Don't toggle multibyteness of tar buffer.
8637 Convert new-data-string by string-to-multibyte before inserting it.
8638 (tar-subfile-save-buffer): Don't toggle multibyteness of tar
8639 buffer. Simplify by calling encoding-coding-region with
8640 DESTINATION argument.
8641 (tar-mode-write-file): Delete unnecessary call of byte-to-position.
8643 2008-02-01 Dave Love <fx@gnu.org>
8645 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Doc fix.
8647 * emacs-lisp/copyright.el (copyright-regexp): Remove redundancy.
8649 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8651 * international/characters.el: Setup char-script-table.
8653 * international/fontset.el: Setup the default fontset by the new
8655 (x-complement-fontset-spec): Change the format of arg FONTLIST to
8656 an alist of charsets vs font name lists.
8657 (charset-script-alist): New variable.
8658 (create-fontset-from-fontset-spec): Allow script name in
8659 FONTSET-SPEC. If charset is specified in FONTSET-SPEC, change it
8660 to the corresponding script name.
8661 (create-fontset-from-ascii-font): Slight tuning.
8663 * international/mule-conf.el (devanagari-glyph): New charset.
8664 Unify these charsets: korean-ksc5601, ipa, tibetan, ethiopic,
8665 japanese-jisx0208, japanese-jisx0212, japanese-jisx0213-1,
8666 japanese-jisx0213-2.
8668 * international/mule-diag.el (print-fontset): Use describe-vector
8669 to handle a char table returned by fontset-info.
8671 * language/indian.el: Don't register ccl-encode-indian-glyph-font
8672 and ccl-encode-unicode-font in font-ccl-encoder-alist.
8674 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8676 * international/mule-util.el (detect-coding-with-priority):
8677 Fix the place of using `,' marker in backquote form.
8679 2008-02-01 Dave Love <fx@gnu.org>
8681 * international/mule-conf.el (mule-unicode-e000-ffff): Set :max-code.
8683 * international/mule-util.el (with-coding-priority): Fix.
8685 * international/mule.el (set-coding-priority): Fix obsolete spec.
8687 2008-02-01 Dave Love <fx@gnu.org>
8689 * international/mule-cmds.el (leim-list-header): Add coding tag.
8691 2008-02-01 Dave Love <fx@gnu.org>
8693 * international/mule-cmds.el (find-coding-systems-region)
8694 (language-info-alist, reset-language-environment, princ-list): Doc fix.
8695 (input-method-verbose-flag): Fix :type.
8697 2008-02-01 Dave Love <fx@gnu.org>
8699 * international/mule.el (set-char-table-default): Make obsolete.
8701 2008-02-01 Dave Love <fx@gnu.org>
8703 * language/devanagari.el ("Devanagari"): Fix coding-system,
8706 * international/mule-diag.el (describe-char-after): Modify display
8708 (unicodedata-file, unicodedata-find): New.
8710 2008-02-01 Dave Love <fx@gnu.org>
8712 * emacs-lisp/bytecomp.el (batch-byte-compile-if-not-done): Add
8715 * international/ja-dic-cnv.el (skkdic-convert): Add coding tag.
8717 2008-02-01 Dave Love <fx@gnu.org>
8719 * international/mule-util.el (detect-coding-with-priority): Rewrite.
8721 2008-02-01 Dave Love <fx@gnu.org>
8723 * composite.el (compose-string): Doc fix.
8725 * language/georgian.el ("Georgian"): Delete code-pages feature,
8726 add nonascii-translation.
8728 * language/european.el ("German", "French", "Spanish"):
8729 Add latin-9 as alternative coding system.
8730 ("Slovenian", "Polish"): Add windows-1250 as alternative coding system.
8731 ("Dutch"): Add latin-9 as alternative coding system. Add input method.
8732 ("Turkish"): Add windows-1254 and latin-3 as alternative coding systems.
8733 ("Lithuanian", "Latvian"): Add windows-1257 as alternative coding
8736 * emacs-lisp/byte-opt.el (side-effect-free-fns): Add decode-char,
8738 (side-effect-and-error-free-fns): Add charsetp, max-char,
8741 * simple.el: Don't require cl when compiling.
8743 * Makefile.in (DONTCOMPILE): Fix duplicates.
8745 * emacs-lisp/bytecomp.el (byte-compile-insert-header): Fix typo.
8747 * international/mule.el: Doc fixes.
8748 (load-with-code-conversion): Fix coding-system-type test.
8750 * international/mule-cmds.el (sort-coding-systems): Comment out
8752 (encoded-string-description): Fix coding-system-type test.
8754 2008-02-01 Dave Love <fx@gnu.org>
8756 * international/characters.el: Make korean-ksc5601 double-width.
8758 * international/mule.el (auto-coding-regexp-alist):
8759 Recognize Emacs 20/1 byte-compiled files.
8761 * international/mule-conf.el (file-coding-system-alist):
8762 Change .elc to utf-8-emacs.
8764 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Adjust for use
8766 (byte-compile-insert-header): Update magic number. Add ballast.
8767 (map-char-table): Use byte-compile-funarg-2.
8769 2008-02-01 Dave Love <fx@gnu.org>
8771 * language/cyrillic.el ("Belarusian"): Doc fix.
8772 (cp1125, koi8-t): Doc fix.
8774 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
8775 (find-multibyte-characters): Don't test for charset `unknown'.
8776 (locale-language-names): Change or add: be, bs, cy, mk, ru.koi8,
8777 ru, sr_YU, tg, wa, zh.gbk.
8778 (locale-language-names): Change sp to Cyrillic.
8779 (locale-charset-language-names): Match @euro after utf-8.
8781 2008-02-01 Dave Love <fx@gnu.org>
8783 * language/chinese.el (chinese-gbk, gbk, cp936, windows-936):
8785 ("Chinese-GBK"): New environment.
8787 * language/thai-util.el: Remove redundant unicodes in category-setting.
8789 * language/lao-util.el: Remove redundant unicodes in category-setting.
8791 * international/mule-conf.el (japanese-jisx0213-1)
8792 (japanese-jisx0213-2): Add unify-map.
8794 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8796 * international/quail.el (quail-update-leim-list-file):
8797 Force writing the file by iso-2022-7bit.
8799 * international/titdic-cnv.el (miscdic-convert): Force writing the
8800 file by iso-2022-7bit.
8802 * international/mule.el (define-charset): Change the attribute
8803 :parents to :subset or :superset.
8805 * international/mule-conf.el: Adjust for the change of
8806 define-charset (:parent -> :subset or :superset).
8808 * international/characters.el: Fix the last change.
8810 2008-02-01 Dave Love <fx@gnu.org>
8812 * language/cyril-util.el (cyrillic-encode-koi8-r-char)
8813 (cyrillic-encode-alternativnyj-char): Fix.
8814 (standard-display-cyrillic-translit): Remove redundant unicodes.
8816 2008-02-01 Dave Love <fx@gnu.org>
8818 * language/cyrillic.el ("Tajik", "Bulgarian", "Belarusian"):
8821 * international/mule-conf.el (control-1): New charset.
8822 (eight-bit-control, eight-bit-graphic): Redefine to use raw-bytes space.
8823 (korean-ksc5601): Redefine to use code-offset and unify-map.
8825 2008-02-01 Dave Love <fx@gnu.org>
8827 * international/mule-conf.el (tcvn-5712): New charset.
8829 * language/vietnamese.el (vietnamese-tcvn, tcvn): New coding system.
8830 ("Vietnamese"): Doc fix.
8832 2008-02-01 Dave Love <fx@gnu.org>
8834 * international/mule-conf.el (windows-936): New alias.
8836 * cus-start.el: Add scalable-fonts-allowed.
8838 * international/characters.el: Reinstate various CJK syntax and
8839 category setup. Remove obsolete syntax setting in Greek section.
8840 Optimize the char tables.
8842 * language/thai.el ("Thai"): Add cp874, iso-8859-11 coding systems.
8844 * language/vietnamese.el ("Vietnamese"): Add windows-1258 coding system.
8846 * language/greek.el ("Greek"): Add windows-1253, cp851, cp869
8849 * language/romanian.el ("Romanian"): Add iso-latin-10 coding system.
8851 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8853 * international/characters.el (printable-chars): Setup correctly.
8855 2008-02-01 Dave Love <fx@gnu.org>
8857 * cus-start.el: Add selection-coding-system.
8859 * language/hebrew.el ("Hebrew"): Add windows-1255, cp862 coding systems.
8861 * language/china-util.el (post-read-decode-hz)
8862 (pre-write-encode-hz): Move from chinese.el.
8863 (big5-to-flat-code, flat-code-to-big5, euc-to-flat-code)
8864 (flat-code-to-euc, expand-euc-big5-alist, big5-to-cns): Delete.
8866 * language/chinese.el (post-read-decode-hz)
8867 (pre-write-encode-hz): Move to china-util.el.
8869 * case-table.el (set-case-syntax-pair): Test again for equal byte
8870 lengths of the pair.
8872 * international/characters.el: Add Vietnamese category to
8873 equivalent unicodes.
8875 2008-02-01 Dave Love <fx@gnu.org>
8877 * international/mule-conf.el (chinese-sisheng, ipa)
8878 (indian-is13194, tibetan, ethiopic): Add :unify-map.
8880 * international/mule-diag.el (describe-character-set): Account for
8881 more than two dimensions of possibly different size.
8882 (describe-current-coding-system): Add selection-coding-system.
8884 * international/mule-cmds.el (unify-8859-on-encoding-mode)
8885 (unify-8859-on-decoding-mode): Move from mule.el.
8887 * international/mule.el (unify-8859-on-encoding-mode)
8888 (unify-8859-on-decoding-mode): Remove :init-value.
8889 (charset-chars): Add optional dimension arg.
8890 (unify-8859-on-encoding-mode, unify-8859-on-decoding-mode):
8891 Move to mule-cmds.el.
8893 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8895 * international/fontset.el: Change registry for japanese-jisx0208
8896 to "JISX0208*" in the default fontset.
8897 (font-encoding-alist): Add an entry for "JISX0208.1983" and
8898 "ISO10646.indian-1".
8900 2008-02-01 Kenichi Handa <handa@etl.go.jp>
8902 * language/japanese.el (japanese-iso-7bit-1978-irv):
8903 Add `designation' to :flags, `ascii' to :charset-list.
8905 * international/mule.el (define-charset): New args :min-code and
8907 (coding-system-iso-2022-flags): Add use-roman, use-oldjis.
8909 * international/mule-conf.el (chinese-gbk): Change :code-offset to
8911 (gb18030-2-byte, gb18030-4-byte-bmp, gb18030-4-byte-smp)
8912 (gb18030-4-byte-ext-1, gb18030-4-byte-ext-2, gb18030): New charsets.
8914 2008-02-01 Dave Love <fx@gnu.org>
8916 * language/thai.el (iso-8859-11): New coding system.
8918 * international/mule-conf.el: Doc fixes.
8921 2008-02-01 Dave Love <fx@albion.dl.ac.uk>
8923 * cus-start.el (scalable-fonts-allowed): Add.
8925 2008-02-01 Dave Love <fx@gnu.org>
8927 * international/mule.el (unify-8859-on-encoding-mode)
8928 (unify-8859-on-decoding-mode): Dummy versions.
8930 * international/ucs-tables.el: Remove.
8932 * Makefile.in (DONTCOMPILE): Add language/chinese.el,
8933 language/japanese.el.
8935 * international/mule-conf.el: Doc fixes.
8937 (cp720, cp858): New charsets.
8939 * mail/sendmail.el (mail-recover-1, mail-recover): Use utf-8-emacs
8940 coding system, not emacs-mule.
8942 * files.el (revert-buffer, recover-file): Likewise.
8944 * desktop.el (desktop-save): Likewise.
8946 2008-02-01 Dave Love <fx@gnu.org>
8948 * international/mule.el (with-category-table): Use make-symbol.
8949 (coding-system-list): Use coding-system-aliases.
8950 (make-translation-table): Don't deal with generic characters.
8952 * international/mule-util.el (coding-system-post-read-conversion)
8953 (coding-system-pre-write-conversion)
8954 (coding-system-translation-table-for-decode)
8955 (coding-system-translation-table-for-encode): Get the right properties.
8956 (with-coding-priority): New macro.
8957 (detect-coding-with-language-environment): Use it.
8958 (coding-system-equal): Use coding-system-plist.
8960 * international/encoded-kb.el (encoded-kbd-setup-keymap) <ccl>:
8961 Use :valid property.
8963 * international/mule-cmds.el (encode-coding-char):
8964 Use find-coding-systems-string. Don't use make-char.
8965 (describe-language-environment): Use coding-system-aliases.
8966 (prefer-coding-system): Doc fix.
8968 * international/mule-diag.el (describe-current-coding-system):
8969 Fix aliases listing.
8970 (print-iso-2022-flags): Delete.
8971 (print-designation): Partial re-write.
8972 (describe-coding-system): Deal with iso-2022 designations, flags.
8974 (describe-char-after): Use characterp. Print explicit unicode.
8975 Remove some obsolete code.
8976 (print-coding-system-briefly): Fix printing aliases.
8977 (print-coding-system): Use coding-system-aliases.
8978 (mule-diag): Don't list coding categories.
8980 * international/mule-conf.el: Doc fixes. Remove redundant :long-name properties.
8981 Re-order charset priorities.
8982 (binary): New alias.
8983 (iso-8859-16): Fix nickname.
8984 (define-iso-single-byte-charset): Un-define after use.
8986 2008-02-01 Dave Love <fx@gnu.org>
8988 * international/characters.el: Additional double width specifications.
8990 * international/mule-diag.el (print-coding-system): Incomplete updates.
8991 (describe-character-set): List more properties.
8992 (print-fontset): Fix case of vector font-spec.
8993 (describe-current-coding-system): Fix iso-7, iso-7-else.
8995 * international/mule-conf.el (ibm866): Fix alias.
8996 (iso-8859-16): Fix nickname.
8998 2008-02-01 Dave Love <fx@gnu.org>
9000 * language/ind-util.el: Avoid decode-char.
9001 (indian--puthash-char, indian--puthash-c, indian--puthash-cv):
9002 Use characterp, not char-valid-p.
9004 * language/devan-util.el: Add coding tag, avoid decode-char.
9006 * international/titdic-cnv.el: Add coding tag.
9007 (tit-process-header): Add coding tag to output.
9009 * language/thai.el (cp874, ibm874): New coding systems.
9011 * emacs-lisp/byte-opt.el <side-effect-and-error-free-fns>:
9014 * language/european.el (cp852, ibm852, cp857, ibm857, cp860)
9015 (ibm860, cp861, ibm861, cp863, cp865, ibm865, cp437, ibm437):
9017 <set-language-info-alist>: Avoid decode-char.
9019 * language/hebrew.el (cp862, ibm862): New coding systems.
9021 * language/greek.el (cp851, ibm851, cp869, ibm869): New coding systems.
9023 * language/cyrillic.el (cp855, ibm855): New coding systems.
9025 * international/mule-conf.el: Avoid decode-char in top-level code
9026 for self-inserting multibyte chars.
9027 (cp437, cp737, cp775, cp851, cp852, cp855, cp857, cp855, cp857)
9028 (cp860, cp861, cp862, cp863, cp864, cp865, cp869, cp874):
9031 * international/characters.el: Various simplifications and additions.
9033 2008-02-01 Dave Love <fx@gnu.org>
9035 * international/mule-conf.el (code-pages): Provide, for compatibility.
9037 * international/code-pages.el: Remove.
9039 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9041 * Makefile.in: Cancel the 2008-02-01 change of mine.
9043 * international/fontset.el: Add setting for unicode font at the
9044 end of the default fontset.
9046 2008-02-01 Dave Love <fx@gnu.org>
9048 * international/mule-conf.el (adobe-standard-encoding, symbol):
9050 (ibm850): Add :ascii-compatible-p.
9052 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9054 * international/mule-conf.el (vietnamese-viscii-lower)
9055 (vietnamese-viscii-upper): Supply them :code-offset, then unify by
9058 2008-02-01 Dave Love <fx@gnu.org>
9060 * cus-start.el: Add charset-map-directory.
9062 * international/fontset.el (font-encoding-alist): Add adobe-symbol.
9064 * format.el (format-alist): Remove ibm, mac, hp entries (available
9067 * language/romanian.el (iso-latin-10): Add :mime-charset.
9068 ("Romanian"): Add doc.
9070 * international/mule-conf.el (iso-8859-10, symbol)
9071 (adobe-standard-encoding, ibm850): New charsets.
9072 (iso-8859-13): Fix IR number, final char.
9073 (file-coding-system-alist): Add .xml.
9075 * language/european.el (iso-latin-6, iso-8859-10, latin-6)
9076 (iso-latin-7, iso-8859-13, latin-7, hp-roman8, roman8)
9077 (adobe-standard-encoding, cp850, ibm850): New coding systems.
9078 ("Latin-6", "Latin-7"): New language environments.
9080 2008-02-01 Dave Love <fx@gnu.org>
9082 * Makefile.in (DONTCOMPILE): Remove ucs-tables, utf-8,
9083 utf-8-subst; add vietnamese, cyrillic, czech.
9085 * language/romanian.el (iso-latin-10): New coding system.
9087 * international/mule-conf.el (emacs-mule): Set :charset-list,
9088 consistent with coding-system-charset-list doc.
9089 (iso-8859-16): New charset.
9091 * international/mule-diag.el (describe-coding-system): Avoid error
9092 for iso-2022, emacs-mule.
9094 2008-02-01 Dave Love <fx@gnu.org>
9096 * international/codepage.el: Remove or comment out most of code.
9097 (codepage-setup): Re-write as trivial, obsolete function.
9099 * language/utf-8-lang.el ("UTF-8"): Use utf-8, not mule-utf-8.
9100 Remove setup function.
9102 * language/english.el (ebcdic-us, ebcdic-uk): New coding systems.
9104 * Makefile.in (DONTCOMPILE): Add language/vietnamese.el,
9105 language/cyrillic.el, language/czech.el.
9107 * language/vietnamese.el (windows-1258, cp1258): New coding systems.
9108 (font-ccl-encoder-alist): Remove viscii, vscii.
9110 * language/hebrew.el (windows-1255, cp1255): New coding systems.
9112 * language/european.el (windows-1254, cp1254, windows-1257)
9113 (cp1257, next, iso-latin-7, iso-8859-13, latin-7): New coding systems.
9114 ("Latin-7", "Lithuanian", "Latvian"): Don't require code-pages.
9116 * language/greek.el (windows-1253, cp1253): New coding systems.
9118 * international/mule-conf.el (ebcdic-us, ebcdic-uk): Change map
9120 (windows-1253, windows-1254, windows-1255, windows-1256)
9121 (windows-1257, windows-1258, next): New charsets.
9123 * international/utf-8.el, international/utf-8-subst.el: Remove.
9125 * international/mule.el: Doc fixes.
9126 (charset-list, generic-char-p, set-coding-priority): Make obsolete.
9127 (coding-system-get): Try to convert old-style symbol to keyword.
9128 (define-charset): Purecopy strings in property list.
9129 (define-coding-system): Purecopy docstring.
9131 * international/mule-diag.el (list-character-sets-2): Avoid
9133 (list-iso-charset-chars, list-non-iso-charset-chars): Delete.
9134 (list-block-of-chars): Re-write.
9135 (describe-character-set): Show more properties.
9136 (describe-char-after): Correct codepoint display.
9137 (print-coding-system): Use symbolic types.
9139 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9141 * Makefile.in: Be sure also to run emacs with LANG=C.
9143 2008-02-01 Dave Love <fx@gnu.org>
9145 * international/mule-diag.el: Doc fixes.
9146 (sort-charset-list, charset-multibyte-form-string): Remove.
9147 (list-character-sets, list-character-sets-1)
9148 (list-character-sets-2): Re-write.
9149 (non-iso-charset-alist): Set to nil and made obsolete.
9150 (decode-codepage-char): Re-write and made obsolete.
9151 (read-charset): Don't use non-iso-charset-alist.
9152 (describe-coding-system): Use keyword properties.
9153 (describe-character-set): Re-write.
9155 * international/mule-conf.el (koi8-u, koi8-t, georgian-ps)
9156 (windows-1250, windows-1251, windows-1252, cp1125, ebcdic-us)
9157 (ebcdic-uk): New charsets.
9159 * language/cyrillic.el (koi8-u, koi8-t, windows-1251, cp1125):
9162 * language/european.el (windows-1252): New coding system.
9164 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9166 * Makefile.in: By sure to run emacs with LC_ALL=C.
9168 * international/encoded-kb.el (encoded-kbd-handle-8bit): Call
9169 encoded-kbd-self-insert-iso2022-8bit with argument 1.
9170 (encoded-kbd-self-insert-charset): New function.
9171 (encoded-kbd-setup-keymap, encoded-kbd-mode): Handle a
9172 coding-system of type charset.
9174 2008-02-01 Dave Love <fx@gnu.org>
9176 * international/mule-cmds.el (set-locale-environment): Comment out
9177 set-keyboard-coding-system stuff.
9179 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9181 * international/mule.el (define-coding-system): Doc fix;
9184 * international/mule-conf.el: Use decode-char instead of make-char.
9186 * international/encoded-kb.el (encoded-kbd-self-insert-iso2022-8bit):
9187 New arg ARG. Directly call self-insert-command. This is a
9188 temporary workaround to make it work with latin-1.
9189 (encoded-kbd-mode): Change `sjis' to `shift-jis'.
9191 * international/characters.el: Setup char-width-table for CJK
9194 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9196 * international/ja-dic-utl.el (skkdic-jisx0208-hiragana-block):
9197 Fix the initial value to specify character range of
9198 japanese-jisx0208, not unicode.
9200 * international/characters.el: Set syntax/category for
9203 2008-02-01 Dave Love <fx@gnu.org>
9205 * mail/sendmail.el (sendmail-send-it): Use :mime-charset, not
9208 * language/vietnamese.el, language/korean.el, language/japanese.el:
9209 * language/hebrew.el, language/greek.el, language/chinese.el:
9210 Fix :mime-charset properties.
9212 * language/cyrillic.el (cyrillic-iso-8bit, cyrillic-koi8)
9213 (cyrillic-alternativnyj): Fix :mime-charset.
9214 (cp878, cp866): New alias.
9216 * language/european.el: Fix mime-charset properties.
9218 * international/mule-cmds.el (sort-coding-systems)
9219 (select-safe-coding-system, select-message-coding-system): Use
9220 :mime-charset, not 'mime-charset.
9222 * international/mule-conf.el: Add various :mime-charset properties.
9224 2008-02-01 Dave Love <fx@gnu.org>
9226 * international/encoded-kb.el (encoded-kbd-self-insert-ccl): Fix
9228 (encoded-kbd-mode): Fix code for coding system type and designations.
9230 * international/mule-conf.el: Spelling fixes.
9232 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9234 * international/fontset.el (fontset-plain-name): Handle the case
9235 that size, weight, slant are not specified in the fontset name.
9237 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
9239 * language/greek.el (greek-iso-8bit): Fix typo.
9241 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9243 * language/chinese.el (chinese-big5): Change :coding-type to `charset'.
9245 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9247 * international/characters.el: Change encoding to utf-8-emacs.
9248 Remove apparent duplicate codes.
9250 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9252 * international/fontset.el: Change the registry for
9253 chinese-gb2312 and add the registry for chinese-gbk.
9255 * international/mule.el (charset-chars): Fix typo.
9257 * international/mule-conf.el (chinese-gbk): New charset.
9259 * international/titdic-cnv.el (titdic-convert): Read into a
9260 unibyte buffer then make the buffer multibyte.
9262 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9264 * international/mule-conf.el (utf-16-le, utf-16-be): Use :bom attribute
9265 instead of :signature.
9267 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9269 * language/czech.el ("Czech"): Set `iso-8859-2' for
9270 `nonascii-translation'.
9272 * language/romanian.el ("Romanian"): Likewise.
9274 * language/slovak.el ("Slovak"): Likewise.
9276 * international/characters.el: Optimize calls of modify-category-entry.
9278 2008-02-01 Kenichi Handa <handa@etl.go.jp>
9280 * bindings.el: Don't bind multibyte characters to
9281 self-insert-command here. It's done in mule-conf.el.
9283 * case-table.el (set-case-syntax-offset): Delete variable.
9284 (set-case-syntax-1): Delete function. Change callers.
9285 (set-case-syntax-delims): Don't check byte length of characters.
9287 * isearch.el (isearch-mode-map): Call set-char-table-range to bind
9288 characters to isearch-printing-char.
9290 * loadup.el: Don't load "international/utf-8". Don't call
9291 update-coding-systems-internal. Bind coding-system-for-write to
9292 `utf-8' while writing fns-XXX.el. Call clear-charset-maps before
9295 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Adjust for the
9296 change of map-char-table.
9298 * eshell/esh-mode.el: Adjust for the change of map-char-table.
9300 * international/characters.el: Adjust for the deletion of
9303 * international/code-pages.el (cp-make-translation-table)
9304 (cp-valid-codes, cp-fix-safe-chars): Delete. Change caller.
9305 (cp-make-coding-system): Call define-coding-system.
9307 * international/fontset.el: Rewrite most code.
9309 * international/ja-dic-cnv.el (skkdic-get-kana-compact-codes):
9310 Call encode-char instead of split-char.
9312 * international/ja-dic-utl.el (skkdic-jisx0208-hiragana-block):
9314 (skkdic-lookup-key): Call encode-char instead of split-char.
9316 * international/titdic-cnv.el (titdic-convert): Bind
9317 coding-system-for-write to 'iso-2022-7bit. Don't work on unibyte
9320 * international/latin-1.el: Don't bind set-case-syntax-offset.
9322 * international/latin-2.el: Don't bind set-case-syntax-offset.
9324 * international/latin-3.el: Don't bind set-case-syntax-offset.
9326 * international/latin-4.el: Don't bind set-case-syntax-offset.
9328 * international/latin-5.el: Don't bind set-case-syntax-offset.
9330 * international/latin-8.el: Don't bind set-case-syntax-offset.
9332 * international/latin-9.el: Don't bind set-case-syntax-offset.
9334 * international/mule-cmds.el: Don't use coding category.
9335 Call set-coding-system-priority instead of set-coding-priority.
9336 (sort-coding-systems, select-safe-coding-system):
9337 Call coding-system-priority-list to get the most preferred one.
9338 (reset-language-environment): Order of coding system priority
9339 changed. Set primary charset to iso-8859-1.
9340 (set-language-environment-coding-systems):
9341 Call set-coding-system-priority instead of set-coding-priority.
9342 (get-charset-property, put-charset-property): Move to mule.el.
9344 * international/mule-conf.el: Ful re-write.
9346 * international/mule-diag.el (print-designation): Change arguments.
9347 (print-iso-2022-flags): New function.
9348 (describe-coding-system, describe-current-coding-system):
9349 Adjust for the new structure of coding system.
9351 * international/mule.el (char-valid-p): Make it an alias of characterp.
9352 (define-charset): Full re-design.
9353 (charset-quoted-standard-p): Delete.
9354 (charsetp): Move to charset.c.
9355 (charset-info, charset-id, charset-bytes, charset-width)
9356 (charset-directioin, charset-iso-graphic-plane)
9357 (charset-reverse-charset): Delete.
9358 (charset-dimension, charset-chars, charset-iso-final-char)
9359 (charset-description, charset-short-name, charset-long-name):
9360 Call charset-plist instead of charset-info.
9361 (charset-plist, set-charset-plist): Move to charset.c.
9362 (get-charset-property, put-charset-property): Move from
9363 mule-cmds.el. Call charset-plist and set-charset-plist.
9364 (make-char): Delete.
9365 (generic-char-p): Make it always return nil.
9366 (decode-char, encode-char): Move to charset.c.
9367 (coding-spec-XXX-idx): Delete variables.
9368 (coding-system-iso-2022-flags): New variable.
9369 (define-coding-system): New function.
9370 (transform-make-coding-system-args, make-coding-system): Delete.
9371 (set-coding-priority): Make it obsolete.
9372 (after-insert-file-set-buffer-file-coding-system)
9373 (find-new-buffer-file-coding-system): Adjust for the new coding
9376 * language/chinese.el, language/cyrillic.el, language/european.el:
9377 * language/greek.el, language/hebrew.el, language/indian.el:
9378 * language/japanese.el, language/korean.el, language/lao.el:
9379 * language/thai.el, language/tibetan.el, language/vietnamese.el:
9380 Call define-coding-system instead of make-coding-system.
9381 Delete all CCL program.
9383 * textmodes/sgml-mode.el (sgml-mode-map): Use encode-char instead
9385 (sgml-char-names-table): Fix iteration limit.
9387 * term/mac-win.el: Delete unnecessary calls of set-fontset-font.
9388 (ccl-encode-mac-roman-font): Delete.
9390 * Makefile.in (DONTCOMPILE): Add latin1-disp.el, ucs-tables.el,
9391 utf-8.el, and utf-8-subst.el as they can't be bytecompiled
9392 currently. This is just a temporary workaround.
9394 2008-02-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9396 * whitespace.el (global-whitespace-mode): Use `find-file-hook' instead
9397 of `find-file-hooks'.
9398 (global-whitespace-toggle-options): Doc fix.
9400 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
9402 * whitespace.el (whitespace): Set :version tag to 23.1.
9403 (whitespace-turn-off, whitespace-toggle-options): Fix typos.
9404 (whitespace-style, whitespace-chars, whitespace-space)
9405 (whitespace-hspace, whitespace-tab, whitespace-newline)
9406 (whitespace-trailing, whitespace-line, whitespace-space-before-tab)
9407 (whitespace-indentation, whitespace-empty, whitespace-space-after-tab)
9408 (whitespace-hspace-regexp, whitespace-space-regexp)
9409 (whitespace-tab-regexp, whitespace-trailing-regexp)
9410 (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
9411 (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
9412 (whitespace-space-after-tab-regexp, whitespace-line-column)
9413 (whitespace-display-mappings, global-whitespace-toggle-options)
9414 (whitespace-cleanup, whitespace-cleanup-region)
9415 (whitespace-interactive-char): Doc fixes.
9417 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
9419 * whitespace.el (global-whitespace-mode): Fix modeline lighter.
9420 When turning off the global mode, turn off the local modes too
9421 if whitespace is being unloaded.
9422 (whitespace-unload-function): New function.
9424 2008-02-01 Thien-Thi Nguyen <ttn@gnuvola.org>
9426 * vc.el (vc-update): Fix bug: Specify branch tip as
9427 vc-checkout REVISION. Reported by Dan Nicolaescu.
9429 2008-02-01 Glenn Morris <rgm@gnu.org>
9431 * info.el (bookmark-make-cell-function, bookmark-search-size)
9432 (bookmark-current-bookmark): Declare variables for compiler.
9433 (bookmark-buffer-file-name, bookmark-get-filename)
9434 (bookmark-get-front-context-string)
9435 (bookmark-get-rear-context-string, bookmark-get-position)
9436 (bookmark-get-info-node, bookmark-file-or-variation-thereof)
9437 (bookmark-jump-noselect): Declare functions for compiler.
9438 (Info-bookmark-make-cell): Fix argument list to match example of
9439 `bookmark-make-cell-for-text-file'.
9440 (Info-bookmark-jump): Don't require info inside info.el.
9442 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
9444 * progmodes/verilog-mode.el (verilog-sk-prompt-msb)
9445 (verilog-sk-module, verilog-sk-function, verilog-sk-begin)
9446 (verilog-sk-if, verilog-sk-wire, verilog-sk-for)
9447 (verilog-sk-state-machine): Quote all calls to
9448 "auxiliary skeleton"s to prevent infloops.
9450 2008-02-01 Jason Rumney <jasonr@gnu.org>
9452 * w32-fns.el: Partially revert 2007-11-10 change.
9454 2008-02-01 Martin Rudalics <rudalics@gmx.at>
9456 * mail/rmail.el (rmail-highlight): Fix specification.
9457 Reported by pod <pod@herald.ox.ac.uk>.
9459 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
9461 * image-mode.el (image-mode-current-vscroll)
9462 (image-mode-current-hscroll): Make buffer-local.
9463 (image-set-window-vscroll, image-set-window-hscroll): Simplify.
9464 (image-reset-current-vhscroll): Use the latest setting when displaying
9465 for the first time in a window. Apply to all windows in the frame.
9466 (image-mode): Don't make image-mode-current-[vh]scroll buffer-local.
9468 * progmodes/grep.el (grep-compute-defaults):
9469 Don't mix up defaults for different connections to the same host.
9471 2008-01-31 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9473 * blank-mode.el: Rename to whitespace.el.
9475 * obsolete/whitespace.el: Rename to obsolete/old-whitespace.el.
9477 2008-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
9479 * net/rcompile.el (remote-compile): Remove broken code.
9481 2008-01-31 Jason Rumney <jasonr@gnu.org>
9483 * term/w32-win.el (image-library-alist): Prefer libxpm.dll.
9485 2008-01-31 Juanma Barranquero <lekktu@gmail.com>
9487 * linum.el (linum-unload-function): New function.
9489 2008-01-30 Nick Roberts <nickrob@snap.net.nz>
9491 * progmodes/gdb-ui.el (gdb-var-set-format-regexp): New constant.
9492 (gdb-var-set-format-handler): New function.
9493 (gdb-var-set-format): Use it.
9495 2008-01-30 Juanma Barranquero <lekktu@gmail.com>
9497 * emacs-lisp/check-declare.el (check-declare-directory):
9498 * emacs-lisp/authors.el (authors): Use `find-program' and
9499 `grep-program' instead of hardcoded program names.
9501 * emacs-lisp/cl-loaddefs.el: Update.
9503 2008-01-30 Tassilo Horn <tassilo@member.fsf.org>
9505 * info.el (Info-bookmark-make-cell, Info-bookmark-jump): New functions.
9506 Implement bookmark support the new make-cell/handler way.
9507 (Info-mode): Bind bookmark-make-cell-function to
9508 Info-bookmark-make-cell buffer locally.
9510 2008-01-30 Richard Stallman <rms@gnu.org>
9512 * progmodes/etags.el (tags-query-replace): Delete unused optional args.
9515 * files.el (hack-local-variables): Don't query about fake variables.
9517 2008-01-30 Markus Triska <markus.triska@gmx.at>
9519 * linum.el: New file.
9521 2008-01-29 Michael Albinus <michael.albinus@gmx.de>
9523 * net/tramp.el (tramp-methods): Use "-H" option for "sudo".
9524 Suggested by Trent W. Buck <trentbuck@gmail.com>. Make ("%h")
9525 a single element in "plinkx".
9526 (tramp-handle-shell-command): Reuse "*Async Shell Command*" or
9527 "*Shell Command Output*" buffers. Check, whether there is already
9528 an asynchronous process running. Display always the buffer of the
9529 asynchronous process.
9530 (tramp-compute-multi-hops): Adapt error message.
9532 2008-01-29 Alan Mackenzie <acm@muc.de>
9534 * progmodes/cc-langs.el (c-specifier-key): Exclude "template"
9535 from this regexp; part of same fix as next change to cc-engine.el.
9537 * progmodes/cc-engine.el (c-guess-basic-syntax, CASE 5A.5):
9538 Anchor the "{" of a template function correctly on "template", not the
9541 * progmodes/cc-defs.el (c-version): Increase to 5.31.5.
9543 2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
9545 * doc-view.el (doc-view-mode): Adapt to image-mode-current-vscroll
9546 and image-mode-current-hscroll being alists now.
9548 * image-mode.el (image-mode-current-vscroll)
9549 (image-mode-current-hscroll): Add doc strings.
9550 (image-set-window-vscroll, image-set-window-hscroll)
9551 (image-reset-current-vhscroll, image-mode): Adapt to
9552 image-mode-current-vscroll and image-mode-current-hscroll being
9555 2008-01-29 Martin Rudalics <rudalics@gmx.at>
9557 * emacs-lisp/find-func.el (find-function-search-for-symbol):
9558 Strip extension from .emacs.el to make sure symbol is searched
9561 2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
9563 * doc-view.el (doc-view-mode): Use facilities below to
9564 restore [vh]scroll when switching buffers.
9566 * image-mode.el (image-mode-current-vscroll)
9567 (image-mode-current-hscroll): New variables.
9568 (image-set-window-hscroll, image-set-window-vscroll): New functions.
9569 (image-forward-hscroll, image-next-line, image-bol, image-eol)
9570 (image-bob, image-eob): Use them.
9571 (image-reset-current-vhscroll): New function.
9572 (image-mode): Make new variables buffer-local and reset [vh]scroll
9573 on window configuration changes.
9575 2008-01-27 Nick Roberts <nickrob@snap.net.nz>
9577 * progmodes/gdb-ui.el (gdb-create-define-alist): Don't call
9578 gdb-cpp-define-alist-program if file is nil (currently only
9579 " *partial-output-...").
9581 2008-01-27 Richard Stallman <rms@gnu.org>
9583 * allout.el: Many doc fixes.
9584 (allout-encrypt-string): Fix error message.
9586 2008-01-26 Eli Zaretskii <eliz@gnu.org>
9588 * progmodes/etags.el (tags-query-replace): Doc fix.
9590 2008-01-25 Juanma Barranquero <lekktu@gmail.com>
9592 * allout.el (allout-unload-function): New function.
9594 2008-01-25 Juanma Barranquero <lekktu@gmail.com>
9596 * allout.el (allout-prefix-data): Doc fix.
9597 (allout-show-current-subtree): Reflow docstring.
9598 (allout-use-mode-specific-leader, allout-use-hanging-indents)
9599 (produce-allout-mode-map, allout-overlay-interior-modification-handler)
9600 (allout-next-heading, allout-previous-heading, allout-rebullet-heading)
9601 (allout-rebullet-topic, allout-rebullet-topic-grunt, allout-kill-topic)
9602 (allout-copy-topic-as-kill, allout-listify-exposed)
9603 (allout-process-exposed, allout-encrypted-key-info)
9604 (allout-update-passphrase-mnemonic-aids)
9605 (allout-next-topic-pending-encryption)
9606 (allout-tests-globally-true): Fix typos in docstrings.
9608 2008-01-23 Jason Rumney <jasonr@gnu.org>
9610 * lpr.el (printer-name): Do not set on MS Windows.
9612 2008-01-28 Michael Albinus <michael.albinus@gmx.de>
9614 * net/tramp.el (tramp-handle-shell-command): Use "/bin/sh -c" for
9617 2008-01-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9619 * whitespace.el: Moved to obsolete dir.
9621 * blank-mode.el: New version 9.2. Replace whitespace functions by
9622 aliases in blank-mode.
9623 (whitespace-buffer): New fun.
9624 (whitespace-region): Alias for whitespace-buffer, because there is no
9626 (whitespace-cleanup): Alias for blank-cleanup.
9627 (whitespace-cleanup-region): Alias for blank-cleanup-region.
9629 2008-01-27 Juanma Barranquero <lekktu@gmail.com>
9631 * server.el (server-log-time-function): Doc fix.
9632 (server-buffer): Fix typo in docstring.
9634 2008-01-27 Martin Rudalics <rudalics@gmx.at>
9636 * view.el (view-buffer): Explain in doc-string why exit-action
9637 should not be set to kill-buffer.
9639 * arc-mode.el (archive-extract):
9640 * tar-mode.el (tar-extract): Use kill-buffer-if-not-modified as
9641 exit-action when viewing the buffer.
9643 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
9645 * add-log.el (change-log-search-file-name): Work harder to find
9646 the correct file name.
9647 (change-log-find-file): Fix typo.
9648 (change-log-start-entry-re): Move definition earlier.
9650 2007-01-27 Jan Nieuwenhuizen <janneke@gnu.org>
9652 * add-log.el (change-log-search-file-name, change-log-find-file):
9654 (change-log-font-lock-keywords): Move file name matching ...
9655 (change-log-file-names-re): ... here. New defconst.
9656 (change-log-mode-map): New binding C-c C-f to change-log-find-file.
9658 2008-01-27 Alan Mackenzie <acm@muc.de>
9660 * progmodes/cc-awk.el, progmodes/cc-engine.el: Correct typos,
9663 2008-01-27 Michael Albinus <michael.albinus@gmx.de>
9665 * net/tramp.el (tramp-compute-multi-hops): In case of su(do)?
9666 methods, the host name must be a local host.
9668 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
9670 * vc.el: Add TODO item about not defaulting to RCS.
9672 * server.el (server-process-filter): Check for non-nil before
9673 calling file-directory-p.
9675 2008-01-27 Alan Mackenzie <acm@muc.de>
9677 * progmodes/cc-vars.el (c-hanging-braces-alist): New element for
9678 arglist-cont-nonempty.
9680 * progmodes/cc-cmds.el (c-brace-newlines): Determine the newlines
9681 for a brace with syntax arglist-cont-nonempty.
9683 * progmodes/cc-styles.el (c-style-alist): Add elements for
9684 arglist-cont-nonempty into 5 styles (gnu, ellemtel, linux, python, awk).
9686 2008-01-27 Thien-Thi Nguyen <ttn@gnuvola.org>
9688 * button.el (define-button-type): Clarify type of NAME in docstring.
9690 2008-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
9692 * server.el (server-buffer): New const.
9693 (server-log): New var.
9694 (server-log): Use them.
9695 (server-process-filter): (Try to) run the continuation in the same cwd
9698 2008-01-26 Alan Mackenzie <acm@muc.de>
9700 * progmodes/cc-defs.el (c-save-buffer-state):
9701 Bind buffer-file-name and buffer-file-truename to nil, to prevent
9702 primitives generating "buffer is read only" messages.
9704 2008-01-20 Ulf Jasper <ulf.jasper@web.de>
9706 * calendar/icalendar.el (icalendar-version): Increase to "0.17".
9707 (icalendar-import-format): Doc fix. Allow function type.
9708 (icalendar--read-element): Doc fix.
9709 (icalendar--parse-summary-and-rest): Doc fix. Handle function
9710 type icalendar-import-format. Make regexps non-greedy.
9711 (icalendar--format-ical-event): Handle function type
9712 icalendar-import-format.
9713 (icalendar-import-format-sample): New function.
9715 2008-01-26 Thien-Thi Nguyen <ttn@gnuvola.org>
9717 * vc.el (vc-exec-after): For mode-line-process highlighting, if
9718 `compile' is not available, fall back to font-lock-warning-face.
9720 2008-01-26 Phil Sung <psung@mit.edu> (tiny change)
9722 * wdired.el (wdired-get-filename): Change `(1+ beg)' to `beg' so
9723 that the filename end is found even when the filename is empty.
9724 Fixes error and spurious newlines when marking files for deletion.
9726 2008-01-26 Martin Rudalics <rudalics@gmx.at>
9728 * subr.el (find-tag-default): Simplify using exclusively
9729 skip-syntax-backward/-forward.
9731 2008-01-26 Michael Albinus <michael.albinus@gmx.de>
9733 * vc.el (vc-directory, vc-update-change-log): Remove check for
9734 Tramp. Both functions work for it, though pretty slow
9735 (`vc-directory'). Maybe the implementation can be optimized.
9737 * net/tramp.el (tramp-dissect-file-name): Raise an error when
9738 Tramp 2.0 syntax is used.
9739 Suggested by Trent W. Buck <trentbuck@gmail.com>.
9741 2008-01-26 Eli Zaretskii <eliz@gnu.org>
9743 * ls-lisp.el (ls-lisp-insert-directory): If -n switch is used,
9744 invoke directory-files-and-attributes with last argument `integer'
9745 instead of `string'.
9746 (insert-directory): Add -n to the list of supported switches
9747 mentioned in the doc string.
9749 2008-01-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9751 * blank-mode.el: New version 9.1. Handle "long" line tail
9752 visualization. Doc fix.
9753 (blank-line-length): Rename to blank-line-column.
9754 (blank-chars-value-list, blank-toggle-option-alist, blank-help-text):
9756 (blank-replace-spaces-by-tabs): New fun.
9757 (blank-cleanup, blank-cleanup-region, blank-color-on): Code fix.
9759 2008-01-25 Richard Stallman <rms@gnu.org>
9761 * subr.el (add-hook): Implement `permanent-local-hook' property.
9763 * loadhist.el (file-provides, file-requires): Push the filename right.
9765 2008-01-25 Martin Rudalics <rudalics@gmx.at>
9767 * emacs-lisp/find-func.el (find-library): Wrap search for
9768 library name in condition-case to avoid reporting a scan-error.
9770 2008-01-25 Juanma Barranquero <lekktu@gmail.com>
9772 * server.el (server-process-filter): Don't force
9773 the authentication string to be followed by "\n".
9775 2008-01-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
9777 * blank-mode.el: New version 9.0. New commands to clean up some blank
9778 problems like trailing blanks. New faces and regexp for visualizing
9779 the blank problems. Doc fix.
9780 (blank-chars, blank-global-modes, blank-chars-value-list)
9781 (blank-toggle-option-alist, blank-help-text): Initialization fix.
9782 (blank-indentation, blank-empty, blank-space-after-tab): New faces.
9783 (blank-indentation, blank-empty, blank-space-after-tab)
9784 (blank-indentation-regexp, blank-empty-at-bob-regexp)
9785 (blank-empty-at-eob-regexp, blank-space-after-tab-regexp): New options.
9786 (blank-cleanup, blank-cleanup-region): New commands.
9787 (blank-color-on): Code fix.
9789 2008-01-25 Dan Nicolaescu <dann@ics.uci.edu>
9791 * ibuffer.el (ibuffer-default-sorting-mode): Add option to sort by
9793 (ibuffer-mode-map): Add binding to sort by file name.
9794 (ibuffer-filename/process-header-map): New variable.
9795 (filename-and-process): Add a header that sorts by file name.
9796 (ibuffer-mode): Mention sorting by file name.
9798 * ibuf-ext.el (filename/process): New sorter.
9800 2008-01-25 Sven Joachim <svenjoac@gmx.de>
9802 * view.el (kill-buffer-if-not-modified): Don't pass t to
9805 2008-01-24 Michael Albinus <michael.albinus@gmx.de>
9807 * net/tramp.el (tramp-do-copy-or-rename-file): Flush the cache of
9808 the source file in case of `rename'.
9809 Reported by Pete Forman <pete.forman@westerngeco.com>.
9811 2008-01-24 Ken Manheimer <ken.manheimer@gmail.com>
9813 * allout.el (allout-keybindings-list): In initial setting, express
9814 meta-prefixed allout keys as vectors instead of strings, since the
9815 string form is interpreted in some cases as composed key
9816 modifiers, eg, accented keys.
9818 (allout-line-boundary-regexp): Clarify description.
9820 (set-allout-regexp): Repair the expressions so that the formfeed
9821 part is identified as one of the top-level groups, and is
9822 included in all the forms, not just the -line-boundary-regexp one.
9824 (allout-prefix-data): Incorporate information from the various
9825 allout regexp's formfeed alternative group, when present.
9827 (allout-write-file-hook-handler): Rectify mangling of the error
9828 handling. It was broken in 2007-12-06T19:56:41Z!deego@gnufans.org, where an `error'
9829 condition-case handler was apparently reformatted as if it was a
9830 call to the error function. An apparent repair attempt in version
9831 1.101 situated the original body of the error handling code as
9832 bogus condition-case handlers. I've returned to just about the
9833 working code that was originally there, removing an unnecessary -
9834 but benign - enclosing 'progn'. (Automated or cursory code fixes
9837 (allout-region-active-p): Fallback to value of mark-active if
9838 neither use-region-p nor region-active-p are present, for
9839 compatability with current and recent emacs major releases.
9841 2008-01-24 Dan Nicolaescu <dann@ics.uci.edu>
9843 * textmodes/reftex-toc.el (reftex-toc-next, reftex-toc-previous)
9844 (reftex-toc-restore-region):
9845 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer)
9846 (reftex-index-phrases-apply-to-region):
9847 * textmodes/ispell.el (ispell-word):
9848 * progmodes/vhdl-mode.el (vhdl-keep-region-active):
9849 * progmodes/pascal.el (pascal-mark-defun):
9850 * progmodes/f90.el (f90-mark-subprogram, f90-indent-region)
9852 * emulation/tpu-edt.el (tpu-set-mark):
9853 * emulation/crisp.el (crisp-region-active):
9854 * winner.el (winner-active-region):
9855 * ansi-color.el (ansi-color-set-extent-face): Use featurep instead
9856 of bound tests in order to resolve conditionals at compile time.
9858 2008-01-24 Juanma Barranquero <lekktu@gmail.com>
9860 * delsel.el (delsel-unload-function): Don't use `remprop'; it is
9861 not autoloaded, and we wouldn't want to load CL just to unload
9862 delsel.el anyway. Suggested by Martin Rudalics <rudalics@gmx.at>.
9864 2008-01-24 Martin Rudalics <rudalics@gmx.at>
9866 * delsel.el (delete-selection-pre-hook): Avoid clearing out
9867 pre-command-hook when text is read-only.
9869 2008-01-24 Thien-Thi Nguyen <ttn@gnuvola.org>
9871 * vc.el (vc-process-filter): Do nothing if buffer not live.
9872 (vc-diff-finish): Rename from vc-diff-sentinel.
9873 No longer take REV1-NAME and REV2-NAME.
9874 Instead, take BUFFER-NAME. Do nothing if buffer not live.
9875 Don't do window resize if no window displays buffer.
9876 (vc-diff-internal): Use vc-diff-finish.
9878 * vc.el (vc-next-action): Fix two instances of "free-var file" bug:
9879 In both cases, convert single call to one wrapped in dolist.
9881 2008-01-24 Dan Nicolaescu <dann@ics.uci.edu>
9883 * vc.el: Add a TODO item about missing files.
9884 (vc-exec-after): Add a tooltip to the new mode-line item.
9886 2008-01-24 Glenn Morris <rgm@gnu.org>
9888 * t-mouse.el (gpm-mouse-start): Declare as a function.
9890 2008-01-23 Michael Albinus <michael.albinus@gmx.de>
9892 * net/tramp.el (tramp-remote-process-environment): Set "LC_ALL=C".
9893 (tramp-end-of-output): Add `tramp-rsh-end-of-line' into the regexp.
9894 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
9895 Don't send `tramp-rsh-end-of-line' additionally, when setting the
9897 (tramp-wait-for-output): Distinguish different prompt formats.
9898 (tramp-get-test-nt-command): Don't check for "\n" in the prompt.
9899 (tramp-local-host-p): Check whether temp directory is writable.
9901 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
9903 * vc.el: Add TODO items.
9905 2008-01-23 Carsten Dominik <dominik@science.uva.nl>
9907 * replace.el (occur-mode-find-occurrence-hook): New hook that can
9908 be used to reveal or highlight the location of a match.
9909 (occur-mode-goto-occurrence, occur-mode-goto-occurrence-other-window)
9910 (occur-mode-display-occurrence): Run `occur-mode-find-occurrence-hook'.
9912 2008-01-23 Martin Rudalics <rudalics@gmx.at>
9914 * progmodes/hideif.el (hide-ifdef-shadow): Add version number
9916 (hide-ifdef-shadow): Add version number for defface.
9918 2008-01-23 Glenn Morris <rgm@gnu.org>
9920 * textmodes/org.el (org-export-latex-cleaned-string): Fix declaration.
9922 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
9924 * progmodes/sh-script.el (sh-basic-offset):
9925 * progmodes/cc-vars.el (c-syntactic-indentation)
9926 (c-syntactic-indentation-in-macros): Mark as safe.
9928 2008-01-23 Richard Stallman <rms@gnu.org>
9930 * icomplete.el (icomplete-get-keys):
9931 Look up KEYS using all maps in proper buffer.
9933 2008-01-23 Juanma Barranquero <lekktu@gmail.com>
9935 * frame.el (display-mm-height, display-mm-width):
9936 * whitespace.el (whitespace-check-leading-whitespace)
9937 (whitespace-check-trailing-whitespace)
9938 (whitespace-check-spacetab-whitespace)
9939 (whitespace-check-indent-whitespace)
9940 (whitespace-check-ateol-whitespace):
9941 * progmodes/ada-xref.el (ada-convert-file-name): Fix typo in docstring.
9943 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
9945 * vc-arch.el (vc-arch-delete-rej-if-obsolete): Remove the
9946 after-save-hook so that it is not called multiple times.
9948 * vc-svn.el (vc-svn-resolve-when-done): Likewise.
9950 2008-01-23 Eli Zaretskii <eliz@gnu.org>
9952 * view.el (view-file-other-window, view-file-other-frame):
9953 Don't kill the buffer if it is modified. Doc fixes.
9954 (kill-buffer-if-not-modified): New function.
9955 (view-file): Don't kill the buffer if it is modified.
9957 * progmodes/ebrowse.el (ebrowse-view-file-other-window): Delete.
9958 (ebrowse-view/find-file-and-search-pattern):
9959 Call view-file-other-window instead of ebrowse-view-file-other-window.
9960 (ebrowse-view-file-other-frame): Don't call
9961 current-window-configuration. Fix second argument in the call to
9962 view-mode-enter. Doc fix.
9964 2008-01-23 Richard Stallman <rms@gnu.org>
9966 * subr.el (atomic-change-group): Prevent undo list truncation.
9968 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
9970 * files.el (safe-local-eval-forms):
9971 Mark (add-hook 'write-file-hooks 'time-stamp) as safe.
9973 2008-01-23 Nick Roberts <nickrob@snap.net.nz>
9975 * comint.el (comint-insert-input): Set point first.
9977 * progmodes/gdb-ui.el (gdb-dequeue-input): Make doubly sure
9978 session doesn't hang because gdb-pending-triggers is non-nil.
9979 (gdb-frame-handler): Use buffer-file-name instead of
9980 buffer-name in case of duplicate file names.
9982 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
9984 * progmodes/verilog-mode.el (verilog-mode-map): Don't bind C-M-a,
9985 C-M-e and C-M-h for emacs, they work by default.
9986 (verilog-emacs-features): Remove.
9987 (verilog-setup-dual-comments, verilog-populate-syntax-table):
9988 Remove. Move syntax table initialization ...
9989 (verilog-mode-syntax-table): ... here.
9990 (verilog-mode): Don't initialize the syntax table here.
9991 (verilog-mark-defun): Only do something useful for XEmacs, Emacs
9994 2008-01-23 Wilson Snyder <wsnyder@wsnyder.org>
9996 * progmodes/verilog-mode.el (verilog-booleanp): New function for
9997 backward compatibility. Replace all uses of booleanp with
10000 2008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
10002 * vc-hg.el (vc-hg-diff): Don't pass an empty string.
10004 2008-01-23 Wilson Snyder <wsnyder@wsnyder.org>
10006 * progmodes/verilog-mode.el (top-level): Fix spacing.
10007 (verilog-mode-version, verilog-mode-release-date):
10008 Update version number.
10009 (verilog-mode-release-emacs): New variable.
10010 (compile-command, reporter-prompt-for-summary-p):
10011 Define for byte compiler.
10012 (verilog-startup-message-lines, verilog-startup-message-displayed)
10013 (verilog-display-startup-message): Remove.
10014 (verilog-highlight-p1800-keywords): Improve docstring.
10015 (sigs-in, sigs-out, got-sig, got-rvalue, uses-delayed)
10016 (vector-skip-list): Only defvar at compile time.
10017 (verilog-highlight-translate-off, verilog-indent-level)
10018 (verilog-indent-level-module, verilog-indent-level-declaration)
10019 (verilog-indent-declaration-macros, verilog-indent-lists)
10020 (verilog-indent-level-behavioral, verilog-indent-level-directive)
10021 (verilog-cexp-indent, verilog-case-indent, verilog-auto-newline)
10022 (verilog-auto-indent-on-newline, verilog-tab-always-indent)
10023 (verilog-tab-to-comment, verilog-indent-begin-after-if)
10024 (verilog-align-ifelse, verilog-minimum-comment-distance)
10025 (verilog-auto-lineup, verilog-highlight-p1800-keywords)
10026 (verilog-auto-endcomments, verilog-auto-read-includes)
10027 (verilog-auto-star-expand, verilog-auto-star-save)
10028 (verilog-library-flags, verilog-library-directories)
10029 (verilog-library-files, verilog-library-extensions)
10030 (verilog-active-low-regexp, verilog-auto-sense-include-inputs)
10031 (verilog-auto-sense-defines-constant, verilog-auto-reset-widths)
10032 (verilog-assignment-delay, verilog-auto-inst-vector)
10033 (verilog-auto-inst-template-numbers, verilog-auto-input-ignore-regexp)
10034 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
10035 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
10036 Add safe-local-variable properties.
10037 (verilog-statement-menu, verilog-company, verilog-re-search-forward)
10038 (verilog-re-search-backward, verilog-error-regexp-add)
10039 (verilog-end-block-re, verilog-emacs-features)
10040 (verilog-populate-syntax-table, verilog-setup-dual-comments)
10041 (verilog-type-font-keywords, verilog-inside-comment-p)
10042 (electric-verilog-backward-sexp, verilog-backward-sexp)
10043 (verilog-forward-sexp, verilog-font-lock-init, verilog-mode)
10044 (electric-verilog-terminate-line, electric-verilog-semi)
10045 (electric-verilog-tab, verilog-insert-1, verilog-insert-indices)
10046 (verilog-generate-numbers, verilog-comment-region, verilog-label-be)
10047 (verilog-beg-of-statement, verilog-in-case-region-p)
10048 (verilog-in-struct-region-p, verilog-in-generate-region-p)
10049 (verilog-in-fork-region-p, verilog-backward-case-item)
10050 (verilog-set-auto-endcomments, verilog-get-expr)
10051 (verilog-expand-vector-internal, verilog-surelint-off)
10052 (verilog-batch-execute-func, verilog-calculate-indent)
10053 (verilog-calc-1, verilog-calculate-indent-directive)
10054 (verilog-leap-to-head, verilog-continued-line)
10055 (verilog-backward-token, verilog-backward-syntactic-ws)
10056 (verilog-forward-syntactic-ws, verilog-backward-ws&directives)
10057 (verilog-forward-ws&directives, verilog-at-constraint-p)
10058 (verilog-skip-backward-comments, verilog-indent-line-relative)
10059 (verilog-do-indent, verilog-indent-comment, verilog-more-comment)
10060 (verilog-pretty-declarations, verilog-pretty-expr)
10061 (verilog-just-one-space, verilog-indent-declaration)
10062 (verilog-get-completion-decl, verilog-goto-defun, verilog-showscopes)
10063 (verilog-header, verilog-signals-combine-bus, verilog-read-decls)
10064 (verilog-read-always-signals-recurse, verilog-read-instants)
10065 (verilog-read-auto-template, verilog-set-define)
10066 (verilog-read-defines, verilog-read-signals, verilog-getopt)
10067 (verilog-is-number, verilog-expand-dirnames, verilog-modi-lookup)
10068 (verilog-modi-cache-results, verilog-insert-one-definition)
10069 (verilog-make-width-expression, verilog-delete-autos-lined)
10070 (verilog-auto-save-check, verilog-auto-arg, verilog-auto-inst-port)
10071 (verilog-auto-inst, verilog-auto-inst-param, verilog-auto-reg)
10072 (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
10073 (verilog-auto-output-every, verilog-auto-input, verilog-auto-inout)
10074 (verilog-auto-inout-module, verilog-auto-sense, verilog-auto-reset)
10075 (verilog-auto-tieoff, verilog-auto-unused, verilog-auto-ascii-enum)
10076 (verilog-auto, verilog-sk-define-signal, verilog-mode-mouse-map)
10077 (verilog-load-file-at-mouse, verilog-load-file-at-point)
10078 (verilog-library-files): Cleanup spacing of )'s they should not be
10079 on unique lines. Fix checkdoc warnings.
10081 2008-01-22 Glenn Morris <rgm@gnu.org>
10083 * progmodes/hideif.el (hide-ifdef-initially, hide-ifdef-read-only)
10084 (hide-ifdef-lines, hide-ifdef-shadow): Remove autoload cookies
10086 (hide-ifdef-shadow): Remove autoload cookie from defface.
10088 * vc.el (vc-diff-sentinel): Do not write a footer if there were
10091 2008-01-21 Reiner Steib <Reiner.Steib@gmx.de>
10093 * pcvs-defs.el (cvs-menu): Improve cvs-mode-find-file,
10094 cvs-mode-find-file-other-window. Add cvs-mode-diff-yesterday and
10097 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
10099 * net/dbus.el (dbus-ignore-errors): New macro.
10100 (dbus-unregister-object): New defun. Moved from dbusbind.c.
10101 (dbus-handle-event, dbus-list-activatable-names, dbus-list-names)
10102 (dbus-list-queued-owners, dbus-get-name-owner, dbus-introspect)
10103 (dbus-get-signatures): Apply `dbus-ignore-errors'.
10105 2008-01-21 Martin Rudalics <rudalics@gmx.at>
10107 * outline.el (outline-up-heading): Fix check for top level to
10108 avoid infinite looping in hide-other.
10110 2008-01-21 Thien-Thi Nguyen <ttn@gnuvola.org>
10112 * vc.el (vc-process-sentinel): After calling the previous
10113 sentinel, do nothing if the process' buffer is not live.
10115 2008-01-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10117 * blank-mode.el: Fix a problem of cleaning blank faces when turning off
10118 blank-mode in some buffers (like *info* buffers). Reported by Juanma
10119 Barranquero <lekktu@gmail.com>. Eliminate `-face' suffix of all
10120 blank-mode faces. Doc fix. New version 8.1.
10121 (blank-turn-on, blank-turn-off): Replace (and CONDITION BODY) by (when
10123 (blank-space-face): Face/option name replaced by blank-space.
10124 (blank-hspace-face): Face/option name replaced by blank-hspace.
10125 (blank-tab-face): Face/option name replaced by blank-tab.
10126 (blank-newline-face): Face/option name replaced by blank-newline.
10127 (blank-trailing-face): Face/option name replaced by blank-trailing.
10128 (blank-line-face): Face/option name replaced by blank-line.
10129 (blank-space-before-tab-face): Face/option name replaced by
10130 blank-space-before-tab.
10131 (blank-color-on, blank-color-off, blank-display-char-on): Fix code.
10133 2008-01-21 Juanma Barranquero <lekktu@gmail.com>
10135 * blank-mode.el (blank-style, blank-chars, blank-hspace-regexp)
10136 (blank-space-regexp, blank-tab-regexp, blank-trailing-regexp)
10137 (blank-space-before-tab-regexp, blank-global-modes, blank-mode)
10138 (global-blank-mode): Doc fixes.
10139 (blank, blank-space-face, blank-hspace-face, blank-tab-face)
10140 (blank-newline-face, blank-trailing-face, blank-line-face)
10141 (blank-space-before-tab-face, blank-display-mappings)
10142 (blank-chars-value-list, blank-style-value-list, blank-toggle-options)
10143 (global-blank-toggle-options, blank-help-text, blank-interactive-char)
10144 (blank-turn-on, blank-turn-off, blank-color-on, blank-color-off):
10145 Fix typos in docstrings.
10147 2008-01-21 Juanma Barranquero <lekktu@gmail.com>
10149 * server.el (server-log-time-function): New variable.
10150 (server-log): Use it.
10152 2008-01-21 Glenn Morris <rgm@gnu.org>
10154 * progmodes/hideif.el: Move defcustoms and defface to start of file.
10156 * textmodes/org.el (org-entry-properties): Let-bind `clocksum'.
10158 2008-01-21 Juanma Barranquero <lekktu@gmail.com>
10160 * textmodes/org.el (org-unmodified, org-cycle-emulate-tab)
10161 (org-descriptive-links, org-link-file-path-type)
10162 (org-remember-use-refile-when-interactive)
10163 (org-agenda-skip-timestamp-if-done, org-agenda-scheduled-leaders)
10164 (org-export-ascii-bullets, org-agenda-deadline-faces)
10165 (turn-on-orgstruct++, orgtbl-to-texinfo, org-mhe-get-header)
10166 (org-batch-agenda, org-batch-agenda-csv, org-fix-agenda-info)
10167 (org-kill-note-or-show-branches): Fix typos in docstrings.
10169 2008-01-20 Thien-Thi Nguyen <ttn@gnuvola.org>
10171 * vc.el (vc-process-sentinel): Set mode-line-process.
10172 (vc-exec-after): Likewise, for the `run' process status.
10174 2008-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
10176 * ibuffer.el (ibuffer-mode): Fix last change.
10178 2008-01-20 Dan Nicolaescu <dann@ics.uci.edu>
10180 * vc-hg.el (vc-hg-registered):
10181 * vc-svn.el (vc-svn-registered): Make it work for non-existent files.
10183 2008-01-20 Martin Rudalics <rudalics@gmx.at>
10185 * repeat.el (repeat-undo-count): New variable.
10186 (repeat): For self-insertions make undo boundary only after 20
10187 repetitions. Inhibit point recording unless repeat-repeat-char is nil.
10189 2008-01-19 Reiner Steib <Reiner.Steib@gmx.de>
10191 * net/imap.el (imap-ping-server): New variable.
10192 (imap-opened): On add extra ping if imap-ping-server is non-nil.
10193 (imap-ping-server): Minor doc string fixes.
10195 2008-01-19 Knut Anders Hatlen <kahatlen@gmail.com> (tiny change)
10197 * net/imap.el (imap-ping-server): New function.
10198 (imap-opened): Call imap-ping-server.
10200 2008-01-20 Glenn Morris <rgm@gnu.org>
10202 * progmodes/python.el: Quote all calls to "auxiliary skeleton"s to
10205 2008-01-20 Martin Svenson <phromo@gmail.com> (tiny change)
10207 * progmodes/python.el (python-imports): Default to "None".
10209 2008-01-19 Tom Tromey <tromey@redhat.com>
10211 * vc-svn.el (vc-svn-after-dir-status): New function.
10212 (vc-svn-dir-status): Run svn asynchronously.
10214 2008-01-19 Martin Rudalics <rudalics@gmx.at>
10216 * progmodes/hideif.el (hide-ifdef-shadow): New option.
10217 (hide-ifdef-shadow): New face.
10218 (hide-ifdef-toggle-shadowing): New function to toggle between
10219 shadowing and making code invisible.
10220 (hide-ifdef-mode-submap): Add binding for hide-ifdef-toggle-shadowing.
10221 (hide-ifdef-mode-menu): Add entry for hide-ifdef-toggle-shadowing.
10222 (hide-ifdef-region-internal): Give new overlay hide-ifdef
10223 property. Shadow text when hide-ifdef-shadow is non-nil.
10224 (hif-show-ifdef-region): Remove overlays with hide-ifdef property set.
10225 (hif-hide-line): Use when instead of if.
10226 (hide-ifdef-initially, hide-ifdef-read-only, hide-ifdef-lines):
10227 Remove unneeded * from doc-strings.
10229 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
10231 * doc-view.el (doc-view-goto-page): Don't move point any more, now that
10232 the hscroll behavior was fixed.
10233 (doc-view-mode): Disable auto-hscroll-mode.
10235 2008-01-18 Tom Tromey <tromey@redhat.com>
10237 * vc-svn.el (vc-svn-dir-status): New function.
10239 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
10241 * vc.el: Make vc-status asynchronous.
10242 (vc-update-vc-status-buffer): New function broken out of ...
10243 (vc-status-refresh): ... here. Pass vc-update-vc-status-buffer to
10244 the dir-status backend function.
10246 * vc-hg.el (vc-hg-dir-status): Compute the status asynchronously.
10247 Move the output processing to ...
10248 (vc-hg-after-dir-status): ... here. Call the function passed as
10249 an argument with the results.
10251 2008-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
10253 * doc-view.el (doc-view-pdf/ps->png): Make sure we a have a valid cwd.
10254 (doc-view-insert-image): Do something if the image is missing.
10255 (doc-view-mode): Don't use file-remote-p.
10257 2008-01-18 Bastien Guerry <Bastien.Guerry@ens.fr>
10259 * textmodes/org-export-latex.el (org-export-latex-cleaned-string): Fix.
10260 (org-export-latex-special-chars): Convert "..." in \ldots
10262 (org-export-latex-fontify-headline): Change parameter name.
10263 (org-export-as-latex): Handle export of subtrees.
10264 (org-export-latex-make-header): New argument TITLE.
10265 (org-export-latex-content): New argument EXCLUDE-LIST.
10266 (org-list-parse-list): New name for org-export-latex-parse-list.
10267 (org-export-latex-make-header): New name for
10268 org-export-latex-make-preamble.
10269 (org-list-to-generic): New name of org-export-list-to-generic.
10270 (org-list-to-latex): New name of org-export-list-to-latex.
10271 (org-list-item-begin, org-list-end, org-list-insert-radio-list)
10272 (org-list-send-list, org-list-to-texinfo)
10273 (org-list-to-html): New functions.
10274 (org-export-latex-tables-column-borders)
10275 (org-export-latex-default-class, org-export-latex-classes)
10276 (org-export-latex-classes-sectioning)
10277 (org-list-radio-list-templates): New options.
10278 (org-export-latex-header): New variable.
10279 (org-latex-entities): New constant.
10280 (org-export-latex-default-sectioning, org-export-latex-preamble)
10281 (org-export-latex-prepare-text-option)
10282 (org-export-latex-get-sectioning): Remove.
10284 2008-01-18 Carsten Dominik <dominik@science.uva.nl>
10286 * textmodes/org-publish.el (org-publish-current-project):
10287 Fix bug with forcing publication.
10289 * textmodes/org.el (org-export-with-special-strings): New option.
10290 (org-export-html-convert-special-strings): New function.
10291 (org-html-do-expand): `org-export-html-convert-special-strings'
10292 added to the list of conversion.
10293 (org-infile-export-plist, org-get-current-options): Add support
10294 for "-" in the #+OPTION line to let user switch on/off special
10295 strings conversion.
10296 (org-export-plist-vars): New :html-table-tag property.
10297 (org-export-as-html, org-format-org-table-html)
10298 (org-format-table-table-html) Use the :html-table-tag property
10299 instead of the `org-export-html-table-tag' global value.
10300 (org-additional-option-like-keywords): Add "TBLFM".
10301 (org-entry-properties): Include the CLOCKSUM special property.
10302 (org-columns-edit-value): Do not allow to edit the special
10304 (org-flag-drawer): Use the original value of `outline-regexp'.
10305 (org-remember-handler): Add invisible-ok flag to call to
10306 `org-end-of-subtree'.
10307 (org-agenda-highlight-todo): Respect
10308 `org-agenda-todo-keyword-format'.
10309 (org-agenda-todo-keyword-format): New option.
10310 (org-infile-export-plist): No restriction while searching for options.
10311 (org-remember-handler): Remove comments at the end of the buffer.
10312 (org-remember-use-refile-when-interactive): New option.
10313 (org-table-sort-lines): Make sure sorting works on link
10314 descritions only, and ignores the link.
10315 (org-sort-entries-or-items): Make sure the end of the subtree is
10317 (org-refile-use-outline-path): New allowed values `file' and
10319 (org-get-refile-targets): Respect new values for
10320 `org-refile-use-outline-path'.
10321 (org-agenda-get-restriction-and-command): DEL goes back to initial list.
10322 (org-export-as-xoxo): Restore point when done.
10323 (org-open-file): Allow multiple %s in command.
10324 (org-clock-in-switch-to-state): New option.
10325 (org-first-list-item-p): New function.
10326 (org-last-remember-storage-locations): New variable.
10327 (org-get-refile-targets): Interpret the new maxlevel setting.
10328 (org-refile-targets): New option `:maxlevel'.
10329 (org-copy-subtree): Include empty lines before but not after subtree.
10330 (org-back-over-empty-lines, org-skip-whitespace): New functions.
10331 (org-move-item-down, org-move-item-up): Include empty lines before
10332 but not after item.
10333 (org-first-sibling-p): New function.
10334 (org-remember-apply-template): Defaults, completions and history
10335 for template prompts. Also, interpret new `%!' escape.
10336 (org-context-choices): New constant.
10337 (org-bound-and-true-p): New macro.
10338 (org-imenu-depth): New option.
10339 (org-imenu-markers): New variable.
10340 (org-imenu-new-marker, org-imenu-get-tree)
10341 (org-speedbar-set-agenda-restriction): New functions.
10342 (org-agenda-set-restriction-lock)
10343 (org-agenda-remove-restriction-lock)
10344 (org-agenda-maybe-redo): New functions.
10345 (org-agenda-restriction-lock): New face.
10346 (org-agenda-restriction-lock-overlay)
10347 (org-speedbar-restriction-lock-overlay): New variables.
10348 (org-open-at-point): Remove obsolete way to do redirection in
10350 (org-imenu-and-speedbar): New customization group.
10351 (org-entry-properties): Return keyword-less time strings.
10352 (org-clock-heading-function): New option.
10353 (org-clock-in): Use `org-clock-heading-function'.
10354 (org-calendar-holiday): Try to use `calendar-check-holidays'
10355 instead of the obsolete `check-calendar-holidays'.
10356 (org-export-html-special-string-regexps): New constant.
10357 (org-massive-special-regexp): New variable.
10358 (org-compute-latex-and-specials-regexp)
10359 (org-do-latex-and-special-faces): New functions.
10360 (org-latex-and-export-specials): New face.
10361 (org-highlight-latex-fragments-and-specials): New option.
10362 (org-link-escape-chars): Use characters instead of strings.
10363 (org-link-escape-chars-browser, org-link-escape)
10364 (org-link-unescape): Use characters instead of strings.
10365 (org-export-html-convert-sub-super, org-html-do-expand): Check for
10367 (org-emphasis-alist): Additional `verbatim' flag.
10368 (org-set-emph-re): Handle the verbatim flag and compute
10370 (org-cleaned-string-for-export): Protect verbatim elements.
10371 (org-verbatim-re): New variable.
10372 (org-hide-emphasis-markers): New option.
10373 (org-additional-option-like-keywords): Add new keywords.
10374 (org-get-entry): Rename from `org-get-cleaned-entry'.
10375 (org-icalendar-cleanup-string): New function for quoting icalendar text.
10376 (org-agenda-skip-scheduled-if-done): New option.
10377 (org-agenda-get-scheduled, org-agenda-get-blocks): Use
10378 `org-agenda-skip-scheduled-if-done'.
10379 (org-prepare-agenda-buffers): Allow buffers as arguments.
10380 (org-entry-properties): Add CATEGORY as a special property.
10381 (org-use-property-inheritance): Allow a list of properties as a value.
10382 (org-eval-in-calendar): No longer update the prompt.
10383 (org-read-date-popup-calendar): Rename from
10384 `org-popup-calendar-for-date-prompt'.
10385 (org-read-date-display-live): New variable.
10386 (org-read-date-display): New function.
10387 (org-read-date-analyze): New function.
10388 (org-remember-apply-template): Define `remember-finalize' if it is
10390 (org-remember-insinuate): New function.
10391 (org-read-date-prefer-future): New option.
10392 (org-read-date): Respect the setting of
10393 `org-read-date-prefer-future'. Use `org-read-date-analyze'.
10394 (org-set-font-lock-defaults): Use `org-archive-tag' instead of a
10396 (org-remember-apply-template): Use `remember-finalize' instead of
10398 (org-columns-compute, org-column-number-to-string)
10399 (org-columns-uncompile-format, org-columns-compile-format)
10400 (org-columns-compile-format): Handle printf format specifier.
10401 (org-columns-new, org-column-number-to-string)
10402 (org-columns-uncompile-format, org-columns-compile-format):
10403 Support for new currency summary type.
10404 (org-tree-to-indirect-buffer): Do not kill old buffer when
10405 `org-indirect-buffer-display' is `new-frame'.
10406 (org-indirect-buffer-display): Document that `new-frame' leads to
10407 indiret buffer proliferation.
10408 (org-agenda-list): Use `org-extend-today-until'.
10409 (org-extend-today-until): New option.
10410 (org-format-org-table-html): Use lower-case for <col> tag.
10411 (org-agenda-execute): New command.
10412 (org-agenda-mode-map): Keybindings of "g" "G", "e" modified.
10413 (org-select-remember-template): New function.
10414 (org-remember-apply-template): Use `org-select-remember-template'.
10415 (org-go-to-remember-target): New function.
10417 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
10419 * vc.el: Add a TODO note about vc-state.
10420 (vc-next-action): Register 'unregistered and 'ignored files.
10421 Use when and unless instead of if where appropriate.
10422 (vc-start-entry): Fix typo.
10423 (vc-status): Autoload it.
10425 2008-01-18 Glenn Morris <rgm@gnu.org>
10427 * ffap.el (ffap-alist): Remove space from RFC regexp.
10429 2008-01-18 Richard Stallman <rms@gnu.org>
10431 * custom.el (custom-theme-recalc-face): Use face-spec-set rather
10432 than face-spec-recalc.
10434 2008-01-18 Glenn Morris <rgm@gnu.org>
10436 * ibuffer.el (ibuffer-mode): Fix typo in previous change.
10438 2008-01-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10439 Miles Bader <miles@gnu.org>
10441 * blank-mode.el: New file. Minor mode to visualise (HARD) SPACE,
10442 TAB, NEWLINE. Miles Bader <miles@gnu.org> wrote the original code
10443 for handling display table (via visws.el package), his code was
10444 modified, but the main idea was kept.
10446 2008-01-17 Glenn Morris <rgm@gnu.org>
10448 * ibuf-ext.el (ibuffer-auto-mode, ibuffer-save-filter-groups)
10449 (ibuffer-save-filters): Remove calls to deleted
10450 ibuffer-update-mode-name.
10452 2008-01-16 Martin Rudalics <rudalics@gmx.at>
10454 * longlines.el (longlines-mode, longlines-show-region)
10455 (longlines-unshow-hard-newlines): Bind buffer-file-name and
10456 buffer-file-truename to nil while modifying buffer.
10458 * cus-edit.el (custom-reset-standard-variables-list)
10459 (custom-reset-standard-faces-list): New variables.
10460 (custom-reset-standard-save-and-update): New function.
10461 (Custom-save): Apply custom-mark-to-save before and
10462 custom-state-set-and-redraw after saving options.
10463 (Custom-reset-standard): Apply custom-mark-to-reset-standard to
10464 options and call custom-reset-standard-save-and-update.
10465 (custom-variable, custom-face, custom-group): Provide new
10466 entries for custom-mark-to-save, custom-mark-to-reset-standard,
10467 and custom-state-set-and-redraw.
10468 (custom-variable-mark-to-save)
10469 (custom-variable-state-set-and-redraw)
10470 (custom-variable-mark-to-reset-standard)
10471 (custom-face-mark-to-save, custom-face-state-set-and-redraw)
10472 (custom-face-mark-to-reset-standard)
10473 (custom-group-mark-to-save, custom-group-state-set-and-redraw)
10474 (custom-group-mark-to-reset-standard): New functions.
10475 (custom-variable-save): Move save, state-set, and redraw
10476 functionality to custom-variable-mark-to-save.
10477 (custom-face-save): Move save, state-set, and redraw
10478 functionality to custom-face-mark-to-save.
10479 (custom-group-save): Move save, state-set, and redraw
10480 functionality to custom-group-mark-to-save.
10481 (custom-variable-reset-standard, custom-face-reset-standard)
10482 (custom-group-reset-standard): Move save, state-set, and redraw
10483 functionality to custom-reset-standard-save-and-update.
10485 (custom-buffer-create-internal): Fix text in verbose help.
10486 (custom-face-value-create): Indent doc-strings of faces like
10487 those of variables.
10489 2008-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
10491 * server.el (server-process-filter): Replace lineno and columnnno
10492 which defaulted to 1&0 with filepos which defaults to nil.
10493 (server-goto-line-column): Only receive the filepos.
10494 Only move if filepos is non-nil.
10495 (server-visit-files): Slight restructure to consolidate two calls to
10496 server-goto-line-column into just one.
10498 * nxml/nxml-mode.el (nxml-mode): Use mode-line-process to indicate
10499 the use of degraded mode.
10500 (nxml-degrade): Don't change mode-name.
10502 * nxml/rng-nxml.el (rng-nxml-mode-init):
10503 Don't overwrite mode-line-process.
10505 * ibuffer.el (mode): Pass the buffer to format-mode-line.
10506 (ibuffer-update-mode-name): Remove.
10507 (ibuffer-redisplay, ibuffer-update, ibuffer-mode): Don't call it.
10508 (ibuffer-mode): Use mode-line-process instead.
10510 * ibuf-ext.el (ibuffer-auto-update-changed, ibuffer-auto-mode):
10511 Use derived-mode-p.
10512 (ibuffer-mark-by-mode-regexp): Pass the buffer to format-mode-line.
10514 * help.el (describe-mode): Pass the right buffer to format-mode-line.
10516 2008-01-16 Glenn Morris <rgm@gnu.org>
10518 * comint.el (comint-regexp-arg): Fix no-input case.
10520 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
10522 * smerge-mode.el (smerge-start-session): Rename from smerge-auto.
10523 * pcvs.el (cvs-revert-if-needed):
10524 * vc.el (vc-maybe-resolve-conflicts): Rename callers.
10526 * vc-svn.el (vc-svn-find-file-hook):
10527 * vc-arch.el (vc-arch-find-file-hook): Undo previous change.
10529 2008-01-16 Ulf Jasper <ulf.jasper@web.de>
10531 * calendar/icalendar.el (icalendar-version): Increase to 0.16.
10532 (icalendar-export-file, icalendar-import-file):
10533 Restore significant trailing whitespace in `interactive' prompts.
10535 2008-01-16 Tom Tromey <tromey@redhat.com>
10537 * calendar/icalendar.el (icalendar--convert-tz-offset)
10538 (icalendar--parse-vtimezone, icalendar--convert-all-timezones)
10539 (icalendar--find-time-zone): New functions.
10540 (icalendar--decode-isodatetime): Add `zone' argument, passed to
10541 `decode-time'. Doc fix.
10542 (icalendar--convert-ical-to-diary): Compute zone-map.
10543 Pass timezone to icalendar--decode-isodatetime.
10545 2008-01-16 Alan Mackenzie <acm@muc.de>
10547 * progmodes/cc-vars.el (c-constant-symbol): Put this defun inside
10548 an eval-and-compile, so as to permit byte-compiling (e.g. in
10551 2008-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
10553 * emacs-lisp/easymenu.el (easy-menu-avoid-duplicate-keys): New var.
10554 (easy-menu-create-menu, easy-menu-convert-item-1): Use it to avoid
10555 using the same key for different menu entries.
10557 * smerge-mode.el (smerge-refine): Also work on "same change conflicts".
10558 (smerge-makeup-conflict): New command.
10560 2008-01-15 Thien-Thi Nguyen <ttn@gnuvola.org>
10562 * log-edit.el (log-edit): Doc fix.
10564 2008-01-15 Glenn Morris <rgm@gnu.org>
10566 * diff-mode.el (diff-end-of-hunk): Revert 2008-01-08 change.
10568 2008-01-14 Alan Mackenzie <acm@muc.de>
10570 * progmodes/cc-vars.el (c-constant-symbol): New function which
10571 supersedes c-const-symbol. During a customize-.. call it enables
10572 an element of (e.g.) c-hanging-braces alist to have its name
10573 displayed, even when the default value of c-h-b etc. doesn't
10574 include the elemnt. Replace uses of the old function by the new.
10576 * progmodes/cc-vars.el (c-hanging-braces-alist): Remove the
10577 obscure non-working fragment ":value c-".
10579 2008-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
10581 * abbrev.el (clear-abbrev-table): Can't pass a symbol to intern.
10583 2008-01-14 Michael Albinus <michael.albinus@gmx.de>
10585 * net/tramp.el (tramp-local-host-p): Use `tramp-file-name-host'
10586 instead of `tramp-file-name-real-host'.
10588 * net/trampver.el: Update release number.
10590 2008-01-14 Alan Mackenzie <acm@muc.de>
10592 * progmodes/cc-engine.el (c-guess-basic-syntax): Prevent a macro
10593 call inside a struct being recognised as a K&R argument.
10595 2008-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
10597 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10598 Accept "fatal error" from MSFT.
10599 Reported by Jared Finder <jfinder@crypticstudios.com>.
10601 2008-01-14 Dan Nicolaescu <dann@ics.uci.edu>
10603 * smerge-mode.el (smerge-auto): New function.
10604 * vc-svn.el (vc-svn-find-file-hook):
10605 * vc-arch.el (vc-arch-find-file-hook):
10606 * pcvs.el (cvs-revert-if-needed):
10607 * vc.el (vc-maybe-resolve-conflicts): Use it instead of vc-mode.
10608 (top-level): Add a Todo list.
10610 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
10612 * vc.el (vc-update): Resolve conflicts if necessary instead of
10613 just updating the buffer.
10615 * vc-cvs.el (vc-cvs-merge-news): Ignore the error status of the
10616 update command so that we can parse the output.
10618 2008-01-13 Martin Rudalics <rudalics@gmx.at>
10620 * mail/rmail.el (rmail-convert-to-babyl-format):
10621 Remove save-excursion to avoid infinite looping.
10622 Reported by dnz <dnz@bk.ru>.
10624 2008-01-12 Glenn Morris <rgm@gnu.org>
10626 * woman.el (woman-parse-numeric-arg): Change handling of `==':
10627 can be interned without a function definition.
10629 2008-01-12 Jason Rumney <jasonr@gnu.org>
10631 * nxml/nxml-mode.el (nxml-enable-unicode-char-name-sets)
10632 (rng-nxml-mode-init): Declare.
10634 2008-01-11 Jason Rumney <jasonr@gnu.org>
10636 * nxml/rng-nxml.el (rng-preferred-prefix-alist): Add some defaults.
10637 (rng-preferred-prefix-alist-default): Remove.
10639 * nxml/nxml-uchnm.el (nxml-internal-unicode-char-name-sets-enabled):
10640 Rename from nxml-enable-unicode-char-name-sets-flag.
10641 (nxml-enable-unicode-char-name-sets-1): Merge into
10642 nxml-enable-unicode-char-name-sets.
10643 (nxml-enable-unicode-char-name-sets): Don't unconditionally set
10644 nxml-char-name-ignore-case here.
10646 * nxml/nxml-mode.el (nxml-mode): Call rng-nxml-mode-init directly.
10647 Update doc string and commentary.
10648 (nxml-char-name-ignore-case): Change default value.
10649 (nxml-mode): Call nxml-enable-unicode-char-name-sets directly.
10651 2008-01-11 Martin Rudalics <rudalics@gmx.at>
10653 * cus-start.el (all): Add missing version entries.
10655 2008-01-11 Glenn Morris <rgm@gnu.org>
10657 * language/china-util.el (big5-to-flat-code, flat-code-to-big5)
10658 (euc-to-flat-code, flat-code-to-euc):
10659 * textmodes/org.el (elmo-msgdb-overview-get-entity)
10660 (wl-summary-buffer-msgdb): Declare as funtions.
10662 2008-01-10 Martin Rudalics <rudalics@gmx.at>
10664 * progmodes/ada-mode.el (ada-set-syntax-table-properties):
10665 Bind buffer-file-name and buffer-file-truename.
10667 * fringe.el (fringe-mode-explicit): New variable.
10668 (set-fringe-mode): Don't alter default-frame-alist when just
10671 2008-01-10 Tassilo Horn <tassilo@member.fsf.org>
10673 * doc-view.el (doc-view-buffer-file-name): New variable.
10674 (doc-view-convert-current-doc, doc-view-search)
10675 (doc-view-current-cache-dir, doc-view-initiate-display)
10676 (doc-view-mode): Use it.
10677 (doc-view-bookmark-make-cell): Use variable buffer-file-name
10678 instead of function.
10680 2008-01-10 Dan Nicolaescu <dann@ics.uci.edu>
10682 * vc-svn.el (vc-svn-registered): Return the correct value for
10683 ignored and unregistered files.
10685 2008-01-10 Tassilo Horn <tassilo@member.fsf.org>
10687 * doc-view.el (tramp): Require tramp because we use tramp-tramp-file-p.
10689 2008-01-10 Tom Tromey <tromey@redhat.com>
10691 * vc.el (vc-status-unmark-all-files): New function.
10692 (vc-status-unmark-all-files): Likewise.
10693 (vc-status-mode-map): Add bindings.
10695 2008-01-10 Michael Kifer <kifer@cs.stonybrook.edu>
10697 * ediff*.el: Uncomment declare-function.
10699 * emulation/viper*.el: Uncomment declare-function.
10701 2008-01-09 Tassilo Horn <tassilo@member.fsf.org>
10703 * doc-view.el (doc-view-mode): Support tramp, compressed files and
10704 files inside archives uniformly.
10706 2008-01-09 Eric S. Raymond <esr@snark.thyrsus.com>
10708 * textmodes/sgml-mode.el (sgml-tag-syntax-table): Initialize this
10709 constant with a computation on sgml-specials rather than a literal
10710 list. Without this change the syntax table is generated
10711 incorrectly, and the mode will think it's in a comment following
10712 any instance of the string "--".
10714 2008-01-09 Tassilo Horn <tassilo@member.fsf.org>
10716 * doc-view.el (doc-view-mode-p): Add EPS as supported type.
10717 (doc-view-mode): Support document files inside archives.
10719 2008-01-09 Dan Nicolaescu <dann@ics.uci.edu>
10721 * vc.el (vc-deduce-fileset): Return the currently selected file if
10722 no files are selected when using vc-status.
10724 2008-01-09 Michael Kifer <kifer@cs.stonybrook.edu>
10726 * ediff*.el: Comment out declare-function. "make bootstrap"
10727 stops with an error and Emacs does not compile with those things in.
10728 Besides, declare-function is not defined in XEmacs.
10730 * ediff-util (eqiff-quit): Autoraise minibuffer.
10732 * ediff-diff.el (ediff-convert-fine-diffs-to-overlays): Make it a defun.
10734 * emulation/viper*.el: Comment out declare-function -- not defined
10737 * emulation/viper-ex.el (viper-info-on-file):
10738 Take care of indirect buffers.
10740 * emulation/viper.el (viper-set-hooks, set-cursor-color):
10741 Set viper-vi-state-cursor-color.
10743 2008-01-09 Tom Tromey <tromey@redhat.com>
10745 * vc.el (vc-status-headers): Rename from vc-status-insert-headers.
10746 Just return header.
10747 (vc-status-move-to-goal-column): New function.
10748 (vc-status-mode-map): Define more keys.
10749 (vc-status-mode): Use vc-status-refresh. Now 'special.
10750 (vc-status-refresh): New function.
10751 (vc-status-next-line): Likewise.
10752 (vc-status-previous-line): Likewise.
10753 (vc-status-mark-file): Use vc-status-next-line.
10754 (vc-status-unmark-file): Use vc-status-previous-line.
10755 (vc-status-unmark-file-up): New function.
10756 (vc-status-register): Likewise.
10757 (vc-status-find-file): Likewise.
10758 (vc-status-find-file-other-window): Likewise.
10759 (vc-status-current-file): Likewise.
10760 (vc-ensure-vc-buffer): Understand vc-status mode.
10762 * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status".
10764 2008-01-09 Glenn Morris <rgm@gnu.org>
10766 * ffap.el (ffap-string-at-point-mode-alist): Add `\' to file
10767 entry, for Windows.
10769 2008-01-09 Tom Tromey <tromey@redhat.com>
10771 * play/blackbox.el (blackbox-mode-map): Add `q' and [return] bindings.
10773 2008-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
10775 * ffap.el (ffap-read-file-or-url): Don't use let-binding to temporarily
10776 add a file-name handler.
10778 2008-01-08 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10780 * textmodes/bibtex.el (bibtex-initialize): New autoloaded command.
10781 Rename from function bibtex-files-expand. New optional arg select.
10782 (bibtex-flash-head): Allow blink-matching-delay being zero.
10783 (bibtex-clean-entry): Use atomic-change-group.
10784 (bibtex-format-entry): Check presence of required fields only
10785 after formatting of fields. Use member-ignore-case. Do not use
10786 bibtex-parse-entry. Do not use booktitle field to set a missing title.
10787 (bibtex-autofill-entry): Do not call undo-boundary.
10788 (bibtex-lessp): Handle crossref keys that point to another bibtex file.
10789 (bibtex-sort-buffer, bibtex-prepare-new-entry, bibtex-validate):
10790 Parse keys if necessary.
10792 2008-01-08 Nick Roberts <nickrob@snap.net.nz>
10794 * progmodes/gdb-ui.el (gdb-var-list-children-1): Put varnum in
10795 quotes in case of spaces, e.g. STL containers (not pretty).
10797 2008-01-08 Nick Roberts <nickrob@snap.net.nz>
10799 * progmodes/gdb-ui.el (gud-gdb-command-name):
10800 Explain "--annotate=3" option is necessary for the Graphical Interface.
10802 2008-01-08 Nick Roberts <nickrob@snap.net.nz>
10804 * progmodes/hideif.el (hide-ifdef-mode-menu): Put hide-ifdef commands
10807 2008-01-08 Michael Albinus <michael.albinus@gmx.de>
10809 * ffap.el (ffap-read-file-or-url): Let-bind
10810 `file-name-handler-alist' due to `rfn-eshadow-update-overlay'.
10812 2008-01-08 Sven Joachim <svenjoac@gmx.de>
10814 * vc-bzr.el: Fix typo in header.
10816 2008-01-08 Eli Zaretskii <eliz@gnu.org>
10818 * Makefile.in (custom-deps, finder-data): Depend on autoloads
10819 instead of loaddefs.el.
10821 2008-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
10823 * vc-cvs.el (vc-cvs-annotate-time): Don't move backward when text
10824 gets inserted out-of-order.
10826 2008-01-08 Riccardo Murri <riccardo.murri@gmail.com>
10828 * vc-bzr.el: Copyright and version headers update.
10829 Remove some outdated comments through the whole file.
10830 (vc-bzr-program-args): Remove because unused.
10831 (vc-bzr-log-switches): New customization option.
10832 (vc-bzr-command): Use LC_MESSAGES=C instead of LC_ALL=C. No longer
10833 use `vc-bzr-program-args'.
10834 (vc-bzr-register): Fix for working with both 22.1 and CVS version of
10835 `vc-find-root' (patch by Andreas Hoenen).
10836 (vc-bzr-status): Update regex to match latest Bzr output.
10837 Remove redundant test.
10838 (vc-bzr-init-version): New function.
10839 (vc-bzr-unregister): Must not delete file.
10840 (vc-bzr-find-version): New function.
10841 (vc-bzr-checkout): Argument `rev' is explicit revision only if it's
10842 a non-empty string, otherwise take head revision.
10843 (vc-bzr-print-log): Pass `vc-bzr-log-switches' to "bzr log".
10844 (vc-bzr-diff): Simpler build of the revision spec string.
10845 (vc-annotate-convert-time, vc-bzr-annotate-difference):
10846 Remove: compatibility hacks for Emacs21, not needed in Emacs 22.
10847 (vc-bzr-dir-state): Add code comments. Removed redundant statement.
10848 (vc-bzr-dired-state-info): Only provide custom strings for
10849 overloaded VC state 'edited; otherwise fallback to
10850 `vc-default-dired-state-info'.
10852 2008-01-08 Richard Stallman <rms@gnu.org>
10854 * delsel.el (delete-selection-mode): Doc fix.
10856 2008-01-08 Nick Roberts <nickrob@snap.net.nz>
10858 * progmodes/gud.el (gud-def): Do nothing if gud-running is t.
10859 (gud-speedbar-menu-items): Add item for gdb-var-set-format below.
10861 * progmodes/gdb-ui.el (gdb-var-set-format): Set the output format
10862 of watch expressions (only works fully with GDB 6.7 or later).
10864 2008-01-08 Dan Nicolaescu <dann@ics.uci.edu>
10866 * time-stamp.el (time-stamp-time-zone):
10867 * whitespace.el (whitespace-check-buffer-leading)
10868 (whitespace-check-buffer-trailing, whitespace-check-buffer-indent)
10869 (whitespace-check-buffer-spacetab, whitespace-check-buffer-ateol):
10870 * progmodes/sh-script.el (sh-indentation):
10871 * textmodes/ispell.el (ispell-local-pdict):
10872 Add safe-local-variable properties.
10874 2008-01-08 Michael Albinus <michael.albinus@gmx.de>
10876 * vc-git.el (vc-git--call): Apply `process-file' instead of
10879 * net/tramp.el (tramp-remote-process-environment): Add "LC_CTYPE=C".
10880 Reported by Pete Forman <pete.forman@westerngeco.com>.
10881 (tramp-perl-encode, tramp-perl-decode): Update copyrights.
10882 (tramp-handle-process-file): Handle the case where DESTINATION is
10883 a consp with t as car.
10884 (tramp-wait-for-output): We shall remove exactly what has been
10885 find by the search.
10887 2008-01-08 Kevin Ryde <user42@zip.com.au>
10889 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10890 For perl, allow "during global destruction" at end. Add entry for
10891 two-arg form of the Test module ok() func.
10893 2008-01-08 Glenn Morris <rgm@gnu.org>
10895 * diff-mode.el (diff-end-of-hunk): Don't match empty lines in
10898 * mouse.el (mouse-major-mode-menu): Suppress duplicate menus.
10900 2008-01-08 Ralf Angeli <angeli@caeruleus.net>
10902 * textmodes/reftex-toc.el (reftex-make-separate-toc-frame):
10903 Simplify selection of frame focusing function.
10905 2008-01-08 Michael Olson <mwolson@gnu.org>
10907 * textmodes/remember.el (remember-region): Fix typo in docstring.
10909 2008-01-08 Lennart Borgman <lennart.borgman.073@student.lu.se>
10911 * textmodes/remember.el (remember): If there is a visible region
10912 [that is, the mark is active and transient mark mode is enabled]
10913 then use this region for the initial contents of the *Remember*
10914 buffer. Use `region-beginning' and `region-end' instead of
10915 `point' and `mark'.
10917 2008-01-07 Dan Nicolaescu <dann@ics.uci.edu>
10919 * vc-hg.el (vc-hg-dir-state, vc-hg-dir-status): Pass the dir
10920 argument to vc-hg-command.
10921 (vc-hg-log-view-mode): Handle the user field better.
10923 2008-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
10925 * vc.el (vc-ensure-vc-buffer): Check liveness of vc-parent-buffer.
10927 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
10929 * vc.el (vc-status-fileinfo): New defstruct.
10930 (vc-status): New defvar.
10931 (vc-status-insert-headers, vc-status-printer, vc-status)
10932 (vc-status-mode-map, vc-status-mode, vc-status-mark-file)
10933 (vc-status-unmark-file, vc-status-marked-files): New functions.
10935 * vc-hg.el (vc-hg-dir-status): New function.
10937 2008-01-06 Martin Rudalics <rudalics@gmx.at>
10939 * cus-edit.el (custom-tool-bar-map): Move initialization of this
10940 keymap from here ...
10941 (custom-mode): ... to here. Reported by Reiner Steib.
10943 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
10945 * obsolete/x-apollo.el: Remove file for unsupported system.
10947 * term/x-win.el (vendor-specific-keysyms): Remove reference to
10950 * progmodes/gud.el (gud-dgux-p): Remove.
10951 (dbx): Remove reference to dgux.
10953 * progmodes/ps-mode.el (ps-mode-print-function):
10954 * ps-print.el (ps-lp-system):
10955 * paths.el (rmail-spool-directory):
10956 * ls-lisp.el (ls-lisp-emulation):
10957 * lpr.el (lpr-lp-system):
10958 * dired.el (dired-chown-program): Remove references to dgux.
10960 2008-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
10962 * vc.el (vc-process-sentinel): Fix apparent typo.
10963 (vc-do-command): Forcefully kill any left over process.
10964 Use start-file-process.
10965 (vc-annotate-get-time-set-line-props): Check we don't move backward.
10967 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
10969 * net/dbus.el (dbus-list-hash-table)
10970 (dbus-name-owner-changed-handler): Replace "signal" by "member".
10971 (dbus-check-event): Add serial number to event.
10972 (dbus-handle-event): Apply return message if needed.
10973 (dbus-event-serial-number): New defun.
10974 (dbus-event-service-name, dbus-event-path-name)
10975 (dbus-event-interface-name, dbus-event-member-name):
10976 Adapt implementation to serial number.
10978 2008-01-04 Juanma Barranquero <lekktu@gmail.com>
10980 * bs.el (bs--get-mode-name): Fix typo in previous change.
10982 2008-01-04 Dan Nicolaescu <dann@ics.uci.edu>
10984 * mouse.el (mouse-popup-menubar): Fix typo.
10986 * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Move one more
10987 form inside with-current-buffer.
10989 * progmodes/antlr-mode.el (provide): Move to the end of file.
10990 (require): Don't require font-lock and compile.
10991 (outline-level, imenu-use-markers, imenu-create-index-function):
10992 Move declarations to top level.
10993 (cond-emacs-xemacs-macfn): Declare for compiler.
10995 * vc-bzr.el (vc-bzr-root):
10996 * vc-arch.el (vc-arch-root): Only set a property if the file is
10997 managed by this backend.
10999 * vc-hg.el (vc-hg-state): Support the new status code for up-to-date.
11001 2008-01-04 Tassilo Horn <tassilo@member.fsf.org>
11003 * doc-view.el (doc-view-scroll-up-or-next-page)
11004 (doc-view-scroll-down-or-previous-page): Don't scroll to the
11005 top/bottom again when on the first/last page.
11007 * doc-view.el (doc-view-scroll-up-or-next-page)
11008 (doc-view-scroll-down-or-previous-page): Use image-scroll-up and
11009 image-scroll-down instead of the non-image equivalents.
11010 Don't rely on a signalled condition but switch pages when scrolling
11011 doesn't change the vertical position anymore.
11012 (doc-view-mode-map): Remap scroll-{up,down} to
11013 image-scroll-{up,down}.
11015 2008-01-04 Rob Riepel <riepel@networking.Stanford.EDU>
11017 * emulation/tpu-edt.el (tpu-load-xkeys): Recommend to run the
11018 tpu-mapper command rather than load the tpu-mapper package.
11020 * emulation/tpu-mapper.el (tpu-mapper): New command.
11021 Contains all the code previously at top-level.
11023 2008-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
11025 * bs.el (bs--sort-by-mode, bs--get-mode-name):
11026 * imenu.el (imenu-add-to-menubar):
11027 * makesum.el (make-command-summary):
11028 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
11029 (mouse-buffer-menu):
11030 * msb.el (msb--mode-menu-cond):
11031 * calc/calc-embed.el (calc-do-embedded):
11032 * emacs-lisp/helper.el (Helper-describe-mode):
11033 * mail/emacsbug.el (report-emacs-bug):
11034 * progmodes/hideshow.el (hs-grok-mode-type):
11035 * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
11036 * textmodes/table.el (*table--cell-describe-mode):
11037 Pass mode-name through format-mode-line.
11039 2008-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
11041 * progmodes/ada-xref.el (ada-prj-find-prj-file):
11042 * progmodes/ada-mode.el (comment-region):
11043 * calendar/todo-mode.el (todo-insert-item):
11044 * bookmark.el (bookmark-buffer-name):
11045 Test major-mode rather than mode-name.
11047 2008-01-04 Richard Stallman <rms@gnu.org>
11049 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
11050 Call byte-compile-warn-about-unresolved-functions outside
11051 the with-current-buffer.
11052 (byte-compile-insert-header): Use with-current-buffer.
11054 2008-01-04 Glenn Morris <rgm@gnu.org>
11056 * startup.el (fancy-about-screen): Remove reference to deleted
11057 `fancy-splash-help-echo' variable.
11059 * version.el (emacs-copyright): Update to 2008.
11061 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Use mapc
11062 rather than mapcar.
11064 * progmodes/cc-vars.el (defcustom-c-stylevar): Revert previous
11065 change (merge mistake).
11067 * doc-view.el (doc-view-search-internal): Don't use `incf'.
11069 * doc-view.el (bookmark-make-cell-function, bookmark-get-filename)
11070 (bookmark-get-bookmark-record):
11071 * image-mode.el (bookmark-make-cell-function)
11072 (bookmark-get-filename, bookmark-get-bookmark-record)
11073 (bookmark-get-position):
11074 * log-view.el (vc-modify-change-comment):
11075 * progmodes/grep.el (find-name-arg): Declare for compiler.
11077 2008-01-04 Juanma Barranquero <lekktu@gmail.com>
11079 * savehist.el (savehist-coding-system): Default to a variant coding
11080 system with explicit unix end-of-line conversion, which is safer.
11082 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
11084 * ibuf-ext.el (mode-name sorter, ibuffer-mark-by-mode-regexp):
11085 * ibuffer.el (mode column): Use format-mode-line.
11087 * server.el (server-create-window-system-frame): Remove workaround for
11088 a bug that has been fixed.
11090 2008-01-03 Magnus Henoch <magnus@zemdatav>
11092 * net/dbus.el (dbus-name-owner-changed-handler):
11093 Use dbus-unregister-object instead of dbus-unregister-signal.
11095 2008-01-03 Drew Adams <drew.adams@oracle.com>
11097 * frame.el (frame-geom-value-cons, frame-geom-spec-cons): New fns.
11099 2008-01-03 Richard Stallman <rms@gnu.org>
11101 * replace.el (occur-context-lines): New subroutine,
11102 broken out of occur-engine.
11103 (occur-engine): Call it.
11105 2008-01-03 Alexandre Julliard <julliard@winehq.org>
11107 * vc-git.el (vc-git--ls-files-state): New function.
11108 (vc-git-dir-state): Use it instead of processing the status
11111 2008-01-02 Eric S. Raymond <esr@snark.thyrsus.com>
11113 * progmodes/grep.el (grep-find-ignored-directories):
11114 Initialize from the value of vc-directory-exclusion-list.
11116 * vc-hooks.el (vc-directory-exclusion-list): Include "_darcs",
11117 even though we don't have a back end for darcs yet.
11119 2008-01-02 Karl Fogel <kfogel@red-bean.com>
11121 Change a return type, for greater extensibility.
11122 See http://lists.gnu.org/archive/html/emacs-devel/2007-12/msg01077.html
11123 and its thread for discussion leading to this change.
11125 * bookmark.el (bookmark-jump-noselect):
11126 Return an alist instead of a dotted pair.
11127 (bookmark-jump, bookmark-jump-other-window, bookmark-insert)
11128 (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
11129 (bookmark-bmenu-switch-other-window): Adjust accordingly.
11130 (bookmark-make-cell-function): Adjust documentation accordingly.
11132 * image-mode.el (image-bookmark-jump):
11133 Adjust return type accordingly; document.
11135 * doc-view.el (doc-view-bookmark-jump):
11136 Adjust return type accordingly; document.
11138 2008-01-02 Miles Bader <miles@gnu.org>
11140 * net/rcirc.el (rcirc-log-filename-function): New variable.
11141 (rcirc-log): Use `rcirc-log-filename-function' to generate the
11142 log-file name. Don't log anything if it returns nil.
11143 (rcirc-log-write): Use `expand-file-name' when merging the
11144 log-file name from the alist with rcirc-log-directory; this does
11145 the right thing if the name in the alist already an absolute
11146 filename. Make the log-file directory if necessary.
11148 2007-12-29 Richard Stallman <rms@gnu.org>
11150 * font-lock.el (font-lock-prepend-text-property)
11151 (font-lock-append-text-property): Canonicalize the face and
11152 font-lock-face properties.
11154 * faces.el (facep): Doc fix.
11156 * startup.el (fancy-startup-tail, fancy-about-text)
11157 (fancy-startup-text): Regularize format of face property.
11159 * facemenu.el (list-colors-print): Use :background and :foreground
11160 instead of background-color and foreground-color.
11162 2007-12-29 Drew Adams <drew.adams@oracle.com>
11164 * cus-edit.el (custom-add-parent-links):
11165 Fill the "Parent documentation" text.
11167 2007-12-29 Eli Zaretskii <eliz@gnu.org>
11169 * textmodes/ispell.el (ispell-grep-command): Use "grep" on
11170 MS-Windows and MS-DOS.
11171 (ispell-grep-options): Use "-Ei" on MS-Windows and MS-DOS.
11173 2008-01-02 Eric S. Raymond <esr@snark.thyrsus.com>
11175 * vc-svn.el (vc-svn-modify-change comment): New function.
11177 2008-01-01 Dan Nicolaescu <dann@ics.uci.edu>
11179 * vc-git.el (vc-git-dir-state): Set the vc-backend property.
11180 Do not disable undo, with-temp-buffer does it by default.
11182 2008-01-01 Eric S. Raymond <esr@snark.thyrsus.com>
11184 * vc-svn.el (vc-svn-parse-status): Set the `unregisted' property
11187 * vc.el (vc-dired-hook): Speed tuning. Replace a vc-backend call
11189 (vc-next-action): Fix vc-transfer-file call.
11191 2007-12-31 Tom Tromey <tromey@redhat.com>
11193 * emacs-lisp/elp.el (elp-results): Use header-line-format for header.
11194 Move point to the start of the buffer.
11196 2007-12-31 Dan Nicolaescu <dann@ics.uci.edu>
11198 * vc-cvs.el (vc-cvs-parse-entry): Set the vc-backend property.
11200 * vc.el: State that dir-state is required to set the vc-state and
11201 vc-backend properties.
11203 2007-12-31 Martin Rudalics <rudalics@gmx.at>
11205 * man.el (Man-default-man-entry): Make this a defun.
11206 Improve guessing mechanism and handling of section numbers.
11208 2007-12-31 Richard Stallman <rms@gnu.org>
11210 * faces.el (face-all-attributes): If FRAME is nil, return defaults.
11212 2007-12-31 Jay Belanger <jay.p.belanger@gmail.com>
11214 * calc/calc-units.el (calc-convert-temperature): Ensure that units
11215 are on the result even when the result is zero.
11217 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
11219 * net/dbus.el (dbus-name-owner-changed-handler): Make the function
11220 resistent towards wrong parameters.
11221 (dbus-handle-event): Propagate D-Bus errors only in the debug case.
11223 2007-12-30 Richard Stallman <rms@gnu.org>
11225 * faces.el (face-all-attributes): New function.
11227 * faces.el (face-differs-from-default-p): Compute list of attr names
11228 from face-attribute-name-alist.
11230 * cus-edit.el (custom-face-set): Call `face-spec-set' with FOR-DEFFACE.
11231 (custom-face-save): Likewise.
11232 (custom-face-reset-saved, custom-face-reset-standard): Likewise.
11234 * cus-face.el (custom-declare-face): Per frame, use `face-spec-set-2'.
11235 (custom-theme-set-faces): Clear `face-override-spec' property.
11236 Call `face-spec-set' with FOR-DEFFACE.
11238 * custom.el (custom-theme-recalc-face): Simply call `face-spec-recalc'.
11240 * faces.el (face-spec-set): Third arg is now FOR-DEFFACE.
11241 Use of frame as third arg is deprecated.
11242 Handle `face-override-spec' property.
11243 (face-spec-recalc): New function.
11244 (face-spec-set-2): New function.
11245 (frame-set-background-mode): Handle `face-override-spec' property.
11246 Use `face-spec-recalc'.
11247 (face-set-after-frame-default): Use `face-spec-recalc'.
11249 2007-12-29 Nick Roberts <nickrob@snap.net.nz>
11251 * thumbs.el (thumbs-conversion-program): Add comment for Windows XP.
11253 2007-12-29 Dan Nicolaescu <dann@ics.uci.edu>
11255 * vc-hg.el (vc-hg-dir-state): Set the vc-backend property.
11257 2007-12-29 Eric S. Raymond <esr@snark.thyrsus.com>
11259 * vc-svn.el (vc-svn-parse-status): Recognize 'unregistered,
11262 * vc.el (header coment): Better description of dir-state.
11263 (vc-compatible-state): New function. Checks whether two states
11264 can be in the same changeset; used with 'edited it can test whether
11265 the next action for a state should be commit.
11266 (vc-default-dired-state-info): Display 'removed state.
11267 (vc-dired-hook): Turn off undo, this is a speed tweak.
11269 * vc-bzr.el (vc-bzr-dir-state): Recognize 'added.
11271 * vc-hg.el (vc-bzr-hg-state): Recognize 'added and 'removed.
11272 Cope with the possibility that the 'C' status flag might change
11275 * vc-git.el (vc-bzr-dir-state): Recognize 'removed.
11277 2007-12-29 Thien-Thi Nguyen <ttn@gnuvola.org>
11279 * files.el (cd-absolute): Fix omission bug:
11280 Make `list-buffers-directory' buffer-local.
11282 2007-12-29 Dan Nicolaescu <dann@ics.uci.edu>
11284 * vc-hg.el (vc-hg-dir-state): Deal with the up-to-date state.
11286 2007-12-29 Jay Belanger <jay.p.belanger@gmail.com>
11288 * calc/calc-aent.el (math-read-token): Fix misplaced parentheses.
11290 * calc/calc-lang.el (calc-yacas-language, calc-maxima-language)
11291 (calc-giac-language, math-yacas-parse-Sum, math-yacas-compose-sum)
11292 (math-yacas-compose-deriv, math-yacas-compose-taylor)
11293 (math-maxima-parse-subst, math-maxima-parse-taylor)
11294 (math-maxima-compose-taylor, math-maxima-compose-subst)
11295 (math-maxima-compose-if, math-lang-switch-args)
11296 (math-lang-compose-switch-args, math-read-giac-subscr):
11298 (calc-lang-allow-underscores, calc-lang-allow-percentsigns)
11299 (calc-lang-brackets-are-subscripts, calc-lang-c-type-hex):
11301 (math-vector-brackets, math-complex-format, math-variable-table)
11302 (math-parse-table, math-oper-table, math-function-table)
11303 (math-special-function-table, math-compose-subscr):
11304 Add values for new languages.
11306 * calc/calccomp.el (math-compose-expr): Add new languages.
11308 * calc/calc.el (calc-language): Add languages to docstring.
11310 * calc/calc-ext.el (calc-init-extensions): Add keybindings
11311 for new languages. Autoload commands to change languages.
11313 * calc/calc-help.el (calc-d-prefix-help): Add new languages.
11315 * calc/calc-menu.el (calc-modes-menu): Add new languages.
11316 (calc-arithmetic-menu, calc-scientific-function-menu)
11317 (calc-algebra-menu, calc-graphics-menu, calc-vectors-menu)
11318 (calc-units-menu, calc-variables-menu, calc-stack-menu):
11319 Add :active keywords.
11321 2007-12-28 Dan Nicolaescu <dann@ics.uci.edu>
11323 * vc-hg.el (vc-hg-registered): Return the false when vc-hg-state
11324 returns 'ignored or 'unregistered.
11325 (vc-hg-state): Pass "-A" to the status command and deal with the
11327 (vc-hg-dir-state): Pass "-A" to the status command.
11329 2007-12-29 Richard Stallman <rms@gnu.org>
11331 * progmodes/compile.el (compilation-start): Set initial visible
11332 point properly even when compilation buffer already current.
11334 2007-12-29 Richard Stallman <rms@gnu.org>
11336 * files.el (conf-mode-maybe): New function.
11337 (auto-mode-alist): Use conf-mode-maybe for .conf etc.
11339 2007-12-29 Martin Rudalics <rudalics@gmx.at>
11341 * textmodes/fill.el (fill-find-break-point): Fix doc-string typo.
11343 2007-12-29 Dan Nicolaescu <dann@ics.uci.edu>
11345 * progmodes/asm-mode.el (asm-mode-map): Add a major mode menu.
11347 2007-12-29 Richard Stallman <rms@gnu.org>
11349 * comint.el (comint-mode-map): Explicitly bind `delete' and `kp-delete'
11350 so they never do EOF.
11352 2007-12-29 Richard Stallman <rms@gnu.org>
11354 * faces.el (copy-face): Create the new face explicitly if it
11355 does not exist already.
11357 2007-12-29 Eli Zaretskii <eliz@gnu.org>
11359 * simple.el (minibuffer-history, shell-command-history)
11360 (set-variable-value-history):
11361 * replace.el (regexp-history):
11362 * international/mule-cmds.el (input-method-history):
11363 * files.el (file-name-history): Add reference to history-length in
11366 2007-12-29 Richard Stallman <rms@gnu.org>
11368 * comint.el (comint-password-prompt-regexp): Match `Enter Password'.
11370 2007-12-29 Jason Rumney <jasonr@gnu.org>
11372 * find-dired.el (find-name-arg): New custom variable.
11373 (find-name-dired): Use it.
11374 (find-dired-find-program): Remove.
11375 (find-dired): Use find-program.
11376 (find-grep-dired): Use grep-program.
11378 * progmodes/grep.el (rgrep): Use find-name-arg.
11380 2007-12-29 Thien-Thi Nguyen <ttn@gnuvola.org>
11382 * progmodes/cc-vars.el (defcustom-c-stylevar):
11383 Revert to pre-2007-12-12 version.
11385 2007-12-29 Richard Stallman <rms@gnu.org>
11387 * emacs-lisp/find-func.el (find-function-after-hook): Add :type.
11389 * info.el (Info-clone-buffer): Rename from Info-clone-buffer-hook.
11392 * startup.el (fancy-splash-help-echo): Var deleted.
11393 (fancy-splash-insert): Get help-echo from (startup-echo-area-message).
11394 (fancy-about-screen): Don't display fancy-splash-help-echo.
11396 * menu-bar.el (menu-bar-describe-menu): Remove dots from menu text.
11398 2007-12-28 Eric S. Raymond <esr@snark.thyrsus.com>
11400 * vc-hooks.el, vc.el: Move vc-directory-exclusion-list from vc.el
11401 to vc-hooks.el so it will be available to other modes, such as
11402 speedbar.el. Also, teach it to recognize monotone state directories.
11404 * speedbar.el: Remove this mode's fragile assumptions about
11405 version-control systems. Instead, make it use logic from
11406 vc-hooks.el so it will become smarter whenever VC mode does.
11408 * vc-hooks.el: 'added is a real state, not a future hypothetical one.
11409 Fix the documentation.
11411 * vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el, vc-mcvs.el, vc-svn.el:
11412 Modify all instances of the dir-state back-end method to suppress
11413 keeping undo lists on the buffers holding status output, which
11414 can get extremely large.
11416 * vc-cvs.el, vc-svn.el: Simplify backend dired-state-info functions
11417 so they don't do work that the default one can do instead.
11419 * vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
11420 states, and the new return-value convention. These are not
11421 actually used yet, just set.
11423 * vc-svn.el (vc-svn-parse-status): Set 'ignored and 'unregistered
11424 states when appropriate.
11426 * vc-hg.el (vc-hg-state, vc-hg-dir-state): Set 'ignored and
11427 'unregistered when appropriate.
11429 * vc-git.el: Document that we don't set the new states yet.
11431 * vc.el (vc-dired-state-info): Display 'added, 'unregistered and
11434 * vc-cvs.el (vc-cvs-parse-status): Set the 'ignored state when
11437 * vc-bzr.el (vc-bzr-dir-state): Set 'ignored and 'unregistered
11440 2007-12-28 Nick Roberts <nickrob@snap.net.nz>
11442 * thumbs.el (thumbs-call-convert): Use call-process directly
11443 with thumbs-conversion-program instead of through shell-file-name
11444 for better error reporting.
11446 2007-12-27 Jay Belanger <jay.p.belanger@gmail.com>
11448 * calc/calc-aent.el (math-remove-percentsigns):
11449 * calc/calccomp.el (math-to-percentsigns): Change placeholder
11452 2007-12-27 Eric S. Raymond <esr@snark.thyrsus.com>
11454 * vc.el (vc-dired-ignorable-p, vc-dired-hook): Speed optimization;
11455 use completion-ignored-extensions to detect files that should be
11456 ignorted in VC-Dired listings, heading off lots of expensive calls
11459 * vc.el (vc-dired-hook): Show unregistered file status as "?" in
11461 (vc-dired-ignorable-p): Ignore Makefile when it has a peer named
11462 Makefile.in or Makefile.am.
11464 2007-12-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11466 * ps-print.el (ps-mark-active-p): Fun returned back.
11467 (ps-print-preprint-region): Use `ps-mark-active-p' instead of
11468 `region-active-p' for error checking.
11470 2007-12-27 Eric S. Raymond <esr@snark.thyrsus.com>
11472 * vc.el, vc-sccs.el, vc-rcs.el, vc-cvs.el, vc-mcvs.el:
11473 Put new machinery in place to support editing of change comments
11474 with 'e' in a log-view buffer. Not documented yet as this
11475 only works for SCCS, RCS, and maybe CVS if you have admin
11476 privileges. When we have backend support for Subversion and
11477 more modern systems it will be time to write this up.
11479 2007-12-27 Kenichi Handa <handa@ni.aist.go.jp>
11481 * international/mule-cmds.el (select-safe-coding-system):
11482 When a buffer is modified, cancel the writing.
11484 2007-12-26 Eric S. Raymond <esr@snark.thyrsus.com>
11486 * log-view.el: Add Subversion and Mercurial log format samples.
11488 * vc.el (vc-dired-hook): Significantly speed up by arranging for
11489 it to call the backend dir-state hook (if it exists)
11490 exactly *once*, rather than once per each subdirectory (with
11491 dired-state-info calls on all toplevel files slowing it down even
11492 further). For this to work, backend dir-state methods have to
11493 recurse to subdirectories. Most of them already did anyway; a few
11494 needed *non*-recursion switches removed. This change mostly
11495 removed code that was perversely bad and should have been shot
11496 through the head years ago.
11498 * vc-bzr.el (vc-bzr-dir-state):
11499 * vc-cvs.el (vc-cvs-dir-state):
11500 * vc-mcvs.el (vc-mcvs-dir-state):
11501 * vc-svn.el (vc-svn-dir-state): Recurse in subdirectories.
11503 * vc-svn.el (vc-svn-print-log): svn log doesn't actually accept
11504 multiple arguments, so generate logs sequentially when we get them.
11505 * vc-hg.el (vc-hg-print-log): Gives this CVS-like "Working file:"
11506 headers so the various log bindings can do the right thing.
11507 * vc-cvs.el (vc-cvs-print-log): Fix a misleading comment.
11509 2007-12-26 Andreas Schwab <schwab@suse.de>
11511 * font-lock.el (save-buffer-state): Make sure the state of the
11512 buffer is always restored.
11514 2007-12-26 Jay Belanger <jay.p.belanger@gmail.com>
11516 * calc/calc.el (calc-lang-allow-percentsigns): New variable.
11518 * calc/calc-lang.el (calc-lang-allow-percentsigns): Declare as
11521 * calc/calccomp.el (math-to-percentsigns): New function.
11522 (math-compose-var): Handle variables with percent signs.
11523 (math-compose-expr): Handle function names with percent signs.
11525 * calc/calc-aent.el (math-to-percentsigns): Declare as function.
11526 (math-read-exprs): Handle percent signs in languages that
11528 (math-restore-underscores): Remove function.
11529 (math-remove-percentsigns, math-restore-placeholders):
11532 2007-12-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11534 * ps-print.el (ps-print-preprint-region): Use `region-active-p' instead
11535 of `mark' for error checking.
11537 2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
11539 * image-mode.el (image-bookmark-make-cell, image-bookmark-jump):
11541 (image-mode): Set bookmark-make-cell-function appropriately.
11543 * doc-view.el (doc-view-bookmark-jump): Correct misspelled arg name.
11545 * bookmark.el (bookmark-make-cell-function): New variable.
11546 (bookmark-make): Call bookmark-make-cell-function's function
11547 instead of bookmark-make-cell.
11548 (bookmark-get-handler, bookmark-jump-internal): New functions.
11549 (bookmark-jump, bookmark-jump-other-window, bookmark-insert)
11550 (bookmark-bmenu-2-window, bookmark-bmenu-other-window):
11551 Use bookmark-jump-internal.
11552 (bookmark-make-cell-for-text-file): Rename from bookmark-make-cell.
11554 * doc-view.el (doc-view-bookmark-make-cell)
11555 (doc-view-bookmark-jump): New functions.
11556 (doc-view-mode): Set bookmark-make-cell-function buffer-locally.
11558 2007-12-25 Miles Bader <miles@gnu.org>
11560 * indent.el (indent-for-tab-command): Rigidly indent the following
11561 sexp along with the current line when a prefix arg is given in the
11562 non-active-region case. Specify raw prefix in interactive spec.
11563 Simplify main indentation logic to get rid of the conditional call
11564 to `indent-according-to-mode' (it just ended up calling
11565 `indent-line-function' in all cases anyway, which can be done more
11566 simply here). Remove unnecessary test of ARG in active region case.
11568 2007-12-25 Richard Stallman <rms@gnu.org>
11570 * allout.el (allout-region-active-p): Rename from my-region-active-p.
11571 Use `use-region-p'.
11572 (allout-write-file-hook-handler): Simplify code.
11574 * ps-print.el (ps-mark-active-p): Function deleted.
11575 (ps-print-preprint-region): Use (mark) for the error check.
11577 * tooltip.el (tooltip-region-active-p): Use `use-region-p'.
11579 * winner.el (winner-active-region): Use `mark-active' if it's defined.
11581 * progmodes/ada-mode.el (ada-region-selected): Use `use-region-p'.
11583 * textmodes/org.el (org-region-active-p): Use `use-region-p'.
11585 * progmodes/idlwave.el (idlwave-region-active-p): Use `use-region-p'.
11587 * textmodes/reftex.el (reftex-region-active-p): Use `use-region-p'.
11589 * progmodes/cc-defs.el (c-region-is-active-p):
11590 Use `mark-active' if it's defined.
11592 * progmodes/cc-cmds.el (c-indent-line-or-region):
11593 Pass prefix arg to `c-indent-command'. Use `use-region-p'.
11595 * simple.el (select-active-regions): New option.
11596 (set-mark): Obey it.
11597 (yank-pop-change-selection): New option.
11598 (current-kill): Obey it.
11600 * simple.el (use-region-p): Rename from `region-active-p'.
11601 (region-active-p): New function.
11603 2007-12-25 David Golden <david.delaharpe.golden@gmail.com> (tiny change)
11605 * term/x-win.el (x-select-enable-primary): New option.
11606 (x-select-text, x-cut-buffer-or-selection-value): Obey it.
11608 * mouse.el (mouse-yank-primary): New function (almost same
11609 as mouse-yank-secondary).
11611 2007-12-25 Dan Nicolaescu <dann@ics.uci.edu>
11618 * emacs-lisp/checkdoc.el:
11619 * mail/feedmail.el:
11621 * obsolete/fast-lock.el:
11623 * progmodes/delphi.el:
11624 * progmodes/idlw-shell.el:
11625 * progmodes/idlwave.el:
11626 * textmodes/artist.el:
11627 * textmodes/ispell.el:
11628 * textmodes/texinfmt.el:
11629 * textmodes/texinfo.el: Remove obsolete definitions of backward
11630 compatibility macros for defcustom, defgroup, defface, when,
11631 unless, with-current-buffer and with-temp-message.
11633 2007-12-24 Nick Roberts <nickrob@snap.net.nz>
11635 * progmodes/verilog-mode.el: Reformat parts to 80 columns.
11637 2007-12-23 Stefan Monnier <monnier@iro.umontreal.ca>
11639 * server.el (server-save-buffers-kill-terminal): Check the `proc' is
11642 2007-12-23 Richard Stallman <rms@gnu.org>
11644 * simple.el (region-active-p): New function.
11645 (use-empty-active-region): New variable.
11647 * dired-aux.el (dired): Load dired.el at run time too.
11649 2007-12-23 Juri Linkov <juri@jurta.org>
11651 * man.el (Man-follow-manual-reference): Fill the minibuffer's
11652 default list with a full list of references.
11654 * files.el (auto-mode-alist): Add \\' to doc-view files regexp.
11656 2007-12-23 Andreas Schwab <schwab@suse.de>
11658 * files.el (switch-to-buffer-other-frame): Return the buffer
11661 2007-12-23 Michael Albinus <michael.albinus@gmx.de>
11663 Sync with Tramp 2.1.12.
11665 * net/tramp.el: New todo item.
11667 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Handle "-F"
11668 switch. Reported by Mark T. Kennedy <mkennedy@diamondbackcap.com>.
11670 * net/trampver.el: Update release number.
11672 2007-12-22 Richard Stallman <rms@gnu.org>
11674 * newcomment.el (comment-region-default): Don't triple the
11675 comment starter if the first region line isn't indented enough.
11677 2007-12-21 Teodor Zlatanov <tzz@lifelogs.com>
11679 * net/imap.el (imap-authenticate): Use current-buffer instead of
11680 buffer, for the cases where imap-authenticate is called with a nil
11683 2007-12-21 Martin Rudalics <rudalics@gmx.at>
11685 * autoinsert.el (auto-insert-alist): Remove nonsensical precision
11686 specifier from format-string. Reported by Ye Wenbin.
11688 2007-12-20 Jason Rumney <jasonr@gnu.org>
11690 * nxml/nxml-mode.el (nxml-faces): Rename from nxml-highlighting-faces.
11691 Parent group is font-lock-faces.
11692 (nxml-light-blue-color, nxml-dark-blue-color, nxml-green-color)
11693 (nxml-sky-blue-color, nxml-dark-green-color, nxml-light-green-color):
11694 (nxml-version): Remove.
11695 (nxml-delimited-data, nxml-name, nxml-ref, nxml-delimiter)
11696 (nxml-text, nxml-comment-content, nxml-comment-delimiter)
11697 (nxml-processing-instruction-delimiter)
11698 (nxml-processing-instruction-target)
11699 (nxml-processing-instruction-content, nxml-cdata-section-delimiter)
11700 (nxml-cdata-section-CDATA, nxml-cdata-section-content)
11701 (nxml-char-ref-number, nxml-char-ref-delimiter, nxml-entity-ref-name)
11702 (nxml-entity-ref-delimiter, nxml-tag-delimiter, nxml-tag-slash)
11703 (nxml-element-prefix, nxml-element-colon, nxml-element-local-name)
11704 (nxml-attribute-prefix, nxml-attribute-colon)
11705 (nxml-attribute-local-name, nxml-namespace-attribute-xmlns)
11706 (nxml-namespace-attribute-colon, nxml-namespace-attribute-prefix)
11707 (nxml-attribute-value, nxml-attribute-value-delimiter)
11708 (nxml-namespace-attibute-value)
11709 (nxml-namespace-attribure-value-delimiter)
11710 (nxml-prolog-literal-delimiter, nxml-prolog-literal-content)
11711 (nxml-prolog-keyword, nxml-markup-declaration-delimiter, nxml-hash)
11712 (nxml-glyph): Rename, removing -face suffix.
11713 Inherit from existing font-lock faces.
11714 (nxml-apply-fontify-rule, nxml-char-ref-display-extra):
11715 Use new face names.
11717 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
11718 (nxml-outline-active-indicator, nxml-outline-ellipsis):
11719 Rename, removing -face suffix.
11720 (nxml-highlighted-less-than, nxml-highlighted-greater-than)
11721 (nxml-highlighted-colon, nxml-highlighted-slash)
11722 (nxml-highlighted-ellipsis, nxml-highlighted-inactive-minus)
11723 (nxml-highlighted-active-minus, nxml-highlighted-active-plus)
11724 (nxml-highlighted-qname, nxml-outline-display-heading):
11725 Use new face names.
11727 * nxml/rng-valid.el (rng-error): Rename from rng-error-face.
11729 * nxml/rng-nxml.el (rng-nxml-easy-menu): Remove nxml-version.
11731 2007-12-19 Martin Rudalics <rudalics@gmx.at>
11733 * cus-start.el (all): Use correct group name for members of
11736 * man.el (Man-default-man-entry): When looking for default man
11737 entry title search text preceding point. Use when instead of if.
11739 * indent.el (indent-for-tab-command): Fix doc-string typo.
11741 * vc.el (vc-ensure-vc-buffer): Avoid infinite looping when
11742 vc-parent-buffer is the current buffer.
11744 * info-look.el (info-lookup, info-lookup-setup-mode)
11745 (info-lookup-make-completions): Avoid clobbering Info-history and
11748 2007-12-19 Glenn Morris <rgm@gnu.org>
11750 * progmodes/verilog-mode.el (top-level): Don't require compile.
11751 (compilation-error-regexp-alist, compilation-last-buffer):
11752 Define for compiler.
11753 (verilog-insert-1): New function.
11754 (verilog-insert-indices, verilog-generate-numbers): Doc fixes.
11755 Use verilog-insert-1.
11756 (verilog-surelint-off): Use next-error-last-buffer if bound.
11757 Check compile buffer is live.
11759 2007-12-19 John J Foerch <jjfoerch@earthlink.net> (tiny change)
11761 * progmodes/compile.el (compilation-start): Don't pass a FRAME
11762 argument to display-buffer.
11764 2007-12-19 Jason Rumney <jasonr@gnu.org>
11766 * nxml/rng-maint.el (rng-format-manual): Do not autoload.
11767 (rng-autoload-modules, rng-update-autoloads, rng-compile-modules)
11768 (rng-byte-compile-load, rng-write-version): Remove.
11770 * nxml/rng-loc.el (rng-schema-locating-files-default)
11771 (rng-schema-locating-file-schema-file): Use files in etc/schemas.
11772 (rng-schema-loader-alist): Use rng-c-load-schema to load rnc files.
11774 2007-12-18 Michael Albinus <michael.albinus@gmx.de>
11776 * files.el (cd-absolute): Set `list-buffers-directory' in order to
11777 show correct path in buffer list.
11779 * net/tramp.el (tramp-open-connection-setup-interactive-shell)
11780 (tramp-find-shell): Send only single prompt setting commands, in
11781 order to avoid double-prompt.
11783 * net/tramp-compat.el (top): Require cl only when compiling.
11784 Reported by Glenn Morris <rgm@gnu.org>.
11786 2007-12-18 Thien-Thi Nguyen <ttn@gnuvola.org>
11788 * progmodes/cc-vars.el (defcustom-c-stylevar): Eval VAL.
11789 (c-comment-continuation-stars): No longer declare with
11790 cc-bytecomp-obsolete-var and cc-bytecomp-defvar.
11791 (c-block-comment-prefix): Use symbol-value to
11792 access c-comment-continuation-stars.
11793 * progmodes/cc-mode.el (c-initialize-cc-mode):
11794 Use symbol-value to access c-comment-continuation-stars.
11796 2007-12-18 Mark A. Hershberger <mah@everybody.org>
11798 * xml.el (xml-escape-string): New function. Escape string using
11800 (xml-debug-print-internal): Use xml-escape-string to escape
11801 characters in attributes and in text children of elements.
11803 2007-12-18 Glenn Morris <rgm@gnu.org>
11805 * progmodes/cc-subword.el (c-subword-mode): Drop support for
11806 systems without define-minor-mode.
11808 * progmodes/cc-vars.el (defcustom-c-stylevar): Remove debugging message.
11810 * progmodes/verilog-mode.el: Replace all instances of
11811 string-to-int with string-to-number, insert-string with insert,
11812 and read-input with read-string.
11813 (top-level): No need to require imenu, reporter, dinotrace, vc,
11814 font-lock when compiling. Always require compile. Relegate remaining
11815 compatibility cruft to XEmacs. Don't require font-lock.
11816 (verilog-version): Remove superfluous concat.
11817 (dinotrace-unannotate-all, zmacs-activate-region, customize-apropos):
11819 (verilog-regexp-opt): On Emacs, just make it an alias for regexp-opt.
11820 (verilog-font-lock-keywords, verilog-font-lock-keywords-1)
11821 (verilog-font-lock-keywords-2, verilog-font-lock-keywords-3)
11822 (verilog-startup-message-displayed): These are variables, not constants.
11823 (verilog-batch-execute-func, verilog-auto-inst)
11824 (verilog-auto-inst-param): Use mapc rather than mapcar.
11825 (sigs-in, sigs-inout, sigs-out): Define for compiler rather than
11827 (verilog-modi-get-decls, verilog-modi-get-sub-decls)
11828 (verilog-modi-get-outputs, verilog-modi-get-inouts)
11829 (verilog-modi-get-inputs, verilog-modi-get-wires)
11830 (verilog-modi-get-regs, verilog-modi-get-assigns)
11831 (verilog-modi-get-consts, verilog-modi-get-gparams)
11832 (verilog-modi-get-sub-outputs, verilog-modi-get-sub-inouts)
11833 (verilog-modi-get-sub-inputs): Move inline functions earlier in
11835 (sigs-in, sigs-out): Don't declare multiple times.
11836 (got-sig, got-rvalue, uses-delayed): Define for compiler with just
11838 (verilog-auto): Call dinotrace-unannotate-all only if bound.
11839 (verilog-module-inside-filename-p): No need to wrap fboundp test
11841 (reporter-submit-bug-report): Autoload it.
11842 (verilog-mark-defun): Call zmacs-activate-region only if bound.
11843 (verilog-font-customize): Call customize-apropos only if bound.
11844 (verilog-getopt-flags, verilog-auto-reeval-locals):
11845 Use make-local-variable rather than make-variable-buffer-local.
11846 (verilog-company, verilog-project, verilog-modi-cache-list):
11847 Move make-variable-buffer-local calls to top-level.
11848 (font-lock-defaults-alist): Don't define it.
11849 (verilog-need-fld): Remove.
11850 (verilog-font-lock-init): Don't set font-lock-defaults-alist.
11851 (verilog-mode): Only call make-local-hook on XEmacs.
11852 Set font-lock-defaults rather than using verilog-font-lock-init.
11854 2007-12-17 Andreas Schwab <schwab@suse.de>
11856 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
11859 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
11861 * net/dbus.el (dbus-name-owner-changed-handler):
11862 Use `dbus-unregister-signal' for removing old rules.
11863 Obey new structure of `dbus-registered-functions-table'.
11865 2007-12-12 Thien-Thi Nguyen <ttn@gnuvola.org>
11867 * progmodes/cc-vars.el (defcustom-c-stylevar): Rewrite.
11869 2007-12-11 Dan Nicolaescu <dann@ics.uci.edu>
11871 * progmodes/verilog-mode.el (set-buffer-menubar): Remove unused
11873 (add-submenu): Only define for XEmacs.
11874 (verilog-regexp-words): Revert previous change, keep the other
11877 2007-12-09 Dan Nicolaescu <dann@ics.uci.edu>
11879 * progmodes/perl-mode.el (perl-continued-statement-offset)
11880 (perl-continued-brace-offset, perl-brace-offset)
11881 (perl-brace-imaginary-offset, perl-label-offset):
11882 * progmodes/cperl-mode.el (cperl-brace-offset)
11883 (cperl-continued-brace-offset, cperl-label-offset)
11884 (cperl-continued-statement-offset)
11885 (cperl-extra-newline-before-brace, cperl-merge-trailing-else):
11886 Add safe-local-variable properties.
11888 2007-12-08 Dan Nicolaescu <dann@ics.uci.edu>
11890 * progmodes/verilog-mode.el (verilog-mode-map)
11891 (verilog-template-map, verilog-mode-mouse-map): Fix typos.
11892 (verilog-colorize-include-files): Use only overlay functions so
11893 that it can work on both emacs and XEmacs.
11894 (set-extent-keymap): Remove unused defun.
11895 (verilog-kill-existing-comment, verilog-insert-date)
11896 (verilog-insert-year): Rename in order not to pollute the global
11897 namespace from kill-existing-comment, insert-date and
11898 insert-year, respectively.
11899 (verilog-set-auto-endcomments, verilog-header): Update callers.
11901 * files.el (auto-mode-alist): Recognize verilog files.
11903 * progmodes/verilog-mode.el (verilog-string-replace-matches)
11904 (verilog-string-remove-spaces, verilog-re-search-forward)
11905 (verilog-re-search-backward, verilog-re-search-forward-quick)
11906 (verilog-re-search-backward-quick, verilog-get-beg-of-line)
11907 (verilog-get-end-of-line, verilog-within-string): Move definitions
11908 before first use. No code changes.
11910 2007-12-08 Dan Nicolaescu <dann@ics.uci.edu>
11912 * progmodes/verilog-mode.el (verilog-mode-version)
11913 (verilog-mode-release-date): Don't use expanding keywords.
11914 (provide): Move to the end of file.
11915 (fboundp): Don't check if eval-when-compile is bound, it is used
11916 later in the file without checking.
11917 (when, unless): Copy definitions from subr.el.
11918 (char-before, defcustom, defface, customize-group)
11919 (verilog-batch-error-wrapper): Don't use old style backquotes.
11920 (verilog-regexp-opt): Avoid using the cl function case.
11921 (verilog-regexp-words): Remove duplicated definition.
11922 (verilog-mode-abbrev-table): Remove, duplicate.
11923 (verilog-mode-map, verilog-template-map, verilog-mode-mouse-map):
11924 Declare and initialize in one step.
11925 (verilog-declaration-prefix-re, verilog-declaration-re)
11926 (verilog-end-of-statement, verilog-indent-declaration)
11927 (verilog-get-lineup-indent): Remove trailing whitespace.
11928 (verilog-mode): Fix autoload cookie.
11929 Set beginning-of-defun-function and end-of-defun-function. Use when
11931 (verilog-emacs-features, verilog-auto-ascii-enum)
11932 (verilog-insert-indices): Escape braces in doc strings.
11934 2007-12-08 Michael McNamara <mac@verilog.com>
11935 Wilson Snyder <wsnyder@wsnyder.org>
11937 * progmodes/verilog-mode.el: New file.
11939 2007-12-08 Eli Zaretskii <eliz@fencepost.gnu.org>
11941 * international/latexenc.el (latexenc-find-file-coding-system):
11942 If both coding-system-for-write and buffer-file-coding-system of
11943 latex-main-file are nil, use `undecided'.
11945 2007-12-06 Jason Rumney <jasonr@gnu.org>
11947 * mouse.el (mouse-buffer-menu-alist): Keep buffer names left aligned.
11949 2007-12-12 Yoni Rabkin Katzenell <yoni-r@actcom.com> (tiny change)
11951 * files.el (revert-buffer): Docstring fix.
11953 2007-12-11 Glenn Morris <rgm@gnu.org>
11955 * emacs-lisp/check-declare.el (check-declare-verify): Handle deffoo.
11957 2007-12-11 Jay Belanger <jay.p.belanger@gmail.com>
11959 * calc/calc-aent.el (math-restore-underscores)
11960 (math-string-restore-underscores): New functions.
11961 (math-read-factor): Properly check variable names with underscores
11962 for entries in `math-expr-variable-mapping'.
11964 * calc/calc-lang.el (math-lang-name): New property name.
11966 * calc/calc.el (calc-set-mode-line): Use `math-lang-name'
11967 to set language name.
11969 2007-12-10 Katsumi Yamaoka <yamaoka@jpl.org>
11971 * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
11973 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
11975 * server.el (server-select-display): Fix important typo.
11976 (server-process-filter): Turn a "" display into nil.
11978 2007-12-09 Juri Linkov <juri@jurta.org>
11980 * replace.el (keep-lines, flush-lines, how-many): Doc fix.
11981 Check search-upper-case before calling isearch-no-upper-case-p
11982 to set case-fold-search.
11984 (occur-1, perform-replace): Check search-upper-case before calling
11985 isearch-no-upper-case-p to set case-fold-search.
11987 * isearch.el (search-upper-case): Doc fix.
11988 (isearch-mode-map): Bind `M-s o' to isearch-occur.
11989 (isearch-query-replace): Doc fix. Let-bind search-upper-case to nil.
11990 (isearch-query-replace-regexp): Doc fix.
11991 (isearch-occur): New function.
11993 2007-12-09 Reiner Steib <Reiner.Steib@gmx.de>
11995 * pgg.el, pgg-parse.el (declare-function): Add new no-op macro for
11996 backward compatibility.
11998 * net/imap.el (imap-string-to-integer): New function.
12000 2007-12-09 David Kastrup <dak@gnu.org>
12002 * emacs-lisp/lisp-mnt.el (lm-verify): Make it work with
12003 directories. Not sure anybody uses this anymore, though.
12005 2007-12-09 Glenn Morris <rgm@gnu.org>
12007 * emulation/viper-init.el (top-level): Use dolist rather than mapc
12008 in make-variable-frame-local call.
12010 2007-12-08 Dan Nicolaescu <dann@ics.uci.edu>
12012 * mail/hashcash.el (declare-function):
12013 * net/imap.el (declare-function): New no-op macro for backward
12016 2007-12-08 Eli Zaretskii <eliz@gnu.org>
12018 Sync makefile.w32-in with Makefile.in.
12020 * makefile.w32-in (check-declare): New target.
12021 (BYTE_COMPILE_EXTRA_FLAGS): New variable.
12022 (.el.elc, compile-CMD, compile-SH, compile-always-CMD)
12023 (compile-always-SH, compile-calc-CMD, compile-calc-SH)
12024 ($(lisp)/progmodes/cc-mode.elc): Use it.
12025 ($(lisp)/progmodes/cc-mode.elc): New rule.
12027 2007-12-08 Reiner Steib <Reiner.Steib@gmx.de>
12029 * indent.el (tab-stop-list): Mark as safe-local-variable.
12031 * generic-x.el (etc-sudoers-generic-mode): New mode.
12032 (generic-unix-modes): Add it.
12034 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
12036 * net/dbus.el (dbus-hash-table=): Remove function. We cannot
12037 apply wildcards in a hash table key; there is no usable hash code then.
12038 (dbus-registered-functions-table): Use `equal' as test function.
12039 (dbus-name-owner-changed-handler): Rewrite due to new hash table
12042 2007-12-08 Martin Rudalics <rudalics@gmx.at>
12044 * progmodes/cc-cmds.el (c-mask-paragraph): Avoid invalid search
12045 bound error in block comment branch.
12047 2007-12-08 David Kastrup <dak@gnu.org>
12049 * textmodes/reftex.el (reftex-select-with-char):
12050 * textmodes/reftex-toc.el (reftex-toc-do-promote)
12051 (reftex-toc-visit-location, reftex-toc-find-section):
12052 * textmodes/reftex-index.el (reftex-index-show-entry):
12053 * textmodes/org.el (org-cycle-hide-archived-subtrees)
12054 (org-table-rotate-recalc-marks, org-mark-ring-push)
12055 (org-follow-info-link, org-mhe-get-message-folder-from-index)
12056 (org-auto-repeat-maybe, org-store-log-note, org-delete-property)
12057 (org-evaluate-time-range, org-edit-agenda-file-list):
12058 * textmodes/artist.el (artist-select-next-op-in-list)
12059 (artist-select-prev-op-in-list):
12060 * term/mac-win.el (mac-service-insert-text):
12061 * startup.el (fancy-about-screen):
12062 * progmodes/vhdl-mode.el (vhdl-decision-query):
12063 * progmodes/idlwave.el (idlwave-template)
12064 (idlwave-scroll-completions, idlwave-display-completion-list):
12065 * progmodes/ebrowse.el (ebrowse-show-progress):
12066 * progmodes/cperl-mode.el (cperl-find-pods-heres):
12067 * progmodes/antlr-mode.el (antlr-insert-option-do):
12068 * play/mpuz.el (mpuz-close-game):
12069 * net/rcirc.el (rcirc-next-active-buffer):
12070 * mail/reporter.el (reporter-update-status):
12071 * kmacro.el (kmacro-display):
12072 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
12073 * emulation/viper-util.el (viper-save-setting):
12074 * emacs-lisp/lisp-mnt.el (lm-verify):
12075 * emacs-lisp/edebug.el (edebug-set-mode):
12076 * emacs-lisp/checkdoc.el (checkdoc-rogue-spaces, checkdoc-defun):
12077 * calendar/calendar.el (calendar-print-day-of-year):
12078 * calc/calcalg3.el (calc-curve-fit):
12079 * calc/calcalg2.el (math-integral):
12080 * calc/calc.el (calc-read-key-sequence, calc-version):
12081 * calc/calc-mode.el (calc-set-simplify-mode):
12082 * calc/calc-ext.el (calc-fancy-prefix): Fix buggy call to `message'.
12084 2007-12-07 D. Goel <deego3@gmail.com>
12086 * progmodes/idlw-shell.el (idlwave-shell-display-line)
12087 * progmodes/ada-xref.el (ada-find-file, ada-get-all-references)
12088 (ada-xref-find-in-modified-ali, ada-find-in-src-path)
12089 * mail/uce.el (uce-reply-to-uce)
12090 * progmodes/vhdl-mode.el (vhdl-template-modify)
12091 * mail/feedmail.el (feedmail-dump-message-to-queue): Improve calls
12092 to `error' (as suggested by RMS.)
12094 2007-12-07 Glenn Morris <rgm@gnu.org>
12096 * allout.el (allout-write-file-hook-handler):
12097 * textmodes/reftex.el (reftex-TeX-master-file):
12098 * textmodes/reftex-parse.el (reftex-short-context):
12099 Revert previous change.
12101 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
12103 * net/dbus.el (dbus-hash-table=): Fix for new hash table key structure.
12104 (dbus-list-hash-table, dbus-name-owner-changed-handler): New defuns.
12105 (dbus-check-event, dbus-handle-event, dbus-event-bus-name)
12106 (dbus-event-service-name, dbus-event-path-name)
12107 (dbus-event-interface-name, dbus-event-member-name): Fix for new
12109 (dbus-list-activatable-names, dbus-list-names)
12110 (dbus-list-queued-owners, dbus-get-name-owner, dbus-introspect):
12111 Reorder `dbus-call-method' arguments.
12113 2007-12-06 D. Goel <deego3@gmail.com>
12115 * allout.el (allout-write-file-hook-handler):
12116 * textmodes/reftex.el (reftex-TeX-master-file):
12117 * textmodes/org.el (org-paste-subtree):
12118 * progmodes/vhdl-mode.el (vhdl-template-modify):
12119 * progmodes/idlw-shell.el (idlwave-shell-send-command)
12120 (idlwave-shell-display-line):
12121 * progmodes/ada-xref.el (ada-find-file, ada-get-all-references)
12122 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
12123 * net/trampver.el (x):
12124 * mail/uce.el (uce-reply-to-uce):
12125 * mail/rmailout.el (rmail-output):
12126 * mail/feedmail.el (feedmail-dump-message-to-queue):
12127 * whitespace.el (whitespace-write-file-hook):
12128 * wdired.el (wdired-check-kill-buffer):
12129 * vc.el (vc-update):
12130 * vc-mcvs.el (vc-mcvs-checkin):
12131 * vc-cvs.el (vc-cvs-checkin):
12132 * man.el (Man-bgproc-sentinel, Man-goto-see-also-section):
12133 * ibuffer.el (ibuffer-current-buffer):
12134 * dired.el (dired-move-to-end-of-filename):
12135 * bindings.el (complete-symbol):
12136 * textmodes/org-publish.el (org-publish-file):
12137 (org-publish-current-project):
12138 * textmodes/reftex-parse.el (reftex-short-context):
12139 * textmodes/texinfmt.el: Fix buggy calls to `error'.
12141 2007-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12143 * doc-view.el (doc-view-dvi->pdf-sentinel)
12144 (doc-view-pdf/ps->png-sentinel, doc-view-pdf->txt-sentinel)
12145 (doc-view-ps->pdf-sentinel, doc-view-display): Don't change buffer
12146 within a sentinel or timer.
12147 (doc-view-display): Don't try to display before the requested page
12148 is available, unless told to do so explicitly.
12149 (doc-view-pdf/ps->png-sentinel, doc-view-initiate-display):
12150 Force display even if the requested page is not available.
12152 2007-12-06 Richard Stallman <rms@gnu.org>
12154 * help-fns.el (describe-function-1): Call ad-get-advice-info
12157 2007-12-06 Glenn Morris <rgm@gnu.org>
12159 * progmodes/antlr-mode.el (antlr-keyword, antlr-syntax)
12160 (antlr-ruledef, antlr-tokendef, antlr-ruleref-face)
12161 (antlr-tokenref, antlr-literal): Inherit from standard font-lock
12162 faces in non-light-background case.
12164 * add-log.el, dired-aux.el, font-lock.el, help-fns.el, ido.el:
12165 * informat.el, emacs-lisp/bytecomp.el, emacs-lisp/gulp.el:
12166 * emacs-lisp/tcover-ses.el, emacs-lisp/timer.el, emulation/edt.el:
12167 * emulation/vi.el, emulation/viper-cmd.el:
12168 * international/titdic-cnv.el, mail/emacsbug.el, progmodes/dcl-mode.el:
12169 * progmodes/prolog.el, progmodes/ps-mode.el, progmodes/python.el:
12170 * textmodes/fill.el: Remove directory part from filenames in
12171 function declarations.
12173 * dired-aux.el (mailcap-mime-info): Update declaration.
12175 2007-12-05 Richard Stallman <rms@gnu.org>
12177 * wid-edit.el (widget-type): Doc fix.
12179 2007-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
12181 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
12182 Don't match "sub { (...) ... }".
12184 2007-12-05 Richard Stallman <rms@gnu.org>
12186 * international/mule-cmds.el (toggle-input-method-active): New var.
12187 (toggle-input-method): Bind toggle-input-method-active to t.
12188 Error if it was already non-nil.
12190 2007-12-05 Reiner Steib <Reiner.Steib@gmx.de>
12192 * net/tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
12194 2007-12-05 Elias Oltmanns <eo@nebensachen.de>
12196 * net/tls.el (open-tls-stream): Actually consult tls-checktrust to
12197 see if certs should be verified and what is to be done in the
12198 event of a verification failure.
12200 2007-12-05 Reiner Steib <Reiner.Steib@gmx.de>
12202 * net/tls.el (tls-program): Provide more custom choices from
12203 `tls-checktrust'. Refer to `tls-checktrust' in doc string.
12204 (tls-process-connection-type, tls-success): Remove "*" in doc string.
12205 (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
12206 version. Minor improvement to doc strings.
12207 (tls-program): Add comment.
12209 2007-12-05 Elias Oltmanns <eo@nebensachen.de>
12211 * net/tls.el (tls-certtool-program, tls-hostmismatch): New variables.
12212 (tls-checktrust): New variable. Check if GNU TLS complained about a
12213 mismatch between the hostname provided in the certificate and the name
12214 of the host connnecting to.
12215 (open-tls-stream): Use them. Check certificates against trusted root
12218 2007-12-05 Nathan J. Williams <nathanw@MIT.EDU> (tiny change)
12220 * net/imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
12221 (imap-parse-status): Upcase status-att for broken servers that sends
12222 them lower-case (e.g., MS Exchange 2007).
12224 2007-12-05 D. Goel <deego3@gmail.com>
12226 * simple.el (undo):
12227 * image-dired.el (image-dired-display-thumb-properties):
12228 (image-dired-modify-mark-on-thumb-original-file):
12229 (image-dired-dired-display-properties):
12230 * help.el (help-window-display-message):
12231 * files.el (hack-local-variables-confirm):
12232 * ediff.el (ediff-version):
12233 * complete.el (pc-chunk-after, PC-temp-minibuffer-message):
12234 `message' and `error': Ensure that first arg is a format string.
12236 * emacs-lisp/find-func.el (find-library-name): Prefer files with
12237 ".el" suffix over "".
12239 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
12241 * net/dbus.el (dbus-hash-table=): Allow nil as wildcard in the
12242 interface and member fields.
12244 2007-12-05 Glenn Morris <rgm@gnu.org>
12246 * eshell/em-alias.el (pcomplete-stub): Define for compiler.
12247 (pcomplete-here): Autoload it.
12249 * eshell/em-basic.el (print-func): No need to define for compiler.
12251 * eshell/esh-cmd.el (eshell-debug-command):
12252 * eshell/esh-io.el (eshell-print): Move definitions before use.
12254 * eshell/esh-module.el (eshell-load-defgroups): Eval and compile.
12256 * eshell/esh-util.el (top-level): Don't require pp.
12257 Use condition-case rather than ignore-errors.
12259 * eshell/eshell.el (eshell-buffer-name): Define for compiler.
12261 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el
12262 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
12263 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el
12264 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el
12265 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el
12266 * eshell/em-xtra.el, eshell/esh-cmd.el, eshell/esh-test.el
12267 * eshell/esh-util.el, eshell/eshell.el: Require individual files
12268 if needed when compiling, rather than esh-maint. Collect any
12269 require statements. Move provide statement to end. Move any
12270 commentary to start.
12272 * eshell/esh-arg.el, eshell/esh-ext.el, eshell/esh-io.el:
12273 * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el:
12274 * eshell/esh-proc.el, eshell/esh-var.el:
12275 Require individual files if needed when compiling, rather than
12276 esh-maint. Collect any require statements. Leave provide at start.
12277 Move any commentary to start.
12279 * emacs-lisp/bytecomp.el (byte-compile-declare-function):
12280 Remove declared function from byte-compile-noruntime-functions.
12282 * ediff-util.el (ediff-version):
12283 * progmodes/python.el (compilation-shell-minor-mode):
12284 * textmodes/org.el (Info-goto-node, calendar-astro-date-string)
12285 (calendar-bahai-date-string, calendar-check-holidays)
12286 (calendar-chinese-date-string, calendar-coptic-date-string)
12287 (calendar-ethiopic-date-string, calendar-forward-day)
12288 (calendar-french-date-string, calendar-goto-date)
12289 (calendar-goto-today, calendar-hebrew-date-string)
12290 (calendar-islamic-date-string, calendar-iso-date-string)
12291 (calendar-julian-date-string, calendar-mayan-date-string)
12292 (calendar-persian-date-string, gnus-summary-last-subject)
12293 (parse-time-string, rmail-show-message): Declare as functions.
12295 2007-12-05 Michael Olson <mwolson@gnu.org>
12297 * textmodes/remember.el: Merge contents of remember-diary.el here,
12298 updating header. Add autoload cookie so that byte-compilation
12299 works without warning.
12300 (remember-diary-file): Default to nil, since diary might not yet
12301 be loaded at this point, which would deny us access to diary-file.
12302 (remember-diary-extract-entries): If remember-diary-file is nil,
12303 then use diary-file instead.
12305 * textmodes/remember-diary.el: Remove, due to the issue of needing
12306 the first 8 characters of a filename to be unique.
12308 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
12310 * net/dbus.el (dbus-hash-table=): New defun.
12311 (dbus-hash-table-test): New hash table test function, used in
12312 `dbus-registered-functions-table'.
12313 (dbus-check-event, dbus-handle-event, dbus-event-bus-name)
12314 (dbus-event-service-name, dbus-event-path-name)
12315 (dbus-event-interface-name, dbus-event-member-name):
12316 Rewrite, due to new structure of `dbus-event'.
12318 2007-12-04 Juanma Barranquero <lekktu@gmail.com>
12320 * ido.el (ido-save-history): Set the `coding' local
12321 variable in the first line of the file.
12323 2007-12-04 Glenn Morris <rgm@gnu.org>
12325 * password-cache.el: Move here from gnus/password.el.
12326 (top-level): Don't require cl when compiling.
12327 (password-read-and-add): Doc fix. Make obsolete.
12329 * net/tramp.el: Require password-cache or password.
12331 * emulation/cua-base.el (top-level): Move (provide 'cua-base) to end.
12332 No longer provide 'cua. Don't require cua-rect, cua-gmrk when
12334 (cua-set-rectangle-mark): Add doc string to autoload.
12335 (cua--rectangle, cua--last-killed-rectangle)
12336 (cua--global-mark-active): Always define for compiler.
12337 (cua-copy-rectangle, cua-cut-rectangle, cua--rectangle-left)
12338 (cua--delete-rectangle, cua--insert-rectangle)
12339 (cua--rectangle-corner, cua--rectangle-assert)
12340 (cua--insert-at-global-mark, cua--global-mark-post-command):
12341 Declare as functions.
12343 * emulation/cua-gmrk.el (top-level): Move provide to end.
12345 * emulation/cua-rect.el (top-level): Move provide to end.
12346 Don't require cua-gmrk when compiling.
12347 (cua--cut-rectangle-to-global-mark)
12348 (cua--copy-rectangle-to-global-mark): Declare as functions.
12350 * emulation/viper-init.el (viper-replace-overlay-cursor-color)
12351 (viper-insert-state-cursor-color, viper-emacs-state-cursor-color)
12352 (viper-vi-state-cursor-color):
12353 Consolidate make-variable-frame-local calls.
12355 * net/eudcb-bbdb.el (bbdb-address-streets): Declare as a function.
12356 (eudc-bbdb-extract-addresses): Use bbdb-address-streets rather
12357 than bbdb-address-street1,2,3.
12359 * textmodes/reftex-toc.el (reftex-make-separate-toc-frame):
12360 Try x-focus-frame before focus-frame. Only try focus-frame on XEmacs.
12362 2007-12-03 Karl Fogel <kfogel@red-bean.com>
12364 * saveplace.el (save-place-quiet): Remove, reverting 2007-12-02T19:54:46Z!kfogel@red-bean.com.
12365 (save-place-alist-to-file, load-save-place-alist-from-file):
12366 Don't print non-error messages at all, there's really no need.
12367 Do print if there's a problem, and clarify message in that case.
12369 2007-12-03 Dan Nicolaescu <dann@ics.uci.edu>
12371 * ediff-diff.el (ediff-prepare-error-list):
12372 * ediff-util.el (ediff-setup): Disable undo for ediff-error-buffer.
12374 2007-12-03 Tassilo Horn <tassilo@member.fsf.org>
12376 * doc-view.el (doc-view-initiate-display): Use `doc-view-mode-p'.
12377 (doc-view-current-overlay, doc-view-pending-cache-flush):
12380 2007-12-03 Richard Stallman <rms@gnu.org>
12382 * subr.el (declare-function): Move from byte-run.el.
12384 * emacs-lisp/byte-run.el (declare-function): Move to subr.el.
12386 * window.el (recenter-top-bottom): Don't use `ecase'.
12388 2007-12-02 Karl Fogel <kfogel@red-bean.com>
12390 * saveplace.el (save-place-alist-to-file):
12391 Set coding-system-for-write once and refer to it throughout.
12392 Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk>.
12394 2007-12-02 Karl Fogel <kfogel@red-bean.com>
12396 * saveplace.el (save-place-alist-to-file): Use `utf-8' coding
12397 system when writing, and set it in the first-line file variables.
12398 Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk> and
12399 Juanma Barranquero.
12401 2007-12-02 Glenn Morris <rgm@gnu.org>
12403 * emacs-lisp/bytecomp.el (byte-compile-declare-function):
12404 Reverse branches of if statement.
12406 * emulation/viper-cmd.el (top-level): Don't require advice.
12407 Don't load viper-util, viper-keym, viper-mous, viper-macs,
12408 viper-ex when compiling.
12410 * emulation/viper-ex.el (top-level): Don't load viper-util,
12411 viper-keym when compiling.
12413 * emulation/viper-init.el (top-level): Move provide statement to end.
12415 * emulation/viper-keym.el (top-level): Don't load viper-util when
12416 compiling. Move provide statement to end.
12418 * emulation/viper-macs.el (top-level): Don't load viper-util,
12419 viper-keym, viper-mous when compiling.
12421 * emulation/viper-mous.el (top-level): Don't load viper-util when
12424 * emulation/viper-util.el (top-level): Don't load viper-init when
12427 * emulation/viper.el (top-level): Don't require ring.
12428 Don't load viper-init, viper-cmd when compiling.
12430 * net/sasl-cram.el, net/sasl-digest.el, net/sasl-ntlm.el, net/sasl.el:
12431 Move here from gnus/.
12433 2007-12-02 Karl Fogel <kfogel@red-bean.com>
12435 Offer option for saveplace to be quiet about loading and saving.
12436 Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk>.
12438 * saveplace.el (save-place-quiet): New customizable boolean.
12439 (save-place-alist-to-file, load-save-place-alist-from-file): Use it
12440 to determine whether to print loading/saving messages.
12442 2007-12-02 Glenn Morris <rgm@gnu.org>
12444 * mail/binhex.el: Move here from gnus/.
12445 (binhex): New custom group.
12446 (binhex-decoder-program, binhex-decoder-switches)
12447 (binhex-use-external): Move to the binhex custom group.
12449 * mail/uudecode.el: Move here from gnus/.
12450 (uudecode): New custom group.
12451 (uudecode-decoder-program, uudecode-decoder-switches)
12452 (uudecode-use-external): Move to the uudecode custom group.
12454 * net/netrc.el (top-level): Don't load `encrypt' features.
12455 (netrc-parse): Don't use encrypt.
12456 (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
12458 * progmodes/python.el (top-level): Don't require cl when compiling.
12460 2007-12-02 Agustín Martín <agustin.martin@hispalinux.es>
12462 * textmodes/flyspell.el (flyspell-large-region): Explicitly set
12463 encoding for aspell process and for communication with it.
12464 Only add "-d" option if not already present.
12465 Use ispell-current-dictionary and ispell-current-personal-dictionary.
12466 General reorganization.
12468 * textmodes/ispell.el (ispell-aspell-find-dictionary): Do not set
12470 (ispell-start-process): Explicitly set encoding here if using aspell.
12472 2007-12-02 Dan Nicolaescu <dann@ics.uci.edu>
12474 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Also pass a diff
12475 function to log-edit.
12477 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
12479 * net/dbus.el: New file.
12481 2007-12-02 Jay Belanger <jay.p.belanger@gmail.com>
12483 * calc/calc.el (calc-lang-slash-idiv, calc-lang-allow-underscores)
12484 (calc-lang-c-type-hex, calc-lang-brackets-are-subscripts)
12485 (calc-lang-parens-are-subscripts): New variables.
12486 (math-expr-special-function-mapping): Remove variable.
12487 (math-eqn-ignore-words, math-tex-ignore-words)
12488 (math-latex-ignore-words): Move to calc-lang.el.
12490 * calc/calc-lang.el (math-compose-vector, math-compose-var)
12491 (math-tex-expr-is-flat): Declare as functions.
12492 (calc-lang-slash-idiv, calc-lang-allow-underscores)
12493 (math-comp-left-bracket, math-comp-right-bracket)
12494 (math-comp-comma, math-comp-vector-prec): Declare as variables.
12495 (math-var-formatter, math-matrix-formatter)
12496 (math-lang-adjust-words, math-lang-read-symbol, math-land-read)
12497 (math-punc-table, math-compose-subscr, math-dots)
12498 (math-func-formatter): New property names to store language
12499 specific information.
12500 (math-compose-tex-var, math-compose-tex-intv)
12501 (math-compose-maple-intv, math-compose-eqn-intv)
12502 (math-compose-tex-sum, math-compose-tex-func)
12503 (math-compose-tex-intv): New functions.
12504 (math-eqn-ignore-words, math-tex-ignore-words)
12505 (math-latex-ignore-words): Move from calc.el.
12506 (math-special-function-table): Add entries for tex.
12507 (calc-lang-slash-idiv, calc-lang-allows-underscores):
12509 (math-compose-latex-frac): Rename from `math-latex-print-frac'.
12510 (math-compose-tex-matrix, math-compose-eqn-matrix)
12511 (math-eqn-special-functions): Move from calccomp.el.
12513 * calc/calccomp.el (math-compose-var): New function.
12514 (math-compose-expr): Allow more special functions to be used.
12515 Change test for formatting fractions. Use variables and property
12516 names to help with language specific formatting.
12517 (math-compose-tex-matrix, math-compose-eqn-matrix)
12518 (math-eqn-special-functions): Move to calc-lang.el.
12519 (math-compose-rows): Use property names to help with language
12520 specific formatting.
12522 * calc/calc-aent.el (math-read-factor): Turn multiple subscripts
12523 into nested subscripts.
12524 (math-read-token): Use variables and property names to help with
12525 language specific parsing.
12526 (math-read-expression-level): Use variables to help with language
12529 2007-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
12531 * arc-mode.el (archive-find-type): Add recognition of rar-exe format.
12532 (archive-rar-summarize): Allow the file name to be passed as argument.
12533 Remove unused vars `header' and `footer'.
12534 (archive-rar-exe-summarize, archive-rar-exe-extract): New functions.
12536 2007-12-01 Dan Nicolaescu <dann@ics.uci.edu>
12538 * log-edit.el (log-edit-show-diff): New function.
12539 (log-edit-mode-map, log-edit-menu): Bind it.
12540 (log-edit-diff-function): New variable.
12541 (log-edit): Change the 3rd param to be an alist and accept a
12542 function that computes a diff for the files involved.
12544 * vc.el (vc-log-edit): Add a diff function parameter to log-edit.
12546 2007-12-01 Martin Rudalics <rudalics@gmx.at>
12548 * play/blackbox.el (bb-up, bb-down): Revert 2007-10-21 change and
12549 wrap next-/previous-line in with-no-warnings.
12551 2007-12-01 Glenn Morris <rgm@gnu.org>
12553 * format-spec.el, hex-util.el, sha1.el: Move here from gnus/.
12555 * net/dig.el: Move here from gnus/.
12556 (dig-mode): Replace gnus-run-mode-hooks with equivalent expansion.
12558 * net/dns.el: Move here from gnus/.
12559 (top-level): Don't require mm-util, or cl when compiling.
12560 (dns-write-name, dns-read, dns-read-type, query-dns):
12561 Replace mm-with-unibyte-buffer with its expansion.
12562 (query-dns): Replace decf and ignore-errors with non-cl equivalents.
12564 * progmodes/gdb-ui.el (gud-remove, gud-break):
12565 * progmodes/gud.el (gdb-create-define-alist)
12566 (gdb-restore-windows, gdb-reset, global-hl-line-highlight)
12567 (hl-line-highlight, gdb-display-source-buffer)
12568 (gdb-display-buffer, c-langelem-sym, c-langelem-pos)
12569 (syntax-symbol, syntax-point, gdb-enqueue-input): Declare as functions.
12571 2007-11-30 Dan Nicolaescu <dann@ics.uci.edu>
12573 * textmodes/org-export-latex.el (org-export-latex-cleaned-string):
12574 Move args on defun line.
12576 * textmodes/org.el (org-calendar-holiday):
12577 Use calendar-check-holidays instead of the obsolete
12578 check-calendar-holidays.
12579 (add-to-diary-list, table--at-cell-p, Info-find-node, bbdb)
12580 (bbdb-company, bbdb-current-record, bbdb-name)
12581 (bbdb-record-getprop, bbdb-record-name)
12582 (bibtex-beginning-of-entry, bibtex-generate-autokey)
12583 (bibtex-parse-entry, bibtex-url, cdlatex-tab)
12584 (dired-get-filename, gnus-article-show-summary, mh-display-msg)
12585 (mh-find-path, mh-get-header-field, mh-get-msg-num)
12586 (mh-header-display, mh-index-previous-folder)
12587 (mh-normalize-folder-name, mh-search, mh-search-choose, mh-show)
12588 (mh-show-buffer-message-number, mh-show-header-display)
12589 (mh-show-msg, mh-show-show, mh-visit-folder)
12590 (org-export-latex-cleaned-string, remember)
12591 (remember-buffer-desc, rmail-narrow-to-non-pruned-header)
12592 (rmail-what-message, elmo-folder-exists-p)
12593 (elmo-message-entity-field, elmo-message-field)
12594 (vm-beginning-of-message, vm-follow-summary-cursor)
12595 (vm-get-header-contents, vm-isearch-narrow, vm-isearch-update)
12596 (vm-select-folder-buffer, vm-su-message-id, vm-su-subject)
12597 (vm-summarize, wl-folder-get-elmo-folder)
12598 (wl-summary-goto-folder-subr)
12599 (wl-summary-jump-to-msg-by-message-id, wl-summary-line-from)
12600 (wl-summary-line-subject, wl-summary-message-number)
12601 (wl-summary-redisplay): Declare as functions.
12603 2007-11-30 Martin Rudalics <rudalics@gmx.at>
12605 * longlines.el (longlines-show-hard-newlines): Remove handling of
12606 buffer-undo-list and buffer-modified status.
12607 (longlines-show-region, longlines-unshow-hard-newlines):
12608 Handle buffer-undo-list, buffer-modified status, inhibit-read-only, and
12609 inhibit-modification-hooks here to avoid that a buffer appears
12610 modified when toggling visibility of hard newlines.
12612 2007-11-30 Glenn Morris <rgm@gnu.org>
12614 * nxml/rng-maint.el (rng-do-some-validation): Fix declaration.
12616 * progmodes/idlw-complete-structtag.el
12617 (idlwave-sintern-structtag):
12618 * progmodes/idlw-help.el (idlwave-sintern-sysvar)
12619 (idlwave-sintern-sysvartag):
12620 * progmodes/idlwave.el (idlwave-sintern-class-tag)
12621 (idlwave-sintern-sysvar, idlwave-sintern-sysvartag): Declare as
12624 2007-11-30 Dan Nicolaescu <dann@ics.uci.edu>
12626 * textmodes/reftex-index.el (texmathp):
12627 * textmodes/reftex-auc.el (TeX-argument-insert)
12628 (TeX-argument-prompt, multi-prompt, LaTeX-add-index-entries)
12629 (LaTeX-add-labels, LaTeX-bibitem-list, LaTeX-index-entry-list)
12630 (LaTeX-label-list):
12631 * nxml/rng-maint.el (rng-clear-cached-state, rng-clear-overlays)
12632 (rng-clear-conditional-region, rng-do-some-validation): Declare as
12634 (rng-error-count, rng-validate-up-to-date-end): Pacify byte compiler.
12636 2007-11-30 Glenn Morris <rgm@gnu.org>
12638 * emacs-lisp/byte-run.el (declare-function): Add optional fourth
12639 argument and document it.
12641 * emacs-lisp/bytecomp.el (byte-compile-declare-function):
12642 Third argument to declare-function must be a list to specify arglist.
12644 * emacs-lisp/check-declare.el (check-declare-scan): Doc fix.
12645 Handle declare-function third argument `t' and fourth argument.
12646 (check-declare-verify): Doc fix. Handle `fileonly' case.
12647 Use progn rather than prog1.
12649 * desktop.el (uniquify-item-base):
12650 * term/mac-win.el (url-type): Declare as functions.
12652 * net/eudcb-bbdb.el (bbdb-phone-location, bbdb-record-phones)
12653 (bbdb-address-city, bbdb-address-state, bbdb-address-zip)
12654 (bbdb-address-location, bbdb-record-addresses): Pass non-nil
12655 fourth arg to declare-function.
12657 * play/dunnet.el: Don't require cl when compiling.
12658 (byte-compile-warnings): Set via file local variables.
12659 (dun-parse): Let-bind `beg' and `line'.
12661 2007-11-29 Alexandre Julliard <julliard@winehq.org>
12663 * vc-git.el (vc-git-dir-state): Fix the git command arguments.
12665 2007-11-29 Ari Roponen <ari.roponen@gmail.com> (tiny change)
12667 * calendar/time-date.el (encode-time-value): Doc fix.
12669 2007-11-29 Glenn Morris <rgm@gnu.org>
12671 * calendar/time-date.el (with-decoded-time-value): Doc fix.
12673 * textmodes/css-mode.el (prog-mode): Remove.
12674 (css-mode): Derive from fundamental-mode rather than prog-mode.
12676 * emacs-lisp/byte-run.el (declare-function): Doc fix.
12678 * emacs-lisp/check-declare.el (check-declare-locate)
12679 (check-declare-verify): Handle `external' files.
12680 (check-declare-errmsg): New function.
12681 (check-declare-verify, check-declare-file, check-declare-directory):
12682 Use check-declare-errmsg to report the number of problems.
12684 * ffap.el (w3-view-this-url)
12685 * mail/mspools.el (vm-visit-folder)
12686 * net/browse-url.el (w3-fetch-other-window, w3-fetch)
12687 * net/eudcb-bbdb.el (bbdb-phone-location, bbdb-phone-string)
12688 (bbdb-record-phones, bbdb-address-city, bbdb-address-state)
12689 (bbdb-address-zip, bbdb-address-location, bbdb-record-addresses)
12691 * net/eudc-export.el (bbdb-parse-phone-number, bbdb-string-trim)
12692 * net/imap.el (sasl-find-mechanism, sasl-mechanism-name)
12693 (sasl-make-client, sasl-next-step, sasl-step-data)
12694 (sasl-step-set-data)
12695 * net/newsticker.el (w3m-toggle-inline-image, htmlr-reset)
12696 (htmlr-step): Declare as functions.
12698 * net/eudcb-bbdb.el (eudc-bbdb-extract-addresses):
12699 Use bbdb-address-zip rather than bbdb-address-zip-string.
12701 2007-11-28 Richard Stallman <rms@gnu.org>
12703 * md4.el, net/hmac-def.el, net/hmac-md5.el, net/ntlm.el:
12704 Move here from gnus/.
12706 2007-11-28 Martin Rudalics <rudalics@gmx.at>
12708 * newcomment.el (comment-region-internal): Fix newline insertion
12711 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12713 * pcvs-parse.el (cvs-parse-table): Adjust regexp for resurrections.
12715 2007-11-28 Glenn Morris <rgm@gnu.org>
12717 * Makefile.in (maintainer-clean): Depend on bootstrap-clean to
12720 * nxml/char-name/unicode: Move to etc/nxml/.
12721 * nxml/nxml-uchnm.el (top-level): Adapt for moved unicode files.
12723 * nxml/nxml-enc.el (xmltok-get-declared-encoding-position):
12724 Declare as a function.
12726 * nxml/nxml-maint.el (nxml-create-unicode-char-name-sets):
12727 * nxml/nxml-mode.el (nxml-get-char-name, nxml-insert-named-char):
12728 * nxml/xsd-regexp.el (xsdre-gen-categories): Change mapcar -> mapc.
12730 * nxml/nxml-outln.el (nxml-token-start-tag-p)
12731 (nxml-token-end-tag-p): Move definitions before use.
12733 * nxml/nxml-rap.el (nxml-prolog-regions): Declare for compiler.
12735 * nxml/nxml-uchnm.el (top-level)
12736 (nxml-enable-unicode-char-name-sets-1): Use mapc rather than mapcar.
12737 (nxml-enabled-unicode-blocks): Add custom group.
12739 * nxml/xmltok.el (xmltok-scan-char-ref, xmltok-char-number):
12740 Use string-to-number rather than string-to-int.
12742 * dired-x.el (dired-omit-old-add-entry): Declare as function.
12743 Move definition before use.
12744 (dired-old-find-buffer-nocreate): Declare as function.
12746 * emacs-lisp/check-declare.el (check-declare-locate): Reflow doc.
12747 (check-declare-verify): Handle fset.
12749 * emulation/edt.el (edt-user-emulation-setup):
12750 Test edt-setup-user-bindings is bound before calling.
12752 * emulation/tpu-edt.el: Don't require cl when compiling.
12753 (tpu-emacs-search, tpu-emacs-rev-search): Declare as functions.
12754 (tpu-edt-off): Use condition-case rather than ignore-errors.
12755 Use with-no-warnings.
12757 * eshell/esh-util.el (top-level): Use require rather than load for
12760 * mail/supercite.el (sc-version): Redefine as an alias for
12762 (sc-help-address): Remove.
12763 (sc-version): Use emacs-version rather than sc-version.
12764 (sc-submit-bug-report): Redefine as an alias for report-emacs-bug.
12766 * net/socks.el (socks-original-open-network-stream): Declare as
12767 function. Move definition before use.
12769 2007-11-28 Jay Belanger <jay.p.belanger@gmail.com>
12771 * calc/calc-ext.el (math-sqrt-raw, math-map-vec)
12772 (math-make-frac): Declare as functions.
12774 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
12776 * progmodes/cperl-mode.el (compilation-error-regexp-alist):
12777 Pacify byte compiler.
12778 (cperl-mode): Use with-no-warnings for setting vc-header-alist.
12780 * progmodes/idlwave.el (idlwave-shell-get-path-info)
12781 (idlwave-shell-temp-file, idlwave-shell-is-running)
12782 (widget-value, comint-dynamic-complete-filename, Info-goto-node):
12783 * progmodes/idlw-help.el (idlwave-prepare-structure-tag-completion)
12784 (idlwave-all-method-classes, idlwave-all-method-keyword-classes)
12785 (idlwave-beginning-of-statement, idlwave-best-rinfo-assoc)
12786 (idlwave-class-found-in, idlwave-class-or-superclass-with-tag)
12787 (idlwave-completing-read, idlwave-current-routine)
12788 (idlwave-downcase-safe, idlwave-entry-find-keyword)
12789 (idlwave-expand-keyword, idlwave-find-class-definition)
12790 (idlwave-find-inherited-class, idlwave-find-struct-tag)
12791 (idlwave-get-buffer-visiting, idlwave-in-quote)
12792 (idlwave-make-full-name, idlwave-members-only)
12793 (idlwave-popup-select, idlwave-routine-source-file)
12794 (idlwave-routines, idlwave-sintern-class)
12795 (idlwave-sintern-keyword, idlwave-sintern-method)
12796 (idlwave-sintern-routine-or-method)
12797 (idlwave-substitute-link-target, idlwave-sys-dir)
12798 (idlwave-this-word, idlwave-what-module-find-class)
12800 * progmodes/idlw-complete-structtag.el (idlwave-shell-buffer):
12801 * mail/uce.el (rmail-msg-is-pruned)
12802 (rmail-maybe-set-message-counters, rmail-msgbeg, rmail-msgend)
12803 (rmail-toggle-header):
12804 * mail/sendmail.el (dired-view-file, dired-get-filename):
12805 * mail/rmailkwd.el (rmail-maybe-set-message-counters)
12806 (rmail-display-labels, rmail-msgbeg)
12807 (rmail-set-message-deleted-p, rmail-message-labels-p)
12808 (rmail-show-message, mail-comma-list-regexp)
12809 (mail-parse-comma-list):
12810 * mail/rmail.el (rmail-spam-filter, rmail-summary-goto-msg)
12811 (rmail-summary-mark-undeleted, rmail-summary-mark-deleted)
12812 (rfc822-addresses, mail-abbrev-make-syntax-table)
12813 (mail-sendmail-delimit-header, mail-header-end):
12814 * mail/hashcash.el (message-narrow-to-headers-or-head)
12815 (message-fetch-field, message-goto-eoh)
12816 (message-narrow-to-headers):
12817 * vc.el (view-mode-exit): Declare as functions.
12819 * mail/vms-pmail.el:
12821 * vms-patch.el: Don't byte compile these files, they don't work.
12823 2007-11-27 Glenn Morris <rgm@gnu.org>
12825 * calc/calc-ext.el (math-read-big-rec):
12826 * calc/calc-nlfit.el (math-map-binop):
12827 * calc/calc.el (math-normalize-nonstandard): Fix declarations.
12829 * eshell/eshell.el (eshell-report-bug): Add version number of
12832 * emulation/viper.el, emulation/viper-util.el,
12833 emulation/viper-macs.el, emulation/viper-keym.el,
12834 emulation/viper-ex.el, emulation/viper-cmd.el:
12835 Load viper-*.el files silently.
12837 * ediff-diff.el, ediff-help.el, ediff-merg.el, ediff-mult.el,
12838 ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el, ediff.el:
12839 Load ediff-*.el files silently.
12841 * ediff.el: Load dired silently. Don't load info, pcl-cvs when
12843 (Info-goto-node): Declare as a function.
12845 * ediff-init.el: Don't load ange-ftp when compiling.
12846 * ediff-util.el: Don't load reporter when compiling.
12848 * ediff-wind.el (ediff-display-pixel-width)
12849 (ediff-display-pixel-height):
12850 * generic-x.el (ini-generic-mode):
12851 * ps-print.el (ps-mule-encode-header-string, ps-mule-begin-page)
12852 (ps-mule-prepare-ascii-font, ps-mule-set-ascii-font)
12853 (ps-mule-initialize, ps-mule-begin-job):
12854 * calendar/cal-bahai.el (add-to-diary-list, diary-name-pattern)
12855 (mark-calendar-days-named):
12856 * calendar/cal-hebrew.el (holiday-filter-visible-calendar)
12857 (add-to-diary-list, diary-name-pattern)
12858 (mark-calendar-days-named):
12859 * calendar/cal-islam.el (add-to-diary-list, diary-name-pattern)
12860 (mark-calendar-days-named):
12861 * calendar/cal-x.el (make-fancy-diary-buffer):
12862 * calendar/holidays.el (calendar-absolute-from-julian):
12863 * calendar/todo-mode.el (calendar-current-date):
12864 * calendar/cal-menu.el (calendar-increment-month)
12865 (calendar-month-name, extract-calendar-year)
12866 (calendar-cursor-to-date, holiday-list, calendar-sunrise-sunset)
12867 (calendar-current-date, calendar-cursor-holidays)
12868 (calendar-date-string, insert-diary-entry, calendar-set-mark)
12869 (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
12870 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
12871 (cal-tex-cursor-filofax-daily, cal-tex-cursor-filofax-2week)
12872 (cal-tex-cursor-filofax-week, cal-tex-cursor-month)
12873 (cal-tex-cursor-month-landscape, cal-tex-cursor-year)
12874 (cal-tex-cursor-filofax-year, cal-tex-cursor-year-landscape)
12875 (calendar-day-of-year-string, calendar-iso-date-string)
12876 (calendar-julian-date-string, calendar-astro-date-string)
12877 (calendar-absolute-from-gregorian, calendar-hebrew-date-string)
12878 (calendar-persian-date-string, calendar-bahai-date-string)
12879 (calendar-islamic-date-string, calendar-chinese-date-string)
12880 (calendar-coptic-date-string, calendar-ethiopic-date-string)
12881 (calendar-french-date-string, calendar-mayan-date-string)
12882 (calendar-print-chinese-date, calendar-goto-date):
12883 Declare as functions.
12885 * calendar/calendar.el (nongregorian-diary-listing-hook): Doc fix.
12886 (Info-find-emacs-command-nodes, Info-find-node): Declare as functions.
12888 * ffap.el (ffap-bug, ffap-submit-bug): Redefine as obsolete
12889 aliases for report-emacs-bug.
12890 (gnus-summary-select-article, gnus-configure-windows): Declare as
12893 * pgg-parse.el (pgg-parse-24, pgg-parse-crc24-string): Declare for
12896 * pgg.el (pgg-clear-string): Declare as a function.
12897 (pgg-run-at-time-1): Wrap whole definition in (featurep 'xemacs) test.
12898 (pgg-run-at-time, pgg-cancel-timer): Move definitions before use.
12900 * emacs-lisp/check-declare.el (check-declare-locate):
12901 Handle compressed files.
12902 (check-declare-verify): Handle define-generic-mode,
12903 define-global(ized)-minor-mode, define-obsolete-function-alias.
12905 2007-11-27 Jay Belanger <jay.p.belanger@gmail.com>
12907 * calc/calc-menu.el (calc-modes-menu): Add normal and incomplete
12910 * calc/calc-aent.el (calc-refresh-evaltos, calc-execute-kbd-macro)
12911 (math-is-true, calc-explain-why, calc-alg-edit)
12912 (math-composite-inequalities, math-flatten-lands)
12913 (math-multi-subst, calcFunc-vmatches, math-simplify)
12914 (math-known-matrixp, math-parse-fortran-subscr, math-to-radians-2)
12915 (math-read-string, math-read-brackets, math-read-angle-brackets):
12916 Declare as functions.
12918 * calc/calcalg3.el (calc-fit-s-shaped-logistic-curve)
12919 (calc-fit-bell-shaped-logistic-curve)
12920 (calc-fit-hubbert-linear-curve, calc-graph-add-curve)
12921 (calc-graph-lookup, calc-graph-set-styles, math-min-list)
12922 (math-max-list): Declare as functions.
12923 (math-map-binop): New function.
12924 (calc-curve-fit): Replace `mapcar*' by `math-map-binop'.
12926 * calc/calc.el (calc-set-language, calc-edit-finish)
12927 (calc-edit-cancel, calc-do-quick-calc, calc-do-calc-eval)
12928 (calc-do-keypad, calcFunc-unixtime, math-parse-date)
12929 (math-lessp, calc-embedded-finish-command)
12930 (calc-embedded-select-buffer, calc-embedded-mode-line-change)
12931 (calc-push-list-in-macro, calc-replace-selections)
12932 (calc-record-list, calc-normalize-fancy, calc-do-handle-whys)
12933 (calc-top-selected, calc-sel-error, calc-pop-stack-in-macro)
12934 (calc-embedded-stack-change, calc-refresh-evaltos)
12935 (calc-do-refresh, calc-binary-op-fancy, calc-unary-op-fancy)
12936 (calc-delete-selection, calc-alg-digit-entry, calc-alg-entry)
12937 (calc-dots, calc-temp-minibuffer-message, math-read-radix-digit)
12938 (calc-digit-dots, math-normalize-fancy, math-normalize-nonstandard)
12939 (math-recompile-eval-rules, math-apply-rewrites, calc-record-why)
12940 (math-dimension-error, calc-incomplete-error, math-float-fancy)
12941 (math-neg-fancy, math-zerop, calc-add-fractions)
12942 (math-add-objects-fancy, math-add-symb-fancy, math-mul-zero)
12943 (calc-mul-fractions, math-mul-objects-fancy, math-mul-symb-fancy)
12944 (math-reject-arg, math-div-by-zero, math-div-zero, math-make-frac)
12945 (calc-div-fractions, math-div-objects-fancy, math-div-symb-fancy)
12946 (math-compose-expr, math-comp-width, math-composition-to-string)
12947 (math-stack-value-offset-fancy, math-format-flat-expr-fancy)
12948 (math-adjust-fraction, math-format-binary, math-format-radix)
12949 (math-group-float, math-mod, math-format-number-fancy)
12950 (math-format-bignum-fancy, math-read-number-fancy)
12951 (calc-do-grab-region, calc-do-grab-rectangle, calc-do-embedded)
12952 (calc-do-embedded-activate, math-do-defmath)
12953 (calc-load-everything): Declare as functions.
12955 * calc/calc-ext.el (math-clip, math-round, math-simplify)
12956 (math-simplify-extended, math-simplify-units, calc-set-language)
12957 (calc-flush-caches, calc-save-modes, calc-embedded-modes-change)
12958 (calc-embedded-var-change, math-mul-float, math-arctan-raw)
12959 (math-sqrt-float, math-exp-minus-1-raw, math-normalize-polar)
12960 (math-normalize-hms, math-normalize-mod, math-make-sdev)
12961 (math-make-intv, math-normalize-logical-op, math-possible-signs)
12962 (math-infinite-dir, math-calcFunc-to-var)
12963 (calc-embedded-evaluate-expr, math-known-nonzerop)
12964 (math-read-expr-level, math-read-big-rec, math-read-big-balance)
12965 (math-format-date, math-vector-is-string, math-vector-to-string)
12966 (math-format-radix-float, math-compose-expr, math-abs)
12967 (math-format-bignum-binary, math-format-bignum-octal)
12968 (math-format-bignum-hex, math-format-bignum-radix)
12969 (math-compute-max-digits): Declare as functions.
12970 (math-provably-realp): Fix typo.
12972 * calc/calc-forms.el (calendar-current-time-zone)
12973 (calendar-absolute-from-gregorian, dst-in-effect): Declare as
12976 * calc/calc-help.el (Info-goto-node, Info-last): Declare as functions.
12978 * calc/calc-lang.el (math-read-factor, math-read-expr-level):
12979 Declare as functions.
12981 * calc/calc-macs.el (math-zerop, math-negp, math-looks-negp)
12982 (math-posp, math-compare, math-bignum, math-compare-bignum):
12983 Declare as functions.
12985 * calc/calc-misc.el (calc-do-keypad, calc-inv-hyp-prefix-help)
12986 (calc-inverse-prefix-help, calc-hyperbolic-prefix-help)
12987 (calc-explain-why, calc-clear-command-flag)
12988 (calc-roll-down-with-selections, calc-roll-up-with-selections)
12989 (calc-last-args, calc-is-inverse, calc-do-prefix-help)
12990 (math-objvecp, math-known-scalarp, math-vectorp, math-matrixp)
12991 (math-trunc-special, math-trunc-fancy, math-floor-special)
12992 (math-floor-fancy, math-square-matrixp, math-matrix-inv-raw)
12993 (math-known-matrixp, math-mod-fancy, math-pow-of-zero)
12994 (math-pow-zero, math-pow-fancy): Declare as functions.
12996 * calc/calc-mode.el (calc-embedded-save-original-modes):
12997 Declare as a function.
12999 * calc/calc-nlfit.el (calc-get-fit-variables, math-map-binop):
13000 Declare as functions.
13001 (math-nlfit-make-matrix, math-nlfit-find-qmax, math-nlfit-fit)
13002 (math-nlfit-fit-curve, calc-fit-hubbert-linear-curve):
13003 Replace `mapcar*' by `math-map-binop'.
13004 (math-nlfit-make-matrix): Replace `copy-list' with `copy-sequence'.
13006 * calc/calc-prog.el (edmacro-format-keys, edmacro-parse-keys)
13007 (math-read-expr-level): Declare as functions.
13009 * calc/calc-vec.el (math-read-expr-level): Declare as a function.
13011 2007-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
13013 * emacs-lisp/lisp.el (end-of-defun): Restructure so that
13014 end-of-defun-function is called consistently, even for negative
13016 (end-of-defun-function): Default to forward-sexp.
13018 2007-11-26 Juanma Barranquero <lekktu@gmail.com>
13020 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
13022 2007-11-26 Glenn Morris <rgm@gnu.org>
13024 * calendar/cal-menu.el (cal-menu-holidays-menu): Use :label rather
13027 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
13029 2007-11-26 Simon Josefsson <simon@josefsson.org>
13031 * net/imap.el: Move from ../gnus.
13033 2007-11-25 Reiner Steib <Reiner.Steib@gmx.de>
13035 * doc-view.el (doc-view-mode-p): New function.
13037 2007-11-25 Dan Nicolaescu <dann@ics.uci.edu>
13039 * mail/mspools.el (rmail-get-new-mail):
13040 * mail/reporter.el (mail-position-on-field, mail-text):
13041 * mail/rmail.el (mail-position-on-field, mail-text-start)
13042 (rmail-update-summary):
13043 * mail/rmailedit.el (rmail-summary-disable, rmail-summary-enable):
13044 * mail/rmailmsc.el (rmail-parse-file-inboxes, rmail-show-message):
13045 * mail/rmailout.el (rmail-update-summary):
13046 * mail/rmailsort.el (rmail-update-summary):
13047 * mail/sendmail.el (dired-move-to-filename, dired-get-filename)
13049 * mail/uce.el (mail-strip-quoted-names):
13050 * mail/undigest.el (rmail-update-summary):
13051 * mail/unrmail.el (mail-strip-quoted-names):
13052 * ediff.el (diff-latest-backup-file): Declare as functions.
13054 * obsolete/mlsupport.el (ml-previous-page): Fix typo.
13055 (kill-to-end-of-line):
13056 * obsolete/rnews.el (news-set-minor-modes):
13057 Remove non working functions.
13059 2007-11-25 Glenn Morris <rgm@gnu.org>
13061 * eshell/esh-maint.el (top-level): Use require with NOERROR for
13062 pcomplete. Don't mess with load-path.
13064 * eshell/eshell.el (eshell-report-bug-address): Remove.
13065 (eshell-report-bug): Redefine as an alias for report-emacs-bug.
13067 2007-11-24 Glenn Morris <rgm@gnu.org>
13069 * calendar/appt.el: Remove leading `*' from defcustom doc-strings.
13070 (appt-disp-window): Don't require electric.
13071 Simplify minibuffer-avoidance code.
13072 (appt-select-lowest-window): Avoid minibuffer.
13074 * eshell/eshell.el: Remove leading `*' from defcustom doc-strings.
13075 (esh-mode): Require it.
13076 (esh-util): Use require rather than featurep and load.
13077 (eshell): No need to test if eshell-mode is bound; remove obsolete
13078 reference to eshell-auto.
13079 (eshell-command, eshell-command-result): Don't require esh-mode
13080 now that the file does.
13081 (top-level): Move provide statement to the end of the file.
13082 Re-order and update commentary.
13084 2007-11-24 Thien-Thi Nguyen <ttn@gnuvola.org>
13086 * vc.el (vc-annotate-mode): Frob buffer invisibility spec.
13087 (vc-annotate-toggle-annotation-visibility): New command.
13088 (vc-annotate-mode-map): Bind "V" to it.
13089 (vc-annotate-mode-menu): Add entry for it.
13090 (vc-annotate-get-time-set-line-props): New func.
13091 (vc-annotate-display-autoscale)
13092 (vc-annotate-display-difference): Use it.
13094 * vc-git.el (vc-git-annotate-time): Handle optional field FILENAME.
13095 Also, match one space at end of annotation text, after last paren.
13097 2007-11-24 Michael Albinus <michael.albinus@gmx.de>
13099 * ido.el (ido-file-name-all-completions-1): Check for fboundp of
13100 `tramp-completion-mode-p' as it is in Tramp 2.1. Let-bind
13101 `tramp-completion-mode'.
13103 2007-11-24 Thien-Thi Nguyen <ttn@gnuvola.org>
13105 * vc-git.el (vc-git-show-log-entry): New func.
13107 * vc-git.el (vc-git--call, vc-git--out-ok): New funcs.
13108 (vc-git-state): Use vc-git--call.
13109 (vc-git-registered, vc-git-working-revision)
13110 (vc-git-previous-revision, vc-git-next-revision)
13111 (vc-git--run-command-string, vc-git-symbolic-commit):
13112 Use vc-git--out-ok.
13114 2007-11-24 Glenn Morris <rgm@gnu.org>
13116 * emacs-lisp/byte-run.el (declare-function): Doc fix.
13118 2007-11-24 Kenichi Handa <handa@m17n.org>
13120 * international/ucs-tables.el (ucs-8859-7-alist): Update the table.
13122 2007-11-23 David Kastrup <dak@gnu.org>
13124 * server.el (server-process-filter): Use `command-line-args-left'.
13126 2007-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
13128 * nxml/subdirs.el, nxml/char-data/subdirs.el, nxml/rng-auto.el: Remove.
13130 2007-11-23 Dan Nicolaescu <dann@ics.uci.edu>
13132 * vc.el (vc-deduce-fileset): Also look for a fileset in the parent
13133 buffer if the parent buffer is in vc-dired-mode.
13135 2007-11-23 Mark A. Hershberger <mah@everybody.org>
13137 * nxml: Initial merge of nxml. Kept nxml/char-name subdir for now.
13139 2007-11-23 Juri Linkov <juri@jurta.org>
13141 * dired.el (dired-read-dir-and-switches): For C-x d, set the
13142 value for M-n to the visited file name of the current buffer.
13143 Use minibuffer-with-setup-hook to set minibuffer-default to
13144 buffer-file-name inside read-file-name.
13146 * man.el (Man-getpage-in-background): Don't disregard user option
13147 `Man-width' on non-window systems. Remove test for `window-system'
13148 around setting envvar "COLUMNS" depending on the value of `Man-width'.
13150 * progmodes/grep.el (grep-process-setup): Set envvar "TERM" to
13151 "emacs-grep". Set envvar "GREP_OPTIONS" to "--color=auto" instead
13152 of "--color=always".
13154 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
13156 * emacs-lisp/lisp.el (beginning-of-defun-raw): Pass `arg' down to
13157 beginning-of-defun-function.
13159 2007-11-22 Reiner Steib <Reiner.Steib@gmx.de>
13161 * mail/hashcash.el: Move from ../gnus. Add hashcash payments to email.
13163 2007-11-22 Glenn Morris <rgm@gnu.org>
13165 * emulation/cua-base.el (x-clipboard-yank): Fix declaration.
13167 * emacs-lisp/check-declare.el (check-declare-locate): New function.
13168 (check-declare-scan): Use check-declare-locate.
13169 (check-declare-verify): No longer adjust fnfile, now
13170 check-declare-locate does it.
13172 * emacs-lisp/byte-run.el (declare-function): Doc fix.
13174 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
13176 * subr.el (posn-col-row): Make the `default-value' use explicit.
13178 * window.el (balance-windows): Remove unused var `counter'.
13179 (bw-balance-sub): Remove unused var `lastchild'.
13180 (split-window-vertically): Remove unused var `switch'.
13181 (recenter-top-bottom): Remove unused vars `bottom', `current', `total'.
13183 * emacs-lisp/bytecomp.el
13184 (byte-compile-file-form-custom-declare-variable): Simplify.
13186 2007-11-22 Juanma Barranquero <lekktu@gmail.com>
13188 * cus-edit.el (custom-mode): Define with `define-derived-mode'.
13189 Set `show-trailing-whitespace' to nil.
13191 * dired.el (make-symbolic-link):
13192 * dired-aux.el (mailcap-parse-mailcaps, mailcap-parse-mimetypes)
13193 (mailcap-extension-to-mime, mailcap-mime-info, make-symbolic-link):
13194 * dired-x.el (make-symbolic-link):
13195 * frame.el (x-initialize-window-system):
13196 * menu-bar.el (x-menu-bar-open):
13197 * select.el (x-get-cut-buffer-internal, x-rotate-cut-buffers-internal)
13198 (x-store-cut-buffer-internal):
13199 * wdired.el (make-symbolic-link):
13200 * x-dnd.el (x-register-dnd-atom, x-get-atom-name)
13201 (x-send-client-message):
13202 * emulation/cua-base.el (x-clipboard-yank): Declare as functions.
13204 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
13206 * term/x-win.el (x-gtk-map-stock): Check if FILE is a string.
13208 2007-11-22 Glenn Morris <rgm@gnu.org>
13210 * dos-fns.el (int86):
13211 * term/mac-win.el (mac-font-panel-mode): Fix declarations.
13213 * calendar/cal-menu.el (cal-menu-holidays-menu): Fix holiday-list call.
13215 * calendar/holidays.el (holiday-list): Add autoload cookie.
13217 * emacs-lisp/check-declare.el (check-declare-scan): Expand .c
13218 files relative to src/ directory.
13219 (check-declare-verify): Handle .c files. Warn if could not find
13220 an arglist to check.
13222 * emacs-lisp/byte-run.el (declare-function): Doc fix.
13224 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
13226 * replace.el (occur-mode-map): Add a major mode menu with entries
13227 for all occur operations.
13229 * international/titdic-cnv.el (dos-8+3-filename):
13230 * obsolete/fast-lock.el (msdos-long-file-names):
13231 * frame.el (msdos-mouse-p):
13232 * files.el (msdos-long-file-names, w32-long-file-name):
13233 * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
13234 (mac-resume-apple-event, mac-font-panel-mode)
13235 (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
13236 (mac-clear-font-name-table):
13237 * term/pc-win.el (msdos-remember-default-colors)
13238 (w16-set-clipboard-data, w16-get-clipboard-data):
13239 * term/w32-win.el (w32-send-sys-command, w32-select-font)
13240 (set-message-beep):
13241 * net/browse-url.el (w32-shell-execute):
13242 * w32-fns.el (set-message-beep, w32-get-clipboard-data)
13243 (w32-get-locale-info, w32-get-valid-locale-ids)
13244 (w32-set-clipboard-data):
13245 * dos-fns.el (int86, msdos-long-file-names):
13246 * dos-w32.el (default-printer-name): Declare as functions.
13248 2007-11-21 Jason Rumney <jasonr@gnu.org>
13250 * emacs-lisp/byte-run.el (declare-function): Return nil.
13252 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
13254 * progmodes/sh-script.el (sh-mode): Set defun-prompt-regexp.
13256 2007-11-21 Juanma Barranquero <lekktu@gmail.com>
13258 * w32-fns.el: Undo 2007-11-21 change by Dan Nicolaescu.
13260 2007-11-21 Glenn Morris <rgm@gnu.org>
13262 * emacs-lisp/check-declare.el (check-declare-verify): Skip C files
13263 for now. Handle define-minor-mode, and defalias (with no argument
13266 2007-11-21 Dan Nicolaescu <dann@ics.uci.edu>
13268 * frame.el (msdos-mouse-p):
13269 * files.el (msdos-long-file-names, w32-long-file-name):
13270 * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
13271 (mac-resume-apple-event, mac-font-panel-mode)
13272 (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
13273 (mac-clear-font-name-table):
13274 * term/pc-win.el (msdos-remember-default-colors)
13275 (w16-set-clipboard-data, w16-get-clipboard-data):
13276 * term/w32-win.el (w32-send-sys-command, w32-select-font)
13277 (set-message-beep):
13278 * net/browse-url.el (w32-shell-execute):
13279 * dos-fns.el (int86, msdos-long-file-names):
13280 * dos-w32.el (default-printer-name): Undo previous change.
13282 2007-11-21 Eli Zaretskii <eliz@gnu.org>
13284 * international/mule-cmds.el (set-locale-environment):
13285 Set default-file-name-coding-system _after_ keyboard and terminal
13286 coding systems. This fixes last change.
13288 * mail/rmail.el (rmail-current-subject-regexp): Allow more than
13289 one space after "Subject:".
13291 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
13293 * pcvs-parse.el (cvs-parse-table): Ignore errors when looking up files
13294 in order to determine if there's a conflict.
13296 2007-11-21 Richard Stallman <rms@gnu.org>
13298 * bindings.el (esc-map): Bind C-M-l here; moved from reposition.el.
13300 * reposition.el (reposition-window):
13301 Binding C-M-l moved to bindings.el.
13303 * bindings.el (ctl-x-4-map): Bind C-x 4 a here; moved from add-log.el.
13305 * add-log.el (add-change-log-entry-other-window):
13306 Key binding C-x 4 a moved to bindings.el.
13308 * bindings.el (minibuffer-local-map): Bind C-tab here; moved
13311 * filecache.el: Minibuffer map bindings moved to bindings.el.
13313 2007-11-21 Jason Rumney <jasonr@gnu.org>
13315 * international/mule-cmds.el (set-locale-environment):
13316 Set default-file-name-coding-system from system defaults on Windows.
13318 2007-11-21 Jason Rumney <jasonr@gnu.org>
13320 * term/w32console.el: New term init file for w32 console.
13322 * w32-fns.el (x-alternatives-map): Copy from term/x-win.el.
13323 (x-setup-function-keys): Likewise, replacing top-level key definitions.
13324 (w32-tty-standard-colors): Move to term/w32console.el.
13326 * term/w32-win.el (x-setup-function-keys): Remove.
13328 * term/tty-colors.el (tty-register-default-colors): Remove special
13331 2007-11-21 Dan Nicolaescu <dann@ics.uci.edu>
13333 * frame.el (msdos-mouse-p):
13334 * generic-x.el (w32-shell-name):
13335 * files.el (msdos-long-file-names, w32-long-file-name)
13336 (dired-get-filename, dired-unmark, dired-do-flagged-delete)
13337 (dos-8+3-filename, vms-read-directory, view-mode-disable):
13338 * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
13339 (mac-resume-apple-event, mac-font-panel-mode)
13340 (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
13341 (mac-clear-font-name-table):
13342 * term/pc-win.el (msdos-remember-default-colors)
13343 (w16-set-clipboard-data, w16-get-clipboard-data):
13344 * term/w32-win.el (w32-send-sys-command, w32-select-font)
13345 (set-message-beep):
13346 * w32-fns.el (set-message-beep, w32-get-clipboard-data)
13347 (w32-get-locale-info, w32-get-valid-locale-ids)
13348 (w32-set-clipboard-data):
13349 * help-fns.el (ad-get-advice-info):
13350 * font-lock.el (fast-lock-after-fontify-buffer)
13351 (fast-lock-after-unfontify-buffer, fast-lock-mode)
13352 (lazy-lock-after-fontify-buffer)
13353 (lazy-lock-after-unfontify-buffer, lazy-lock-mode):
13354 * net/browse-url.el (w32-shell-execute):
13355 * dos-fns.el (int86, msdos-long-file-names):
13356 * dos-w32.el (default-printer-name): Declare as functions.
13358 2007-11-21 Juanma Barranquero <lekktu@gmail.com>
13360 * textmodes/paragraphs.el (forward-sentence): Doc fix.
13361 Reported by Drew Adams <drew.adams@oracle.com>.
13363 2007-11-20 Jason Rumney <jasonr@gnu.org>
13365 * term/w32-win.el (x-setup-function-keys): Protect against
13366 multiple calls on the same terminal.
13368 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
13370 * term/mac-win.el (x-setup-function-keys): Only setup
13371 local-function-key-map if it has not been setup already for the
13372 current frame. Move the suspend-emacs processing here.
13374 2007-11-20 Juanma Barranquero <lekktu@gmail.com>
13376 * progmodes/grep.el (xargs-program): New variable.
13377 (grep-compute-defaults): Use it.
13378 (grep-default-command): Doc fix.
13379 (grep, lgrep, rgrep): Reflow docstrings.
13381 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
13383 * vc.el (vc-find-revision): Set the parent buffer.
13384 Use when instead of if.
13386 * progmodes/python.el (info-lookup-maybe-add-help):
13387 * progmodes/ps-mode.el (doc-view-minor-mode):
13388 * mail/emacsbug.el (Info-menu, Info-goto-node):
13389 * emulation/viper-keym.el (viper-ex)
13390 (viper-normalize-minor-mode-map-alist, viper-set-mode-vars-for):
13391 * emulation/viper-cmd.el (widget-type, widget-button-press)
13393 * emacs-lisp/tcover-unsafep.el (unsafep-function):
13394 * emacs-lisp/tcover-ses.el (ses-set-curcell, ses-update-cells)
13395 (ses-load, ses-vector-delete, ses-create-header-string)
13396 (ses-read-cell, ses-read-symbol, ses-command-hook, ses-jump):
13397 * emacs-lisp/gulp.el (mail-subject, mail-send): Declare as functions.
13399 2007-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
13401 * pcvs.el (cvs-revert-if-needed): Fix copy&paste typo.
13403 2007-11-20 Glenn Morris <rgm@gnu.org>
13405 * emacs-lisp/check-declare.el (check-declare-verify): Tweak regexp
13406 for end of function-name. Handle define-derived-mode.
13408 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
13410 * progmodes/idlw-help.el: Require browse-url unconditionally, it
13411 is available by default.
13412 (idlwave-help-browse-url-available): Change default to t.
13414 * emulation/edt.el (defgroup, defcustom): Remove definition.
13415 (eval-when-compile): Remove.
13417 * textmodes/reftex-dcr.el (bibtex-beginning-of-entry):
13418 * textmodes/fill.el (comment-search-forward)
13419 (comment-string-strip):
13420 * progmodes/prolog.el (comint-mode, comint-send-string)
13421 (comint-send-region, comint-send-eof):
13422 * progmodes/dcl-mode.el (imenu-default-create-index-function):
13423 * emulation/viper-util.el (viper-forward-Word):
13424 * emulation/vi.el (c-mark-function):
13425 * emulation/edt-vt100.el (vt100-wide-mode):
13426 * emacs-lisp/timer.el (diary-entry-time): Declare as functions.
13428 2007-11-19 Michael Albinus <michael.albinus@gmx.de>
13430 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
13431 Still some tuning in case of an echoing shell.
13432 (tramp-send-command): Connection property "remote-echo" is not
13433 persistent; cache key is the process therefore.
13435 2007-11-19 Juanma Barranquero <lekktu@gmail.com>
13437 * replace.el (map-query-replace-regexp): Doc fix (revert part of
13438 2000-05-21T17:04:47Z!fx@gnu.org made on 2000-05-21 with no ChangeLog entry).
13440 2007-11-19 Dan Nicolaescu <dann@ics.uci.edu>
13442 * progmodes/octave-mod.el (inferior-octave-send-list-and-digest):
13443 * play/yow.el (doctor-ret-or-read):
13444 * vc-hooks.el (vc-dired-resynch-file):
13445 * vc-hg.el (log-view-get-marked):
13446 * smerge-mode.el (ediff-cleanup-mess):
13447 * pcvs.el (vc-editable-p, vc-checkout):
13448 * pcomplete.el (comint-bol):
13449 * informat.el (texinfo-format-refill):
13450 * ido.el (tramp-tramp-file-p):
13451 * ibuffer.el (ibuffer-mark-on-buffer, ibuffer-format-qualifier)
13452 (ibuffer-generate-filter-groups, ibuffer-format-filter-group-data):
13453 * add-log.el (c-beginning-of-defun, c-end-of-defun): Declare as
13456 * textmodes/ispell.el (ispell-int-char): Make it a defalias
13458 (ispell-message): Use with-no-warnings for sc-cite-regexp call.
13460 * ido.el (ido-file-internal): Move with-no-warnings to include the
13461 ffap-string-at-point call.
13463 * pcomplete.el (pcomplete-executables): Move defsubst before first use.
13465 * vc-hg.el (vc-hg-revision-table): Fix last change.
13467 2007-11-19 Martin Rudalics <rudalics@gmx.at>
13469 * menu-bar.el (top-level): Deactivate clipboard-kill-region and
13470 clipboard-yank when the buffer is read-only.
13472 * cus-edit.el (custom-field-keymap): Move to other Custom mode
13473 keymaps such that it's before the definition of Custom-mode-menu.
13474 (Custom-mode-menu): Show it for custom-field-keymap too.
13476 2007-11-19 Nick Roberts <nickrob@snap.net.nz>
13478 * progmodes/gdb-ui.el: Update commentary.
13480 2007-11-18 Dan Nicolaescu <dann@ics.uci.edu>
13482 * net/tramp.el (tramp-terminal-type): Remove duplicated definition.
13484 2007-11-19 Glenn Morris <rgm@gnu.org>
13486 * emacs-lisp/check-declare.el (check-declare-verify): If fnfile
13487 does not exist, try adding `.el' extension. Also search for defsubsts.
13489 * cus-edit.el (recentf-expand-file-name):
13490 * dired.el (dired-relist-entry):
13491 * subr.el (w32-shell-dos-semantics):
13492 * emacs-lisp/bytecomp.el (compilation-forget-errors):
13493 Declare as functions.
13495 2007-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
13497 * abbrev.el (kill-all-abbrevs, insert-abbrevs)
13498 (prepare-abbrev-list-buffer): Use dolist.
13499 (clear-abbrev-table): Preserve properties.
13501 2007-11-18 Shigeru Fukaya <shigeru.fukaya@gmail.com> (tiny change)
13503 * textmodes/texinfmt.el (texinfo-format-printindex):
13504 Collect combined indexes using texinfo-short-index-format-cmds-alist.
13505 Reported on <bug-texinfo@gnu.org>.
13507 2007-11-18 Michael Albinus <michael.albinus@gmx.de>
13509 * net/tramp.el (tramp-completion-reread-directory-timeout):
13511 (tramp-handle-file-name-all-completions): Flush directory contents
13512 from cache regularly.
13513 (tramp-set-auto-save-file-modes): Check also for `buffer-modified-p'.
13514 (tramp-open-connection-setup-interactive-shell):
13515 Call `tramp-cleanup-connection' via funcall.
13517 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Temp file is already
13518 created when copying.
13520 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
13522 * eshell/esh-util.el (eshell-under-xemacs-p): Remove.
13523 * eshell/esh-mode.el (eshell-mode-syntax-table, command-running-p):
13524 * eshell/esh-ext.el (eshell-external-command):
13525 * eshell/esh-cmd.el (require):
13526 * eshell/em-unix.el (eshell-plain-locate-behavior):
13527 * eshell/em-cmpl.el (eshell-cmpl-initialize):
13528 Replace eshell-under-xemacs-p with (featurep 'xemacs).
13529 * eshell/esh-mode.el (characterp, char-int): Remove unused
13530 conditional defaliases.
13532 * pcomplete.el (pcomplete-event-matches-key-specifier-p):
13533 Rename from event-matches-key-specifier-p, define unconditionally.
13534 (event-basic-type): Remove unused defalias.
13535 (pcomplete-show-completions):
13536 Use pcomplete-event-matches-key-specifier-p.
13538 2007-11-17 Eli Zaretskii <eliz@gnu.org>
13540 * eshell/esh-module.el (eshell-load-defgroups): Don't make backups
13541 when saving esh-groups.el.
13543 2007-11-17 Martin Rudalics <rudalics@gmx.at>
13545 * wid-edit.el (widget-default-complete):
13546 * progmodes/flymake.el (flymake-goto-file-and-line):
13547 Fix typo in (doc-)string.
13549 2007-11-17 Glenn Morris <rgm@gnu.org>
13551 * emacs-lisp/byte-run.el (declare-function): New macro.
13552 * emacs-lisp/bytecomp.el (byte-compile-declare-function):
13553 New function, byte-hunk-handler for declare-function.
13554 (byte-compile-callargs-warn): Handle declared functions.
13556 * emacs-lisp/check-declare.el: New file.
13557 * Makefile.in (check-declare): New target.
13559 * progmodes/fortran.el (gud-find-c-expr): Declare as a function.
13561 * subr.el (process-lines): Move here from ../admin/admin.el.
13562 * emacs-lisp/authors.el (authors-process-lines): Remove.
13563 (authors): Use process-lines rather than authors-process-lines.
13565 * progmodes/compilation-perl.el, progmodes/compilation-weblint.el:
13566 Remove these files.
13568 2007-11-17 Juanma Barranquero <lekktu@gmail.com>
13570 * emacs-lisp/backquote.el (backquote):
13571 Improve argument/docstring consistency.
13573 * emacs-lisp/ring.el (ring-size, ring-p, ring-insert)
13574 (ring-length, ring-empty-p): Use c[ad]dr.
13575 (ring-plus1): Use `1+'.
13576 (ring-minus1): Use `zerop'.
13577 (ring-remove): Use c[ad]dr. Use `when'.
13578 (ring-copy): Use c[ad]dr. Use `let', not `let*'.
13579 (ring-ref): Use `let', not `let*'.
13580 (ring-insert-at-beginning): Use c[ad]dr. Doc fix.
13581 (ring-insert+extend): Use c[ad]dr. Fix typo in docstring.
13582 (ring-member): Simplify. Doc fix.
13583 (ring-convert-sequence-to-ring): Simplify.
13585 2007-11-17 Juri Linkov <juri@jurta.org>
13587 * dired-aux.el (dired-create-directory): Allow creating
13588 a directory of an arbitrary depth. Add a loop to find the topmost
13589 nonexistent parent dir `new', and call `dired-add-file' on it.
13590 Set the `PARENTS' arg of `make-directory' to t.
13592 2007-11-16 Jay Belanger <jay.p.belanger@gmail.com>
13594 * calc/calc-aent.el (calc-last-user-lang-parse-table): New variable.
13595 (math-build-parse-table): Get parse information from math-parse-table.
13597 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
13599 * window.el (recenter-last-op): New var.
13600 (recenter-top-bottom): New command.
13601 (global-map): Bind it to C-l.
13603 * abbrev.el (abbrev--write): Fix error in transcription from C.
13605 * emulation/pc-select.el (pc-select-shifted-mark): Remove.
13606 (pc-select-ensure-mark): Set mark-active to a special value instead.
13607 Rename from ensure-mark. Update call callers.
13608 (pc-select-maybe-deactivate-mark): Rename from maybe-deactivate-mark.
13609 Rewrite. Update all callers.
13610 (pc-selection-mode): Remove redundant var declaration.
13612 2007-11-16 Tassilo Horn <tassilo@member.fsf.org>
13614 * doc-view.el (doc-view-search-backward, doc-view-search):
13615 Fix assignment to free variable bug.
13617 2007-11-16 Martin Pohlack <mp26@os.inf.tu-dresden.de> (tiny change)
13619 * emulation/pc-select.el (pc-select-shifted-mark): New var.
13620 (ensure-mark): Set it.
13621 (maybe-deactivate-mark): New fun.
13622 Use it everywhere instead of (setq mark-active nil).
13624 2007-11-16 Dan Nicolaescu <dann@ics.uci.edu>
13626 * textmodes/reftex-dcr.el (reftex-start-itimer-once):
13627 Add check for XEmacs.
13629 * calc/calc-menu.el (calc-mode-map): Pacify byte compiler.
13631 * doc-view.el (doc-view-resolution): Add missing :group.
13633 2007-11-16 Juanma Barranquero <lekktu@gmail.com>
13635 * subr.el (make-variable-frame-local):
13636 Fix typo in obsolescence declaration.
13638 2007-11-16 Werner Lemberg <wl@gnu.org>
13640 * files.el (set-auto-mode-1): Check second line for -*- if file
13641 starts with '\" (which is used by man pages to identify needed
13642 troff preprocessors).
13644 2007-11-16 Glenn Morris <rgm@gnu.org>
13646 * mail/mail-extr.el (mail-extr-all-top-level-domains): Update domains.
13648 2007-11-16 Jay Belanger <jay.p.belanger@gmail.com>
13650 * calc/calc-lang.el (math-oper-table): Fix typo.
13651 Reduce precedence of "/" for TeX.
13653 * calc/calc-menu.el (calc-modes-menu): Add Languages submenu.
13655 2007-11-16 Juri Linkov <juri@jurta.org>
13657 * dired-aux.el (dired-read-shell-command-default): New function.
13658 (dired-read-shell-command): Use its return value for DEFAULT arg.
13660 * replace.el (keep-lines-read-args, occur-read-primary-args):
13661 Use a list of default values for DEFAULT arg of read-from-minibuffer.
13663 * man.el (Man-heading-regexp): Add 0-9.
13664 (Man-first-heading-regexp): Remove leading space [ \t]* before NAME.
13666 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
13668 * doc-view.el (doc-view-ghostscript-options): Remove resolution arg.
13669 (doc-view-resolution): New custom var.
13670 (doc-view-pdf/ps->png): Use it.
13671 (doc-view-shrink-factor): New var.
13672 (doc-view-enlarge, doc-view-shrink): New commands.
13673 (doc-view-mode-map): Use them.
13675 2007-11-15 Juanma Barranquero <lekktu@gmail.com>
13677 * ediff-wind.el (ediff-window-setup-function):
13678 * simple.el (normal-erase-is-backspace):
13679 * eshell/em-unix.el (eshell/info):
13680 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
13681 Fix typos in docstrings.
13683 * emulation/cua-base.el (cua--keymaps-initialized):
13684 Rename from `cua--keymaps-initalized'. Callers changed.
13685 (cua-highlight-region-shift-only): Doc fix.
13686 (cua-paste-pop): Fix typo in docstring.
13688 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
13690 * emulation/cua-base.el (cua--pre-command-handler-1):
13691 Use input-decode-map instead of function-key-map.
13692 Use event-modifiers now that it works reliably.
13694 * vc.el (vc-diff-internal): Pop-to-buffer later.
13696 * subr.el (event-modifiers): Use internal-event-symbol-parse-modifiers.
13698 * pcvs.el (cvs-revert-if-needed): Ignore `unknown' files, since cvs
13699 did not touch them.
13701 2007-11-15 Jay Belanger <jay.p.belanger@gmail.com>
13703 * calc/calc-menu.el: New file.
13704 * calc/calc.el (calc-mode): Require calc-menu.
13706 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
13708 * isearch-multi.el (isearch-buffers-next-buffer-function): Doc fix.
13710 2007-11-14 Nick Roberts <nickrob@snap.net.nz>
13712 * progmodes/gdb-ui.el (gdb-parent-bptno-enabled): New variable.
13713 (gdb-breakpoint-regexp, gdb-mouse-toggle-breakpoint-margin)
13714 (gdb-mouse-toggle-breakpoint-fringe, gdb-delete-breakpoint)
13715 (gdb-goto-breakpoint): Generalise for breakpoints with multiple
13717 (gdb-info-breakpoints-custom, gdb-assembler-custom)
13718 (gdb-toggle-breakpoint): Update for new gdb-breakpoint-regexp.
13719 (gdb-put-breakpoint-icon): Only display icon for parent breakpoint.
13721 2007-11-13 Noah Friedman <friedman@splode.com>
13723 * calc/calc.el: Add `backward-delete-char-untabify' to the list of
13724 bindings to remap when `calc-scan-for-dels' is non-nil.
13726 2007-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
13728 * emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
13730 (byte-compile-nilconstp): New function.
13731 (byte-optimize-cond): Kill subsequent branches when a branch is
13732 know to be taken or not taken.
13733 (byte-optimize-if): Use byte-compile-nilconstp instead of hand coding.
13735 2007-11-13 Dan Nicolaescu <dann@ics.uci.edu>
13737 * vc.el (vc-register): Allow registering a file passed as a
13738 parameter instead of just the current buffer.
13740 2007-11-12 Michael Albinus <michael.albinus@gmx.de>
13742 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
13743 Check whether the output of "uname -sr" has been changed.
13745 2007-11-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13747 * progmodes/compile.el (compilation-error-regexp-alist-alist): Insert
13748 patterns from compilation-perl.el and compilation-weblint.el files.
13750 2007-11-12 Dan Nicolaescu <dann@ics.uci.edu>
13752 * progmodes/compilation-perl.el:
13753 * progmodes/compilation-weblint.el: Disable autoloads, they cause
13754 a bootstrap failure.
13756 * vc-cvs.el (vc-cvs-diff): If backup files exist, diff them
13757 instead of doing "cvs diff" in order to avoid accessing the repository.
13759 2007-11-12 Kevin Ryde <user42@zip.com.au>
13761 * progmodes/compilation-perl.el:
13762 * progmodes/compilation-weblint.el: New files.
13764 2007-11-11 Juanma Barranquero <lekktu@gmail.com>
13766 * international/iso-cvt.el (iso-translate-conventions): Doc fix.
13767 (iso-aggressive-german-trans-tab, iso-conservative-german-trans-tab)
13768 (iso-tex2iso-trans-tab, iso-gtex2iso-trans-tab): Reflow docstring.
13769 (iso-spanish, iso-german, iso-iso2tex, iso-tex2iso, iso-gtex2iso)
13770 (iso-iso2gtex, iso-iso2duden, iso-iso2sgml, iso-sgml2iso):
13771 Rewrite in active voice.
13773 2007-11-11 Tassilo Horn <tassilo@member.fsf.org>
13775 * doc-view.el: Add comments about isearch support.
13777 2007-11-11 Dan Nicolaescu <dann@ics.uci.edu>
13779 * vc.el (vc-start-entry): Fix setting the in the case the function
13780 is called from vc-dired. Use when instead of if where appropriate.
13782 2007-11-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13784 * ps-print.el (ps-do-despool): Do not force ps-lpr-switches
13786 (ps-begin-job): Error if ps-lpr-switches is not a list.
13788 2007-11-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13790 * faces.el (face-normalize-spec): Remove function.
13791 (frame-set-background-mode): Undo last change.
13793 2007-11-10 Jason Rumney <jasonr@gnu.org>
13795 * w32-fns.el: Sync charset names with setup-default-fontset.
13796 Append "-1" where second part missing.
13798 2007-11-10 Juri Linkov <juri@jurta.org>
13800 * isearch.el (isearch-mode-end-hook, isearch-mode-end-hook-quit):
13801 Fix docstring. Reported by Leo <sdl.web@gmail.com>.
13803 * custom.el (custom-note-var-changed): Remove the `interactive'
13804 spec from this new non-interactive function.
13806 2007-11-10 Tassilo Horn <tassilo@member.fsf.org>
13808 * doc-view.el (doc-view-mode-map, doc-view-menu)
13809 (doc-view-pdf->txt-sentinel): Adapt to new search UI.
13810 (doc-view-search-backward): New function.
13811 (doc-view-search): Query new regexp if prefix arg is given, else
13812 jump to next/previous match.
13813 (doc-view-mode): Handle compressed files.
13814 (jka-compr): Required for compressed files.
13816 2007-11-10 Paul Pogonyshev <pogonyshev@gmx.net>
13818 * replace.el (query-replace-show-replacement): New defcustom.
13819 (perform-replace): Use `match-substitute-replacement' if
13820 `query-replace-show-replacement' is non-nil.
13822 2007-11-10 David Kastrup <dak@gnu.org>
13824 * subr.el (match-substitute-replacement): New function.
13826 2007-11-10 Carsten Dominik <dominik@science.uva.nl>
13828 * files.el (auto-mode-alist): Select org-mode for files with the
13831 2007-11-10 Martin Rudalics <rudalics@gmx.at>
13833 * help.el (help-window, help-window-point-marker): New variables.
13834 (help-window-select): New option.
13835 (with-help-window): New macro for displaying help windows.
13836 (help-window-display-message, help-window-setup-finish)
13837 (help-window-setup): New functions used for setting up help windows.
13838 (print-help-return-message): Reset help-window to nil.
13839 (view-lossage): Use with-help-window instead of
13840 with-output-to-temp-buffer and move help-window-point-marker after
13842 (describe-bindings, describe-key, describe-mode): Use
13843 with-help-window instead of with-output-to-temp-buffer.
13845 * help-mode.el (help-mode): Set view-exit-action to bury the
13846 buffer instead of fiddling with windows. Simplify code.
13847 (help-mode-finish): When help-window eqs t set it to the selected
13848 window and have with-help-window set up view-return-to-alist.
13849 (help-buffer): Add autoload cookie.
13851 * view.el (view-remove-frame-by-deleting): Change default value to t.
13852 Add autoload cookie.
13853 (view-exit-action, view-file, view-file-other-window)
13854 (view-file-other-frame, view-buffer, view-buffer-other-window)
13855 (view-buffer-other-frame): Rewrite doc strings.
13856 (view-return-to-alist-update): New function to remove stale entries
13857 from view-return-to-alist.
13858 (view-mode-enter): Rewrite doc string and simplify code.
13859 (view-mode-exit): Handle new case 'keep-frame. Don't reset
13860 view-exit-action to nil. Simplify code and rewrite doc string.
13862 * apropos.el (apropos-describe-plist):
13863 * descr-text.el (describe-char):
13864 * disp-table.el (describe-display-table):
13865 * faces.el (list-faces-display, describe-face):
13866 * facemenu.el (list-colors-display):
13867 * help-fns.el (describe-function, describe-variable)
13868 (describe-syntax, describe-categories):
13869 Use with-help-window instead of with-output-to-temp-buffer.
13871 2007-11-10 Dan Nicolaescu <dann@ics.uci.edu>
13873 * emacs-lisp/byte-opt.el (byte-optimize-featurep):
13874 Optimize (featurep 'emacs) to t.
13876 * emacs-lisp/bytecomp.el (byte-compile-find-bound-condition):
13878 (byte-compile-maybe-guarded): Use it to also look for bound
13879 symbols inside `and' forms. Comment out non-working code that was
13880 trying to avoid warnings for XEmacs code.
13882 * vc.el (vc-diff-internal): Make the *vc-diff* buffer read only.
13884 * vc-svn.el (vc-svn-print-log, vc-svn-diff):
13885 * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-annotate-command):
13886 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff)
13887 (vc-cvs-annotate-command):
13888 * vc-arch.el (vc-arch-diff): Remove test to check if start-process
13889 is bound, it always is.
13891 2007-11-10 Jason Rumney <jasonr@gnu.org>
13893 * term/w32-win.el (w32-initialize-window-system): Move SJIS font
13894 setup here from global scope.
13896 2007-11-10 Juanma Barranquero <lekktu@gmail.com>
13898 * ido.el (ido-save-history): Save the history file in UTF-8, not
13899 the current filename coding system.
13901 2007-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13903 * simple.el (interprogram-cut-function, interprogram-paste-function):
13904 Don't make them frame-local any more.
13906 * faces.el (x-create-frame-with-faces, tty-create-frame-with-faces):
13907 Don't set interprogram-(cut|paste)-function on each frame.
13909 * term/x-win.el (x-select-text, x-cut-buffer-or-selection-value):
13910 Make them work in tty frames.
13911 (interprogram-cut-function, interprogram-paste-function):
13914 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
13916 * international/iso-cvt.el (iso-spanish, iso-german, iso-iso2tex)
13917 (iso-tex2iso, iso-gtex2iso, iso-iso2gtex, iso-iso2duden): Doc fixes.
13918 (iso-iso2duden-trans-tab): Add docstring.
13920 2007-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13922 * abbrev.el (define-abbrev-table): Record the variable definition.
13924 * emacs-lisp/bytecomp.el (byte-compile-file-form-define-abbrev-table):
13927 2007-11-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13929 * ps-print.el: Clean the code for checking suitable Emacs version.
13930 (ps-do-despool): If ps-lpr-switches is not a list, force it to be one.
13931 (ps-print-version): New version 6.8.1.
13933 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
13935 * files.el (enable-local-variables): Doc fix.
13937 2007-11-09 Nick Roberts <nickrob@snap.net.nz>
13939 * progmodes/gud.el (gud-gdb): Remove vestigial gdba doc and code.
13941 2007-11-09 Sven Joachim <svenjoac@gmx.de>
13943 * dired-aux.el (dired-copy-file-recursive):
13944 Preserve directory permissions.
13946 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
13948 * whitespace.el (whitespace-write-file-hook): Remove interactive spec.
13949 (whitespace-unload-function): New-style unload function. When run,
13950 unintern `whitespace-unload-hook' and call `unload-feature' recursively
13951 to stop the old hook from messing with the unloading.
13953 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
13955 * emacs-lisp/elp.el (elp-report-limit, elp-restore-all)
13956 (elp-unset-master, elp-results): Fix typos.
13957 (elp-sort-by-function, elp-use-standard-output, elp-recycle-buffers-p):
13960 * msb.el (msb--many-menus): Remove variable.
13961 (msb-max-menu-items, msb--add-to-menu): Doc fixes.
13962 (msb-menu-cond, msb-item-handling-function, msb--create-function-info)
13963 (msb--toggle-menu-type): Fix typos in docstrings.
13965 * shadowfile.el (shadow-inhibit-overload, shadow-remove-from-todo)
13966 (shadow-insert-var): Doc fixes.
13967 (shadow-file-match, shadow-define-cluster, shadow-define-regexp-group):
13969 (shadow-parse-fullname, shadow-read-files): Fix typos in docstrings.
13971 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
13973 * ediff-hook.el (ediff, ediff-files, ediff-buffers, ebuffers, ediff3)
13974 (ediff-files3, ediff-buffers3, ebuffers3, erevision, ediff-revision):
13975 Fix typos in autoload docstrings.
13977 2007-11-09 Richard Stallman <rms@gnu.org>
13979 * savehist.el (savehist-save): Obey savehist-ignored-variables.
13981 2007-11-09 Nick Roberts <nickrob@snap.net.nz>
13983 * progmodes/gdb-ui.el (gdb-delete-out-of-scope): New option.
13984 (gdb-var-update-handler-1): Use it.
13986 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
13988 * loadhist.el (unload-feature): Remove erroneous check for the
13989 FEATURE-unload-function variable; check the existence of the
13990 function (that's what the docstring says, and it makes more sense).
13992 * follow.el (follow-unload-function): Add docstring.
13993 (follow-unload-function): Remove variable.
13995 * server.el (server-unload-function): Remove variable.
13996 (server-unload-function): Unbind `server-edit' from `C-x #'.
13998 * ses.el (ses-unload-function): New function.
14000 2007-11-09 Juanma Barranquero <lekktu@gmail.com>
14002 * emacs-lisp/unsafep.el (unsafep, unsafep-function)
14003 (unsafep-progn, unsafep-let): Fix typos in docstrings.
14005 * uniquify.el (uniquify-maybe-rerationalize-w/o-cb): Define it
14006 before use to avoid a warning in packages that require uniquify.
14007 (uniquify-unload-function): New function and var.
14009 2007-11-09 Dan Nicolaescu <dann@ics.uci.edu>
14011 * ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
14012 (ediff-has-face-support-p, ediff-BAD-INFO, ediff-check-version)
14013 (ediff-current-diff-A, ediff-current-diff-B)
14014 (ediff-current-diff-C, ediff-fine-diff-C, ediff-fine-diff-A)
14015 (ediff-fine-diff-B, ediff-fine-diff-Ancestor, ediff-even-diff-A)
14016 (ediff-even-diff-B, ediff-even-diff-C, ediff-even-diff-Ancestor)
14017 (ediff-odd-diff-A, ediff-odd-diff-B, ediff-odd-diff-C)
14018 (ediff-odd-diff-Ancestor, ediff-reset-mouse):
14019 * ediff-wind.el (ediff-narrow-control-frame-leftward-shift)
14020 (ediff-setup-windows-plain-merge)
14021 (ediff-setup-windows-plain-compare, ediff-setup-control-frame)
14022 (ediff-refresh-control-frame, ediff-get-visible-buffer-window):
14023 * ediff-util.el (ediff-setup-keymap, )
14024 (ediff-toggle-wide-display, ediff-toggle-multiframe)
14025 (ediff-toggle-use-toolbar, ediff-really-quit)
14026 (ediff-good-frame-under-mouse)
14027 (ediff-highlight-diff-in-one-buffer)
14028 (ediff-remove-flags-from-buffer, ediff-place-flags-in-buffer1)
14029 (ediff-make-bullet-proof-overlay):
14030 * ediff-mult.el (ediff-setup-meta-map, ediff-emacs-p)
14031 (ediff-set-meta-overlay):
14032 * ediff-help.el (ediff-help-region-map, ediff-set-help-overlays):
14033 * ediff.el (ediff-documentation): Replace ediff-xemacs-p and
14034 ediff-emacs-p with their former definitions.
14036 * emulation/viper-init.el (viper-xemacs-p, viper-emacs-p): Remove.
14037 (viper-has-face-support-p, viper-inactivate-input-method)
14038 (viper-activate-input-method)
14039 (viper-use-replace-region-delimiters, viper-restore-cursor-type):
14040 * emulation/viper-mous.el (viper-multiclick-timeout)
14041 (viper-surrounding-word, viper-mouse-click-insert-word)
14042 (viper-mouse-click-search-word, viper-parse-mouse-key):
14043 * emulation/viper-macs.el (viper-char-array-to-macro):
14044 * emulation/viper.el (viper-go-away, viper-set-hooks)
14045 (viper-non-hook-settings):
14046 * emulation/viper-util.el (viper-get-saved-cursor-color-in-replace-mode)
14047 (viper-get-saved-cursor-color-in-insert-mode)
14048 (viper-get-saved-cursor-color-in-emacs-mode)
14049 (viper-check-version, viper-get-visible-buffer-window)
14050 (viper-file-checked-in-p, viper-set-replace-overlay)
14051 (viper-set-replace-overlay-glyphs, viper-set-minibuffer-overlay)
14052 (viper-check-minibuffer-overlay, viper-read-key-sequence)
14053 (viper-key-to-emacs-key): Replace viper-xemacs-p and viper-emacs-p
14054 with their former definitions.
14055 (viper-eventify-list-xemacs): Only do work for XEmacs.
14056 (viper-set-unread-command-events): Only do work for Emacs.
14057 (viper-overlay-p, viper-make-overlay, viper-overlay-live-p)
14058 (viper-move-overlay, viper-overlay-start, viper-overlay-end)
14059 (viper-overlay-get, viper-overlay-put, viper-read-event)
14060 (viper-characterp, viper-int-to-char, viper-get-face)
14061 (viper-color-defined-p, viper-iconify): New defaliases replacing
14064 * progmodes/fortran.el (comment-region-function)
14065 (uncomment-region-function): Pacify byte compiler.
14067 * vc.el (vc-diff-internal): Remove code for an old version of gnus.
14069 2007-11-08 Michael Albinus <michael.albinus@gmx.de>
14071 * net/tramp.el (tramp-maybe-open-connection): Use a local copy of
14072 `process-environment'.
14074 2007-11-08 David Hansen <david.hansen@gmx.net> (tiny change)
14076 * eshell/em-dirs.el (eshell-expand-multiple-dots): Change regexp to
14077 match dir like "a...b".
14079 2007-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
14081 * smerge-mode.el (smerge-refine-subst): Pass "-d" to diff.
14083 2007-11-07 Michael Albinus <michael.albinus@gmx.de>
14085 * net/tramp.el (tramp-handle-substitute-in-file-name):
14086 Don't expand the remote connection identification.
14087 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
14088 Set also $PS2 and $PS3 when setting $PS1. Check for shell echoing
14089 before calling stty.
14091 * net/tramp-cache.el (tramp-cache-print)
14092 (tramp-dump-connection-properties): Fix docstring.
14093 (tramp-list-connections): Rename from `tramp-cache-list-connections'.
14095 * net/tramp-cmds.el (tramp-cleanup-connection): Apply it.
14097 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Don't expand the
14098 remote connection identification when setting connection property.
14100 * net/tramp-smb.el (tramp-smb-handle-substitute-in-file-name):
14101 "//" substitutes only in the local filename part.
14103 2007-11-07 David Hansen <david.hansen@gmx.net>
14105 * eshell/em-glob.el (eshell-extended-glob): Sort matches.
14107 2007-11-07 Glenn Morris <rgm@gnu.org>
14109 * emulation/tpu-mapper.el (tpu-map-key): Use unless rather than cond.
14110 Remove superfluous concats. Move final set-buffer to
14111 non-emacs-specific code.
14113 2007-11-07 Rob Riepel <riepel@networking.stanford.edu>
14115 * emulation/tpu-mapper.el (tpu-map-key): Remove un-needed cond branch.
14117 2007-11-07 Johan Bockgård <bojohan@gnu.org>
14119 * eshell/esh-mode.el (eshell-output-filter):
14120 * eshell/esh-proc.el (eshell-insertion-filter, eshell-sentinel):
14121 Use `with-current-buffer'.
14123 2007-11-07 Andreas Schwab <schwab@suse.de>
14125 * server.el (server-start): Only register cleanup after server was
14128 2007-11-06 Michael Albinus <michael.albinus@gmx.de>
14130 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
14132 * net/tramp-cache.el (tramp-cache-print): Move down.
14133 (tramp-cache-list-connections): New defun.
14135 * net/tramp-cmds.el (tramp-cleanup-connection): Use it.
14137 2007-11-06 Juanma Barranquero <lekktu@gmail.com>
14139 * ido.el (ido-save-history): Write the history file in the current
14140 filename coding system, and add `coding' file-local variable.
14142 2007-11-06 Carsten Dominik <dominik@science.uva.nl>
14144 * textmodes/org.el (org-table-formula-substitute-names):
14145 Remove forgotten temporary debugging code.
14147 2007-11-05 Michael Albinus <michael.albinus@gmx.de>
14149 * net/tramp.el (tramp-wait-for-output): Ignore escape sequences in
14152 2007-10-05 Chris Moore <christopher.ian.moore@gmail.com>
14154 * wdired.el (wdired-use-dired-vertical-movement): Doc fix.
14156 2007-11-05 Simon Josefsson <simon@josefsson.org>
14158 * net/tls.el (tls-end-of-info): Doc fix.
14160 2007-11-05 Kenichi Handa <handa@ni.aist.go.jp>
14162 * international/utf-7.el (utf-7-imap): New coding system.
14163 (utf-7-imap-post-read-conversion): New function.
14164 (utf-7-imap-pre-write-conversion): New function.
14166 2007-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
14168 * abbrev.el (abbrev--write): Fix up typo.
14170 2007-11-04 Juanma Barranquero <lekktu@gmail.com>
14172 * abbrev.el (define-abbrev-table): Doc fix.
14174 2007-11-04 Thien-Thi Nguyen <ttn@gnuvola.org>
14176 * info.el (Info-revert-buffer-function): New func.
14177 (Info-mode): Arrange to use it for reverting.
14178 (Info-copy-current-node-name): Add space between filename and nodename.
14180 2007-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
14182 * abbrev.el (expand-abbrev): Move point back to expansion's end.
14184 2007-11-04 Glenn Morris <rgm@gnu.org>
14186 * net/tls.el: Don't require rx when compiling.
14187 (tls-end-of-info): Rewrite without using rx.
14188 (open-tls-stream): Use with-current-buffer.
14190 2007-11-04 Riccardo Murri <riccardo.murri@gmail.com>
14192 * net/tls.el: Require rx when compiling.
14193 (tls-end-of-info): New variable.
14194 (open-tls-stream): Keep reading input until `tls-end-of-info' is
14197 2007-11-03 Sean O'Rourke <seano@cs.ucla.edu>
14199 * register.el (append-to-register, prepend-to-register):
14200 Don't signal error on empty register; use the text, instead.
14202 2007-11-03 Michael Olson <mwolson@gnu.org>
14204 * textmodes/remember.el (remember-buffer):
14205 Use define-obsolete-function-alias rather than defalias.
14207 2007-11-03 Ulrich Mueller <ulm@gentoo.org> (tiny change)
14209 * simple.el (bad-packages-alist): Anchor semantic regexp.
14211 2007-11-03 Glenn Morris <rgm@gnu.org>
14213 * newcomment.el (comment-dwim): Call comment-insert-comment-function,
14214 if defined, for blank lines. Doc fix.
14216 * progmodes/fortran.el (fortran-mode-map): Don't bind M-;.
14217 (fortran-mode): Set values for comment-region-function,
14218 uncomment-region-function and comment-insert-comment-function.
14219 (fortran-uncomment-region): New function.
14221 * textmodes/nroff-mode.el (nroff-mode):
14222 Set comment-insert-comment-function rather than indent-line-function.
14223 (nroff-indent-line-function): Remove.
14224 (nroff-insert-comment-function): New function.
14226 2007-11-02 Michael Kifer <kifer@cs.stonybrook.edu>
14228 * ediff-vers.el (ediff-vc-working-revision): Add a quote.
14230 2007-11-02 Michael Kifer <kifer@cs.stonybrook.edu>
14232 * emulation/viper-ex.el (viper-ex): Do not ignore the region.
14234 * emulation/viper-cmd.el (viper-prev-destructive-command)
14235 (viper-insert-prev-from-insertion-ring): Use ring-copy instead of
14238 * ediff-util.el (ediff-make-current-diff-overlay): Do not use face-name.
14239 Got rid of ediff-copy-list.
14241 * ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer): Do not
14243 (ediff-test-utility, ediff-diff-mandatory-option)
14244 (ediff-reset-diff-options): Remove to simplify the mandatory option
14245 handling on Windows.
14246 (ediff-set-diff-options): Add.
14247 (ediff-diff-options): Set "--binary" option as default in some cases.
14249 * ediff-vers.el (ediff-vc-internal): Use ediff-vc-revision-other-window.
14250 (ediff-vc-merge-internal): Use ediff-vc-revision-other-window and
14251 ediff-vc-working-revision. Require vc-hooks.
14253 2007-11-02 Drake Wilson <drake@begriffli.ch> (tiny change)
14255 * files.el (hack-local-variables): Fix membership tests to avoid
14256 treating all variables as safe if `enable-local-variables' is
14257 set to :safe (CVE-2007-5795).
14259 2007-11-02 Glenn Morris <rgm@gnu.org>
14261 * newcomment.el (comment-indent): Let comment-insert-comment-function,
14262 if defined, do all the work of inserting a new comment.
14264 * progmodes/etags.el (tags-table-mode): Disable undo.
14266 * simple.el (bad-packages-alist): Revert previous change.
14268 2007-11-02 Dan Nicolaescu <dann@ics.uci.edu>
14270 * emacs-lisp/lselect.el: Move to obsolete/lselect.el.
14272 * obsolete/lselect.el: Do not warn about unknown functions.
14274 2007-11-02 Michael Olson <mwolson@gnu.org>
14276 * textmodes/remember.el (remember-buffer): Make this an alias of
14277 remember-finalize, because Org uses it.
14279 2007-11-01 Michael Olson <mwolson@gnu.org>
14281 * textmodes/remember.el: Improve documentation in heading.
14282 (remember-before-remember-hook): Turn into a customizable option.
14283 (remember): Document INITIAL argument.
14284 (remember-region): Remove autoload cookie. Improve docstring to
14285 mention that it is called from the *Remember* buffer, and does not
14286 have any functional overlap with the `remember' function.
14287 (remember-finalize): Remove autoload cookie. Rename from
14288 remember-buffer to emphasize that this does not have any
14289 functional overlap with the `remember' function.
14290 (remember-destroy): Remove autoload cookie.
14291 (remember-mode-map): Define and initialize in one step.
14292 (remember-mode): Improve docstring.
14293 (remember-annotation-functions): Default to just '(buffer-file-name),
14294 and don't try to take the default value from Planner.
14296 2007-11-01 Glenn Morris <rgm@gnu.org>
14298 * doc-view.el (doc-view-cache-directory): Remove superfluous concat.
14300 * simple.el (bad-packages-alist): Add an entry for standalone vc-svn.
14302 * emacs-lisp/authors.el (authors-scan-change-log)
14303 (authors-scan-el): Don't enable local eval; enable only safe local
14304 variables, without querying.
14306 * mail/footnote.el (footnote-numeric-regexp)
14307 (footnote-english-upper-regexp, footnote-english-lower-regexp)
14308 (footnote-roman-lower-regexp, footnote-roman-upper-regexp):
14309 Match multi-character footnotes.
14311 * textmodes/nroff-mode.el (nroff-mode): Set indent-line-function.
14312 (nroff-indent-line-function): New function.
14313 (nroff-count-text-lines): Use nroff-forward-text-line rather than
14316 2007-11-01 Ryan Yeske <rcyeske@gmail.com>
14318 * net/rcirc.el (rcirc-last-quit-line, rcirc-last-line)
14319 (rcirc-elapsed-lines): New argument PROCESS. Update callers.
14320 (rcirc-print): Only update the line count when not marking the
14322 (rcirc-log-write): Specify coding system when writing logfile.
14323 (rcirc-markup-fill): Make sure ellipsis does not cause line to wrap.
14325 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
14327 * printing.el (printing): Fix :version, printing.el was included
14329 (pr-path-style, pr-path-alist, pr-txt-name)
14330 (pr-txt-printer-alist, pr-ps-name, pr-ps-printer-alist)
14331 (pr-temp-dir, pr-ps-temp-file, pr-file-modes, pr-gv-command)
14332 (pr-gs-command, pr-gs-switches, pr-gs-device, pr-gs-resolution)
14333 (pr-print-using-ghostscript, pr-file-tumble, pr-auto-region)
14334 (pr-auto-mode, pr-mode-alist, pr-ps-utility)
14335 (pr-ps-utility-alist, pr-menu-char-height, pr-menu-char-width)
14336 (pr-setting-database, pr-visible-entry-list)
14337 (pr-delete-temp-file, pr-list-directory, pr-buffer-name)
14338 (pr-buffer-name-ignore, pr-buffer-verbose): Remove incorrect :version.
14340 * ediff-util.el (ediff-nuke-selective-display): Move definition to
14341 top level, make it dependent on the emacs flavor.
14343 * play/gamegrid.el (gamegrid-kill-timer, gamegrid-start-timer):
14344 Test for XEmacs not for itimer.
14346 * term/sun-mouse.el:
14347 * obsolete/sun-fns.el:
14348 * obsolete/sun-curs.el: Remove files.
14350 * term/sun.el (select-previous-complex-command): Remove obsolete code.
14352 2007-10-31 Tassilo Horn <tassilo@member.fsf.org>
14354 * doc-view.el (doc-view-cache-directory): Fix bug where an integer
14355 was given to concat.
14357 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
14359 * doc-view.el (doc-view-mode-map): Bind doc-view-goto-page to the keys
14360 used normally for goto-line. Change `g' to revert the buffer.
14361 Add redundant `r' binding for buffer-revert.
14363 * mail/mailabbrev.el (mail-abbrevs-mode): Use define-minor-mode.
14364 (mail-abbrevs-setup): Use abbrev-expand-functions.
14365 (build-mail-abbrevs): Use with-temp-buffer.
14366 (define-mail-abbrev): Simplify.
14367 (mail-abbrev-expand-wrapper): Rename sendmail-pre-abbrev-expand-hook.
14368 Change it for use on abbrev-expand-functions.
14369 (mail-abbrev-complete-alias): Use with-syntax-table.
14371 2007-10-31 Michael Albinus <michael.albinus@gmx.de>
14373 * net/tramp.el (tramp-handle-shell-command): Call `start-file-process'
14374 directly. Fix bug in deleting temp file.
14376 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
14378 * progmodes/python.el (python-mode-abbrev-table): Use :regexp.
14379 Merge defvar and define-abbrev-table.
14380 (def-python-skeleton): Use :case-fixed and :enable-function.
14381 (python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook):
14383 (python-mode): Don't modify pre-abbrev-expand-hook.
14385 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
14387 * ediff-util.el (ediff-file-checked-out-p)
14388 (ediff-file-checked-in-p): Only call vc-locking-user for XEmacs.
14390 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
14392 * abbrev.el (abbrev-symbol): Correct let->let*.
14393 (abbrev--before-point): Only use abbrev-start-location if before point.
14395 2007-10-31 Juanma Barranquero <lekktu@gmail.com>
14397 * strokes.el (strokes-alphabetic-lessp): Simplify. Doc fix.
14398 (strokes-unload-hook): Remove function and variable.
14399 (strokes-unload-function): New-style unload function, adapted
14400 from `strokes-unload-hook'.
14402 * emacs-lisp/cl.el (cl-cannot-unload): Remove function.
14403 (cl-unload-hook): Remove variable.
14404 (cl-unload-function): New-style unload function, adapted
14405 from `cl-cannot-unload'.
14407 * emacs-lisp/elp.el (elp-unload-hook): Remove function and variable.
14408 (elp-unload-function): New-style unload function, adapted
14409 from `elp-unload-hook'.
14411 2007-10-31 Sean O'Rourke <sorourke@cs.ucsd.edu>
14413 * emacs-lisp/find-func.el (find-library): Use library at
14414 point as default interactive argument.
14416 2007-10-31 Juanma Barranquero <lekktu@gmail.com>
14418 * shadowfile.el (shadow-join): Remove.
14419 (shadow-shadows): Use `mapconcat' instead of `shadow-join'.
14420 (shadow-initialize): Use `write-file-functions', not `write-file-hooks'.
14421 (shadowfile-unload-hook): Remove function and variable.
14422 (shadowfile-unload-function): New-style unload function, adapted
14423 from `shadowfile-unload-hook'.
14425 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
14427 * progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
14428 only if it is bound.
14430 * textmodes/reftex.el: Move autoloads for before all uses.
14431 (reftex-make-overlay, reftex-overlay-put, reftex-move-overlay)
14432 (reftex-delete-overlay): Move to the top level with the condition
14435 * progmodes/simula.el: Use when instead of if.
14437 * iimage.el (iimage-locate-file): Define unconditionally.
14439 * mail/mailabbrev.el (mail-abbrev-next-line):
14440 * emulation/vip.el (vip-enlarge-region, vip-line)
14441 (vip-next-line-at-bol, vip-previous-line)
14442 (vip-previous-line-at-bol, vip-find-char, vip-put-back, ex-read):
14443 Wrap with-no-warnings around uses of next-line and previous-line.
14445 * ediff.el (run-ediff-from-cvs-buffer):
14446 * ediff-vers.el (cvs-run-ediff-on-file-descriptor):
14447 Remove function not used by pcl-cvs anymore.
14448 (noninteractive, generic-sc-get-latest-rev)
14449 (ediff-generic-sc-internal, ediff-generic-sc-merge-internal):
14450 Delete support for long obsolete generic-sc.el.
14452 2007-10-31 Glenn Morris <rgm@gnu.org>
14454 * cvs-status.el: No longer require pcvs when compiling.
14456 * doc-view.el (doc-view-conversion-refresh-interval)
14457 (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
14458 (doc-view-reset-slice): Doc fixes.
14459 (doc-view-menu): Remove deleted function doc-view-edit-doc.
14461 2007-10-31 Juanma Barranquero <lekktu@gmail.com>
14463 * help-at-pt.el (help-at-pt-unload-hook): Remove.
14464 Timers are automatically canceled by `unload-feature'.
14466 * delsel.el (delsel-unload-hook): Remove function and variable.
14467 (delsel-unload-function): New-style unload function, adapted
14468 from `delsel-unload-hook'.
14470 * msb.el (msb-unload-hook): Remove function and variable.
14471 (msb-unload-function): New-style unload function, adapted from
14474 2007-10-30 Juanma Barranquero <lekktu@gmail.com>
14476 * desktop.el (uniquify-managed): Pacify byte compiler.
14477 (desktop-buffer-info): If the buffer name is managed by uniquify,
14478 save the base name, not the uniquified one.
14479 (desktop-create-buffer): Allow `rename-buffer' to generate a new
14480 name in case of conflict.
14482 2007-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
14484 * doc-view.el: Use expand-file-name rather than concat.
14485 (doc-view-cache-directory): Add the UID so multiple users won't clash.
14486 (doc-view-current-overlay, doc-view-pending-cache-flush): New vars.
14487 (doc-view-goto-page, doc-view-insert-image, doc-view-buffer-message)
14488 (doc-view-toggle-display): Use an overlay over the whole buffer so as
14489 not to have to touch the buffer's content.
14490 (doc-view-initiate-display): New function, extracted from doc-view-mode.
14491 (doc-view-mode): Use it. Don't mark as a special mode.
14492 Put the page numbers in the modeline.
14493 Set up the overlay. Hide the cursor. Run the mode hook.
14494 Use after-revert-hook rather than revert-buffer-function.
14495 (doc-view-search-internal): Fix typo.
14496 (doc-view-convert-current-doc, doc-view-insert-image): Delay the
14498 (doc-view-reconvert-doc): Don't reset the whole mode.
14499 (doc-view-make-safe-dir): New function.
14500 (doc-view-current-cache-dir): Use it.
14502 2007-10-30 Jason Rumney <jasonr@gnu.org>
14504 * time.el (display-time-world-list): Test for zoneinfo support.
14506 2007-10-30 Michael Albinus <michael.albinus@gmx.de>
14508 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
14510 * net/tramp-cache.el (tramp-flush-file-function): Check also
14511 `default-directory' if `buffer-file-name' does not return a
14512 string. Added to `eshell-pre-command-hook'.
14514 2007-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
14516 * doc-view.el (doc-view-current-doc): Remove.
14517 Replace all uses by buffer-file-name.
14518 (doc-view-menu): New menu.
14519 (doc-view-reconvert-doc): Don't bind inhibit-read-only and remove
14521 (doc-view-sort): Simplify.
14522 (doc-view-buffer-message): Don't change buffer-modified-p.
14523 (doc-view-mode): Change it here instead.
14524 Tighten scoping of prev-major-mode. Don't re-insert the file's content.
14525 Don't modify the global value of revert-buffer-function.
14527 * image-mode.el (image-forward-hscroll, image-next-line, image-eol)
14528 (image-eob, image-mode, image-minor-mode, image-toggle-display-text)
14529 (image-toggle-display): Take overlays into account and don't assume
14532 2007-10-30 Thien-Thi Nguyen <ttn@gnuvola.org>
14534 * vc.el (vc-annotate): Fix omission bug:
14535 Specify value for vc-sentinel-movepoint.
14537 2007-10-30 Michael Olson <mwolson@gnu.org>
14539 * textmodes/remember.el (remember-mode-hook)
14540 (remember-handler-functions, remember-annotation-functions):
14541 Add additional items as options, including some Org functions.
14543 2007-10-30 Tassilo Horn <tassilo@member.fsf.org>
14545 * doc-view.el: Remove cl-dependency.
14546 (doc-view-buffer-message): Mention new binding K.
14547 (doc-view-convert-current-doc): Use function d-v-current-cache-dir
14548 instead of variable.
14549 (doc-view-current-cache-dir): Better cache dir naming.
14550 (doc-view-current-display): Remove variable.
14551 (doc-view-edit-doc, doc-view-display-maybe): Remove functions.
14552 (doc-view-kill-proc): Set converter process to nil.
14553 (doc-view-minor-mode): New minor mode.
14554 (doc-view-minor-mode-map): New keymap.
14555 (doc-view-mode): Remove text/image switching code. Use plain defun.
14556 (doc-view-mode-map): New binding K kills converter process.
14557 Remove C-c C-e binding.
14558 (doc-view-mode-text-map): Remove keymap.
14559 (doc-view-pdf/ps->png): Timer calls d-v-display instead of
14561 (doc-view-previous-major-mode): New variable.
14562 (doc-view-ps->pdf): Resort args to make ps2pdf happy.
14563 (doc-view-remove-if): New function.
14564 (doc-view-search-next-match, doc-view-search-previous-match): Use it.
14565 (doc-view-toggle-display): Toggle modes instead of display styles.
14566 (doc-view-reconvert-doc): Adapt to new way of doing things.
14568 * progmodes/ps-mode.el (ps-mode-map): Enable doc-view-minor-mode.
14570 2007-10-30 Glenn Morris <rgm@gnu.org>
14572 * dirtrack.el (dirtrack-mode): Doc fix.
14574 * shell.el (shell-dirtrack-verbose, shell-mode)
14575 (shell-directory-tracker, shell-dirtrack-mode): Doc fix.
14577 * emacs-lisp/bytecomp.el (byte-compile-disable-warning)
14578 (byte-compile-enable-warning): Doc fix.
14580 * emulation/tpu-mapper.el (tpu-map-key): Use with-no-warnings to
14581 suppress byte-opt warning.
14583 2007-10-30 Dan Nicolaescu <dann@ics.uci.edu>
14585 * emulation/edt.el (edt-emacs19-p, edt-x-emacs19-p)
14586 (edt-gnu-emacs19-p): Remove.
14587 (edt-emacs-variant, edt-window-system): Use feature 'emacs.
14588 (edt-xserver, edt-page-backward, edt-beginning-of-line)
14589 (edt-end-of-line-forward, edt-end-of-line-backward)
14590 (edt-one-word-forward, edt-one-word-backward, edt-character)
14591 (edt-line-forward, edt-next-line, edt-previous-line, edt-top)
14592 (edt-find-forward, edt-find-backward, edt-find-next-forward)
14593 (edt-find-next-backward, edt-reset, edt-advance, edt-backup)
14594 (edt-define-key, edt-bottom-check, edt-sentence-forward)
14595 (edt-sentence-backward, edt-paragraph-forward)
14596 (edt-paragraph-backward, edt-restore-key, edt-window-top)
14597 (edt-window-bottom, edt-scroll-window-forward-line)
14598 (edt-scroll-window-backward-line, edt-line-to-bottom-of-window)
14599 (edt-line-to-top-of-window, edt-paragraph-backward)
14600 (edt-restore-key, edt-window-top, edt-window-bottom)
14601 (edt-scroll-window-forward-line)
14602 (edt-scroll-window-backward-line, edt-line-to-bottom-of-window)
14603 (edt-line-to-middle-of-window, edt-goto-percentage)
14604 (edt-display-the-time, edt-remember, edt-split-window)
14605 (edt-emulation-on, edt-emulation-off)
14606 (edt-default-emulation-setup, edt-user-emulation-setup)
14607 (edt-select-default-global-map, edt-select-user-global-map):
14608 Replace uses of edt-x-emacs19-p and edt-gnu-emacs19-p with feature
14611 * textmodes/reftex-index.el (reftex-index-selection-or-word):
14612 Use feature test instead of boundp test so it can be resolved at
14615 * net/newsticker.el (replace-regexp-in-string): Only define for XEmacs.
14617 2007-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
14619 * abbrev.el: Rename `count' and `system-flag' to :count and :system.
14621 (abbrev-get, abbrev-put): Simplify.
14622 (define-abbrev): Don't store the `force' value in the :system property.
14623 (abbrev--before-point): Obey the :enable-function of the abbrev as well.
14625 2007-10-30 Michael Olson <mwolson@gnu.org>
14627 * desktop.el (desktop-minor-mode-table): Add line for ERC.
14629 * textmodes/remember.el: New file that implements a mode for
14630 quickly jotting down things to remember.
14632 * textmodes/remember-diary.el: A backend for remember.el that
14633 implements saving notes to a Diary file.
14635 2007-10-29 Ken Manheimer <ken.manheimer@gmail.com>
14637 * allout.el (allout-command-prefix, allout-inhibit-auto-fill):
14639 (allout-doublecheck-at-and-shallower): Increase to include
14640 slightly greater depths, since yank interaction is now ok.
14641 Also, elaborate the docstring to explain the situation.
14642 (produce-allout-mode-map, allout-hotspot-key-handler): Use vconcat
14643 instead of concat, so we accommodate key sequences expressed as
14644 vectors as well as strings and lists.
14645 (allout-flag-region, allout-hide-by-annotation): Make the
14646 hidden-text overlays 'front-advance.
14647 (allout-overlay-insert-in-front-handler): Correct docstring's grammar.
14648 (allout-aberrant-container-p, allout-on-current-heading-p)
14649 (allout-e-o-prefix-p, allout-next-heading)
14650 (allout-previous-heading, allout-goto-prefix)
14651 (allout-end-of-prefix, allout-next-sibling-leap)
14652 (allout-next-visible-heading, allout-auto-fill)
14653 (allout-rebullet-heading, allout-kill-line, allout-kill-topic)
14654 (allout-yank-processing, allout-resolve-xref)
14655 (allout-current-topic-collapsed-p, allout-hide-region-body)
14656 (allout-latex-verbatim-quote-curr-line, allout-encrypt-string)
14657 (allout-encrypted-topic-p, allout-next-topic-pending-encryption)
14658 (count-trailing-whitespace-region): Preserve match data, so allout
14659 outline navigation doesn't disrupt other Emacs operations.
14660 (allout-beginning-of-line): Retreat to the beginning of the hidden
14661 text, so fields are respected (for submodes that care).
14662 (allout-end-of-line): Preserve mark activation status when jumping.
14663 (allout-open-topic): Account for opening after a child that
14664 contains a hidden trailing newline. Preserve match data.
14665 Run allout-structure-added-hook
14666 (allout-encrypt-decrypted): Preserve match data.
14667 (allout-toggle-current-subtree-exposure): Add new interactive
14668 function for toggle subtree exposure - suggested by tassilo.
14669 (move-beginning-of-line, move-end-of-line): Don't use
14670 line-move-invisible-p, it's obsolete - substitute the code, instead.
14672 2007-10-29 Dan Nicolaescu <dann@ics.uci.edu>
14674 * textmodes/flyspell.el (message-signature-separator):
14675 * longlines.el (message-indent-citation-function): Pacify byte
14678 * emacs-lisp/cl-loaddefs.el:
14679 * ldefs-boot.el: Regenerate.
14681 * Makefile.in (BYTE_COMPILE_EXTRA_FLAGS): New variable.
14682 (.el.elc, compile, compile-always, compile-calc)
14683 ($(lisp)/progmodes/cc-mode.elc): Use it.
14685 * ps-print.el (ps-xemacs-color-name, ps-xemacs-face-kind-p):
14686 Only do work for XEmacs.
14687 (ps-xemacs-mapper): Rename from ps-mapper, only work on XEmacs.
14688 (ps-xemacs-extent-sorter): Rename from ps-extent-sorter, only work
14690 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
14691 (ps-x-color-name, ps-x-color-specifier-p)
14692 (ps-x-copy-coding-system, ps-x-device-class)
14693 (ps-x-extent-end-position, ps-x-extent-face)
14694 (ps-x-extent-priority, ps-x-extent-start-position)
14695 (ps-x-face-font-instance, ps-x-find-coding-system)
14696 (ps-x-font-instance-properties, ps-x-make-color-instance)
14697 (ps-x-map-extents, ps-e-face-bold-p, ps-e-face-italic-p)
14698 (ps-e-next-overlay-change, ps-e-overlays-at, ps-e-overlay-get)
14699 (ps-e-overlay-end, ps-e-x-color-values, ps-e-color-values):
14700 (ps-generate-postscript-with-faces): Delete defaliases.
14701 (ps-face-foreground-name, ps-face-background-name)
14702 (ps-color-values, ps-face-bold-p, ps-face-italic-p):
14703 Move definitions to top level, make the body conditional on the Emacs
14704 flavor. Replace uses of deleted aliases and renamed functions.
14705 (ps-generate-postscript-with-faces, ps-color-device): Replace uses
14706 of deleted aliases and renamed functions.
14708 * calc/calc.el (calc-emacs-type-lucid): Remove.
14709 (calc-digit-map, calcDigit-start, calc-read-key)
14710 (calc-clear-unread-commands):
14711 * calc/calc-ext.el (calc-user-key-map): Replace uses of
14712 calc-emacs-type-lucid with (featurep 'xemacs)
14714 * emulation/tpu-mapper.el: Replace tpu-lucid-emacs19-p with
14715 (featurep 'xemacs).
14716 (tpu-lucid-emacs19-p): Remove.
14717 (tpu-map-key): Make it a function instead of using fset. Inline
14718 tpu-emacs-map-key and tpu-lucid-map-key. Use featurep 'xemacs.
14719 (tpu-emacs-map-key, tpu-lucid-map-key): Remove.
14721 * ielm.el: Use featurep 'xemacs.
14723 * progmodes/cperl-mode.el (cperl-xemacs-p): Remove.
14724 (condition-case, cperl-can-font-lock, cperl-singly-quote-face)
14725 (cperl-define-key, cperl-mode-map, cperl-mode, cperl-init-faces)
14726 (cperl-write-tags, cperl-tags-hier-init, cperl-perldoc): Replace
14727 cperl-xemacs-p with (featurep 'xemacs).
14728 (font-lock-cache-position): Pacify byte compiler.
14730 2007-10-29 Drew Adams <drew.adams@oracle.com>
14732 * faces.el (read-color): New function.
14733 (face-at-point, foreground-color-at-point)
14734 (background-color-at-point): New functions.
14736 2007-10-28 Richard Stallman <rms@gnu.org>
14738 * net/browse-url.el (browse-url-text-xterm): Rename from
14739 browse-url-lynx-xterm and made generic.
14740 (browse-url-text-emacs): Likewise.
14741 (browse-url-text-browser): New variable.
14742 (browse-url-text-emacs-args): Rename from browse-url-lynx-emacs-args.
14743 (browse-url-text-input-field, browse-url-text-input-attempts)
14744 (browse-url-kde-program): Likewise.
14746 2007-10-29 Glenn Morris <rgm@gnu.org>
14748 * textmodes/org-publish.el (org-publish-get-plist-from-filename):
14749 Use mapc rather than mapcar (reinstall change deleted without log
14752 2007-10-29 Martin Rudalics <rudalics@gmx.at>
14754 * wdired.el (wdired-next-line, wdired-previous-line):
14755 Use next-line and previous-line wrapped in with-no-warnings.
14757 2007-10-29 Ryan Yeske <rcyeske@gmail.com>
14759 * net/rcirc.el (rcirc-server-alist): Use keywords for parameter names.
14760 (rcirc-recent-quit-alist): New function.
14761 (rcirc): Print a better message when there is only one connected server.
14762 (rcirc-complete-nick): Do not update the nick table here.
14763 (rcirc-mode-map): Add M-o.
14764 (rcirc-current-line): Add variable.
14765 (rcirc-mode): Setup variables for line based omit.
14766 (rcirc-edit-multiline): Strip text properties.
14767 (rcirc-omit-responses): Add NICK.
14768 (rcirc-omit-threshold): Add variable.
14769 (rcirc-last-quit-line, rcirc-last-line, rcirc-elapsed-lines):
14771 (rcirc-print): Keep track of current line. Do not fill text if
14772 `rcirc-fill-flag' is null. Only omit text if the last activity
14773 from the sender is more than `rcirc-omit-threshold' lines ago.
14774 (rcirc-put-nick-channel, rcirc-handler-PRIVMSG): Track line
14775 numbers instead of time.
14776 (rcirc-channel-nicks): Sort by line numbers instead of time.
14777 (rcirc-omit-mode): Add `...' when omitting text and recenter.
14778 (rcirc-handler-JOIN): Restore the joiners linestamp.
14779 (rcirc-maybe-remember-nick-quit): Add function.
14780 (rcirc-handler-QUIT): Record sender in table of recently quit nicks.
14782 2007-10-29 Juanma Barranquero <lekktu@gmail.com>
14784 * loadhist.el (unload-feature-special-hooks):
14785 Add `delete-frame-functions' and `suspend-tty-functions'.
14787 * server.el (server-unload-function): Rename from `server-unload-hook'
14788 and adapt to new `unload-feature' functionality. Remove hook from
14789 `kill-buffer-hook' buffer-locally.
14790 (server-unload-hook): Remove.
14791 (server-unload-function): New var; replaces `server-unload-hook'.
14793 2007-10-29 Glenn Morris <rgm@gnu.org>
14795 * dirtrack.el (dirtrack-debug): Doc fix.
14796 (dirtrack-mode, dirtrack-debug-mode): New names for
14797 dirtrack-toggle and dirtrack-debug-toggle. Use define-minor-mode.
14798 (dirtrack-toggle, dirtrack-debug-toggle, dirtrackp, dirtrack-debug):
14800 (dirtrack-debug-message): Only print message if
14801 dirtrack-debug-mode is non-nil. Use with-current-buffer.
14802 (dirtrack): Doc fix. Use dirtrack-mode rather than dirtrackp.
14803 Remove dirtrack-debug checks now that dirtrack-debug-message does this.
14805 2007-10-28 Glenn Morris <rgm@gnu.org>
14807 * emacs-lisp/bytecomp.el (byte-compile-warnings): Document `not'.
14808 (byte-compile-warnings-safe-p): Handle `not'.
14809 (byte-compile-warning-enabled-p, byte-compile-disable-warning)
14810 (byte-compile-enable-warning): New functions.
14811 (byte-compile-eval-before-compile)
14812 (byte-compile-file-form-require): Use byte-compile-disable-warning.
14813 (byte-compile-close-variables): Locally bind byte-compile-warnings,
14814 but do not modify it.
14815 (byte-compile-eval, byte-compile-obsolete)
14816 (byte-compile-warn-about-unresolved-functions)
14817 (byte-compile-file-form-defvar)
14818 (byte-compile-file-form-custom-declare-variable)
14819 (byte-compile-file-form-require)
14820 (byte-compile-file-form-defmumble, byte-compile-lambda)
14821 (byte-compile-form, byte-compile-normal-call)
14822 (byte-compile-variable-ref, byte-compile-defvar)
14823 (byte-compile-make-variable-buffer-local):
14824 Use byte-compile-warning-enabled-p.
14825 * emacs-lisp/advice.el (ad-compile-function):
14826 Use byte-compile-disable-warning.
14827 * emacs-lisp/cl.el: Move local variables to end of file, and set
14828 byte-compile-warnings to `(not cl-functions)'.
14829 * emacs-lisp/cl-compat.el: Add a local variables section, and set
14830 byte-compile-warnings to `(not cl-functions)'.
14831 * emacs-lisp/cl-macs.el: Unify local variable section, and set
14832 byte-compile-warnings to `(not cl-functions)'.
14833 (cl-do-proclaim): Use byte-compile-disable-warning and
14834 byte-compile-enable-warning.
14835 * emacs-lisp/cl-seq.el: Unify local variable section, and set
14836 byte-compile-warnings to `(not cl-functions)'.
14837 * progmodes/cc-bytecomp.el (cc-bytecomp-ignore-obsolete):
14838 Use byte-compile-disable-warning.
14840 2007-10-28 Dan Nicolaescu <dann@ics.uci.edu>
14842 * cus-edit.el (custom-browse-insert-prefix):
14843 * emulation/edt.el (edt-x-emacs19-p): Use featurep 'xemacs.
14845 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
14847 * server.el (server-process-filter): Fix typo in docstring.
14848 (server-log): Reflow docstrings.
14849 (server-delete-client, server-kill-emacs-query-function): Doc fixes.
14850 (server-goto-line-column): Use `when'.
14852 2007-10-28 Juri Linkov <juri@jurta.org>
14854 * isearch.el (isearch-other-meta-char): Call `isearch-edit-string'
14855 when mouse is clicked on the isearch message.
14856 (isearch-resume): Call `isearch-update' at the end.
14857 Rename argument `search' to `string' to conform to the
14858 isearch terminology.
14860 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
14862 Rewrite abbrev.c in Elisp.
14863 * abbrev.el (abbrev-mode): Move custom group from cus-edit.el.
14864 (abbrev-table-get, abbrev-table-put, abbrev-get)
14865 (abbrev-put, make-abbrev-table, abbrev-table-p, clear-abbrev-table)
14866 (define-abbrev, abbrev--check-chars, define-global-abbrev)
14867 (define-mode-abbrev, abbrev--active-tables, abbrev-symbol)
14868 (abbrev-expansion, abbrev--before-point, expand-abbrev)
14869 (unexpand-abbrev, abbrev--write, abbrev--describe)
14870 (insert-abbrev-table-description, define-abbrev-table):
14871 New funs, largely transcribed from abbrev.c.
14872 (abbrev-with-wrapper-hook): New macro.
14873 (abbrev-table-name-list, global-abbrev-table)
14874 (abbrev-minor-mode-table-alist, fundamental-mode-abbrev-table)
14875 (abbrevs-changed, abbrev-all-caps, abbrev-start-location)
14876 (abbrev-start-location-buffer, last-abbrev, last-abbrev-text)
14877 (last-abbrev-location, pre-abbrev-expand-hook, abbrev-expand-function):
14878 New vars, largely transcribed from abbrev.c.
14879 * cus-edit.el (abbrev-mode): Remove. Move to abbrev.el.
14880 * cus-start.el: Remove abbrev-all-caps and pre-abbrev-expand-hook.
14881 * loadup.el: Load "abbrev.el" before "lisp-mode.el".
14883 2007-10-27 Glenn Morris <rgm@gnu.org>
14885 * shell.el (shell-dirtrack-verbose, shell-directory-tracker): Doc fix.
14886 (shell-dirtrack-toggle): Mark as obsolete.
14887 (dirtrack-toggle, dirtrack-mode): No longer alias to
14888 shell-dirtrack-mode.
14890 2007-10-27 Jay Belanger <jay.p.belanger@gmail.com>
14892 * calc/calc.el (math-standard-opers): Lower the precedence
14894 * calc/calc-lang.el (math-oper-table): Lower precedence of
14895 negation for C, TeX, and eqn.
14897 2007-10-27 Dan Nicolaescu <dann@ics.uci.edu>
14899 * progmodes/cc-defs.el: Reorder conditions to avoid warnings.
14901 2007-10-27 Juanma Barranquero <lekktu@gmail.com>
14903 * desktop.el (desktop-load-locked-desktop, desktop-base-lock-name)
14904 (desktop-not-loaded-hook): Fix :version tags.
14906 2007-10-27 Michael Albinus <michael.albinus@gmx.de>
14908 * net/tramp.el (tramp-wrong-passwd-regexp): Tune regexp.
14909 (tramp-get-remote-tmpdir): New defun.
14910 (tramp-make-tramp-temp-file): Use it.
14911 (tramp-local-call-process): New defun. Replace all calls of
14912 `call-process' by this when appropriate.
14913 (tramp-handle-write-region): Replace calls of `file-attributes' by
14914 `tramp-compat-file-attributes'.
14915 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
14916 Make the first command a `tramp-send-command' call, with let-bind
14917 of `tramp-end-of-output'.
14918 (tramp-version, tramp-bug, tramp-reporter-dump-variable)
14919 (tramp-load-report-modules, tramp-append-tramp-buffers):
14920 Move to tramp-cmds.el.
14922 * net/tramp-fish.el (tramp-fish-handle-copy-file)
14923 (tramp-fish-do-copy-or-rename-file)
14924 (tramp-fish-do-copy-or-rename-file-directly):
14925 * net/tramp-smb.el (tramp-smb-handle-copy-file):
14926 Add parameter PRESERVE-UID-GID.
14928 2007-10-27 Eli Zaretskii <eliz@gnu.org>
14930 * time.el (zoneinfo-style-world-list, legacy-style-world-list):
14932 (display-time-world-list): Use them as appropriate for the current
14933 value of `system-type'.
14935 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
14937 * emulation/pc-select.el (next-line-mark, next-line-nomark)
14938 (previous-line-mark, previous-line-nomark): Wrap with-no-warnings
14939 around uses of previous-line and next-line.
14941 * diff.el (diff-old-file, diff-new-file, diff-extra-args):
14944 * textmodes/css-mode.el (comment-continue):
14945 * net/browse-url.el (url-handler-regexp):
14946 * progmodes/idlw-help.el (idlwave-system-routines):
14947 Pacify byte-compiler.
14949 * textmodes/fill.el (fill-nobreak-p): Replace obsolete alias
14950 line-move-invisible-p with its former definition: invisible-p.
14951 line-move-invisible-p was removed on 2007-08-29.
14953 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
14955 * files.el (kill-emacs-query-functions): Doc fix;
14956 `save-buffers-kill-emacs' is no longer bound to a key.
14958 2007-10-26 Richard Stallman <rms@gnu.org>
14960 * isearch-multi.el (isearch-buffers-multi): New option.
14961 (isearch-buffers-search-fun): Test it.
14963 * progmodes/ps-mode.el (ps-mode-map): Delete C-c v binding.
14964 Put ps-run-clear on C-c C-l.
14966 * newcomment.el (comment-styles): New style indent-or-triple.
14967 (comment-style): Make that the default.
14968 (comment-add defvar): Doc fix.
14969 (comment-add): Delete arg EXTRA.
14970 (comment-region-default): Open code call to comment-add.
14971 Handle indent-or-triple style which uses `multi-char' for INDENT.
14973 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
14975 * eshell/em-unix.el (nil-blank-string): Doc fix.
14977 2007-10-26 John Wiegley <johnw@newartisans.com>
14979 * eshell/em-unix.el (eshell/diff): Before calling the `diff'
14980 function, ensure that the third argument is turned into a nil if
14981 the string is otherwise completely empty (either no characters, or
14982 all tabs/spaces). This fixes a bug from a user who found himself
14983 unable to customize `diff-switches' and still use Eshell's diff
14986 2007-10-26 Glenn Morris <rgm@gnu.org>
14988 * emacs-lisp/bytecomp.el (byte-compile-warnings): Autoload the
14989 safe-local-variable property.
14991 2007-10-26 Gwern Branwen <gwern0@gmail.com> (tiny change)
14993 * net/browse-url.el (browse-url-browser-function): Delete grail.
14994 (browse-url-grail): Function and variable deleted.
14995 (browse-url-browser-function): Delete IXI Mosaic.
14996 (browse-url-default-browser): Don't try IXI Mosaic.
14997 (browse-url-iximosaic): Function deleted.
14998 (browse-url-browser-function): Delete MMM.
14999 (browse-url-default-browser): Don't try MMM.
15000 (browse-url-mmm): Function deleted.
15002 2007-10-26 Drew Adams <drew.adams@oracle.com>
15004 * custom.el (custom-note-var-changed): New function.
15006 2007-10-25 Dan Nicolaescu <dann@ics.uci.edu>
15008 * emulation/edt-mapper.el (edt-emacs-variant): Replace the only
15009 use with the definition. Remove.
15011 * add-log.el (change-log-start-entry-re): New defconst.
15012 (change-log-sortable-date-at): Use it.
15013 (change-log-beginning-of-defun, change-log-end-of-defun):
15015 (change-log-mode): Use them for beginning-of-defun-function and
15016 end-of-defun-function.
15018 2007-10-25 Jonathan Yavner <jyavner@member.fsf.org>
15020 * ses.el: Make `ses--symbolic-formulas' a safe local variable.
15021 (ses-mode-print-map): Add `c' and `t' (suggested by Gareth Rees).
15022 (ses-recalculate-cell): Deal with point being just beyond end of
15023 data area (why does this happen?)
15024 (ses-set-curcell): Ditto.
15025 (ses-column-letter): Handle columns beyond 702. Code written by
15028 2007-10-25 Carsten Dominik <dominik@science.uva.nl>
15030 * textmodes/org.el (org-agenda-get-restriction-and-command):
15031 Use `mapc' instead of `mapcar'.
15032 (org-agenda-list): Numeric prefix argument can specify the number
15034 (remember-register, remember-buffer): Prevent byte compiler from
15036 (org-todo): Save and restore match data.
15037 (org-no-warnings): New macro.
15038 (org-columns-eval): Use `org-no-warnings'.
15040 2007-10-25 Chris Moore <christopher.ian.moore@gmail.com>
15042 * comint.el (comint-password-prompt-regexp):
15043 Handle `[sudo] password'-style prompt.
15045 2007-10-25 Glenn Morris <rgm@gnu.org>
15047 * custom.el (custom-declare-variable): Add :risky and :safe keywords.
15048 (defcustom): Doc fix.
15050 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re):
15051 Add `non_intrinsic'.
15052 (f90-constants-re): Add ieee modules.
15053 (f90-typedef-matcher, f90-typedec-matcher)
15054 (f90-imenu-type-matcher): New functions.
15055 (f90-font-lock-keywords-1): Give module procedures function-name face.
15056 Use `f90-typedef-matcher' for derived types. Fix `abstract interface'.
15057 Add `use, intrinsic'.
15058 (f90-font-lock-keywords-2): Use `f90-typedec-matcher' for derived types.
15059 Move start of `enum' blocks to separate entry.
15060 (f90-start-block-re): Fix `type', `abstract interface'.
15061 (f90-imenu-generic-expression): Use `f90-imenu-type-matcher' for
15063 (f90-mode-abbrev-table): Add `abstract interface', `asynchronous',
15064 `elemental', change `enumerator'.
15065 (f90-no-block-limit): Fix `abstract interface'.
15067 * progmodes/f90.el (f90-indented-comment-re)
15068 (f90-directive-comment-re, f90-break-delimiters):
15069 * progmodes/fortran.el (fortran-comment-line-start-skip)
15070 (fortran-directive-re):
15071 * textmodes/conf-mode.el (conf-space-keywords): Mark these regexps
15072 as safe if they are strings.
15074 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
15076 * startup.el (window-system): Remove. Don't make it frame-local.
15078 2007-10-24 Richard Stallman <rms@gnu.org>
15080 * savehist.el (savehist-save): Omit unreadable elements.
15082 * loadhist.el (unload-function-defs-list): Rename from
15083 unload-function-features-list.
15084 (unload-feature-special-hooks, unload-feature): Doc fixes.
15086 * indent.el (indent-to-left-margin): If point's in the indentation,
15087 move to the end of the indentation.
15089 * cus-edit.el (customize-changed-options): Make arg optional.
15091 2007-10-24 Juanma Barranquero <lekktu@gmail.com>
15093 * bs.el (bs-select, bs-select-other-window): Fix typos in docstrings.
15095 2007-10-24 Dan Nicolaescu <dann@ics.uci.edu>
15097 * textmodes/org-publish.el (org-publish-attachment): Re-install
15098 accidentally deleted change.
15100 2007-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
15102 * term/iris-ansi.el (iris-function-map): Move init into declaration.
15104 2007-10-24 Juanma Barranquero <lekktu@gmail.com>
15106 * buff-menu.el (Buffer-menu-sort-column): Doc fix.
15107 (Buffer-menu-mode-map): Initialize in the declaration.
15108 (Buffer-menu-mode): Define with `define-derived-mode'.
15110 2007-10-24 Carsten Dominik <dominik@science.uva.nl>
15112 * textmodes/org.el (org-version): Change to 5.13e.
15113 (org-agenda-file-regexp): Fix typo in docstring.
15114 (org-add-planning-info): Fix bug in parenthesis settings.
15115 (org-scan-tags): Catch the case of indirect buffers with no filename.
15116 (org-fast-tag-selection, org-export-as-ascii, org-export-as-html):
15117 Re-install switch to mapc, had been removed by accident.
15118 (org-columns-map): New binding `C-c C-o'.
15119 (org-columns-menu): Change menu text and added new entry.
15120 (org-columns-eval): Document the use of `next-line'.
15121 (org-columns-open-link): New function.
15122 (org-columns-follow-link): Remove function.
15123 (org-open-link-from-string): New function.
15124 (org-read-date-get-relative): Fix typo in docstring.
15125 (org-read-date-get-relative): Leading +/- is not optional.
15126 (org-agenda-get-restriction-and-command): Always resize window on
15128 (org-agenda-open-link): Make sure the link abbreviations are
15129 present in the agenda buffer.
15130 (org-agenda-copy-local-variable): New function.
15132 2007-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
15134 * vc.el (vc-update-changelog-rcs2log): Remove incorrect `backend' arg.
15136 2007-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
15138 * simple.el (reindent-then-newline-and-indent): Use a `move after
15139 insert' kind of marker in the save-excursion.
15141 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
15143 * textmodes/css-mode.el: Require CL.
15144 (comment-continue): Declare.
15146 * subr.el (make-variable-frame-localizable): Remove.
15147 (make-variable-frame-local): Mark obsolete.
15149 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
15151 * textmodes/tex-mode.el (tex-uptodate-p): Don't signal an error if one
15152 of the subdirs is unreadable.
15154 2007-10-23 Michael Albinus <michael.albinus@gmx.de>
15156 * net/tramp.el (tramp-set-file-uid-gid): Protect `call-process'
15159 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
15161 * progmodes/python.el (python-current-defun): Remove left-over
15162 assignment to `start'.
15164 2007-10-23 Juanma Barranquero <lekktu@gmail.com>
15166 * ibuf-ext.el (ibuffer-auto-update-changed): Use `dolist' rather
15167 than `mapcar'; return value is not used.
15169 2007-10-23 Dan Nicolaescu <dann@ics.uci.edu>
15171 * progmodes/gud.el (gdb-source-window, gud-tooltip-mode)
15172 (hl-line-mode, hl-line-sticky-flag): Pacify byte compiler.
15174 2007-10-23 Juanma Barranquero <lekktu@gmail.com>
15176 * ibuf-ext.el (ibuffer-switch-to-saved-filters)
15177 (ibuffer-switch-to-saved-filter-groups): Doc fixes.
15179 2007-10-23 Dan Nicolaescu <dann@ics.uci.edu>
15181 * term/xterm.el (terminal-init-xterm): Experiment with a longer timeout.
15183 2007-10-23 Katsumi Yamaoka <yamaoka@jpl.org>
15185 * emacs-lisp/advice.el (ad-make-advised-docstring):
15186 Add ad-advice-info text property to doc string.
15188 2007-10-23 Glenn Morris <rgm@gnu.org>
15190 * progmodes/f90.el (f90-do-indent, f90-if-indent)
15191 (f90-type-indent, f90-program-indent, f90-associate-indent)
15192 (f90-continuation-indent, f90-comment-region)
15193 (f90-beginning-ampersand, f90-smart-end)
15194 (f90-break-before-delimiters, f90-auto-keyword-case)
15195 (f90-leave-line-no, f90-mode-hook):
15196 Give an appropriate safe-local-variable property.
15198 * progmodes/fortran.el (fortran-tab-mode-default)
15199 (fortran-tab-mode-string, fortran-do-indent, fortran-if-indent)
15200 (fortran-structure-indent, fortran-continuation-indent)
15201 (fortran-comment-indent, fortran-comment-line-extra-indent)
15202 (fortran-comment-line-start)
15203 (fortran-minimum-statement-indent-fixed)
15204 (fortran-minimum-statement-indent-tab)
15205 (fortran-comment-indent-char, fortran-line-number-indent)
15206 (fortran-check-all-num-for-matching-do)
15207 (fortran-blink-matching-if, fortran-continuation-string)
15208 (fortran-comment-region, fortran-electric-line-number)
15209 (fortran-column-ruler-fixed, fortran-column-ruler-tab)
15210 (fortran-analyze-depth, fortran-break-before-delimiters):
15211 Give an appropriate safe-local-variable property.
15213 2007-10-23 Dan Nicolaescu <dann@ics.uci.edu>
15215 * printing.el: Move variable definitions before use.
15216 (pr-menu-char-width, pr-menu-char-height): Pacify byte compiler.
15218 2007-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
15220 * emulation/tpu-edt.el (tpu-edt-old-global-values): New var.
15221 (tpu-edt-off): Use it.
15222 (tpu-edt-on): Set it. Make sure the tpu-global-map is not already on
15223 the global-map before adding it to global-map.
15225 * menu-bar.el (global-buffers-menu-map): New var.
15226 (global-map, menu-bar-update-buffers): Use it.
15227 * msb.el (msb-menu-bar-update-buffers): Use it.
15228 (msb-sort-by-directory, msb--choose-menu, msb--mode-menu-cond)
15229 (msb--most-recently-used-menu, msb--create-buffer-menu-2):
15230 Use with-current-buffer.
15232 2007-10-22 Juri Linkov <juri@jurta.org>
15234 * isearch-multi.el: New file.
15236 * isearch.el (isearch-search-string): After finding the next
15237 occurrence switch to buffer isearch-buffers-current-buffer when
15238 isearch-buffers-next-buffer-function is non-nil and
15239 isearch-buffers-current-buffer is live.
15241 * add-log.el (change-log-mode): Make and set buffer-local variable
15242 isearch-buffers-next-buffer-function to change-log-next-buffer.
15243 Call isearch-buffers-minor-mode.
15244 (change-log-next-buffer): New function.
15246 2007-10-22 Bastien Guerry <Bastien.Guerry@ens.fr>
15248 * textmodes/org-export-latex.el (org-export-latex-protect-string):
15249 Renaming of `org-latex-protect'.
15250 (org-export-latex-emphasis-alist): By default, don't protect
15251 any emphasis formatter from further conversion.
15252 (org-export-latex-tables): Honor column grouping for tables.
15253 (org-export-latex-title-command): New option.
15254 (org-export-latex-treat-backslash-char): Use \textbackslash{} to
15255 export backslash character.
15257 2007-10-22 Carsten Dominik <dominik@science.uva.nl>
15259 * textmodes/org.el (org-read-date-get-relative): New function.
15260 (org-agenda-file-regexp): New variable.
15261 (org-agenda-files): Allow directories in the variable.
15262 (org-agenda-get-restriction-and-command): New function.
15263 (org-agenda): Use `org-agenda-get-restriction-and-command'.
15264 (org-todo-blocker-hook, org-todo-trigger-hook): New hooks.
15265 (org-entry-is-todo-p, org-entry-is-done-p, org-get-todo-state):
15267 (org-entry-add-to-multivalued-property)
15268 (org-entry-remove-from-multivalued-property)
15269 (org-entry-member-in-multivalued-property): New functions.
15270 (org-remember-apply-template): Catch C-g and make sure window
15271 configuration is restored.
15272 (org-agenda-open-link): Make it work with several links in the line.
15273 (org-drawers, org-set-regexps-and-options)
15274 (org-get-current-options): Add support for a DRAWERS in-buffer option.
15275 (org-agenda-window-frame-fractions): New option.
15276 (org-fit-agenda-window): Use `org-agenda-window-frame-fractions'.
15277 (org-columns-cleanup-item, org-find-entry-with-id)
15278 (org-insert-columns-dblock, org-listtable-to-string)
15279 (org-dblock-write:columnview, org-columns-capture-view)
15280 (org-edit-headline): New functions.
15281 (org-agenda-to-appt): Require calendar.
15282 (org-entry-get-with-inheritance): Widen for search.
15283 (org-columns-display-here): Don't mark buffer as modified when
15284 adding space characters to accomodate column overlays.
15285 (org-export-as-html): Better formatting of tags in the toc.
15286 (org-columns-display-here): Make the ITEM column as compact as possible.
15287 (org-remember-templates): Customization interface improved.
15288 (org-export-with-property-drawer): Variable removed.
15289 (org-export-with-drawers): New option.
15290 (org-complex-heading-regexp): New variable.
15291 (org-sort-entries): Rewrite using `sort-subr'.
15292 (org-set-property): More appropriate completion during interactive use.
15293 (org-sort-entries): Allow sorting by property.
15294 (org-additional-option-like-keywords): Add more values.
15295 (org-sort-entries-or-items): Rename from `org-sort-entries'.
15297 2007-10-22 Carsten Dominik <dominik@science.uva.nl>
15299 * textmodes/org.el (org-get-date-from-calendar): New function.
15300 (org-at-timestamp-p, org-timestamp-change)
15301 (org-remember-templates): First element of each entry is now a
15302 name for the template.
15303 (org-store-log-note): Check for `org-note-abort'.
15304 (org-kill-note-or-show-branches): New command.
15305 (org-fontify-priorities): New option.
15306 (org-fontify-priorities): New function.
15307 (org-cut-subtree, org-copy-subtree): New argument N to
15308 act on N sequential subtrees.
15309 (org-paste-subtree): Fix the level at which a tree is pasted.
15310 (org-fit-agenda-window): Limitations on window size removed.
15311 (org-agenda-find-same-or-today-or-agenda): Rename from
15312 `org-agenda-find-today-or-agenda'.
15313 (org-scheduled-past-days): New option.
15314 (org-agenda-scheduled-leaders)
15315 (org-agenda-deadline-leaders): New options.
15316 (org-agenda-get-deadlines): Use `org-agenda-deadline-leaders'.
15317 (org-agenda-get-scheduled): Use `org-agenda-scheduled-leaders'.
15318 (org-export-with-tags, org-export-plist-vars)
15319 (org-infile-export-plist): New "tags" option.
15320 (org-use-property-inheritance): New option.
15321 (org-cached-entry-get): Use `org-use-property-inheritance'.
15322 (org-remember-apply-template): Fix typo.
15324 2007-10-22 Michael Albinus <michael.albinus@gmx.de>
15326 * net/tramp.el (tramp-find-shell)
15327 (tramp-open-connection-setup-interactive-shell): Improve sending
15329 (tramp-action-terminal): Send debug message.
15330 (tramp-wait-for-shell-prompt, tramp-send-command-internal): Remove.
15331 (tramp-barf-if-no-shell-prompt): Insert code of
15332 `tramp-wait-for-shell-prompt'.
15334 2007-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
15336 * term/AT386.el (terminal-init-AT386): Use input-decode-map.
15338 * term/vt200.el (terminal-init-vt200):
15339 * term/vt201.el (terminal-init-vt201):
15340 * term/vt220.el (terminal-init-vt220):
15341 * term/vt240.el (terminal-init-vt240):
15342 * term/vt300.el (terminal-init-vt300):
15343 * term/vt320.el (terminal-init-vt320):
15344 * term/vt400.el (terminal-init-vt400):
15345 * term/vt420.el (terminal-init-vt420): Use input-decode-map.
15347 * term/wyse50.el (wyse50-terminal-map): New var.
15348 (terminal-init-wyse50): Use it and input-decode-map.
15349 (enable-arrow-keys): Emasculate.
15351 * term/tvi970.el (tvi970-terminal-map): New var.
15352 (terminal-init-tvi970): Use it and input-decode-map.
15353 (tvi970-keypad-numeric): Remove.
15354 (tvi970-set-keypad-mode): Use a terminal-parameter rather than var.
15356 * term/sun.el (sun-raw-prefix): Fill as part of declaration.
15357 (terminal-init-sun): Use it and input-decode-map.
15359 * term/news.el (terminal-init-news):
15360 * term/lk201.el (terminal-init-lk201):
15361 * term/iris-ansi.el (terminal-init-iris-ansi): Use input-decode-map.
15363 2007-10-22 Sean O'Rourke <sorourke@cs.ucsd.edu>
15365 * complete.el (PC-expand-many-files): Remove.
15366 (PC-do-completion): Call file-expand-wildcards instead of
15367 PC-expand-many-files.
15369 * net/tramp.el (tramp-handle-expand-many-files): Remove.
15370 (PC-expand-many-files): Remove advice.
15372 2007-10-22 Glenn Morris <rgm@gnu.org>
15374 * progmodes/f90.el: Remove leading "*" from defcustom doc-strings.
15375 Add some support for Fortran 2003 syntax:
15376 (f90-type-indent): Now also applies to `enum'.
15377 (f90-associate-indent): New user option.
15378 (f90-keywords-re, f90-keywords-level-3-re, f90-procedures-re):
15379 Add some F2003 keywords.
15380 (f90-constants-re): New constant.
15381 (f90-font-lock-keywords-1): Add `associate' blocks, and `abstract
15383 (f90-font-lock-keywords-2): Add `enumerator', `generic', `procedure',
15384 `class'. Arguments for `type'/`class' may have spaces. Add a new
15385 element for functions with specified types. Add `end enum' and
15386 `select type'. Add `implicit enumerator' and `procedure'.
15387 Add `class default' and `type is', `class is'. Fix `go to' regexp.
15388 (f90-font-lock-keywords-3): Add `asynchronous' attribute.
15389 (f90-font-lock-keywords-4): Add `f90-constants-re'.
15390 (f90-blocks-re): Add `enum' and `associate'.
15391 (f90-else-like-re): Add `class is', `type is', and `class default'.
15392 (f90-end-type-re): Add `enum'.
15393 (f90-end-associate-re, f90-typeis-re): New constants.
15394 (f90-end-block-re): Add `enum' and `associate'. Change from
15395 optional whitespace to end-of-word, to avoid `enumerator'.
15396 (f90-start-block-re): Add `select type', `abstract interface', and
15397 `enum'. Avoid `type is', and `type (sometype)'.
15398 (f90-mode-abbrev-table): Add `enumerator', `protected', and `volatile'.
15399 (f90-mode): Doc fix.
15400 (f90-looking-at-select-case): Doc fix. Add `select type'.
15401 (f90-looking-at-associate): New function.
15402 (f90-looking-at-type-like): Avoid `type is' and `type (sometype)'.
15403 Add `enum' and `abstract interface'.
15404 (f90-no-block-limit): Add `select type' and `abstract interface'.
15405 (f90-get-correct-indent, f90-calculate-indent)
15406 (f90-end-of-block, f90-beginning-of-block, f90-next-block)
15407 (f90-indent-region, f90-match-end): Handle `associate' blocks.
15409 2007-10-22 Martin Rudalics <rudalics@gmx.at>
15411 * progmodes/fortran.el (fortran-mode-map, fortran-window-create):
15412 Use window-full-width-p.
15414 2007-10-22 Dan Nicolaescu <dann@ics.uci.edu>
15416 * mail/vms-pmail.el (insert-signature): Don't use end-of-buffer.
15418 * tooltip.el: Use featurep 'xemacs.
15420 * printing.el: Move variable definitions before use, no code change.
15422 2007-10-22 Juri Linkov <juri@jurta.org>
15424 * simple.el (goto-history-element): Allow minibuffer-default to be
15425 a list of default values accessible by typing M-n in the minibuffer.
15427 * dired-x.el (dired-guess-shell-command): Put all guesses to the
15428 minibuffer default value list instead of pushing them temporarily
15429 to the history list.
15431 2007-10-21 Dan Nicolaescu <dann@ics.uci.edu>
15433 * hexl.el (hexl-menu): New major mode menu.
15435 2007-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
15437 * emacs-lisp/byte-opt.el (byte-optimize-featurep): Fix paren typo.
15439 2007-10-21 Dan Nicolaescu <dann@ics.uci.edu>
15441 * w32-fns.el (w32-quote-process-args):
15442 * dos-w32.el (print-region-function, lpr-headers-switches)
15443 (ps-print-region-function): Pacify byte-compiler.
15445 * emulation/edt-mapper.el (function-key-map):
15446 (edt-map-key): Make it a function instead of using fset.
15447 Inline edt-gnu-map-key and edt-lucid-map-key. Use featurep 'xemacs.
15448 (edt-gnu-map-key, edt-lucid-map-key): Remove.
15449 (edt-x-emacs-p): Remove.
15450 (edt-emacs-variant, edt-window-system, edt-xserver):
15451 Use featurep 'xemacs.
15453 * net/eudc.el: Use (featurep 'xemacs) instead of the string test.
15454 Replace eudc-xemacs-p with its definition.
15455 (eudc-xemacs-p, eudc-emacs-p, eudc-xemacs-mule-p)
15456 (eudc-emacs-mule-p): Remove.
15457 (eudc-install-menu, eudc-mode): Replace eudc-emacs-p and
15458 eudc-xemacs-p with feature tests.
15460 * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-mail-keymap)
15461 (eudc-bob-url-keymap, eudc-bob-sound-keymap)
15462 (eudc-bob-generic-keymap, eudc-bob-popup-menu)
15463 (eudc-bob-toggle-inline-display):
15464 * net/eudc-hotlist.el (eudc-hotlist-emacs-menu):
15465 Replace eudc-emacs-p and eudc-xemacs-p with feature tests.
15467 * net/eudcb-ph.el (eudc-ph-open-session):
15468 Replace eudc-xemacs-mule-p with its former definition.
15470 * progmodes/octave-mod.el (octave-xemacs-p): Remove.
15471 (octave-abbrev-start): Replace octave-xemacs-p with (featurep 'xemacs).
15473 * progmodes/vera-mode.el (vera-xemacs): Remove.
15474 (vera-mode-syntax-table): Replace vera-xemacs with (featurep 'xemacs).
15476 * progmodes/vhdl-mode.el (vhdl-xemacs): Remove.
15477 (vhdl-doc-mode, vhdl-doc-variable, vhdl-compile-init)
15478 (vhdl-speedbar-initialize, vhdl-ps-print-init)
15479 (vhdl-forward-comment, vhdl-mode-map-init, vhdl-show-messages)
15480 (vhdl-emacs-22, vhdl-emacs-21): Replace vhdl-xemacs
15481 with (featurep 'xemacs).
15483 * progmodes/antlr-mode.el (cond-emacs-xemacs-macfn, defunx)
15484 (save-buffer-state-x):
15485 * obsolete/fast-lock.el (fast-lock-verbose):
15486 * emulation/viper-init.el (viper-xemacs-p)
15487 (viper-cond-compile-for-xemacs-or-emacs):
15488 * emacs-lisp/checkdoc.el (checkdoc-minor-mode-map):
15489 * ps-print.el (case-fold-search):
15490 * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs):
15491 * calculator.el (calculator-help): Use featurep 'xemacs.
15493 * progmodes/prolog.el: Undo previous change.
15494 (comint-prompt-regexp, comint-process-echoes): Pacify byte-compiler.
15496 * progmodes/dcl-mode.el:
15498 * calendar/todo-mode.el:
15499 * calendar/cal-hebrew.el:
15500 * vc-hg.el: Undo previous change.
15502 * vms-patch.el: Likewise.
15503 (print-region-function): Pacify byte-compiler.
15505 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
15507 * files.el (backup-buffer-copy): Call `copy-file' with non-nil
15510 * net/ange-ftp.el (ange-ftp-copy-file): Add PRESERVE-UID-GID for
15511 compatibility. It is not used, though.
15513 * net/tramp.el (top): Put load of all tramp-* files into a dolist.
15514 Require tramp-cmds.el.
15515 (tramp-make-tramp-temp-file): We can get rid of DONT-CREATE.
15516 (tramp-handle-file-name-all-completions): Expand DIRECTORY.
15517 (tramp-do-copy-or-rename-file-directly): Make more rigid checks.
15518 (tramp-do-copy-or-rename-file-out-of-band)
15519 (tramp-maybe-open-connection): Use `make-temp-name'. This is
15520 possible, because we don't need to create the temporary file, but
15521 we need a prefix for ssh, which has its own temporary file handling.
15522 (tramp-handle-delete-directory): Add "-f" to rmdir.
15523 (tramp-handle-dired-recursive-delete-directory): Call "rm -rf".
15524 (tramp-handle-insert-file-contents): Don't raise a tramp-error but
15525 a signal, in order to give the callee a chance to suppress.
15526 (tramp-handle-write-region): Set owner also in case of short
15527 track. Don't use compatibility calls for `write-region' anymore.
15528 (tramp-clear-passwd): Add parameter VEC. Adapt all callees.
15529 (tramp-append-tramp-buffers): Apply `tramp-list-tramp-buffers'.
15531 * net/tramp-cmds.el: New file.
15533 * net/tramp-gw.el (tramp-gw-basic-authentication): Apply VEC to
15534 `tramp-clear-passwd'.
15536 * net/trampver.el: Update release number.
15538 2007-10-21 Dan Nicolaescu <dann@ics.uci.edu>
15540 * progmodes/gud.el (gud-target-name): Move definition before use.
15542 * progmodes/dcl-mode.el: Require imenu at compile time.
15544 * progmodes/cc-engine.el (c-maybe-stale-found-type):
15545 Pacify byte-compiler.
15547 * obsolete/fast-lock.el: Use featurep test instead of string-match.
15549 * eshell/esh-mode.el (eshell-handle-ansi-color):
15550 Require ansi-color at compile time too.
15552 * eshell/em-unix.el (eshell/info): Require info at compile time too.
15554 * w32-fns.el: Require w32-vars.
15556 * diff-mode.el (diff-refine-hunk): Require smerge-mode at compile
15559 2007-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
15561 * double.el ([ignore]): Use `ignore'.
15562 (double-setup): Inline into double-mode.
15563 (double-mode): Use define-minor-mode.
15565 2007-10-21 Dan Nicolaescu <dann@ics.uci.edu>
15567 * textmodes/reftex.el: Move require easymenu before first use.
15568 (reftex-info): Require info at compile too.
15570 * textmodes/org-publish.el (org-publish-org-to-html)
15571 (org-publish-org-to): Require org at compile time too.
15572 (org-publish-attachment): Require at compile time too.
15574 * term/tty-colors.el (w32-tty-standard-colors):
15575 Pacify byte-compiler.
15577 * term/pc-win.el (frame-creation-function-alist): Add to this
15578 instead of setting frame-creation-function.
15580 * play/blackbox.el (bb-up, bb-down): Use forward-line.
15582 * net/rcirc.el (rcirc-markup-text-functions): Move definition earlier.
15584 * calendar/todo-mode.el: Require calendar at compile time.
15586 * calendar/cal-hebrew.el: Require holidays at compile time.
15588 * w32-vars.el: Provide w32-vars.
15590 * term/w32-win.el: Require w32-vars.
15591 (w32-color-map): Pacify byte-compiler.
15593 * loadup.el: Load w32-vars before term/w32-win.
15595 2007-10-20 Juri Linkov <juri@jurta.org>
15597 * textmodes/fill.el (fill-paragraph): When the region is active,
15598 don't try other `or' branches regardless of the value returned by
15599 fill-region; just return t.
15601 2007-10-20 Eric S. Raymond <esr@snark.thyrsus.com>
15603 * vc.el (vc-do-command): Condition out a misleading message when
15604 running asynchronously.
15605 (vc-deduce-fileset): New argument enables using an unregistered
15606 visited file as a singleton fileset if nothing else is available.
15607 (vc-next-action): Restore file-registering behavior.
15609 2007-10-20 Jay Belanger <jay.p.belanger@gmail.com>
15611 * calc/README: Add recent news.
15613 2007-10-20 Dan Nicolaescu <dann@ics.uci.edu>
15615 * term/x-win.el (x-gtk-stock-map, icon-map-list)
15616 (x-gtk-map-stock): Delete duplicated definitions from merge.
15618 * progmodes/compile.el (compilation-skip-to-next-location)
15619 (compilation-skip-threshold, compilation-skip-visited):
15620 Move definitions earlier.
15622 * play/decipher.el (decipher-keypress):
15623 * play/zone.el (zone-fall-through-ws):
15624 * play/landmark.el (lm-move-down, lm-move-up):
15625 * play/handwrite.el (handwrite):
15626 * mail/mspools.el (mspools-visit-spool):
15627 * wdired.el (wdired-next-line, wdired-previous-line):
15628 * tar-mode.el (tar-subfile-save-buffer):
15629 * scroll-lock.el (scroll-lock-next-line)
15630 (scroll-lock-previous-line):
15631 * image-dired.el (image-dired-next-line)
15632 (image-dired-previous-line):
15633 * ediff-help.el (ediff-help-message-line-length):
15636 * smerge-mode.el (smerge-auto-refine):
15637 * diff-mode.el (diff-auto-refine): Add :group.
15639 * play/yow.el: Require doctor at compile time.
15641 * vmsproc.el: Provide vmsproc.
15642 (command-send-input): Use forward-line.
15644 * vms-patch.el: Require ps-print and vmsproc at compile time.
15646 * vc-mtn.el (log-view-message-re, log-view-file-re)
15647 (log-view-font-lock-keywords): Pacify byte-compiler.
15649 * vc-hg.el: Require log-view at compile time.
15651 2007-10-20 Eric S. Raymond <esr@snark.thyrsus.com>
15653 * log-view.el (log-view-diff): Adapt log-view-diff for new VC API.
15655 2007-10-20 Glenn Morris <rgm@gnu.org>
15657 * progmodes/f90.el (f90-font-lock-keywords-2)
15658 (f90-looking-at-type-like): Fix regexp typos.
15660 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
15662 * bs.el (bs--track-window-changes): Don't refresh the whole list.
15663 (bs-mode): Set mode-class property to special.
15665 2007-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
15667 * diff-mode.el (diff-auto-refine): New var.
15668 (diff-hunk): Use it.
15669 (diff-ignore-whitespace-hunk): Rename diff-refine-ignore-spaces-hunk.
15670 (diff-refine-change): Rename from diff-fine-change. Change it.
15671 (diff-refine-preproc): Rename from diff-fine-highlight-preproc.
15672 (diff-refine-hunk): Rename from diff-fine-highlight.
15674 2007-10-20 John Paul Wallington <jpw@pobox.com>
15676 * help-fns.el (describe-variable-custom-version-info): New function
15677 to return variable's version or package version note.
15678 (describe-variable): Use it, display result.
15680 2007-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
15682 * smerge-mode.el (smerge-auto-refine): New var.
15683 (smerge-next, smerge-prev): Use it.
15684 (smerge-batch-resolve): Ad-hoc trick for Arch's .rej files.
15686 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
15687 Add `body' arg. Cleanup the check-narrow-maybe/re-narrow-maybe mess.
15689 * vc-bzr.el (vc-bzr-diff-tree):
15690 * vc-git.el (vc-git-diff-tree):
15691 * vc-hg.el (vc-hg-diff-tree):
15692 * vc-mcvs.el (vc-mcvs-diff-tree):
15693 * vc-mtn.el (vc-mtn-diff-tree):
15694 * vc-svn.el (vc-svn-diff-tree): Remove.
15696 * vc-mtn.el (vc-mtn-revision-completion-table):
15697 * vc-cvs.el (vc-cvs-revision-completion-table):
15698 * vc-arch.el (vc-arch-revision-completion-table):
15699 * vc-hg.el (vc-hg-revision-completion-table, vc-hg-revision-table):
15700 * vc-git.el (vc-git-revision-completion-table, vc-git-revision-table):
15701 Make it work when the arg is a list of files.
15703 2007-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
15705 * vc.el: Remove `diff-tree' operation, now subsumed by `diff'.
15706 Also `revision-completion-table' now takes a list of files.
15707 (vc-deduce-fileset): Remove unused var `regexp'.
15708 Only obey allow-directory-wildcard in dired buffers.
15709 (vc-default-diff-tree): Remove.
15710 (vc-diff-added-files): New var.
15711 (vc-diff-internal): Use it. Remove arg `backend'. Update callers.
15712 (vc-version-diff): Revert from `vc-history-diff' to the original name.
15713 Remove the `backend' arg.
15714 (vc-contains-version-controlled-file): Remove.
15715 (vc-diff): Bring it closer to the version in Emacs-22.
15716 (vc-revert): Fix typo in let-binding.
15717 (vc-default-unregister): Remove.
15718 (vc-dired-buffers-for-dir): Remove N^2 behavior.
15720 2007-10-19 Dan Nicolaescu <dann@ics.uci.edu>
15722 * textmodes/two-column.el (2C-split, 2C-merge):
15723 * textmodes/bib-mode.el (bib-find-key, mark-bib):
15724 * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
15725 * progmodes/etags.el (find-tag-in-order, etags-tags-apropos)
15726 * progmodes/ada-xref.el (ada-get-all-references):
15727 * obsolete/mlsupport.el (ml-next-line, ml-previous-line):
15728 * emulation/vi.el (vi-previous-line-first-nonwhite)
15729 (vi-effective-range, vi-put-before):
15730 * emulation/edt.el (edt-next-line, edt-previous-line)
15731 (edt-paragraph-forward): Use forward-line.
15733 * progmodes/etags.el (tags-apropos): Require apropos at compile
15736 * progmodes/prolog.el: Require comint when compiling.
15737 (inferior-prolog-flavor): Move defvar before use.
15739 2007-10-19 Richard Stallman <rms@gnu.org>
15741 * font-core.el (turn-on-font-lock-if-desired):
15742 Rename from `turn-on-font-lock-if-enabled'.
15743 Fully obey `font-lock-global-modes'.
15745 2007-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
15747 * diff-mode.el (diff-fine-highlight-preproc): Stick to minimal changes
15748 which will not affect the behavior of things like forward-word.
15749 (diff-fine-highlight): Preserve point.
15751 * doc-view.el (doc-view-mode-map): Use remapping.
15752 Don't rebind C-v, M-v to their default value.
15753 Don't bind mouse-4 and mouse-5: it's mwheel.el's job.
15755 * smerge-mode.el: Add word-granularity refinement.
15756 (smerge-refine-forward-function, smerge-refine-ignore-whitespace)
15757 (smerge-refine-weight-hack): New vars.
15758 (smerge-refine-forward): New fun.
15759 (smerge-refine-chopup-region, smerge-refine-highlight-change): Use them.
15760 (smerge-refine-subst): Use them as well. Preserve point.
15762 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
15764 * follow.el (follow-unload-function): New function.
15766 * loadhist.el (unload-function-features-list):
15767 Rename from `unload-hook-features-list'.
15768 (unload-hook-features-list): Add as obsolete alias.
15769 (unload-feature): Use `unload-function-features-list'
15770 and new FEATURE-unload-function.
15772 2007-10-19 Glenn Morris <rgm@gnu.org>
15774 * bindings.el (mouse-minor-mode-menu)
15775 (minor-mode-menu-from-indicator): Move to mouse.el.
15776 * mouse.el (mouse-minor-mode-menu, minor-mode-menu-from-indicator):
15777 Move here from bindings.el.
15779 2007-10-19 Richard Stallman <rms@gnu.org>
15781 * help-fns.el (describe-function-1): Don't use the advice origname
15782 if it has no function definition.
15784 2007-10-18 Johan Bockgård <bojohan@gnu.org>
15786 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Save excursion.
15787 Use `save-restriction' rather than `widen'.
15789 2007-10-18 Richard Stallman <rms@gnu.org>
15791 * time.el (display-time-world-time-format): Display day # not month #.
15793 2007-10-18 Reiner Steib <Reiner.Steib@gmx.de>
15795 * files.el (auto-mode-alist): Don't use doc-view for PS and EPS.
15797 * doc-view.el: Remove version keyword.
15798 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
15799 (doc-view-ps2pdf-program): Use executable-find. Simplify custom type.
15800 (doc-view-ghostscript-options): Improve custom type.
15801 (doc-view-cache-directory, doc-view-conversion-buffer)
15802 (doc-view-conversion-refresh-interval): Simplify custom type.
15804 2007-10-18 Tassilo Horn <tassilo@member.fsf.org>
15806 * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
15807 (doc-view-pdf/ps->png-sentinel, doc-view-pdf/ps->png)
15808 (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
15809 (doc-view-ps->pdf-sentinel, doc-view-ps->pdf):
15810 Remove superfluous messages.
15811 (doc-view-mode-map): Use the image-mode scrolling commands.
15812 Don't rebind C-x k.
15814 2007-10-18 Reiner Steib <Reiner.Steib@gmx.de>
15816 * doc-view.el (doc-view-ghostscript-options, doc-view-ps->pdf):
15817 Add comment about "-dSAFER".
15819 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
15821 * term/xterm.el: Don't require xt-mouse.
15822 (terminal-init-xterm): Run terminal-init-xterm-hook rather than
15823 calling turn-on-xterm-mouse-tracking-on-terminal directly.
15825 * xt-mouse.el: Don't change the global function-key-map anny more.
15826 (xterm-mouse-mode): Use terminal-init-xterm-hook.
15827 Don't use after-make-frame-functions now that term/xterm.el calls
15829 (turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking):
15830 Use turn-*-xterm-mouse-tracking-on-terminal. Only once per terminal.
15831 (turn-on-xterm-mouse-tracking-on-terminal): Make param optional.
15832 Setup input-decode-map and remember that xterm-mouse-mode was
15833 enabled in this terminal.
15834 (turn-off-xterm-mouse-tracking-on-terminal): Only disable on those
15835 terminals where it has been enabled.
15837 * faces.el (tty-create-frame-with-faces): Make sure not only
15838 tty-run-terminal-initialization but also set-locale-environment
15839 are run only once per terminal.
15840 (tty-run-terminal-initialization): Don't check if the terminal was
15843 * international/encoded-kb.el (encoded-kbd-setup-display): Be careful
15844 not to remove keymaps that just happen to inherit from one of ours.
15845 When setting up our keymap, make sure it won't be accidentally
15846 modified by someone else.
15848 2007-10-18 Thien-Thi Nguyen <ttn@gnuvola.org>
15850 * textmodes/artist.el (artist-previous-line, artist-next-line):
15851 * dired.el (dired-next-line, dired-previous-line):
15852 * progmodes/delphi.el (delphi-newline):
15853 * textmodes/org.el (org-columns-eval):
15856 * emerge.el (emerge-setup): Use insert-buffer-substring.
15857 (emerge-prepare-error-list, emerge-setup-with-ancestor): Likewise.
15859 2007-10-18 Juanma Barranquero <lekktu@gmail.com>
15861 * textmodes/fill.el (fill-individual-paragraphs): Doc fix.
15862 (adaptive-fill-function): Doc fix. Remove * from docstring.
15864 2007-10-18 Tom Horsley <tom.horsley@att.net>
15866 * simple.el (interprogram-paste-function): Doc fix.
15867 (current-kill): Accept list of strings as well
15868 as single string from `interprogram-paste-function'.
15870 2007-10-18 Glenn Morris <rgm@gnu.org>
15872 * ibuf-ext.el (ibuffer-saved-filter-groups): Doc fix.
15874 2007-10-18 Drew Adams <drew.adams@oracle.com>
15876 * bindings.el (mode-line-minor-mode-keymap):
15877 Add mouse-minor-mode-menu on mouse-1.
15878 (mode-line-modes): Add mouse-1 to help-echo text.
15879 (mouse-minor-mode-menu, minor-mode-menu-from-indicator):
15881 (mode-line-minor-mode-help): Doc fix.
15883 2007-10-17 Juri Linkov <juri@jurta.org>
15885 * textmodes/fill.el (fill-paragraph-or-region): Remove function
15886 at the request of RMS.
15887 (fill-paragraph): Change `arg' to optional `justify'. Add interactive
15888 arg `region'. Fix docstring. At the first `or' branch add call to
15889 `fill-region' if it the region is active in transient-mark-mode.
15891 * bindings.el (esc-map): Bind M-q to fill-paragraph
15892 instead of fill-paragraph-or-region.
15894 * tutorial.el (tutorial--default-keys): Replace fill-paragraph-or-region
15895 with fill-paragraph.
15897 * textmodes/ispell.el (ispell-word): Add interactive arg `region'.
15900 * indent.el (indent-for-tab-command): Change interactive spec from
15901 "P" to "p". Add check for interactive arg before indenting the
15904 * files.el (auto-mode-alist): Add \\. before PDF/PS/DVI extensions.
15907 2007-10-17 Juanma Barranquero <lekktu@gmail.com>
15909 * emacs-lisp/find-func.el: Don't require loadhist.
15911 * loadhist.el (feature-symbols, file-provides, file-requires)
15912 (file-set-intersect, file-dependents): Simplify.
15913 (unload-feature-special-hooks): Update list of special hooks.
15915 2007-10-17 Tassilo Horn <tassilo@member.fsf.org>
15917 * bindings.el (completion-ignored-extensions): Remove pdf and dvi
15918 extensions since they can be viewed with doc-view.
15920 * files.el (auto-mode-alist): Make doc-view-mode the default mode
15921 for pdf, ps and dvi files.
15923 * doc-view.el: Make doc-view-mode the standard mode for viewing
15924 pdf, [e]ps and dvi files and add binding C-c C-c to toggle between
15925 text and image display. Add binding C-c C-e to switch to an
15927 (doc-view-ghostscript-options, doc-view-ps->pdf): Add "-dSAFER" to
15928 avoid security problems when rendering files from untrusted sources.
15930 2007-10-17 Aaron Hawley <aaronh@garden.org>
15932 * tutorial.el (tutorial--save-tutorial): Display message when tutorial
15933 position is not saved.
15935 2007-10-17 Reiner Steib <Reiner.Steib@gmx.de>
15937 * doc-view.el: Mention xpdf. Fix spelling of Ghostscript.
15938 (doc-view-ghostscript-options): Fix typo in doc string.
15940 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
15942 * progmodes/compile.el (compilation-next-error-function): Fix timestamp
15943 handling, so compilation-fake-loc works again.
15945 * server.el (server-select-display): Nop if we do not support m-f-o-d.
15946 (server-process-filter): Revert last change.
15948 * vc.el (vc-diff-sentinel, vc-diff-internal): Revert some change in the
15949 behavior unrelated to filesets.
15951 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
15953 * longlines.el (longlines-wrap-follows-window-size): Integer value
15954 specifies wrapping margin.
15955 (longlines-mode, longlines-window-change-function):
15956 Set window-specific wrapping margin based on the above.
15958 2007-10-17 John Wiegley <johnw@newartisans.com>
15960 * eshell/esh-cmd.el (eshell-complex-commands): Add "ls".
15962 2007-10-17 Dan Nicolaescu <dann@ics.uci.edu>
15964 * server.el (server-process-filter): Only set display if X11 is
15967 2007-10-17 Glenn Morris <rgm@gnu.org>
15969 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression):
15970 Tweak regexp to avoid stack overflow.
15972 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
15974 * simple.el (reindent-then-newline-and-indent): Don't assume that
15975 indent-according-to-mode preserves point.
15977 2007-10-16 Juanma Barranquero <lekktu@gmail.com>
15979 * bs.el (bs--make-header-match-string, bs-show-in-buffer)
15980 (bs--nth-wrapper): Simplify.
15981 (bs-select, bs--insert-one-entry): Simplify. Use `when'.
15982 (bs-buffer-list): Simplify. Use `when'. Use `string-match-p'.
15983 (bs-sort-buffer-interns-are-last): Use `string-match-p'.
15984 (bs-attributes-list, bs-max-window-height, bs-must-always-show-regexp)
15985 (bs-maximal-buffer-name-column, bs-minimal-buffer-name-column)
15986 (bs-configurations, bs-default-configuration)
15987 (bs-alternative-configuration, bs-cycle-configuration-name)
15988 (bs-string-show-always, bs-string-show-never, bs-string-current)
15989 (bs-string-current-marked, bs-string-marked, bs-string-show-normally)
15990 (bs-sort-functions, bs-default-sort-name): Remove * in docstrings.
15991 (bs--redisplay, bs--goto-current-buffer, bs--current-buffer, bs-delete)
15992 (bs-apply-sort-faces, bs-next-config-aux): Use `when'.
15993 (bs--window-config-coming-from): Revert 2006-11-09 change.
15994 (bs--restore-window-config): Keep the selected frame.
15995 (bs--track-window-changes, bs--remove-hooks): New functions.
15996 (bs-mode): Use `define-derived-mode'. Set hook to track window changes.
15997 (bs--create-header): Remove.
15998 (bs--create-header-line): New function, based on `bs--create-header'.
15999 (bs--show-header): Use `bs--create-header-line'.
16000 (bs--show-with-configuration): Revert 2006-11-09 change.
16001 Don't reuse window unless it is visible on the selected frame.
16002 Restore window configuration (possibly in a different frame)
16003 before creating any window.
16005 2007-10-16 Glenn Morris <rgm@gnu.org>
16007 * simple.el (blink-matching-open): Don't report false errors with
16008 the `$' syntax class.
16010 2007-10-16 Richard Stallman <rms@gnu.org>
16012 * emacs-lisp/advice.el (ad-get-advice-info): Change to a function.
16013 (ad-get-advice-info-macro): New macro, like old ad-get-advice-info.
16014 (ad-is-advised, ad-get-advice-info-field)
16015 (ad-set-advice-info-field): Use ad-get-advice-info-macro.
16017 2007-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
16019 * vc-hooks.el (vc-workfile-version): Compatibility alias.
16020 (vc-default-working-revision): Compatibility for backends.
16022 2007-10-15 Juanma Barranquero <lekktu@gmail.com>
16024 * filesets.el (filesets-alist-get): Use `let' rather than `let*'.
16025 (filesets-ormap, filesets-sort-case-sensitive-flag)
16026 (filesets-remake-shortcut, filesets-ingroup-collect-files):
16027 Fix typos in docstrings.
16028 (filesets-conditional-sort, filesets-find-or-display-file)
16029 (filesets-data-get-name, filesets-data-get-data)
16030 (filesets-data-set, filesets-cmd-query-replace-getargs)
16031 (filesets-ingroup-collect): Doc fixes.
16033 2007-10-15 Sam Steingold <sds@gnu.org>
16035 * mail/sendmail.el (sendmail-error-reporting-interactive)
16036 (sendmail-error-reporting-non-interactive): New variables for
16037 sendmail error reporting options to simplify support for imperfect
16038 sendmail emulators.
16039 (sendmail-send-it): Use them instead of list literals.
16041 2007-10-15 Juanma Barranquero <lekktu@gmail.com>
16043 * help-fns.el: Revert previous change; it creates a
16044 dependency loop between advice.el and help-fns.el.
16046 2007-10-15 Juanma Barranquero <lekktu@gmail.com>
16048 * help-fns.el: Require advice when compiling.
16050 2007-10-14 Drew Adams <drew.adams@oracle.com>
16052 * emacs-lisp/ring.el (ring-convert-sequence-to-ring)
16053 (ring-insert+extend, ring-remove+insert+extend, ring-member)
16054 (ring-next, ring-previous): New functions.
16056 2007-10-14 Richard Stallman <rms@gnu.org>
16058 * emacs-lisp/advice.el (documentation): Advice deleted.
16059 Doc for advised functions is now handled at C level.
16060 (ad-stop-advice, ad-start-advice): Don't enable or disable
16061 advice for `documentation'.
16062 (ad-advised-definition-docstring-regexp): Var deleted.
16063 (ad-make-advised-definition-docstring): Store orig name
16064 as text property of string.
16065 (ad-advised-definition-p): Check for text property of docstring.
16067 * help-fns.el (describe-function-1): Find source of advised functions.
16069 2007-10-14 Juri Linkov <juri@jurta.org>
16071 * faces.el (describe-face): Allow handling a string as the face name.
16073 * textmodes/ispell.el (ispell-word): Call `ispell-region' on the
16074 active region in transient-mark-mode.
16075 (ispell-region): Change messages displayed at the start and end of
16076 the spell-checking to be the same.
16078 * startup.el (fancy-startup-tail): Say exactly what does the button
16079 dismiss ("Dismiss this startup screen"). Use text "Never show
16080 it again" for the checkbox after this button.
16081 (fancy-startup-screen, fancy-about-screen): Put point before the
16082 first link, so the user can quickly select links with the keyboard.
16083 (normal-mouse-startup-screen): Add more useful text describing how
16086 2007-10-14 Glenn Morris <rgm@gnu.org>
16088 * progmodes/etags.el (select-tags-table): Disable undo in the
16089 `*Tags Table List*' buffer.
16091 2007-10-13 Eli Zaretskii <eliz@gnu.org>
16093 * dired.el (dired-warn-writable): New face.
16094 (dired-warn-writable-face): New variable.
16095 (dired-font-lock-keywords): Use dired-warn-writable-face, instead
16096 of dired-warning-face, for group- and world-writable files.
16098 2007-10-13 Richard Stallman <rms@gnu.org>
16100 * files.el (directory-abbrev-alist): Doc fix.
16102 2007-10-13 Jari Aalto <jari.aalto@cante.net>
16104 * comint.el (comint-password-prompt-regexp): Add 'LDAP'.
16106 2007-10-12 Martin Rudalics <rudalics@gmx.at>
16108 * frame.el (set-frame-configuration): Assign name parameter only
16109 if it has been set explicitly before.
16111 2007-10-11 Tom Tromey <tromey@redhat.com>
16113 * progmodes/gdb-ui.el (gdb-info-stack-custom): Ensure current
16116 2007-10-10 Richard Stallman <rms@gnu.org>
16118 * emacs-lisp/debug.el (debugger-setup-buffer): Disable undo
16121 * faces.el (face-font-selection-order): Doc fix.
16123 * loadhist.el (unload-feature): Doc fix.
16125 2007-10-13 Glenn Morris <rgm@gnu.org>
16127 * progmodes/octave-mod.el (octave-looking-at-kw): Add doc string.
16128 (octave-re-search-forward-kw, octave-re-search-backward-kw):
16129 Add doc string, and an explicit COUNT argument.
16130 (octave-scan-blocks, octave-beginning-of-defun): Explicitly pass
16131 `inc' to search functions.
16133 * faces.el (face-spec-set): When FRAME is nil, set the default for
16134 new frames (restores pre-2007-09-17 behavior). Doc fix.
16136 2007-10-13 John W. Eaton <jwe@octave.org>
16138 * progmodes/octave-mod.el (octave-looking-at-kw)
16139 (octave-re-search-forward-kw, octave-re-search-backward-kw):
16141 (octave-in-defun-p, calculate-octave-indent)
16142 (octave-blink-matching-block-open, octave-beginning-of-defun)
16143 (octave-auto-fill): Use octave-looking-at-kw instead of looking-at,
16144 to search for regexps that contain case-sensitive keywords.
16145 (octave-beginning-of-defun): Likewise, for octave-re-search-backward-kw.
16146 (octave-scan-blocks): Likewise, for octave-re-search-forward-kw.
16148 2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
16150 * frame.el (select-frame-set-input-focus): Fix typo "max" -> "mac".
16151 Do not use a single clause cond.
16153 * cus-start.el (all): Use test that does not match the X11 version
16156 2007-10-13 Markus Gritsch <m.gritsch@gmail.com> (tiny change)
16158 * progmodes/ebrowse.el (ebrowse-tree-mode): Disable undo in the
16161 2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
16163 * cus-start.el (all): Undo previous change.
16165 2007-10-13 Glenn Morris <rgm@gnu.org>
16167 * woman.el (woman0-rename): Fix paren typo.
16169 * mail/feedmail.el (feedmail-run-the-queue)
16170 (feedmail-look-at-queue-directory):
16171 * mail/reporter.el (reporter-dump-state):
16172 * net/eudc-hotlist.el (eudc-edit-hotlist):
16173 * net/eudc.el (eudc-display-records)
16174 (eudc-filter-duplicate-attributes)
16175 (eudc-distribute-field-on-records, eudc-query-form, eudc-process-form):
16176 * net/eudcb-bbdb.el (eudc-bbdb-filter-non-matching-record)
16177 (eudc-bbdb-query-internal):
16178 * net/eudcb-ldap.el (eudc-ldap-simple-query-internal):
16179 * net/socks.el (socks-build-auth-list):
16180 * progmodes/cc-cmds.el (top level):
16181 * progmodes/cc-styles.el (c-make-styles-buffer-local, c-set-style):
16182 * progmodes/cperl-mode.el (top level, cperl-imenu-addback)
16183 (cperl-write-tags, cperl-tags-treeify):
16184 * progmodes/ebnf-yac.el (ebnf-yac-token-table):
16185 * progmodes/ebnf2ps.el (ebnf-map-name, ebnf-dimensions):
16186 * progmodes/idlw-shell.el (idlwave-shell-filter-bp, top level):
16187 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
16188 (idlwave-toolbar-remove-everywhere):
16189 * progmodes/idlwave.el (idlwave-indent-line)
16190 (idlwave-sintern-keyword-list, idlwave-scan-user-lib-files)
16191 (idlwave-write-paths, idlwave-all-method-classes)
16192 (idlwave-all-method-keyword-classes, idlwave-entry-keywords)
16193 (idlwave-fix-keywords, idlwave-display-calling-sequence)
16194 (idlwave-complete-in-buffer):
16195 * textmodes/org.el (org-export-as-html, org-export-as-ascii)
16196 (org-fast-tag-selection):
16197 * textmodes/reftex-sel.el (reftex-select-item): Use mapc rather
16200 2007-10-13 Dan Nicolaescu <dann@ics.uci.edu>
16202 * diff-mode.el (diff-fine-change): Add :group.
16204 2007-10-12 Dan Nicolaescu <dann@ics.uci.edu>
16206 * cus-start.el (all): Use the same test as the 22.2 branch.
16208 2007-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
16210 * diff-mode.el (diff-current-defun): Force recomputation of
16211 change-log-default-name.
16213 2007-10-12 Chong Yidong <cyd@stupidchicken.com>
16215 * startup.el (fancy-startup-screen): Remove an unnecessary newline
16216 and some leftover logic regarding dedicated frames. If showing
16217 concise startup screen, fit window to buffer.
16218 (command-line-1): If we will be using the splash screen, use
16219 find-file instead of find-file-other-window to find additional files.
16220 Comment out unused code for coping with the old sit-for behavior.
16222 2007-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
16224 * term/xterm.el (xterm-function-map, xterm-alternatives-map): Use the
16225 `meta' modifier consistently, rather than using sometimes meta
16228 2007-10-12 Martin Rudalics <rudalics@gmx.at>
16230 * window.el (handle-select-window): Revert part of 2007-10-08
16231 change setting the input focus.
16233 2007-10-12 Glenn Morris <rgm@gnu.org>
16235 * startup.el (command-line): Do not read abbrev file in batch mode.
16237 * emacs-lisp/byte-opt.el (top level):
16238 * mail/rmail.el (rmail-list-to-menu):
16239 * obsolete/hilit19.el (hilit-mode):
16240 * progmodes/cc-mode.el (c-postprocess-file-styles)
16241 (c-submit-bug-report):
16242 * textmodes/org-publish.el (org-publish-get-plist-from-filename):
16243 * textmodes/reftex.el (reftex-erase-all-selection-and-index-buffers)
16244 (reftex-access-parse-file):
16245 * textmodes/reftex-cite.el (reftex-do-citation)
16246 (reftex-insert-bib-matches):
16247 * textmodes/reftex-ref.el (reftex-offer-label-menu):
16248 * textmodes/reftex-sel.el (reftex-select-unmark):
16249 * textmodes/reftex-toc.el (reftex-toc-do-promote):
16250 * vc-mcvs.el (vc-mcvs-checkin): Use mapc rather than mapcar.
16252 * cus-edit.el (custom-variable-menu, custom-face-menu)
16253 (custom-group-menu): Check init-file-user rather than
16254 user-init-file, in case cus-edit is loaded by site-run-file.
16256 2007-10-11 Dan Nicolaescu <dann@ics.uci.edu>
16258 * vc.el (vc-deduce-fileset): Delete unused code.
16259 (vc-next-action): Fix typos.
16261 2007-10-11 Juanma Barranquero <lekktu@gmail.com>
16263 * bs.el (bs--mark-unmark): New function.
16264 (bs-mark-current, bs-unmark-current): Use it.
16266 2007-10-11 Eric S. Raymond <esr@snark.thyrsus.com>
16269 (vc-diff-internal): Merge a patch by Juanma Barranquero. Also,
16270 temporarily disable the check for his edge case of
16271 vc-diff (stopping it from grinding when called from $HOME), as
16272 it's calling some brittle code in vc-hooks.el.
16273 (with-vc-properties): Fix evaluation time of a macro argument.
16274 * ediff-vers.el (ediff-vc-internal):
16276 * loaddefs.el: Follow up on VC terminology change.
16278 2007-10-11 Juanma Barranquero <lekktu@gmail.com>
16280 * follow.el (follow-stop-intercept-process-output):
16281 Use `follow-call-process-filter' rather than `process-filter'.
16284 2007-10-11 Eric S. Raymond <esr@snark.thyrsus.com>
16286 * vc-hooks.el (vc-registered): Robustify this function a bit
16287 against filenames with no directory component.
16289 2007-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
16291 * international/characters.el: Undo unwanted and unexplained change.
16293 2007-10-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16295 * ps-print.el: Fix the usage of :foreground and :background face
16296 attributes. Reported by Nikolaj Schumacher <n_schumacher@web.de>.
16297 (ps-print-version): New version 6.7.6.
16298 (ps-face-attributes, ps-face-attribute-list, ps-face-background):
16300 (ps-face-foreground-color-p, ps-face-background-color-p)
16301 (ps-face-color-p): New inline funs.
16303 2007-10-10 Carsten Dominik <dominik@science.uva.nl>
16305 * textmodes/org.el (org-additional-option-like-keywords): New constant.
16306 (org-complete): Use `org-additional-option-like-keywords'.
16307 (org-parse-local-options): New function.
16309 2007-10-10 Carsten Dominik <dominik@science.uva.nl>
16311 * textmodes/org.el (org-in-clocktable-p): New function.
16312 (org-clock-report): Only update the table at point, or insert a new one.
16313 (org-clock-goto): New function.
16314 (org-open-file): Use `start-process-shell-command' instead of
16315 `shell-command' with an ampersand.
16316 (org-deadline, org-schedule): New argument REMOVE to remove the
16317 date from the entry.
16318 (org-agenda-schedule, org-agenda-deadline): Pass the prefix
16319 argument to `org-schedule' and `org-deadline'.
16320 (org-trim): Use the correct expressions for beginning and end of
16322 (org-get-cleaned-entry): Trim the string before returning it.
16323 (org-clock-find-position): New function.
16324 (org-clock-into-drawer): New option.
16325 (org-agenda-tags-column): Rename from
16326 `org-agenda-align-tags-to-column'.
16327 (org-agenda-align-tags): Allow negative values for
16328 `org-agenda-tags-column'.
16329 (org-insert-labeled-timestamps-before-properties-drawer): Remove var.
16330 (org-agenda-to-appt): New optional argument FILTER.
16331 (org-completion-fallback-command): New variable.
16332 (org-complete): Use `org-completion-fallback-command'.
16333 (org-find-base-buffer-visiting): Catch the case that there is no
16334 buffer visiting the file.
16335 (org-property-or-variable-value): New function.
16336 (org-todo): Use `org-property-or-variable-value'
16337 (org-agenda-compact-blocks): New option.
16338 (org-prepare-agenda, org-agenda-list): Use `org-agenda-compact-blocks'.
16339 (org-agenda-schedule, org-agenda-deadline):
16340 Call `org-agenda-show-new-time'.
16341 (org-agenda-show-new-time): New argument PREFIX.
16342 (org-colgroup-info-to-vline-list): Fix but that cause a
16343 shift in the vertical lines.
16344 (org-buffer-property-keys): New argument INCLUDE-DEFAULTS.
16345 (org-maybe-renumber-ordered-list, org-cycle-list-bullet)
16346 (org-indent-item): No arg in call to `org-fix-bullet-type'.
16347 (org-fix-bullet-type): Remove argument.
16348 (org-read-date): Check for am/pm twice, to catch the end time.
16349 (org-goto-map): Use `suppress-keymap'.
16350 (org-remember-apply-template): Respect the dynamically scoped
16351 selection character.
16353 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
16355 * frame.el (frame-inherited-parameters): Remove unused `environment'
16356 parameter, and let server.el add `client' when needed.
16358 * server.el (server-create-tty-frame)
16359 (server-create-window-system-frame): Set frame-inherited-parameters.
16361 * frame.el (frame-inherited-parameters): New var.
16362 (make-frame): Use it.
16364 * font-lock.el (lisp-font-lock-keywords-2): Remove let-environment.
16366 * env.el (let-environment): Remove. Unused.
16367 (read-envvar-name): Simplify.
16368 (setenv): Remove unused arg `frame'.
16370 * help-fns.el (describe-variable): Add missing " " for multiline
16371 obsolescence info and missing EOL after global value.
16373 2007-10-10 Eric S. Raymond <esr@snark.thyrsus.com>
16390 * vc-svn.el: Terminology cleanup: workfile-version -> working-revision,
16391 {find,init,next,previous,annotate-*,log}-version ->
16392 {find,init,next,previous,annotate-*,log}-revision,
16393 annotate-focus-version -> annotate-working-revision, The term
16394 'focus' is gone. The term 'revision' is now used consistently
16395 everywhere that reference to a revision ID is intended, replacing
16396 older use of 'version'.
16398 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
16400 * follow.el: Change all instances of "Follow Mode" to "Follow
16401 mode" in docstrings and messages.
16402 (follow-menu-filter): Fix arg passed to `bound-and-true-p'.
16404 2007-10-10 Eric S. Raymond <esr@snark.thyrsus.com>
16406 * vc.el (vc-next-action): Rewrite completely; this principal
16407 entry point now operates on a current fileset selected either
16408 explicitly via VC-Dired or implicitly by visiting a file buffer,
16409 rather than always operating on the file of the current buffer as
16410 in older versions. Rewrite the rest of the mode to match.
16411 (with-vc-properties): Rewrite to operate on a file list.
16412 (with-vc-file): vc-checkin takes a file list argument now.
16413 (vc-post-command-functions): This hook now receives a file list.
16414 (vc-do-command): Take a either a file or a file list as argument.
16415 (vc-deduce-fileset): New function for deducing a file list to
16417 (vc-next-action-on-file, vc-next-action-dired): Remove.
16418 Merge into vc-next-action.
16419 (vc-register): Adapt to the fact that vc-start-entry now takes a
16421 (vc-register-with): New function.
16422 (vc-start-entry): Take a file list argument rather than a
16424 (vc-checkout): Cope with vc-start-entry taking a file list.
16425 (vc-steal-lock): Cope with with-vc-properties taking a
16427 (vc-checkin): Take a file list argument rather than a file argument.
16428 (vc-finish-logentry): Use the filelist passed by vc-start-entry.
16429 (vc-diff-internal): Rewrite for filesets.
16430 (vc-diff-sentinel): New function, tests whether changes were
16431 written into a diff buffer.
16432 (vc-diff): Rewrite for filesets.
16433 (vc-version-diff): Rewrite for filesets.
16434 (vc-print-log): Take a fileset argument.
16435 (vc-revert): Revert the entire selected fileset, not just the
16437 (vc-rollback): Roll back the entire selected fileset, if
16438 possible. No longer accepts a prefix argument.
16439 (vc-update): Merge new changes for the entire selected
16440 fileset, not just the current buffer.
16441 (vc-revert-file): Cope with with-vc-properties taking a file list.
16442 (vc-default-dired-state-info): Add + status suffix if the file is
16444 (vc-annotate-warp-version): Use the new diff machinery.
16445 (vc-log-edit): Take a file list argument rather than a file argument.
16447 2007-10-10 Michael Albinus <michael.albinus@gmx.de>
16449 Sync with Tramp 2.1.11.
16451 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
16452 Pacify byte compiler.
16454 * net/trampver.el: Update release number.
16456 2007-10-09 Richard Stallman <rms@gnu.org>
16458 * play/gamegrid.el (gamegrid-setup-default-font): Use face-spec-set.
16460 2007-10-09 Juanma Barranquero <lekktu@gmail.com>
16462 * follow.el: Require easymenu.
16463 (follow-mode-hook, follow-mode): Doc fixes.
16464 (follow-mode-off-hook): Mark as obsolete.
16466 2007-10-08 Martin Rudalics <rudalics@gmx.at>
16468 * window.el (mouse-autoselect-window-cancel): Don't cancel for
16469 select-window or select-frame events.
16470 (handle-select-window): When autoselecting window set input
16471 focus. Restructure.
16473 * frame.el (focus-follows-mouse): Move to frame.c.
16474 * cus-start.el (all): Add focus-follows-mouse.
16476 2007-10-08 Juanma Barranquero <lekktu@gmail.com>
16478 * bs.el (bs-mode): Make sure global-font-lock-mode doesn't
16479 activate font-locking in the *buffer-selection* buffer.
16480 (bs-show-sorted): Doc fix.
16482 * bs.el (bs--get-marked-string, bs--get-modified-string)
16483 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
16484 (bs--get-mode-name, bs-mode): Fix typos in docstrings.
16485 (bs--format-aux): Doc fix.
16487 2007-10-08 Michaël Cadilhac <michael@cadilhac.name>
16489 * progmodes/gud.el (gud-gud-gdb-command-name): Fix typo in docstring.
16491 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
16493 * progmodes/gud.el (gud-gud-gdb-command-name): New option.
16494 (gud-gdb): New function for old M-x gdb (text command mode).
16495 (gud-gdb-command-name, gdb): Move to...
16497 * progmodes/gdb-ui.el: ...here and adapt doc string.
16498 (gud-gdba-command-name, gdba): Delete.
16500 2007-10-08 Juanma Barranquero <lekktu@gmail.com>
16502 * bs.el: Don't defvar `font-lock-verbose'.
16503 (bs-config-clear, bs-kill, bs-string-show-normally, bs-sort-functions)
16504 (bs--get-file-name): Fix typos in docstrings.
16505 (bs--show-header): Use `dolist' instead of `mapcar'.
16506 (bs-mode): Set `show-trailing-whitespace' to nil.
16507 (bs-buffer-sort-function, bs-mouse-select-other-frame)
16508 (bs-visits-non-file, bs-sort-buffer-interns-are-last, bs-show):
16511 2007-10-08 Adam Hupp <adam@hupp.org> (tiny change)
16513 * progmodes/gud.el (pdb): Specify file for gud-break.
16515 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
16517 * progmodes/gud.el (gdb): Make graphical mode the default and
16518 switch to text command mode if appropriate, i.e., reverse previous
16520 (gud-gdb-marker-filter): Adapt for above change.
16522 * progmodes/gdb-ui.el (gdb-init-1): Don't set the values
16523 gud-minor-mode and gud-marker-filter.
16524 (gdb-fullname-regexp): New variable.
16525 (gud-gdba-marker-filter): Use it to switch to text command
16526 mode if appropriate.
16528 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
16530 * progmodes/gud.el (gud-display-line): Find source buffer even when
16531 GUD buffer has its own frame.
16533 2007-10-08 Jan Djärv <jan.h.d@swipnet.se>
16535 * term/x-win.el (icon-map-list): Set to nil for 22.1 compatibility.
16537 2007-10-08 Jan Djärv <jan.h.d@swipnet.se>
16539 * term/x-win.el (x-gtk-stock-map): Version is 22.2.
16541 2007-10-08 Martin Rudalics <rudalics@gmx.at>
16543 * allout.el (allout-before-change-handler): Replace got-char by
16546 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
16548 * vc-svn.el (vc-svn-resolve-when-done, vc-svn-find-file-hook): New funs.
16549 Used to try and automatically enabled smerge-mode in the presence of
16550 conflicts and to call `svn resolved' when the conflicts are gone.
16551 (vc-svn-parse-status): Remember the svn-specific status.
16553 2007-10-08 Eli Zaretskii <eliz@gnu.org>
16555 * menu-bar.el (menu-bar-search-documentation-menu): Rename from
16556 menu-bar-apropos-menu. All users changed.
16557 (menu-bar-help-menu): Change menu symbols to better match the text
16558 displayed by the menu.
16560 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
16562 * files.el (file-name-sans-versions): Use [:alnum:] and also allow
16565 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
16567 * pcvs-defs.el (cvs-mode-map): Bind TAB and backtab.
16569 * log-view.el (log-view-mode-map): Likewise.
16571 * diff-mode.el (diff-mode-shared-map): Likewise.
16573 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
16575 * files.el (file-name-sans-versions): Also allow `A-Z'.
16577 * vc.el: Mention all supported VC backends.
16579 2007-10-08 Richard Stallman <rms@gnu.org>
16581 * wid-edit.el (widget-specify-button): Don't merge mouse-face with
16582 neighbouring buttons.
16584 2007-10-08 Andreas Schwab <schwab@suse.de>
16586 * files.el (file-name-sans-versions): Also allow `_'.
16588 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
16590 * files.el (file-name-sans-versions): Allow - and a-z in version names.
16592 * log-view.el (log-view-mode-map, log-view-mode-menu):
16593 Bind log-view-annotate-version.
16594 (log-view-beginning-of-defun, log-view-end-of-defun)
16595 (log-view-annotate-version): New functions.
16596 (log-view-mode): Use log-view-beginning-of-defun and
16597 log-view-end-of-defun.
16599 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
16601 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix staging.
16603 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
16605 * wid-edit.el (widget-image-insert): Don't merge mouse-face with
16606 neighbouring buttons.
16608 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16609 Recognize gcc's use of "note" for informational messages.
16611 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
16613 * textmodes/css-mode.el (css-electric-keys): electrick->electric.
16614 (css-mode): Update correspondingly.
16616 2007-10-08 Dan Nicolaescu <dann@ics.uci.edu>
16618 * vc-git.el (vc-git-log-view-mode): Add font-lock patterns for
16619 Signed-off-by, Acked-by and Merge.
16621 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
16623 * ediff-init.el (ediff-verbose-p): This var is not a constant.
16625 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
16627 * vc-mtn.el: New file.
16629 * vc-hooks.el (vc-handled-backends): Add Mtn.
16631 2007-10-08 Eli Zaretskii <eliz@gnu.org>
16633 * files.el (find-file, find-file-other-window)
16634 (find-file-other-frame, find-file-existing, find-file-read-only)
16635 (find-file-read-only-other-window)
16636 (find-file-read-only-other-frame)
16637 (find-alternate-file-other-window, find-alternate-file): Doc fixes.
16639 2007-10-08 Nick Roberts <nickrob@snap.net.nz>
16641 * progmodes/gud.el (gdb-ready): New variable.
16642 (gdb): Set it to nil. Set gud-running to nil here...
16643 (gud-common-init): ...instead of here.
16645 * progmodes/gdb-ui.el (gdba, gdb-send, gdb-source-info):
16646 Use gdb-ready. Discard input until GDB is ready to accept it.
16648 2007-10-08 Martin Rudalics <rudalics@gmx.at>
16650 * dired.el (dired-warning): Inherit from font-lock-warning-face to
16651 make it show up with eight colors.
16653 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
16655 * diff-mode.el (diff-sanity-check-hunk): Fix up the case when unified
16656 diffs are concatenated with no intervening line.
16658 2007-10-08 Dave Love <fx@gnu.org>
16660 * progmodes/python.el: Merge changes from Dave Love's v2007-Sep-10.
16661 (python-font-lock-keywords): Update to the 2.5 version of the language.
16662 (python-quote-syntax): Let-bind font-lock-syntactic-keywords to nil.
16663 (python-backspace): Only behave funny in code.
16664 (python-compilation-regexp-alist): Add PDB stack trace regexp.
16665 (inferior-python-mode): Add PDB prompt regexp.
16666 (python-fill-paragraph): Refine the fenced-string regexp.
16667 (python-find-imports): Handle imports spanning several lines.
16668 (python-mode): Add `class' to hideshow support.
16670 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
16672 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
16673 Use add-log-buffer-file-name-function rather than binding
16674 buffer-file-name, so we don't end up calling change-log-mode in *cvs*
16675 when `fi' is the ChangeLog file itself.
16677 * outline.el (outline-flag-region): Use front-advance.
16679 2007-10-08 Ilya Zakharevich <ilyaz@cpan.org>
16681 * progmodes/cperl-mode.el: Merge upstream 5.23.
16682 (cperl-where-am-i): Remove function.
16683 (cperl-backward-to-noncomment): Don't go too far when skipping POD/HEREs
16684 (cperl-sniff-for-indent): De-invert [string] and [comment].
16685 When looking for label, skip s:m:y:tr.
16686 (cperl-indent-line): Likewise.
16687 (cperl-mode): Don't assume `font-lock-multiline' is auto-local.
16688 (cperl-windowed-init): Wrong `ps-print' handling.
16689 Both thanks to Chong Yidong.
16690 (cperl-look-at-leading-count): Could fail with unfinished RExen.
16691 (cperl-find-pods-heres): If the second part of s()[] is missing,
16692 don't try to highlight delimiters...
16694 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
16696 * progmodes/compile.el (compilation-get-file-structure): Complete last
16697 change by also using spec-directory in the puthash.
16699 2007-10-08 Riccardo Murri <riccardo.murri@gmail.com>
16701 * vc-bzr.el (vc-bzr-file-name-relative): Use 'when' instead of 'and'.
16702 (vc-bzr-status): Fix shadowing of variable 'status'.
16703 (vc-bzr-workfile-version): Use correct path to 'last-revision' file.
16704 Use `expand-file-name' instead of `concat'.
16705 (vc-bzr-annotate-command): Use option name '--long' instead of '-l'.
16706 Update annotation line regexp. Fixes launchpad.net [Bug 137435].
16708 2007-10-08 Jason Rumney <jasonr@gnu.org>
16710 * frame.el (focus-follows-mouse): Doc-fix. Change default on w32.
16712 2007-10-08 Richard Stallman <rms@gnu.org>
16714 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Make defcustom.
16715 Add `safe-local-variable' property.
16716 (lisp-body-indent): Likewise.
16718 2007-10-08 Richard Stallman <rms@gnu.org>
16720 * files.el (hack-local-variables-confirm): Rename arg VARS to ALL-VARS.
16723 2007-10-08 Martin Rudalics <rudalics@gmx.at>
16725 * files.el (backup-buffer-copy): Try to overwrite old backup first.
16727 2007-10-08 Martin Rudalics <rudalics@gmx.at>
16729 * repeat.el (repeat): Use last-repeatable-command instead of
16730 real-last-command. Run pre- and post-command hooks for
16731 self-insertion. Update doc-string.
16733 2007-10-08 Alexandre Julliard <julliard@winehq.org>
16735 * vc-git.el (vc-git-state): Call git-add --refresh to update the
16737 (vc-git-workfile-unchanged-p): Delegate implementation to vc-git-state.
16738 (vc-git-create-repo): Fix invalid command.
16740 2007-10-08 Richard Stallman <rms@gnu.org>
16742 * textmodes/flyspell.el (flyspell-mode):
16743 Catch errors in flyspell-mode-on.
16745 2007-10-09 Juanma Barranquero <lekktu@gmail.com>
16747 * term/x-win.el (x-alternatives-map): Remove spurious parenthesis.
16749 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
16751 * international/encoded-kb.el (encoded-kbd-setup-display):
16752 Use input-decode-map rather than local-key-translation-map.
16754 * term/rxvt.el (rxvt-alternatives-map): New map.
16755 (terminal-init-rxvt): Use it.
16756 Bind rxvt-function-map in input-decode-map.
16758 * term/xterm.el (xterm-alternatives-map): New map.
16759 (terminal-init-xterm): Use it.
16760 Bind xterm-function-map in input-decode-map.
16762 * term/x-win.el (x-alternatives-map): New var.
16763 (x-setup-function-keys): Use it.
16765 * help-fns.el (describe-variable): Slightly change the layout of
16766 meta-info to separate it better from the docstring.
16767 Standardize insertion of extra empty lines in various circumstances.
16769 * diff-mode.el (diff-hunk-style): New fun.
16770 (diff-end-of-hunk): Use it.
16771 (diff-context->unified): Use the new `apply' undo element,
16772 if applicable, so as to save undo-log space.
16773 (diff-fine-change): New face.
16774 (diff-fine-highlight-preproc): New function.
16775 (diff-fine-highlight): New command.
16776 (diff-mode-map, diff-mode-menu): Add diff-fine-highlight.
16778 * smerge-mode.el (smerge-refine-chopup-region): Add `preproc' argument.
16779 (smerge-refine-highlight-change): Add `props' argument.
16780 (smerge-refine-subst): New function holding most of smerge-refine.
16781 (smerge-refine): Use it.
16783 2007-10-08 Eric S. Raymond <esr@snark.thyrsus.com>
16785 * vc.el (vc-default-wash-log): Remove unused code, the
16786 log washers all live in the backends now.
16787 (vc-default-comment-history): Correct for the fact
16788 that wash-log is argumentless in the new API.
16790 2007-10-08 Michael Albinus <michael.albinus@gmx.de>
16792 * net/tramp.el (tramp-find-foreign-file-name-handler): Check also host.
16793 (tramp-maybe-send-script): Apply `member' but `memq'.
16794 (tramp-advice-file-expand-wildcards): Simplify implementation.
16796 2007-10-08 Juanma Barranquero <lekktu@gmail.com>
16798 * follow.el (follow-mode): Don't run hooks twice. Use `when'.
16800 * mb-depth.el (minibuf-depth-indicator-function): New variable.
16801 (minibuf-depth-setup-minibuffer): Use it.
16803 2007-10-07 Glenn Morris <rgm@gnu.org>
16805 * simple.el (bad-packages-alist): Clarify Semantic and CEDET
16808 2007-10-06 Juri Linkov <juri@jurta.org>
16810 * textmodes/fill.el (fill-paragraph-or-region): New function.
16812 * bindings.el (esc-map): Bind M-q to fill-paragraph-or-region
16813 instead of fill-paragraph.
16815 * tutorial.el (tutorial--default-keys): Replace fill-paragraph
16816 with fill-paragraph-or-region. Suspend command is now the same
16817 `suspend-frame' on window systems and on tty.
16819 * image.el (image-type): Check if image-types is bound to not fail
16822 * delsel.el (delete-selection-pre-hook):
16823 * emulation/cua-base.el (cua-paste): Check if mouse-region-match
16824 is fbound to not fail on mouseless tty.
16826 2007-10-06 Michael Albinus <michael.albinus@gmx.de>
16828 * net/tramp.el (top): Move loading of tramp-util.el and
16829 tramp-vc.el to tramp-compat.el.
16830 (tramp-make-tramp-temp-file): Complete rewrite. Create remote
16831 temporary file if possible, in order to avoid a security hole.
16832 (tramp-do-copy-or-rename-file-out-of-band)
16833 (tramp-maybe-open-connection): Call `tramp-make-tramp-temp-file'
16834 with DONT-CREATE, because the connection is not setup yet.
16835 (tramp-handle-process-file): Rewrite temporary file handling.
16836 (tramp-completion-mode): New defvar.
16837 (tramp-completion-mode-p): Use it.
16839 * net/tramp-compat.el (top): Load tramp-util.el and tramp-vc.el.
16841 * net/tramp-fish.el (tramp-fish-handle-process-file):
16842 Rewrite temporary file handling.
16844 2007-10-06 Eric S. Raymond <esr@snark.thyrsus.com>
16846 * vc.el: Workfile version -> focus version change. Port various
16847 comments from new VC to reduce the noise in the diff.
16848 Patch in the new vc-create-repo function to go with the
16849 header comment about it already present.
16850 There are no changes to existing logic in this patch.
16851 (vc-revert-buffer1): Rename to vc-revert-buffer-internal.
16853 2007-10-06 Aaron Hawley <aaronh@garden.org>
16855 * autoinsert.el (auto-insert-alist): Add a Texinfo entry.
16857 2007-10-05 Chris Moore <dooglus@gmail.com>
16859 * server.el (server-kill-new-buffers): Doc fix.
16861 2007-10-05 John W. Eaton <jwe@octave.org>
16863 * progmodes/octave-mod.el (octave-abbrev-table): Add "until".
16864 (octave-begin-keywords): Add "do".
16865 (octave-end-keywords): Remove "end".
16866 (octave-reserved-words): Add "end". Remove "all_va_args",
16867 "gplot", and 'gsplot".
16868 (octave-text-functions): Remove "gset", "gshow", "set", and "show".
16869 (octave-variables): Remove "IMAGEPATH", "INFO_FILE",
16870 "INFO_PROGRAM", "LOADPATH", "__error_text__", "automatic_replot",
16871 "default_return_value", "define_all_return_values",
16872 "do_fortran_indexing", "empty_list_elements_ok",
16873 "gnuplot_has_multiplot", "implicit_str_to_num_ok",
16874 "ok_to_lose_imaginary_part", "prefer_column_vectors",
16875 "prefer_zero_one_indexing", "propagate_empty_matrices",
16876 "resize_on_range_error", "treat_neg_dim_as_zero",
16877 "warn_assign_as_truth_value", "warn_comma_in_global_decl",
16878 "warn_divide_by_zero", "warn_function_name_clash",
16879 "warn_missing_semicolon", "whitespace_in_literal_matrix".
16880 Add "DEFAULT_EXEC_PATH", "DEFAULT_LOADPATH", "IMAGE_PATH",
16881 "crash_dumps_octave_core", "sighup_dumps_octave_core",
16882 "sigterm_dumps_octave_core".
16883 (octave-block-match-alist): Remove "end" from block-end keywords.
16884 (octave-mode): Update ftp site address.
16886 2007-10-05 Dan Nicolaescu <dann@ics.uci.edu>
16888 * vc.el: Reorder functions, no code changes.
16890 2007-10-04 Michael Albinus <michael.albinus@gmx.de>
16892 * net/tramp.el (tramp-make-temp-file): Move to tramp-compat.el.
16893 (tramp-do-copy-or-rename-file-directly): Handle tmpfile only in
16894 the cond clauses where needed.
16895 (tramp-handle-write-region): Rearrange code for proper handling of
16898 * net/tramp-compat.el (tramp-compat-make-temp-file): New defsubst.
16901 * net/tramp-fish.el:
16902 * net/tramp-ftp.el:
16903 * net/tramp-smb.el: Rename `tramp-make-temp-file' to
16904 `tramp-compat-make-temp-file'.
16906 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
16908 * image-dired.el (image-dired-image-at-point-p): Fix typo in docstring.
16910 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
16912 * emacs-lisp/copyright.el (copyright-update): Don't update if the file
16913 already uses a more recent copyright version than the "current" one.
16915 2007-10-03 Michaël Cadilhac <michael@cadilhac.name>
16917 * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-reset-slice)
16918 (doc-view-insert-image): Minor aesthetical docstring changes.
16920 2007-10-03 Tassilo Horn <tassilo@member.fsf.org>
16922 * doc-view.el (doc-view): Don't ignore pdf and dvi files when
16923 completing filename.
16924 (doc-view-search-internal): Docstring change.
16926 2007-10-03 Michael Albinus <michael.albinus@gmx.de>
16928 * net/tramp.el (top): Add tramp-compat to `tramp-unload-hook'.
16929 (tramp-file-name-handler-alist):
16930 Add `tramp-handle-insert-file-contents-literally'. Needed for XEmacs.
16931 (tramp-make-temp-file): Use `make-temp-name'. `make-temp-file',
16932 used before, creates the file already, which is not desired.
16933 (tramp-do-copy-or-rename-file-directly): Simplify handling of
16935 (tramp-handle-insert-file-contents): Assign the result in the
16937 (tramp-handle-insert-file-contents-literally): New defun.
16938 (tramp-completion-mode-p): Revert change from 2007-09-24.
16939 Checking for `return' etc as last character is not sufficient, for
16940 example in dired-mode when entering <g> (revert-buffer) or
16943 * net/tramp-compat.el (top): Add also compatibility code for loading
16944 appropriate timer package.
16945 (tramp-compat-copy-tree): Check for `subrp' and `symbol-file' in
16946 order to avoid autoloading problems.
16948 * net/tramp-fish.el:
16949 * net/tramp-smb.el: Move further compatibility code to tramp-compat.el.
16951 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Handle the case
16952 where the second parameter of `copy-file' or `rename-file' is a
16953 remote file but not via ftp.
16955 2007-10-02 Richard Stallman <rms@gnu.org>
16957 * frame.el (cursor-in-non-selected-windows): Doc fix.
16959 2007-10-01 Thien-Thi Nguyen <ttn@gnuvola.org>
16961 * play/zone.el (zone): Let-bind show-trailing-whitespace to nil.
16962 Suggested by Chris Moore <christopher.ian.moore@gmail.com>.
16964 2007-10-01 Jay Belanger <jay.p.belanger@gmail.com>
16966 * calc/calc-math.el (math-largest-emacs-expt): Handle the cases
16967 when `expt' doesn't give range errors.
16969 2007-10-01 Markus Triska <markus.triska@gmx.at>
16971 * calc/calc-math.el (math-smallest-emacs-expt):
16972 Make the computation more robust.
16974 2007-09-30 David Kastrup <dak@gnu.org>
16976 * startup.el (argv): Alias for `command-line-args-left' to use as
16977 `(pop argv)' inside of --eval command sequences. Allows for
16978 passing shell commands into Emacs verbatim without need for Lisp
16981 * autorevert.el (auto-revert-handler): In `auto-revert-tail-mode',
16982 check only for changed size.
16983 (auto-revert-tail-handler): Get size from caller. If the file has
16984 shrunk, tail the whole file again (the file presumably has been
16987 * woman.el (woman-topic-all-completions, woman-mini-help):
16988 Fix fallout from 2007-09-07 introduction of `dolist' when the list
16989 actually was being manipulated in the loop.
16990 (woman-Cyg-to-Win, woman-pre-process-region)
16991 (woman-horizontal-escapes, woman-if-body, woman-unescape)
16992 (woman-strings, woman-special-characters, woman1-hc)
16993 (woman-change-fonts, woman-find-next-control-line):
16994 Use `match-beginning' rather than `match-string' when the result is
16995 just used as a flag.
16997 2007-09-30 Michael Albinus <michael.albinus@gmx.de>
16999 * net/tramp-compat.el: New file.
17002 * net/tramp-fish.el:
17003 * net/tramp-smb.el:
17005 * net/trampver.el: Move compatibility code to tramp-compat.el.
17006 Apply `mapc' instead of `mapcar' when the code needs side effects
17007 only. Move utf-8 coding cookie to the second line.
17009 2007-09-30 Reiner Steib <Reiner.Steib@gmx.de>
17011 * term/x-win.el (x-gtk-stock-map): Add Gnus and MH-E icons.
17012 Improve custom type.
17013 (icon-map-list): Make it customizable. Document how to disable
17016 2007-09-30 Richard Stallman <rms@gnu.org>
17018 * play/zone.el (zone-hiding-modeline): Use mode-line-format.
17020 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
17022 * t-mouse.el (gpm-mouse-mode): Rename from t-mouse-mode. Rewrite.
17023 (t-mouse-mode): New compatibility alias.
17025 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
17027 * server.el (server-delete-client): Only delete the terminal if it
17030 2007-09-28 Michael Albinus <michael.albinus@gmx.de>
17032 * net/tramp.el (with-file-property, with-connection-property):
17033 Highlight as keyword.
17034 (tramp-rfn-eshadow-setup-minibuffer)
17035 (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
17036 (tramp-set-file-uid-gid, tramp-do-copy-or-rename-file-via-buffer)
17037 (tramp-do-copy-or-rename-file-directly)
17038 (tramp-do-copy-or-rename-file-out-of-band)
17039 (tramp-handle-shell-command, tramp-get-debug-buffer)
17040 (tramp-send-command-and-read, tramp-equal-remote)
17041 (tramp-get-local-gid): Pacify byte-compiler.
17042 (tramp-handle-file-name-directory): Result shall not be expanded.
17043 (tramp-find-foreign-file-name-handler): Rewrite.
17044 (tramp-dissect-file-name): Add optional parameter NODEFAULT.
17046 * net/tramp-cache.el (tramp-cache-print): Pacify byte-compiler.
17048 * net/tramp-fish.el (tramp-fish-handle-expand-file-name):
17049 Apply `tramp-completion-mode-p'.
17050 (tramp-fish-handle-set-file-times)
17051 (tramp-fish-handle-executable-find)
17052 (tramp-fish-handle-process-file, tramp-fish-get-file-entries)
17053 (tramp-fish-retrieve-data): Pacify byte-compiler.
17055 * net/tramp-gw.el (tramp-gw-basic-authentication):
17056 Call `tramp-read-passwd' with first parameter `nil'.
17058 2007-09-28 Glenn Morris <rgm@gnu.org>
17060 * mail/supercite.el (sc-attribs-filter-namelist): Use mapc rather
17063 * textmodes/tex-mode.el (tex-suscript-height-ratio)
17064 (tex-suscript-height-minimum): New customizable variables.
17065 (tex-suscript-height): New function.
17066 (superscript, subscript): Set height using tex-suscript-height
17067 rather than fixing at 0.8.
17068 (tex-fontify-script, tex-font-script-display): Add :version tag.
17070 2007-09-27 Juanma Barranquero <lekktu@gmail.com>
17072 * progmodes/python.el (python-eldoc-function): Doc fix.
17074 2007-09-27 Glenn Morris <rgm@gnu.org>
17076 * image.el (image-type-auto-detected-p): Doc fix. Don't detect an
17077 image if it is not in image-type-auto-detectable, or is there with
17080 2007-09-27 Michael Albinus <michael.albinus@gmx.de>
17082 * net/tramp.el (tramp-maybe-open-connection): Make test for alive
17083 connection more robust.
17085 2007-09-26 Juanma Barranquero <lekktu@gmail.com>
17087 * emacs-lisp/eldoc.el (eldoc-function-argstring-format):
17088 Deal with the case that special &keywords are at the beginning or
17089 end of the argument list. Also add some (incomplete) support for
17090 non-standard arglists.
17092 2007-09-26 Juanma Barranquero <lekktu@gmail.com>
17094 * emacs-lisp/eldoc.el (eldoc-message-commands-table-size)
17095 (eldoc-message-commands, eldoc-current-idle-delay)
17096 (eldoc-function-argstring-format): Fix typos in docstrings.
17098 2007-09-26 Jay Belanger <jay.p.belanger@gmail.com>
17100 * calc/calc-units.el (calc-convert-units)
17101 (calc-convert-temperature): Remove unnecessary colons.
17103 2007-09-26 Bastien Guerry <bzg@altern.org>
17105 * textmodes/org-export-latex.el (org-export-latex-tables-verbatim):
17107 (org-export-latex-remove-from-headlines): Name changed because of typo.
17108 (org-export-latex-quotation-marks-convention): Option removed.
17109 (org-export-latex-make-preamble): Handle the DATE option.
17110 (org-export-latex-cleaned-string): Now the only cleaning function,
17111 synched up with org.el.
17112 (org-export-latex-lists, org-export-latex-parse-list)
17113 (org-export-list-to-latex): New functions.
17115 2007-09-26 Carsten Dominik <dominik@science.uva.nl>
17117 * textmodes/org.el (org-kill-is-subtree-p): Use `org-outline-regexp'.
17118 (org-outline-regexp): New constant.
17119 (org-remember-handler): Throw error when the target file is not in
17121 (org-cleaned-string-for-export): No longer call
17122 `org-export-latex-cleaned-string' with an argument.
17123 (org-get-tags): Returns now a list, not a string.
17124 (org-get-tags-string): New function.
17125 (org-archive-subtree): No need to split return of `org-get-tags'.
17126 (org-set-tags, org-entry-properties): Call `org-get-tags-string'
17127 instead of `org-get-tags'.
17128 (org-agenda-format-date): Rename from `org-agenda-date-format'.
17129 (org-time-from-absolute, org-agenda-format-date-aligned): New funs.
17130 (org-compatible-face): New argument INHERITS. Inherit from this
17132 (org-level-1, org-level-2, org-level-3, org-level-4)
17133 (org-level-5, org-level-6, org-level-7, org-level-8)
17134 (org-special-keyword, org-drawer, org-column, org-warning)
17135 (org-archived, org-todo, org-done, org-headline-done, org-table)
17136 (org-formula, org-code, org-agenda-structure)
17137 (org-scheduled-today, org-scheduled-previously)
17138 (org-upcoming-deadline, org-time-grid): Call `org-compatible-face'
17140 (org-get-heading): New argument NO-TAGS.
17141 (org-fast-tag-selection-include-todo): Made defvar instead of
17142 defcustom, feature is not deprecated.
17143 (org-remember-store-without-prompt): New default value t.
17144 (org-todo-log-states): New variable.
17145 (org-set-regexps-and-options): #+TODO is an alias for SEQ_TODO.
17146 Compute the log states.
17147 (org-goto-map): More commands copied from global map. Also bind
17149 (org-goto): Made into a general lookup command.
17150 (org-get-location): Complete rewrite.
17151 (org-goto-exit-command): New variable.
17152 (org-goto-selected-point): New variable.
17153 (org-goto-ret, org-goto-left, org-goto-right, org-goto-quit):
17154 Set the new variables.
17155 (org-paste-subtree): Whitespace insertion strategy revised.
17156 (org-remember-apply-template): Protect v-A from the possibility
17157 that v-a might be nil.
17158 (org-remember-handler): Insertion rules revised.
17159 (org-todo): Respect org-todo-log-states.
17160 (org-up-heading-safe): New function.
17161 (org-entry-get-with-inheritance): Use `org-up-heading-safe'.
17163 2007-09-26 Dan Nicolaescu <dann@ics.uci.edu>
17165 * progmodes/cc-cmds.el (c-indent-line-or-region): Only indent the
17166 region if in transient-mark-mode.
17168 2007-09-26 Juanma Barranquero <lekktu@gmail.com>
17170 * calc/calc-ext.el (calc-init-extensions, calc-reset):
17171 * calc/calc-help.el (calc-full-help):
17172 * calc/calc-misc.el (another-calc):
17173 * calc/calc-store.el (calc-var-name-map):
17174 * calc/calc-stuff.el (calc-flush-caches):
17175 * calc/calc-units.el (math-build-units-table):
17176 * calc/calc.el (calc-digit-map, calc-dispatch-map, calc-mode)
17178 * calendar/icalendar.el (icalendar--format-ical-event)
17179 (icalendar--convert-ical-to-diary):
17180 * emacs-lisp/authors.el (authors):
17181 * emacs-lisp/cust-print.el (custom-print-install)
17182 (custom-print-uninstall):
17183 * emacs-lisp/disass.el (disassemble-1):
17184 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
17185 * emacs-lisp/edebug.el (byte-compile-resolve-functions):
17186 * emacs-lisp/elint.el (elint-current-buffer, elint-check-defun-form)
17187 (elint-check-let-form, elint-check-condition-case-form)
17188 (elint-initialize):
17189 * emacs-lisp/elp.el (elp-results):
17190 * emacs-lisp/generic.el (generic-mode-internal):
17191 * emacs-lisp/re-builder.el (reb-delete-overlays):
17192 * emacs-lisp/regi.el (regi-interpret):
17193 * emacs-lisp/sregex.el (sregex--char-aux):
17194 * emulation/cua-rect.el (cua--deactivate-rectangle)
17195 (cua--highlight-rectangle, cua--rectangle-post-command):
17196 * emulation/viper-keym.el (viper-toggle-key, viper-ESC-key):
17197 * emulation/viper-macs.el (viper-describe-kbd-macros)
17198 (viper-describe-one-macro):
17199 * emulation/viper-util.el (viper-setup-master-buffer):
17200 * emulation/viper.el (set-viper-state-in-major-mode):
17201 * international/mule-diag.el (describe-current-coding-system):
17202 * language/ethio-util.el (ethio-fidel-to-sera-buffer):
17203 * mail/emacsbug.el (report-emacs-bug):
17204 * net/ange-ftp.el (ange-ftp-call-chmod, ange-ftp-parse-bs2000-listing):
17205 * obsolete/hilit19.el (hilit-unhighlight-region)
17206 (hilit-set-mode-patterns):
17207 * play/solitaire.el (solitaire-check, solitaire-solve):
17208 * play/zone.el (zone-pgm-rotate):
17209 * progmodes/ada-mode.el (ada-save-exceptions-to-file):
17210 * progmodes/ada-prj.el (ada-prj-display-page):
17211 * progmodes/delphi.el (delphi-search-directory, delphi-find-unit-file)
17212 (delphi-debug-mode-map, delphi-mode-map, delphi-mode):
17213 * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-view-exit-fn)
17214 (ebrowse-member-mode, ebrowse-save-tree-as, ebrowse-save-class):
17215 * progmodes/sh-script.el (sh-make-vars-local)
17216 (sh-reset-indent-vars-to-global-values):
17217 * progmodes/sql.el (top):
17218 * progmodes/vhdl-mode.el (vhdl-set-style, vhdl-regress-line):
17219 * progmodes/xscheme.el (top):
17220 * textmodes/artist.el (artist-mt-get-symbol-from-keyword-sub)
17221 (artist-go-retrieve-from-symbol-sub, artist-go-get-symbol-shift-sub)
17222 (artist-fc-retrieve-from-symbol-sub, artist-vaporize-line)
17223 (artist-vaporize-lines, artist-ellipse-compute-fill-info)
17224 (artist-submit-bug-report):
17225 * textmodes/flyspell.el (flyspell-delay-commands)
17226 (flyspell-deplacement-commands):
17227 * textmodes/table.el (table--generate-source-epilogue, table-insert)
17228 (table--generate-source-cells-in-a-row, table--make-cell-map)
17229 (*table--cell-describe-bindings): Use `mapc' rather than `mapcar'.
17231 2007-09-25 Juanma Barranquero <lekktu@gmail.com>
17233 * allout.el (produce-allout-mode-map, allout-process-exposed):
17234 * ansi-color.el (ansi-color-make-color-map):
17235 * autoinsert.el (auto-insert):
17236 * bookmark.el (bookmark-bmenu-list, bookmark-show-all-annotations):
17237 * dired-aux.el (dired-create-files):
17238 * dired.el (dired-restore-desktop-buffer):
17239 * ediff-diff.el (ediff-setup-fine-diff-regions):
17240 * ediff-mult.el (ediff-intersect-directories)
17241 (ediff-redraw-directory-group-buffer, ediff-dir-diff-copy-file)
17242 (ediff-redraw-registry-buffer):
17243 * ediff-ptch.el (ediff-fixup-patch-map):
17244 * ediff-util.el (ediff-toggle-multiframe, ediff-toggle-use-toolbar)
17245 (ediff-really-quit, ediff-clear-diff-vector):
17246 * emerge.el (emerge-really-quit):
17247 * ffap.el (ffap-replace-file-component):
17248 * filecache.el (file-cache-add-directory)
17249 (file-cache-add-directory-recursively)
17250 (file-cache-add-from-file-cache-buffer, file-cache-delete-file-regexp)
17251 (file-cache-delete-directory, file-cache-files-matching-internal)
17252 (file-cache-display):
17254 * find-lisp.el (find-lisp-insert-directory):
17255 * finder.el (finder-compile-keywords):
17256 * help.el (view-emacs-news):
17257 * hi-lock.el (hi-lock-write-interactive-patterns):
17258 * ido.el (ido-to-end, ido-set-matches-1):
17259 * image-dired.el (image-dired-display-thumbs, image-dired-remove-tag)
17260 (image-dired-mark-tagged-files):
17261 * jka-cmpr-hook.el (jka-compr-get-compression-info):
17262 * printing.el (pr-eval-local-alist, pr-eval-setting-alist):
17263 * ps-print.el (ps-background, ps-begin-file)
17264 (ps-build-reference-face-lists):
17265 * simple.el (clone-buffer):
17266 * startup.el (command-line):
17267 * tempo.el (tempo-insert-template, tempo-is-user-element)
17268 (tempo-forward-mark, tempo-backward-mark):
17269 * woman.el (woman-dired-define-keys): Use `mapc' rather than `mapcar'.
17271 2007-09-25 Glenn Morris <rgm@gnu.org>
17273 * textmodes/tex-mode.el (tex-font-script-display): Doc fix.
17275 * view.el (view-search-no-match-lines): Add a doc string.
17276 Rewrite to simplify and work better.
17278 2007-09-24 Dan Nicolaescu <dann@ics.uci.edu>
17280 * progmodes/cc-mode.el (c-mode-base-map):
17281 Use c-indent-line-or-region instead of c-indent-line.
17283 * indent.el (indent-for-tab-command): First check if the region is
17286 2007-09-24 Michaël Cadilhac <michael@cadilhac.name>
17288 * whitespace.el (whitespace-tickle-timer): Don't install the timer if
17289 whitespace-rescan-timer-time is 0.
17291 2007-09-24 Karl Berry <karl@gnu.org>
17293 * international/mule.el (coding-system-base): Fix doc string grammar.
17295 2007-09-24 Michael Albinus <michael.albinus@gmx.de>
17297 * net/tramp.el (tramp-completion-mode-p): Rename from
17298 `tramp-completion-mode'. Revert logic, check `return', `newline'
17299 and such alike. Packages like Icicles tend to use other completion
17300 characters but `tab' and `space' only.
17302 2007-09-24 Adam Hupp <adam@hupp.org>
17304 * progmodes/python.el (run-python): Import emacs module without
17305 waiting; prevents lockup on error.
17307 2007-09-23 Richard Stallman <rms@gnu.org>
17309 * mail/sendmail.el (mail-bury): Delete the frame
17310 if this frame looks like it was made for this message.
17312 * completion.el (completion-separator-self-insert-command)
17313 (completion-separator-self-insert-autofilling):
17314 If `self-insert-command' has been remapped, use the substitute.
17316 * simple.el (copy-region-as-kill): Doc fix.
17318 * textmodes/org.el (org-confirm-shell-link-function)
17319 (org-confirm-elisp-link-function): Doc fixes.
17321 2007-09-23 Glenn Morris <rgm@gnu.org>
17323 * ses.el (ses-calculate-cell): Don't evaluate unsafe formulae.
17325 2007-09-23 Dan Nicolaescu <dann@ics.uci.edu>
17327 * term/w32-win.el (w32-drag-n-drop): Use mapc instead of mapcar.
17329 * term/tvi970.el (terminal-init-tvi970): Likewise.
17331 * term/sun-mouse.el (print-mouse-format): Likewise.
17333 * term/sun.el (scroll-down-in-place, scroll-up-in-place):
17334 Use forward-line instead of previous-line and next-line.
17336 2007-09-22 Juri Linkov <juri@jurta.org>
17338 * textmodes/org.el (org-confirm-shell-link-function): Doc fix.
17340 * tutorial.el (tutorial--default-keys): Update standard bindings:
17341 rename `iconify-or-deiconify-frame' to `suspend-frame',
17342 and `save-buffers-kill-emacs' to `save-buffers-kill-terminal'.
17344 2007-09-22 Juri Linkov <juri@jurta.org>
17346 * startup.el (fancy-startup-text, fancy-about-text, fancy-startup-tail):
17347 Add help-echo to external links and to links without description.
17348 (fancy-splash-insert): Use help-echo from the 3rd element of the
17349 link specification list, or "Follow this link" if it's nil. Doc fix.
17351 2007-09-22 Juri Linkov <juri@jurta.org>
17353 * startup.el (command-line): Rename `inhibit-startup-message' to
17354 `inhibit-startup-screen'.
17355 (fancy-about-text): Use shorter label for "Ordering Manuals".
17356 (fancy-startup-tail): Add optional arg `concise'. When `concise'
17357 is nil, display a line with "To start..." and 3 links to useful
17358 tasks. Display the "Dismiss" button and "Don't show this message
17359 again" only when concise is non-nil.
17360 (fancy-startup-screen): Call `fancy-startup-tail' with optional
17361 arg `concise'. If CONCISE is non-nil, display a concise version
17362 of the splash screen in another window. Otherwise, switch to the
17363 startup buffer in the same window.
17364 (startup-echo-area-message): Change displayed binding from
17365 C-h C-p (describe-project) to C-h C-a (about-emacs), and change
17366 text "about the GNU system and GNU/Linux" to "about GNU Emacs and
17368 (display-startup-screen): Fix buffer name from "*About GNU Emacs*"
17370 (display-about-screen): Don't check the existence of the buffer
17371 "*About GNU Emacs*".
17372 (display-splash-screen): Make alias to `display-startup-screen'.
17373 (command-line-1): Rename `inhibit-startup-message' to
17374 `inhibit-startup-screen'. Inhibit startup screen when Emacs is
17375 started with command line options "-f", "-funcall", "-e", "-eval",
17376 "-execute", "-insert", "-find-file", "-file", "-visit".
17377 Inhibit startup screen when Emacs is started with a file name only
17378 on tty (i.e. don't inhibit it when started with a file name like
17379 "emacs FILE..." on a window system).
17380 (command-line-1): Simplify logic of displaying the startup screen:
17381 if file-count > 0, then display the concise version in another
17382 window, otherwise display full version in the same window.
17384 * help.el (help-map): Bind C-h C-a to about-emacs.
17385 (help-for-help-internal): Add C-a description to C-h help text.
17387 2007-09-22 Dan Nicolaescu <dann@ics.uci.edu>
17389 * emacs-lisp/checkdoc.el (checkdoc-force-docstrings-flag)
17390 (checkdoc-permit-comma-termination-flag): Autoload the
17391 safe-local-variable setting.
17393 * bookmark.el (bookmark-xemacsp): Remove.
17394 (bookmark-make): Don't use bookmark-xemacsp,
17395 use (featurep 'xemacs) instead.
17397 * speedbar.el (speedbar-frame-mode)
17398 (speedbar-frame-reposition-smartly)
17399 (speedbar-set-mode-line-format, speedbar-reconfigure-keymaps)
17400 (speedbar-check-vc): Remove use of non-existent variable
17401 dframe-xemacsp, use (featurep 'xemacs) instead.
17403 * indent.el (indent-for-tab-command): Indent the region if
17404 transient-mark-mode and the region is active.
17406 2007-09-21 Francesco Potortì <pot@gnu.org>
17408 * progmodes/octave-inf.el (inferior-octave-mode): Use add-hook to
17409 add inferior-octave-directory-tracker to the buffer-local value
17410 of comint-input-filter-functions.
17412 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
17414 * xt-mouse.el (xterm-mouse-mode): Re-enable suspend-tty-functions.
17416 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
17418 * frame.el (suspend-frame): Call `iconify-or-deiconify-frame' also
17421 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
17423 * startup.el (normal-top-level): Remove DISPLAY from
17424 process-environment to let it be computed dynamically in callproc.c.
17426 * frame.el (frame-initialize, make-frame):
17427 * faces.el (tty-set-up-initial-frame-faces):
17428 * env.el (setenv): Don't set display-environment-variable.
17430 * server.el (server-getenv-from): Remove. Use getenv-internal instead.
17431 (server-create-tty-frame): Don't set unused `tty' property.
17432 Set `display' instead of display-environment-variable.
17433 (server-create-window-system-frame): No display-environment-variable.
17435 2007-09-21 Michael Albinus <michael.albinus@gmx.de>
17437 * rfn-eshadow.el (rfn-eshadow-setup-minibuffer-hook)
17438 (rfn-eshadow-update-overlay-hook): New defvars.
17439 (rfn-eshadow-setup-minibuffer, rfn-eshadow-update-overlay):
17442 * net/tramp.el (tramp-rfn-eshadow-overlay): New defvar.
17443 (tramp-rfn-eshadow-setup-minibuffer)
17444 (tramp-rfn-eshadow-update-overlay): New defuns. Hook into
17447 * net/tramp-smb.el (tramp-smb-errors): Add error message for call
17450 2007-09-21 Glenn Morris <rgm@gnu.org>
17452 * obsolete/sun-fns.el (emacs-quit-menu): Remove emacstool-related code.
17453 * term/sun-mouse.el (suspend-emacstool): Remove.
17454 * term/sun.el: Remove emacstool-related code.
17456 * emacs-lisp/bytecomp.el (byte-compile-warnings)
17457 (byte-compile-warnings-safe-p): Add `mapcar'.
17458 (byte-compile-warning-types): Add mapcar and make-local.
17459 (byte-compile-normal-call): Add option to suppress mapcar warning.
17460 (top-level): Use mapc rather than mapcar in eval-when-compile.
17462 * textmodes/tex-mode.el (tex-validate-region): Handle escaped parens.
17463 (tex-next-unmatched-eparen, tex-last-unended-eparen): New functions.
17464 (latex-forward-sexp-1, latex-backward-sexp-1): Doc fix.
17465 Handle escaped parens.
17466 (latex-forward-sexp): Doc fix.
17468 * eshell/esh-mode.el (eshell-output-filter-functions):
17469 Add eshell-postoutput-scroll-to-bottom.
17471 * loadup.el: Remove termdev.
17473 * progmodes/fortran.el (fortran-mode-abbrev-table, fortran-line-length):
17474 * progmodes/f90.el (f90-mode-abbrev-table): Use mapc rather than mapcar.
17476 2007-09-21 Markus Triska <markus.triska@gmx.at>
17478 * emacs-lisp/bytecomp.el (byte-compile-normal-call): Warn when
17479 `mapcar' is called for effect.
17481 2007-09-21 Kevin Ryde <user42@zip.com.au>
17483 * international/mule.el (sgml-html-meta-auto-coding-function):
17484 Bind `case-fold-search' to t.
17486 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
17488 * termdev.el: Remove.
17490 * frame.el (get-device-terminal): New function. Moved from termdev.el.
17491 (frames-on-display-list): Use it.
17493 * bindings.el: Bind C-z to suspend-frame instead of suspend-emacs.
17495 * termdev.el (terminal-id): Ask terminal-live-p before giving up.
17497 2007-09-20 Richard Stallman <rms@gnu.org>
17499 * newcomment.el (comment-add): If EXTRA, double `comment-add' value.
17501 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
17503 * add-log.el (add-log-current-defun): Fix thinko w.r.t derived-mode-p.
17505 2007-09-20 Glenn Morris <rgm@gnu.org>
17507 * textmodes/tex-mode.el (tex-validate-buffer): Use paragraph
17508 motion functions, rather than hard-coding "\n\n".
17509 (tex-validate-region): Check for eobp, to speed up.
17510 (tex-next-unmatched-end): Doc fix.
17512 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
17514 * files.el (auto-mode-alist): Use archive-mode for .rar files.
17516 * international/mule.el (auto-coding-alist): Rar archives are binary.
17518 * arc-mode.el: Add basic support for Rar.
17519 (archive-find-type): Recognize Rar's signature.
17520 (archive-desummarize): New fun.
17521 (archive-summarize): Use it to restore the buffer's data in case
17522 someone wants to switch to some other major mode.
17523 (archive-resummarize): Use it as well.
17524 (archive-rar-summarize, archive-rar-extract): New functions.
17526 * filesets.el: Remove spurious * in docstrings.
17527 (filesets-running-xemacs): Remove. Use (featurep 'xemacs) instead.
17528 (filesets-conditional-sort): Remove unused arg `simply-do-it'.
17529 (filesets-ingroup-collect): Remove unused arg `depth'.
17530 (filesets-update): Remove unused arg `version'.
17532 * finder.el (finder-compile-keywords): Fix up comment style.
17533 (finder-mouse-face-on-line): previous-line -> forward-line.
17535 * recentf.el: Remove spurious * in docstrings.
17536 (recentf-save-list): Fix up comment style.
17538 * progmodes/octave-mod.el: Remove spurious * in docstrings.
17539 (octave-mode-map): Move init into declaration and remove \t binding.
17540 (octave-mode-startup-message): Remove unused var.
17541 (octave-scan-blocks): Remove unused arg `from'.
17542 (octave-forward-block, octave-down-block, octave-up-block):
17545 * progmodes/meta-mode.el (meta-mode-syntax-table): Move init into decl.
17546 (meta-mode-map): Likewise and remove \t binding.
17548 * net/snmp-mode.el: Remove spurious * in docstrings.
17549 (snmp-rfc1155-types, snmp-rfc1213-types, snmp-rfc1902-types)
17550 (snmp-rfc1903-types, snmp-rfc1155-access, snmp-rfc1902-access)
17551 (snmp-rfc1212-status, snmp-rfc1902-status): Remove list wrappers now
17552 that completion accepts lists of strings.
17553 (snmp-mode-syntax-table): Move initialization into declaration.
17554 (snmp-mode-map): Likewise and remove \t binding.
17555 (snmp-common-mode): Set tab-always-indent according to snmp-t-a-i.
17556 (snmp-indent-line, snmp-mode-imenu-create-index): Remove unused var.
17557 (snmp-indent-command): Remove.
17559 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Use the default TAB
17560 binding, so tab-always-indent works right.
17562 2007-09-19 Johannes Weiner <hannes@saeurebad.de>
17564 * net/browse-url.el (browse-url-elinks-new-window): New function.
17565 (browse-url-elinks): Use browse-url-elinks-new-window.
17566 Accept optional second argument `new-window'. Fix typo in doc-string.
17567 (browse-url-elinks-sentinel): Use browse-url-elinks-new-window.
17568 Improve error message.
17570 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
17572 * net/browse-url.el (browse-url-url-encode-chars): Use the right
17573 parameter name in the function body.
17574 Reported by Johannes Weiner.
17576 2007-09-19 Glenn Morris <rgm@gnu.org>
17578 * net/socks.el (socks-open-network-stream): Signal an explicit
17579 error if the port associated with a service string can't be found.
17581 * textmodes/tex-mode.el (tex-terminate-paragraph):
17582 Use backward-paragraph.
17584 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
17586 * server.el (server-running-p): New function.
17588 2007-09-18 Jason Rumney <jasonr@gnu.org>
17590 * term/w32-win.el (w32-focus-frame): Make obsolete alias for
17593 * frame.el (select-frame-set-input-focus, select-frame-by-name):
17594 Use x-focus-frame for w32.
17596 2007-09-17 David Kastrup <dak@gnu.org>
17598 * textmodes/tex-mode.el (tex-verbatim-environments):
17599 Eliminate CL dependency.
17601 2007-09-17 Richard Stallman <rms@gnu.org>
17603 * newcomment.el (comment-add): New arg EXTRA.
17604 (comment-region-default): Pass EXTRA if not indenting lines.
17606 2007-09-17 Michaël Cadilhac <michael@cadilhac.name>
17608 * net/browse-url.el (browse-url-url-encode-chars): New function.
17609 URL-encode some chars in a string.
17610 (browse-url-encode-url): Rewrite using the previous function.
17611 (browse-url-file-url): Use `browse-url-url-encode-chars'.
17612 (browse-url-elinks-sentinel): Fix typo.
17613 (browse-url-new-window-flag): Doc change.
17615 2007-09-17 Glenn Morris <rgm@gnu.org>
17617 * textmodes/tex-mode.el (tex-compilation-parse-errors): Prefer the
17618 filename from `--file-line-error', if it is available.
17620 2007-09-17 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
17622 * textmodes/tex-mode.el (tex-compilation-parse-errors): Also match
17623 TeX `--file-line-error' format.
17625 2007-09-17 Dan Nicolaescu <dann@ics.uci.edu>
17627 * xt-mouse.el: Delete add-hook calls that were moved to
17629 (xterm-mouse-mode): Disable resume-tty-functions, explain why it
17632 2007-09-17 Richard Stallman <rms@gnu.org>
17634 * cus-face.el (custom-theme-set-faces): Undo previous change.
17636 * faces.el (face-spec-set): When FRAME nil, look up each frame in SPEC.
17638 2007-09-17 Glenn Morris <rgm@gnu.org>
17640 * textmodes/tex-mode.el (tex-region): Simplify previous change,
17641 handling the case where the region is not in `tex-main-file'.
17642 (tex-region-1): Delete.
17643 (tex-region-header): New function, doing the header part of the
17646 2007-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
17648 * simple.el (newline): Simplify use of prefix-numeric-value.
17649 (line-move-partial): Remove unused var `ppos'.
17650 (line-move-1): Replace 9999 with most-positive-fixnum.
17651 (move-end-of-line): Use more efficient single-property search.
17652 (move-beginning-of-line): Remove unused var `start'.
17653 (blink-matching-open): Restructure in a more functional style.
17655 2007-09-16 Michaël Cadilhac <michael@cadilhac.name>
17657 * calendar/holidays.el (list-holidays): Remove the cyclic alias.
17659 2007-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
17661 * server.el (server-clients): Only keep procs, no properties any more.
17662 (server-client): Remove.
17663 (server-client-get, server-client-set): Remove, replace all callers by
17664 process-get and process-put resp.
17665 (server-clients-with, server-add-client, server-delete-client)
17666 (server-create-tty-frame, server-create-window-system-frame)
17667 (server-process-filter, server-execute, server-visit-files)
17668 (server-buffer-done, server-kill-buffer-query-function)
17669 (server-kill-emacs-query-function, server-switch-buffer)
17670 (server-save-buffers-kill-terminal): Update accordingly.
17672 * server.el (server-with-environment): Simplify.
17673 (server-select-display, server-unselect-display): Re-add functions that
17674 seem to have been lost in the multi-tty merge.
17675 (server-eval-and-print, server-create-tty-frame)
17676 (server-create-window-system-frame, server-goto-toplevel)
17677 (server-execute, server-return-error): New functions extracted from
17678 server-process-filter.
17679 (server-execute-continuation): New functions.
17680 (server-process-filter): Restructure so that all arguments are analysed
17681 first and then acted upon in a subsequent stage. This way
17682 server-goto-toplevel can be executed later, when we know if
17684 Remove the "-version" and "-version-good" support.
17686 2007-09-16 Drew Adams <drew.adams@oracle.com>
17688 * cus-edit.el (custom-face-edit-activate): Doc fix.
17690 2007-09-16 Glenn Morris <rgm@gnu.org>
17692 * calendar/cal-menu.el, calendar/calendar.el, calendar/diary-lib.el:
17693 Following cal-bahai renaming, update all instances of
17694 list-bahai-diary-entries to diary-bahai-list-entries,
17695 mark-bahai-diary-entries to diary-bahai-mark-entries,
17696 calendar-goto-bahai-date to calendar-bahai-goto-date,
17697 insert-bahai-diary-entry to diary-bahai-insert-entry,
17698 insert-monthly-bahai-diary-entry to diary-bahai-insert-monthly-entry,
17699 insert-yearly-bahai-diary-entry to diary-bahai-insert-yearly-entry, and
17700 calendar-print-bahai-date to calendar-bahai-print-date.
17702 * textmodes/tex-mode.el (tex-region): Handle the case where the
17703 region is not in `tex-main-file'. Move the old code that applies
17705 (tex-region-1): ...to this new function.
17707 2007-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
17709 * vc.el (vc-process-sentinel): New function.
17710 (vc-exec-after): Use it instead of using ugly hackish analysis and
17711 construction of Elisp code.
17712 (vc-sentinel-movepoint): New dynamically scoped var.
17713 (vc-print-log, vc-annotate): Set it to move the user's point.
17715 * vc-cvs.el (vc-cvs-annotate-time): Use inhibit-read-only and
17716 inhibit-modification-hooks.
17718 * calendar/cal-bahai.el (mark-bahai-diary-entries): Fix up typo.
17719 (calendar-bahai-print-date, calendar-bahai-goto-date)
17720 (diary-bahai-list-entries, diary-bahai-insert-entry):
17721 New names to clean up the namespace a bit more.
17722 (calendar-goto-bahai-date, calendar-print-bahai-date): Compat aliases.
17724 2007-09-15 Glenn Morris <rgm@gnu.org>
17726 * calendar/holidays.el (holiday-list): Rename it back to
17727 `list-holidays', but leave `holiday-list' as an alias.
17729 * textmodes/bibtex-style.el (bibtex-style-indent-basic): Specify a
17732 * textmodes/css-mode.el (css): New custom group.
17733 (css-electrick-keys, css-selector, css-property)
17734 (css-indent-offset): Specify custom group.
17736 2007-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
17738 * pcvs.el (cvs-tags-list, cvs-retrieve-revision, cvs-find-modif)
17739 (cvs-execute-single-file): Use process-file.
17740 (cvs-run-process): Use start-file-process.
17742 2007-09-15 Dan Nicolaescu <dann@ics.uci.edu>
17744 * xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
17745 level. Remove the hooks when turning off the mode.
17747 * term/xterm.el: Require xt-mouse at compile time.
17748 (terminal-init-xterm): Turn on xterm mouse tracking for this
17749 terminal if xterm-mouse-mode is enabled.
17751 2007-09-14 Dan Nicolaescu <dann@ics.uci.edu>
17753 * term/xterm.el (xterm-function-map): Replace bindings that were
17754 deleted by the merge.
17756 2007-09-14 Ulf Jasper <ulf.jasper@web.de>
17758 * play/bubbles.el (bubbles-version): Bump value to "0.5".
17759 (bubbles-mode-map): Move define-key statements here.
17760 (bubbles-game-theme-menu): Ditto.
17761 (bubbles-graphics-theme-menu): Ditto.
17762 (bubbles-menu): Ditto.
17763 (bubbles-mode): Initialize buffer-undo-list, redisplay.
17764 (bubbles--initialize): Reset buffer-undo-list, redisplay.
17765 (bubbles-plop): Set buffer-undo-list, redisplay.
17766 (bubbles-undo): Reset buffer-undo-list, redisplay.
17767 (bubbles--show-images): Take care of missing text properties.
17769 2007-09-14 Glenn Morris <rgm@gnu.org>
17771 * startup.el (fancy-startup-text, fancy-about-text): Fix face
17774 * calendar/cal-hebrew.el, calendar/cal-menu.el
17775 * calendar/calendar.el, calendar/diary-lib.el
17776 * calendar/holidays.el: Rename all instances of
17777 list-calendar-holidays callers to calendar-list-holidays,
17778 list-holidays to holiday-list, check-calendar-holidays to
17779 calendar-check-holidays, mark-calendar-holidays to
17780 calendar-mark-holidays, and filter-visible-calendar-holidays to
17781 holiday-filter-visible-calendar.
17783 2007-09-14 Dan Nicolaescu <dann@ics.uci.edu>
17785 * term/xterm.el (xterm-function-map): Add C-M- bindings.
17787 2007-09-13 Sascha Wilde <wilde@sha-bang.de> (tiny change)
17789 * play/bubbles.el (bubbles--initialize-images): Fix bug:
17790 Use transparent background for empty cells in graphics mode.
17792 2007-09-13 Jari Aalto <jari.aalto@cante.net>
17794 * man.el (Man-default-man-entry): At end of line, continue looking
17795 to the next line for possible end of hyphenated command.
17797 2007-09-13 Chris Moore <dooglus@gmail.com>
17799 * shell.el (shell-resync-dirs): Don't move the cursor relative to
17800 the command being edited.
17802 2007-09-12 Jim Meyering <jim@meyering.net> (tiny change)
17804 * emacs-lisp/copyright.el (copyright-names-regexp): Doc fix: typo.
17806 2007-09-12 Dan Nicolaescu <dann@ics.uci.edu>
17808 * term/xterm.el (xterm-function-map): Add bindings for M-S- and
17811 * term/rxvt.el (rxvt-function-map): Initialize in the declaration.
17813 2007-09-12 Michaël Cadilhac <michael@cadilhac.name>
17815 * net/browse-url.el (browse-url-encode-url): Fix an infinite loop.
17816 New argument `filename-p' to use one set of confusing chars or another.
17817 (browse-url-file-url): Use the argument.
17818 Suggested by Johannes Weiner.
17820 2007-09-12 Romain Francoise <romain@orebokech.com>
17822 * cus-start.el (all): Revert 2007-09-08 change.
17824 2007-09-12 Aaron Hawley <aaronh@garden.org>
17826 * jka-cmpr-hook.el (jka-compr-compression-info-list): Use gzip to
17827 extract .Z files, since it is more common than uncompress.
17829 2007-09-12 Glenn Morris <rgm@gnu.org>
17831 * textmodes/org-publish.el (org-publish-org-to-html): Remove
17832 duplicate function definition.
17834 2007-09-10 Chris Moore <dooglus@gmail.com>
17836 * diff-mode.el (diff-sanity-check-hunk):
17837 Also accept single-line hunks.
17839 2007-09-10 Chong Yidong <cyd@stupidchicken.com>
17841 * startup.el (startup-screen-inhibit-startup-screen)
17842 (pure-space-overflow-message): New vars.
17843 (fancy-splash-insert): Allow functions for face and link specs.
17844 (fancy-splash-head): Remove unused arg. Move splash text...
17845 (fancy-startup-text, fancy-about-text): ...here.
17846 (fancy-startup-tail): Rename from fancy-splash-tail.
17847 (fancy-startup-screen, fancy-about-screen): Split off from
17848 fancy-splash-screens.
17849 (display-startup-screen): New function.
17850 (display-about-screen): Rename from display-splash-screen.
17851 (command-line-1): Use concise startup screen if necessary.
17853 2007-09-10 Thien-Thi Nguyen <ttn@gnuvola.org>
17855 * net/browse-url.el (browse-url-encode-url): Use copy-sequence.
17856 Reported by Jan Djärv <jan.h.d@swipnet.se>.
17858 2007-09-10 Dave Love <fx@gnu.org>
17860 * outline.el (outline-4, outline-5, outline-7):
17861 Move font-lock-builtin-face down from 4 to 7 to better keep the
17862 progression of color brightness, and to better match Org-mode's faces.
17864 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
17866 * progmodes/meta-mode.el (meta-font-lock-keywords)
17867 (font-lock-match-meta-declaration-item-and-skip-to-next)
17868 (meta-comment-indent, meta-indent-previous-line)
17869 (meta-indent-unfinished-line, meta-beginning-of-defun)
17870 (meta-end-of-defun, meta-common-initialization): Handle \f.
17871 (meta-indent-unfinished-line): Do not handle a `%' in a string as
17874 * files.el (file-modes-char-to-who, file-modes-char-to-right)
17875 (file-modes-rights-to-number): Auxiliary functions for symbolic to
17876 numeric notation of file modes.
17877 (file-modes-symbolic-to-number): New. Convert symbolic modes to its
17879 (read-file-modes): New. Read either an octal value of a file mode or a
17880 symbolic value, and return its numeric value.
17882 * dired-aux.el (dired-do-chmod): Change to use the built-in
17883 `set-file-modes' and the previous symbolic mode parsing functions.
17885 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
17887 * textmodes/texinfo.el: Remove spurious * in docstrings.
17888 (texinfo-mode-syntax-table, texinfo-mode-map):
17889 Initialize in the declaration.
17891 * tmm.el: Remove spurious * in docstrings.
17892 (tmm-prompt): Use with-current-buffer.
17894 * vcursor.el: Remove spurious * in docstrings.
17895 (vcursor-map): Initialize in the declaration.
17896 (vcursor-use-vcursor-map): Use define-minor-mode.
17897 (vcursor-toggle-vcursor-map): Keep as an obsolete alias.
17899 * wid-browse.el (widget-browse-mode-map, widget-minor-mode-map):
17900 Initialize in the declaration.
17901 (widget-minor-mode): Use define-minor-mode.
17903 * woman.el (woman-mode-map, woman-syntax-table):
17904 Initialize in the declaration.
17906 2007-09-09 Tassilo Horn <tassilo@member.fsf.org>
17908 * doc-view.el: New file.
17910 2007-09-09 Juri Linkov <juri@jurta.org>
17912 * Makefile.in (update-authors): Add etc/ to AUTHORS.
17914 * makefile.w32-in (update-authors): Add etc/ to AUTHORS.
17916 * startup.el (initial-buffer-choice): Rename choice "Splash screen"
17917 to "Startup screen". Fix docstring.
17918 (inhibit-startup-screen): Rename from `inhibit-splash-screen'.
17919 (inhibit-splash-screen): Make alias to `inhibit-startup-screen'.
17920 (inhibit-startup-message): Change alias to `inhibit-startup-screen'.
17921 (initial-scratch-message): Fix docstring.
17922 (fancy-startup-text): Move link to Emacs Manual below Emacs Guided
17923 Tour (which is a kind of tutorial and will be next to Emacs Tutorial).
17924 Add link to "Customize Startup" and set interval between links to
17926 (fancy-about-text): Add links "Authors" and "Contributing".
17927 (fancy-splash-head): Add text "Welcome to " on the startup screen,
17928 and "This is " on the about screen. Add link to
17929 "http://www.gnu.org/software/emacs/" for "GNU Emacs".
17930 For the about screen move emacs version to the header from
17931 `fancy-splash-tail' (as it's done already for normal about screen).
17932 (fancy-splash-tail): Insert emacs version only for startup screen.
17933 (normal-splash-screen): Remove duplicate empty lines.
17934 (normal-about-screen): Add links "Authors" and "Contributing".
17936 * menu-bar.el (menu-bar-help-menu):
17937 Move "About Emacs" and "About GNU" to the end of the Help menu.
17938 Move "Emacs Psychotherapist" after "Send Bug Report...".
17939 Move "External Packages" after "Find Emacs Packages".
17941 2007-09-09 Michael Albinus <michael.albinus@gmx.de>
17943 * net/tramp.el (top): Remove declarations of `tramp-gw-*' symbols,
17944 they are useless with the byte compiler.
17945 (tramp-make-temp-file, tramp-make-tramp-temp-file): Move up.
17946 (tramp-do-copy-or-rename-file-directly): Rearrange let-bindings.
17947 (tramp-compute-multi-hops): Mask `tramp-gw-*' symbols.
17948 (tramp-file-name-real-host, tramp-file-name-port)
17949 (tramp-find-method, tramp-find-user, tramp-find-host): Make them
17952 * net/tramp-cache.el (top): Improve error message when
17953 `tramp-persistency-file-name' is corrupted.
17955 2007-09-09 Carsten Dominik <dominik@science.uva.nl>
17957 * textmodes/org.el (org-re): Also replace the :alpha: class.
17958 (org-todo-tag-alist): Variable removed.
17959 (org-todo-key-alist, org-todo-key-trigger): New variables.
17960 (org-use-fast-todo-selection): New option.
17961 (org-log-done): Docstring fixed.
17962 (org-deadline-warning-days): New default value 14.
17963 (org-edit-timestamp-down-means-later): New option.
17964 (org-tag-alist): Docstring fixed.
17965 (org-fast-tag-selection-include-todo): New option.
17966 (org-export-language-setup): New languages added.
17967 (org-set-regexps-and-options): Compute the new variables.
17968 (org-paste-subtree): Cleaning up.
17969 (org-remember-apply-template): New escape %A.
17970 (org-todo): Call fast TODO selection.
17971 (org-fast-todo-selection): New function.
17972 (org-add-log-note): Allow prefix for abort exit.
17973 (org-at-property-p, org-entry-properties)
17974 (org-columns-get-autowidth-alist): Use :alpha: class.
17975 (org-get-wdays): New function.
17976 (org-agenda-remove-date): New variable.
17977 (org-agenda-get-deadlines): Use `org-get-wdays'.
17978 (org-agenda-get-deadlines): Reverse ee before returning.
17979 (org-format-agenda-item): New argument REMOVE-RE.
17980 (org-agenda-convert-date): Baha'i calendar added.
17981 (org-infile-export-plist): Also find DATE line.
17982 (org-get-min-level): New function.
17983 (org-export-as-html, org-export-as-ascii): Use the date format.
17984 (org-shiftup, org-shiftdown): Use.
17985 `org-edit-timestamp-down-means-later'.
17986 (org-assign-fast-keys): New function.
17988 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
17990 * cus-start.el (all): Add prefer-window-split-horizontally from
17993 2007-09-08 Eli Zaretskii <eliz@gnu.org>
17995 * net/browse-url.el (browse-url-galeon): Fix last change.
17996 (top-level): Require cl when compiling.
17998 2007-09-08 Carsten Dominik <dominik@science.uva.nl>
18000 * textmodes/org-export-latex.el: arch-tag restored.
18002 * textmodes/org-publish.el: arch-tag restored.
18004 2007-09-08 Masatake YAMATO <jet@gyve.org>
18006 * progmodes/which-func.el (which-func-modes): Add diff-mode.
18008 * progmodes/cc-langs.el: Support new keywords added to
18009 objective-c frontend of gcc.
18010 (c-simple-stmt-kwds): Add @throw.
18011 (c-block-stmt-2-kwds): Add @synchronized.
18012 (c-block-stmt-1-kwds): Add @finally and @try.
18014 2007-09-07 Carsten Dominik <dominik@science.uva.nl>
18016 * textmodes/org.el (org-edit-timestamp-down-means-later): New option.
18017 (org-agenda-after-show-hook): New variable.
18018 (org-columns-compile-format)
18019 (org-columns-get-autowidth-alist, org-buffer-property-keys)
18020 (org-entry-properties, org-at-property-p): Allow [:alnum:] in
18022 (org-get-wdays): New function.
18024 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
18026 * simple.el (normal-erase-is-backspace-setup-frame): Massage.
18028 * term/xterm.el (xterm-function-map): Initialize in the declaration.
18030 * vc-arch.el (vc-arch-checkin): Fix typo.
18032 2007-09-07 Johan Bockgård <bojohan@gnu.org>
18034 * cus-face.el (custom-theme-set-faces): Set face attributes
18035 locally for each frame.
18037 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
18039 * progmodes/fortran.el (fortran-mode): Set font-lock-syntactic-keywords
18040 via font-lock-defaults.
18042 * emacs-lisp/bytecomp.el (byte-compile-log-file): Check major-mode via
18045 2007-09-07 Thien-Thi Nguyen <ttn@gnuvola.org>
18047 * progmodes/autoconf.el (autoconf-definition-regexp):
18048 Handle optional square brackets around definition name.
18050 2007-09-07 Johannes Weiner <hannes@saeurebad.de>
18052 * net/browse-url.el (browse-url-browser-function): Add elinks.
18053 (browse-url-elinks-wrapper): New option.
18054 (browse-url-encode-url, browse-url-elinks)
18055 (browse-url-elinks-sentinel): New functions.
18056 (browse-url-file-url, browse-url-netscape, browse-url-mozilla)
18057 (browse-url-firefox, browse-url-galeon, browse-url-epiphany):
18058 Use new function browse-url-encode-url.
18060 2007-09-07 Glenn Morris <rgm@gnu.org>
18062 * version.el (emacs-version): Revert 2007-08-29 change: no need to
18063 say if multi-tty is present.
18065 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
18067 * cus-start.el (split-window-preferred-function): Add custom info.
18069 * calendar/holidays.el (holiday-list, calendar-check-holidays)
18070 (calendar-mark-holidays, calendar-list-holidays)
18071 (holiday-filter-visible-calendar): New names to clean up namespace.
18072 (filter-visible-calendar-holidays, list-calendar-holidays)
18073 (mark-calendar-holidays, check-calendar-holidays, list-holidays):
18074 Add compatibility aliases.
18075 (calendar-check-holidays, calendar-mark-holidays)
18076 (calendar-holiday-list, holiday-filter-visible-calendar): Use dolist.
18077 (holiday-sexp): Replace append with list.
18078 (holiday-filter-visible-calendar): Replace append with push.
18080 * woman.el: Remove spurious * in docstrings.
18081 (woman-mini-help, woman-non-underline-faces, woman0-rename)
18082 (woman-topic-all-completions-merge, woman-file-name-all-completions)
18083 (woman-select-symbol-fonts, woman-expand-directory-path): Use dolist.
18084 (woman-write-directory-cache, woman-display-extended-fonts)
18085 (WoMan-log-begin, WoMan-log-1): Use with-current-buffer.
18086 (woman-really-find-file): Use pop-to-buffer if switch-to-buffer fails.
18087 (woman-mode): Use inhibit-read-only.
18088 (woman-negative-vertical-space): Use dotimes.
18089 (woman2-tagged-paragraph, woman-tab-to-tab-stop): Use insert-char.
18091 2007-09-06 Romain Francoise <romain@orebokech.com>
18093 * vc-bzr.el (vc-bzr-admin-lastrev): New defconst.
18094 (vc-bzr-workfile-version): Use it.
18096 2007-09-06 Sean O'Rourke <sorourke@cs.ucsd.edu>
18098 * complete.el (PC-do-completion): Don't try to treat
18099 empty string as an abbreviation.
18101 2007-09-06 Johan Bockgård <bojohan@dd.chalmers.se>
18103 * help-fns.el (describe-variable): Keep doc's text properties.
18105 2007-09-06 Dan Nicolaescu <dann@ics.uci.edu>
18107 * vc.el (vc-default-diff-tree): Pass a list to the diff vc command
18110 2007-09-06 Glenn Morris <rgm@gnu.org>
18112 * emacs-lisp/checkdoc.el (checkdoc-minor-mode-string): New.
18113 (checkdoc-minor-mode): Allow user to specify lighter via
18114 checkdoc-minor-mode-string.
18116 2007-09-05 Richard Stallman <rms@gnu.org>
18118 * startup.el (fancy-startup-text): Rename from fancy-splash-text.
18119 Several items removed, simplified, or put on one line.
18120 (fancy-about-text): Add substantial contents, part of startup text.
18121 (fancy-splash-head): Make "GNU" or "GNU/Linux" a link.
18122 (normal-splash-screen): Call normal-mouse-startup-screen,
18123 normal-no-mouse-startup-screen, or normal-about-screen.
18124 (normal-mouse-startup-screen): New fn, broken out, shortened.
18125 (normal-no-mouse-startup-screen): New fn, broken out.
18126 (normal-about-screen): New function, contents all new.
18128 2007-09-05 Michaël Cadilhac <michael@cadilhac.name>
18130 * emacs-lisp/rx.el (rx): Fix typo in docstring.
18132 2007-09-05 Glenn Morris <rgm@gnu.org>
18134 * cus-edit.el (custom-buffer-create-internal): Check tool-bar-mode
18137 2007-09-05 Johan Bockgård <bojohan@dd.chalmers.se>
18139 * emacs-lisp/advice.el (ad-make-advised-docstring): Highlight note
18142 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
18144 * server.el (server-start, server-unload-hook): Undo previous change.
18146 * xt-mouse.el: Undo previous change.
18148 2007-09-04 Juri Linkov <juri@jurta.org>
18150 * startup.el (fancy-about-text): New variable.
18151 (fancy-splash-delay, fancy-splash-max-time): Remove user options.
18152 (fancy-current-text, fancy-splash-stop-time)
18153 (fancy-splash-outer-buffer): Remove variables.
18154 (fancy-splash-head, fancy-splash-tail): Add new optional argument
18155 `startup' and use it to conditionally display different texts for
18156 Startup and About screens. Don't display Help commands on the About
18158 (fancy-splash-screens-1): Remove function and move its content to
18159 `fancy-splash-screens' to the part that dislpays the About screen.
18160 (exit-splash-screen): Don't treat specially exiting from
18161 alternating screens.
18162 (fancy-splash-screens): Rename argument `static' to `startup'.
18163 Fix docstring. Remove code for displaying alternating screens.
18164 Use arg `startup' in calls to `fancy-splash-head', `fancy-splash-tail'.
18165 Remove let-bind for `fancy-splash-outer-buffer' and add let-bind
18166 for `inhibit-read-only'.
18167 (normal-splash-screen): Rename argument `static' to `startup'.
18168 Fix docstring. Use argument `startup' to conditionally display
18169 different texts for Startup and About screens. Don't display Help
18170 commands on the About screen. Remove `unwind-protect' `sit-for'
18171 delay and `kill-buffer' after it.
18172 (display-startup-echo-area-message): Remove call to
18173 `use-fancy-splash-screens-p' because image.el is preloaded and
18174 doesn't display "Loading image... done".
18175 (display-splash-screen): Rename argument `static' to `startup'.
18178 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
18180 * server.el (server-start, server-unload-hook):
18181 suspend-tty-functions has been renamed to suspend-tty-hook.
18183 * xt-mouse.el: Likewise. resume-tty-functions has been renamed to
18186 2007-09-03 Emanuele Giaquinta <e.giaquinta@glauco.it> (tiny change)
18188 * loadup.el: Fix merge problem, only load "button" once.
18190 2007-09-03 Glenn Morris <rgm@gnu.org>
18192 * vc-svn.el (vc-svn-print-log): If there is only one file, use
18193 "Working file:" as the prefix, for the sake of
18194 log-view-current-file.
18196 2007-09-02 Dan Nicolaescu <dann@ics.uci.edu>
18198 * term/xterm.el (xterm-modify-other-keys-terminal-list): New variable.
18199 (xterm-turn-on-modify-other-keys): Only turn on modify-other-keys
18200 if the selected frames is in
18201 xterm-modify-other-keys-terminal-list.
18202 (xterm-turn-off-modify-other-keys): Add an optional frame
18203 parameter. Only turn off modify-other-keys if FRAME is in
18204 xterm-modify-other-keys-terminal-list.
18205 (xterm-remove-modify-other-keys): New function.
18206 (terminal-init-xterm): Use it. Deal with delete-frame hook.
18207 Add the selected frame to xterm-modify-other-keys-terminal-list.
18209 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
18211 * term/x-win.el (x-gtk-stock-map): Map diropen to system-file-manager.
18212 (icon-map-list): New variable.
18213 (x-gtk-map-stock): Use icon-map-list.
18215 2007-09-02 Romain Francoise <romain@orebokech.com>
18217 * log-view.el (log-view-current-file): Balance parens.
18219 2007-09-02 Glenn Morris <rgm@gnu.org>
18221 * comint.el (comint-mode): Don't set scroll-conservatively.
18223 * eshell/em-unix.el (eshell/time): Stringify and flatten the
18224 non-command arguments.
18226 * log-view.el (log-view-current-file): Give a more explicit error
18227 if log-view-file-re fails to find a match.
18229 2007-09-01 Thien-Thi Nguyen <ttn@gnuvola.org>
18231 * emacs-lisp/bytecomp.el (byte-recompile-directory):
18232 Fix bug: Don't expand top-level file name more than once.
18233 Reported by Dmitry Antipov <dmantipov@yandex.ru>.
18235 2007-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
18237 * server.el (server-process-filter): Don't display the splash screen.
18238 It's annoying enough on the initial screen and becomes positively
18241 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
18243 * emacs-lisp/avl-tree.el: Use defstruct rather than macros.
18244 Change naming to use "avl-tree--" for internal functions.
18246 2007-08-31 Dan Nicolaescu <dann@ics.uci.edu>
18248 * term/x-win.el (x-menu-bar-open): Delete duplicated function from
18250 (global-set-key): Delete f10 mapping, now done in menu-bar.el.
18251 (provide): Move to the end of file.
18253 * vc-svn.el (vc-svn-diff-tree): Pass a list to vc-svn-diff.
18255 2007-08-31 Michaël Cadilhac <michael@cadilhac.name>
18257 * textmodes/flyspell.el (flyspell-mark-duplications-exceptions):
18258 New variable. List of exceptions for the duplicated word rule.
18259 (flyspell-mark-duplications-flag): Mention it.
18260 (flyspell-word): Treat it.
18262 * files.el (create-file-buffer): If the filename sans directory starts
18263 with spaces, remove them.
18265 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
18267 * term/x-win.el (x-gtk-stock-map): Add etc/images to keys.
18268 (x-gtk-map-stock): Use two directory elements when matching
18271 2007-08-31 James Wright <james@chumsley.org>
18273 * eshell/em-unix.el (eshell/info): New function.
18275 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
18277 * frame.el (frame-initialize, make-frame):
18278 * server.el (server-process-filter):
18279 * faces.el (tty-set-up-initial-frame-faces): Don't set
18280 term-environment-variable since it's not used any more.
18282 * env.el (setenv): Don't treat $TERM specially.
18284 * startup.el (normal-top-level): Set $TERM to `dumb' so that unless
18285 stated otherwise, subprocesses do not send back escape sequences
18286 corresponding to the terminal from which Emacs was started.
18288 2007-08-31 Thien-Thi Nguyen <ttn@gnuvola.org>
18290 * calculator.el: Require cl for compilation.
18292 2007-08-30 Daniel Pfeiffer <occitan@esperanto.org>
18294 * outline.el (outline-font-lock-levels): Comment out unused var.
18295 (outline-font-lock-face): Wrap around face list to handle any
18296 nesting depth gracefully.
18298 2007-08-30 Michael Albinus <michael.albinus@gmx.de>
18300 * net/ange-ftp.el: Add ange-ftp property to `set-file-modes' and
18303 2007-08-30 Carsten Dominik <dominik@science.uva.nl>
18305 * textmodes/org.el (org-export-visible): Fix drawers before export.
18306 (org-do-sort): Allow sorting by priority.
18307 (org-agenda-files): Ignore non-existing files.
18308 (org-agenda-skip-unavailable-files): New variable.
18309 (org-ellipsis): All a face as value.
18310 (org-mode): Interprete the face value of `org-ellipsis'.
18311 (org-archive-save-context-info): New option.
18312 (org-archive-subtree): Store context info in archived entry.
18313 (org-fast-tag-selection-can-set-todo-state): New variable.
18314 (org-fast-tag-selection): Allow setting TODO states through this
18316 (org-cycle): Docstring updated.
18317 (org-todo-keyword-faces): New option.
18318 (org-get-todo-face): New function.
18319 (org-set-font-lock-defaults, org-agenda-highlight-todo):
18320 Use `org-get-todo-face'.
18321 (org-switch-to-buffer-other-window): New function.
18322 (org-table-edit-field, org-table-show-reference)
18323 (org-table-edit-formulas, org-add-log-note)
18324 (org-fast-tag-selection, org-agenda, org-prepare-agenda)
18325 (org-timeline): Use `org-switch-to-buffer-other-window' instead of
18326 `switch-to-buffer-other-window' to make sure that the temporary
18327 windows show up on the current frame.
18328 (org-mhe-get-message-real-folder, org-batch-store-agenda-views)
18329 (org-get-entries-from-diary, org-replace-region-by-html):
18330 Don't allow pop-up frames.
18331 (org-agenda-get-deadlines, org-agenda-get-scheduled):
18332 Fix problems with time-of-day.
18333 (org-export-get-title-from-subtree): New function.
18334 (org-agenda-get-scheduled, org-agenda-get-deadlines): Fix problems
18335 with listing items that are DONE.
18336 (org-change-tag-in-region): New command.
18337 (org-agenda-skip-scheduled-if-done)
18338 (org-agenda-skip-deadline-if-done): Docstring clarified.
18339 (org-mode): Hide drawers on startup.
18340 (org-get-todo-face): New function.
18341 (org-todo-keyword-faces): New option.
18342 (org-set-regexps-and-options): Use `org-remove-keyword-keys'.
18343 (org-remove-keyword-keys): New function.
18345 2007-08-30 Jari Aalto <jari.aalto@cante.net> (tiny change)
18347 * progmodes/grep.el (grep-find-ignored-directories):
18348 Add monotone _MTN bookkeeping directory in workspaces.
18349 Add RCS control directory. List items in alphabetical order.
18351 * progmodes/grep.el (grep-files-aliases): Add cc alias.
18352 Sort items in alphabetical order. Fix parens.
18354 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
18356 * vc-hg.el (vc-hg-extra-menu-map): New variable.
18357 (vc-hg-extra-menu, vc-hg-outgoing, vc-hg-incoming, vc-hg-push)
18358 (vc-hg-pull): New functions.
18359 (vc-hg-outgoing-mode, vc-hg-incoming-mode): New derived modes.
18361 * term/mac-win.el: Don't require url, only autoloaded url
18362 functions are used in this file.
18364 2007-08-29 Andreas Schwab <schwab@suse.de>
18366 * shell.el (shell): Return correct value from interactive spec.
18368 2007-08-29 Glenn Morris <rgm@gnu.org>
18370 * version.el (emacs-version): Increase to 23.0.50.
18372 2007-08-29 Jan Djärv <jan.h.d@swipnet.se>
18374 * term/x-win.el (x-gtk-stock-map): :version changed to 23.1.
18376 2007-08-29 Juri Linkov <juri@jurta.org>
18378 * loadup.el: Add "button" loading after "faces" and move "startup"
18379 to load after "button".
18381 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
18383 * loadup.el: Load term/mac-win on a Mac using Carbon.
18385 * term/mac-win.el: Provide mac-win.
18386 (mac-initialized): New variable.
18387 (mac-initialize-window-system): New function. Move global setup here.
18388 (handle-args-function-alist, frame-creation-function-alist):
18389 (window-system-initialization-alist): Add mac entries.
18390 (x-setup-function-keys): New function containing all the
18391 top level function key definitions.
18393 * term/x-win.el (x-menu-bar-open): Use accelerate-menu.
18395 * env.el (read-envvar-name): Don't consider the environment frame param.
18398 * frame.el (frame-initialize, make-frame):
18399 * faces.el (tty-set-up-initial-frame-faces):
18400 * server.el (server-process-filter): Set
18401 display-environment-variable and term-environment-variable.
18403 * server.el (server-process-filter): Set COLORFGBG and COLORTERM.
18405 2007-08-29 Jason Rumney <jasonr@gnu.org>
18407 * loadup.el: Only load term/x-win when X is compiled in.
18408 Load term/w32-win and dependencies on windows-nt.
18410 * term/w32-win.el: Reorder to match x-win.el more closely.
18411 Provide w32-win. Don't throw error when global window-system not w32.
18412 (internal-face-interactive): Remove obsolete function.
18413 (x-setup-function-keys): Use local-function-key-map.
18414 (w32-initialized): New variable.
18415 (w32-initialize-window-system): Set it.
18416 Move more global setup here.
18417 (x-setup-function-keys): New function.
18418 (w32-initialize-window-system): Move non function key global setup here.
18419 (x-cut-buffer-max): Remove.
18420 (w32-initialize-window-system): New function.
18421 (handle-args-function-alist, frame-creation-function-alist):
18422 (window-system-initialization-alist): Add w32 entries.
18424 2007-08-29 David Kastrup <dak@gnu.org>
18426 * env.el (getenv): Pass frame to getenv-internal.
18428 2007-08-29 Károly Lőrentey <lorentey@elte.hu>
18430 * version.el (emacs-version): Show if multi-tty is present.
18432 * loadup.el: Delay loading env; mule-conf gets confused by cl
18433 during bootstrap. Also load termdev and term/x-win.
18435 * bindings.el (mode-line-client): New variable.
18436 (help-echo): Add it to the default mode-line format.
18438 * cus-start.el: Remove bogus window-system reference from GTK test.
18440 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map)
18441 (ebrowse-electric-position-mode-map):
18442 * ebuff-menu.el (electric-buffer-menu-mode-map):
18443 * echistory.el (electric-history-map): Bind C-z to `suspend-frame',
18444 not `suspend-emacs'.
18446 * ediff-wind.el (ediff-setup-windows-automatic): New function.
18447 (ediff-window-setup-function): Use it as default.
18449 * files.el (save-buffers-kill-terminal): New function.
18450 (ctl-x-map): Change binding of C-x C-c to save-buffers-kill-terminal.
18452 * font-lock.el (lisp-font-lock-keywords-2): Add `let-environment'
18453 and `with-selected-frame'.
18455 * help-fns.el (describe-variable): Describe frame-local variables
18458 * simple.el (normal-erase-is-backspace-mode): Rewrite for multiple
18460 (normal-erase-is-backspace-setup-frame): New function.
18462 * subr.el (with-selected-frame): New function.
18463 (read-quoted-char): Use terminal-local binding of
18464 local-function-key-map instead of function-key-map.
18466 * talk.el (talk): New function.
18467 (talk-handle-delete-frame): New function.
18468 (talk-add-display): Open a new frame only if FRAME was not a frame.
18470 * termdev.el: New file.
18472 * menu-bar.el (menu-bar-open): New function. Bind it to f10.
18473 * term/x-win.el: Don't bind f10.
18474 * tmm.el: Remove autoload binding for f10.
18476 * international/encoded-kb.el (encoded-kbd-setup-display): Use
18477 `set-input-meta-mode'. Fix broken condition before set-input-mode.
18478 Store the saved input method as a terminal parameter. Add keymap
18479 parameter. Use it instead of changing key-translation-map directly.
18480 (saved-key-translation-map, encoded-kbd-mode, saved-input-mode):
18482 (encoded-kbd-setup-display): New function.
18484 * international/mule-cmds.el (set-locale-environment): Fix getenv
18485 call. Use save-buffers-kill-terminal. Ignore window-system; always
18486 set the keyboard coding system. Add DISPLAY parameter.
18487 (set-display-table-and-terminal-coding-system): Add DISPLAY
18488 parameter. Pass it to set-terminal-coding-system.
18490 * international/mule.el (keyboard-coding-system): Test for
18491 encoded-kbd-setup-display, not encoded-kbd-mode.
18492 (set-terminal-coding-system, set-keyboard-coding-system): Add
18494 (set-keyboard-coding-system): Use encoded-kbd-setup-display.
18496 * term/README: Update.
18498 * term/linux.el (terminal-init-linux): Use `set-input-meta-mode'.
18500 * term/x-win.el (x-setup-function-keys): New function. Move
18501 function-key-map tweaks here. Protect against multiple calls on
18502 the same terminal. Use terminal-local binding of
18503 local-function-key-map instead of function-key-map.
18504 (x-initialize-window-system): Make a copy of pure list. Pass a
18507 * term/vt200.el, term/vt201.el, term/vt220.el, term/vt240.el:
18508 * term/vt300.el, term/vt320.el, term/vt400.el, term/vt420.el:
18509 * term/AT386.el, term/internal.el, term/iris-ansi.el, term/lk201.el:
18510 * term/mac-win.el, term/news.el, term/rxvt.el, term/sun.el:
18511 * term/tvi970.el, term/wyse50.el: Use terminal-local binding of
18512 local-function-key-map instead of function-key-map.
18514 * term/rxvt.el, term/xterm.el: Speed up load time by protecting
18515 `substitute-key-definition' and `define-key' calls against
18516 multiple execution. Use terminal-local binding of
18517 local-function-key-map instead of function-key-map. Pass a frame
18520 * edmacro.el (edmacro-format-keys):
18521 * emulation/cua-base.el (cua--pre-command-handler):
18522 * isearch.el (isearch-other-meta-char):
18523 * xt-mouse.el: Use terminal-local binding of
18524 local-function-key-map instead of function-key-map.
18526 * fringe.el (set-fringe-mode): Simplify and fix using
18527 `modify-all-frames-parameters'.
18528 * scroll-bar.el (set-scroll-bar-mode): Ditto.
18529 * tool-bar.el (tool-bar-mode): Ditto. Remove 'tool-bar-map length
18530 check before calling `tool-bar-setup'.
18531 (tool-bar-setup): New variable.
18532 (tool-bar-setup): Use it to guard against multiple calls. Add
18533 optional frame parameter, and select that frame before adding items.
18534 (toggle-tool-bar-mode-from-frame): New function.
18536 * menu-bar.el (toggle-menu-bar-mode-from-frame): New function.
18537 (menu-bar-showhide-menu): Use toggle-menu-bar-mode-from-frame and
18538 toggle-tool-bar-mode-from-frame to change "Menu-bar" and
18539 "Tool-bar" toggles to reflect the state of the current frame.
18540 (menu-bar-mode): Simplify and fix using `modify-all-frames-parameters'.
18542 * env.el: Require cl for byte compilation (for `block' and `return').
18543 (environment, setenv-internal): New functions.
18544 (let-environment): New macro.
18545 (setenv, getenv): Add optional terminal parameter. Update docs.
18546 (setenv): Use setenv-internal. Always set process-environment.
18547 Handle `local-environment-variables'.
18548 (read-envvar-name, setenv, getenv): Use frame parameters
18549 to store the local environment, not terminal parameters. Include
18550 `process-environment' as well.
18552 * faces.el (tty-run-terminal-initialization): New function.
18553 (tty-create-frame-with-faces): Use it. Set up faces and
18554 background mode only after the terminal has been initialized.
18555 Call terminal-init-*. Don't load the initialization file more
18556 than once. Call set-locale-environment.
18557 (frame-set-background-mode): Handle the 'background-mode terminal
18559 (tty-find-type): New function.
18560 (x-create-frame-with-faces): Remove bogus check for
18561 first frame. Call `tool-bar-setup'. Don't make frame visible
18562 until we are done setting up all its parameters. Call
18563 x-setup-function-keys.
18565 * frame.el (make-frame): Always inherit 'environment and 'client
18566 parameters. Set up the 'environment frame parameter, when needed.
18567 Also inherit 'client parameter. Don't override explicitly
18568 specified values with inherited ones. Add 'terminal frame
18569 parameter. Append window-system-default-frame-alist to parameters
18570 before calling frame-creation-function.
18571 (frame-initialize): Copy the environment from the initial frame.
18572 (window-system-default-frame-alist): Enhance doc string.
18573 (frame-notice-user-settings): Don't put 'tool-bar-lines in
18574 `default-frame-alist' when initial frame is on a tty.
18575 (modify-all-frames-parameters): Simplify using `assq-delete-all'.
18576 Remove specified parameters from `window-system-default-frame-alist'.
18577 (make-frame-on-tty, framep-on-display, suspend-frame):
18578 Extend doc string, update parameter names.
18579 (frames-on-display-list): Use terminal-id to get the display id.
18580 (frame-notice-user-settings): Extend to apply
18581 settings in `window-system-default-frame-alist' as well.
18582 (terminal-id, terminal-parameters, terminal-parameter)
18583 (set-terminal-parameter, terminal-handle-delete-frame): New functions.
18584 (delete-frame-functions): Add to `delete-frame-functions' hook.
18585 (blink-cursor-mode): Adapt blink-cursor-mode default
18586 value from startup.el.
18587 (make-frame-on-display): Protect condition on x-initialized when
18588 x-win.el is not loaded. Update doc.
18589 (suspend-frame): Use display-controlling-tty-p to decide between
18590 suspend-emacs and suspend-tty.
18591 (frames-on-display-list): Update for display ids.
18592 (framep-on-display): Ditto.
18593 (suspend-frame): Use display-name, not frame-tty-name.
18594 (selected-terminal): New function.
18596 * server.el: Use `device' instead of `display' or `display-id' in
18597 variable and client parameter names.
18598 (server-select-display): Remove (unused).
18599 (server-tty-live-p, server-handle-delete-tty): Remove.
18600 (server-unquote-arg, server-quote-arg, server-buffer-clients):
18602 (server-getenv-from, server-with-environment, server-send-string)
18603 (server-save-buffers-kill-terminal): New functions.
18604 (server-delete-client): Handle quits in kill-buffer. Don't kill
18605 modified buffers. Add extra logging. Delete frames after
18606 deleting the tty. Clear 'client parameter before deleting a frame.
18607 Use delete-display, not delete-tty.
18608 (server-visit-files): Don't set `server-existing-buffer' if the
18609 buffer already has other clients. Return list of buffers
18610 created. Update doc. Don't set client-record when nowait.
18611 (server-handle-delete-frame): Delete the client if this was its
18612 last frame. Check that the frame is alive. Remove bogus comment.
18613 Add note on possible race condition. Delete tty clients, if needed.
18614 (server-handle-suspend-tty): Use server-send-string. Kill the
18615 client in case of errors from process-send-string. Use the display
18617 (server-unload-hook): Remove obsolete delete-tty hook.
18618 (server-start): Ask before restarting if the old server still has
18619 clients. Add feedback messages. Remove obsolete delete-tty hook.
18620 (server-process-filter): Use server-send-string. Accept `-dir'
18621 command. Switch to *scratch* immediately after creating the frame,
18622 before evaluating any -evals. Protect `display-splash-screen'
18623 call in a condition-case. Explain why. Call
18624 `display-startup-echo-area-message' before
18625 `display-splash-screen'. Don't display the splash screen when no
18626 frame was created. Show the Emacs splash screen and startup echo
18627 area message. Display the *scratch* buffer by default. Store the
18628 local environment in a frame (not terminal) parameter. Do not try
18629 to decode environment strings. Fix reference to the 'display
18630 frame parameter. Change syntax of environment variables. Put
18631 environment into terminal parameters, not client parameters. Use
18632 a dummy client with --no-wait's X frames. In `-position LINE'
18633 handler, don't ruin the request string until the line number is
18634 extracted. Log opened files. Handle -current-frame command.
18635 Don't create frames when it is given. Don't bind X frames to the
18636 client when we are in -no-wait mode. Set locale environment
18637 variables from client while creating tty frames. Disable call to
18638 configure-display-for-locale. When processing -position command,
18639 don't change the request string until the parameters are
18640 extracted. Don't try to create an X frame when Emacs does not
18641 support it. Improve logging. Temporarily set ncurses-related
18642 environment variables to those of the client while creating a new
18643 tty frame. Select buffers opened by nowait clients, don't leave
18644 them buried under others. Set the display parameter, and use it
18647 * startup.el (display-startup-echo-area-message): Handle
18648 `inhibit-startup-echo-area-message' here.
18649 (command-line-1): Moved from here.
18650 (fancy-splash-screens): Use `overriding-local-map' instead of
18651 `overriding-terminal-local-map' for now; the latter doesn't work
18652 right, it looses keypresses to another terminal. Use
18653 `overriding-terminal-local-map' to set up keymap. Install a
18654 `delete-frame-functions' hook to catch `delete-frame' events.
18655 Ignore `select-window' events to cope better with
18656 `focus-follows-mouse'. Don't switch back to the original buffer
18657 if the splash frame has been killed. Restore previous buffer, even
18659 (normal-splash-screen): Don't let-bind `mode-line-format'; it
18660 changes the global binding - setq it instead. Use
18661 `save-buffers-kill-terminal'.
18662 (display-splash-screen): Don't do anything if the splash screen is
18663 already displayed elsewhere.
18664 (fancy-splash-exit, fancy-splash-delete-frame): New functions.
18665 (command-line): Replace duplicated code with a call to
18666 tty-run-terminal-initialization. Don't load the terminal
18667 initialization file more than once. Remove call to nonexistent
18668 function `set-locale-translation-file-name'.
18670 * xt-mouse.el (xterm-mouse-x, xterm-mouse-y): Convert to terminal
18672 (xterm-mouse-position-function, xterm-mouse-event): Update.
18673 (xterm-mouse-mode): Don't depend on current value of window-system.
18674 (turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking):
18675 Update for multi-tty.
18676 (turn-on-xterm-mouse-tracking-on-terminal)
18677 (turn-off-xterm-mouse-tracking-on-terminal)
18678 (xterm-mouse-handle-delete-frame): New functions.
18679 (delete-frame-functions, after-make-frame-functions)
18680 (suspend-tty-functions, resume-tty-functions): Install extra hooks
18683 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
18685 * simple.el (invisible-p): Remove: implemented in C now.
18686 (line-move-invisible-p): Remove obsolete alias.
18688 2007-08-28 Juri Linkov <juri@jurta.org>
18690 * image-mode.el (image-type): New variable.
18691 (image-mode): Set default major mode name to "Image[text]".
18692 (image-minor-mode): Change LIGHTER to display image-type in the
18694 (image-minor-mode): Set default image-type to "text".
18695 (image-toggle-display): After switching to text mode, set
18696 image-type to "text" and major mode name to "Image[text]".
18697 After switching to image mode, set image-type to actual image
18698 type, and add image type to major mode name. Let-bind the same
18699 variable names as arguments of `image-type' and `create-image'.
18700 Bind `type' to the result of `image-type' and use it as arg
18701 of `create-image' to not determine the image type twice.
18703 2007-08-28 Michael Albinus <michael.albinus@gmx.de>
18705 * net/tramp.el (tramp-handle-set-file-times): Flush the file properties.
18706 (tramp-set-file-uid-gid, tramp-get-local-uid)
18707 (tramp-get-local-gid): New defuns.
18708 (tramp-handle-copy-file): Handle new parameter PRESERVE-UID-GID.
18709 (tramp-do-copy-or-rename-file): New parameter PRESERVE-UID-GID.
18710 Improve fast track.
18711 (tramp-do-copy-or-rename-file-directly): Sync parameter list with
18712 the other tramp-do-copy-or-rename-file-* functions. Major rewrite.
18713 (tramp-handle-file-local-copy, tramp-handle-insert-file-contents)
18714 (tramp-handle-write-region): Improve fast track.
18715 (tramp-handle-file-remote-p): IDENTIFICATION can also be `localname'.
18716 (tramp-maybe-open-connection): Let `process-adaptive-read-buffering'
18719 2007-08-28 Ivan Kanis <apple@kanis.eu>
18721 * time.el: New feature to display several time zones in a buffer.
18722 (display-time-world-mode, display-time-world-display)
18723 (display-time-world, display-time-world-timer): New functions.
18724 (display-time-world-list, display-time-world-time-format)
18725 (display-time-world-buffer-name, display-time-world-timer-enable)
18726 (display-time-world-timer-second, display-time-world-mode-map):
18729 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
18731 * term/x-win.el (x-gtk-stock-map): New variable.
18732 (x-gtk-map-stock): New function.
18734 * info.el (info-tool-bar-map): Add :rtl keyword to right/left-arrow and
18737 2007-08-28 Johan Bockgård <bojohan@dd.chalmers.se> (tiny change)
18739 * play/gamegrid.el (gamegrid-init): Set line-spacing to 0.
18741 2007-08-28 Glenn Morris <rgm@gnu.org>
18743 * progmodes/cc-langs.el (c-constant-kwds): Add java: null, true, false.
18745 2007-08-27 Thien-Thi Nguyen <ttn@gnuvola.org>
18747 * progmodes/modula2.el (m2-definition, m2-module):
18748 Don't use previous-line. Reported by T. V. Raman.
18750 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18752 * term/mac-win.el (mac-handle-toolbar-switch-mode): Add explicit
18753 argument to tool-bar-mode call.
18755 2007-08-27 Glenn Morris <rgm@gnu.org>
18757 * diff-mode.el (diff-find-file-name): Only accept regular files,
18758 to rule out /dev/null, directories, etc.
18760 * vc-svn.el (vc-svn-diff): If the repository version of all the
18761 files is the same as the specified OLDVERS, do a local diff.
18763 2007-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
18765 * uniquify.el (uniquify-rationalize-file-buffer-names): Check liveness
18766 of buffers in uniquify-managed.
18768 * simple.el (invisible-p): Rename from text-invisible-p.
18771 * progmodes/cperl-mode.el (defcustom, x-color-defined-p, cperl-is-face)
18772 (cperl-is-face, cperl-force-face, cperl-etags-snarf-tag, cperl-mode)
18773 (cperl-etags-snarf-tag, cperl-etags-goto-tag-location, cperl-init-faces)
18774 (cperl-etags-goto-tag-location): Use new style backquotes.
18776 * net/browse-url.el: Remove spurious * in custom docstrings.
18777 (browse-url-filename-alist): Use new-style backquote.
18779 * emacs-lisp/backquote.el (backquote-unquote-symbol)
18780 (backquote-splice-symbol): Clarify they're not new-style unquotes.
18782 * emacs-lisp/edebug.el (edebug-list-form, edebug-match-symbol, \,)
18783 (\,@): Backslash the , and ,@ which are not new-style unquotes.
18785 * textmodes/texinfmt.el (\,): Clarify it's not a new-style unquote.
18787 * net/socks.el (socks-username/password-auth-filter):
18788 Remove unused vars `state' and `desired-len'.
18789 (socks-parse-services, socks-nslookup-host): Use with-current-buffer.
18790 (socks-wait-for-state-change): Use new-style backquotes.
18792 * pcvs.el (cvs-mode-status): Fix long-standing typo.
18794 * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Check old-style
18795 backquotes after each `read' rather than once per buffer.
18797 * dframe.el: Remove spurious * in custom docstrings.
18798 (dframe-xemacsp): Remove, use (featurep 'xemacs) instead.
18799 (dframe-xemacs20p): Remove, inline at the sole use point.
18800 (defface): Don't defvar the face, don't use old-style backquote.
18801 (defcustom): Don't use old-style backquote.
18802 (dframe-frame-parameter, dframe-mouse-event-p):
18803 Make it obvious that it's always defined.
18804 (dframe-popup-kludge): New function to replace
18805 dframe-xemacs-popup-kludge and dframe-xemacs-popup-kludge.
18806 (dframe-frame-mode, dframe-set-timer-internal)
18807 (dframe-mouse-set-point): Remove use of with-no-warnings from
18808 XEmacs-specific code.
18809 (dframe-set-timer-internal): Fix very old bug with
18810 post-command-idle-hook.
18812 * emacs-lisp/byte-opt.el (byte-optimize-featurep): Handle `sxemacs'.
18814 * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Display a big fat
18815 warning if the file uses old style backquotes.
18817 * emacs-lisp/bytecomp.el (byte-compile-log-file)
18818 (byte-recompile-directory, byte-compile-file)
18819 (byte-compile-from-buffer): Use with-current-buffer.
18821 * simple.el (text-invisible-p): Rename from line-move-invisible-p.
18822 (line-move-invisible-p): Keep as an obsolete alias, just to be safe.
18823 (line-move-1, line-move-finish, line-move-to-column)
18824 (move-end-of-line, move-beginning-of-line): Use new name.
18826 * emacs-lisp/backquote.el (backquote-delay-process): Fix last change.
18828 * progmodes/ada-mode.el: Fix up comment style in header.
18829 (ada-check-emacs-version): Remove.
18830 (ada-mode): Set parse-sexp-* even if they don't exist: can't hurt.
18831 (ada-region-selected): Use (featurep 'xemacs) rather than contortions
18832 to try and quieten the byte-compiler.
18833 (ada-create-keymap): Use [(..)] keys, which work on both (X)Emacs.
18835 * vc.el (vc-annotate-warp-version): Don't use previous-line.
18837 2007-08-27 Johan Bockgård <bojohan@dd.chalmers.se>
18839 * net/browse-url.el (browse-url-emacs): New function.
18841 2007-08-27 Thien-Thi Nguyen <ttn@gnuvola.org>
18843 * emacs-lisp/avl-tree.el: New file.
18845 2007-08-26 Michaël Cadilhac <michael@cadilhac.name>
18847 * hi-lock.el (hi-lock-unface-buffer): Show a x-menu only if the mouse
18850 2007-08-26 Sean O'Rourke <seano@cs.ucsd.edu>
18852 * complete.el (PC-do-completion): Make RET accept a non-unique but
18853 complete expansion again.
18855 2007-08-26 Thien-Thi Nguyen <ttn@gnuvola.org>
18857 * eshell/esh-opt.el (eshell-eval-using-options):
18858 Add debug declaration.
18860 2007-08-26 Dan Nicolaescu <dann@ics.uci.edu>
18862 * log-view.el (log-view-toggle-mark-entry): Add docstring.
18863 (log-view-get-marked): Likewise.
18865 * vc-hooks.el (vc-registered): Use mapc instead of mapcar.
18866 (vc-delete-automatic-version-backups): Likewise.
18868 * vc.el (vc-dired-buffers-for-dir): Likewise.
18870 2007-08-25 Dan Nicolaescu <dann@ics.uci.edu>
18872 * progmodes/cperl-mode.el (cperl-indent-level): Autoload the
18873 safe-local-variable setting.
18874 * progmodes/perl-mode.el (perl-indent-level): Likewise.
18876 * log-view.el (log-view-marked-list): Delete variable.
18877 (log-view-mode): Don't use it.
18878 (log-view-toggle-mark-entry): Likewise, simplify.
18879 (log-view-current-tag): Don't return properties.
18880 (log-view-get-marked): New function.
18882 2007-08-25 Alexandre Julliard <julliard@winehq.org>
18884 * vc-git.el (vc-git-mode-line-string): New function.
18886 2007-08-25 Alan Mackenzie <acm@muc.de>
18888 * progmodes/cc-langs.el (c-other-decl-block-key-in-symbols-alist):
18889 new language variable.
18891 * progmodes/cc-engine.el (c-brace-anchor-point): new function.
18892 (c-add-stmt-syntax): Give accurate anchor points for "namespace",
18893 "extern" etc., rather than BOI. Fix addition of spurious
18894 syntactic-symbol 'defun-block-intro, replacing it with
18897 2007-08-25 Juri Linkov <juri@jurta.org>
18899 * files.el (auto-mode-alist): Move "\\.x[bp]m\\'" to image-mode.el.
18901 * image-mode.el: Add autoloads to put associations in auto-mode-alist:
18902 associate "\\.x[bp]m\\'" with c-mode and image-mode-maybe, and
18903 "\\.svgz?\\'" with xml-mode and image-mode-maybe.
18905 * image.el (image-type-header-regexps): Use more complex regexp for svg.
18906 (image-type-file-name-regexps): Add ("\\.svgz?\\'" . svg).
18907 (image-type-auto-detectable): Add (svg . maybe).
18909 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add .svgz
18910 to treat it like .tgz.
18912 * calendar/cal-bahai.el: Add file coding cookie.
18914 2007-08-25 Reiner Steib <Reiner.Steib@gmx.de>
18916 * pcvs.el (cvs-query-directory): Only prompt when prefix is given.
18917 Don't behave differently when executed via M-x. Add doc string.
18919 * sort.el (sort-fold-case, sort-numeric-base): Mark as
18920 safe-local-variable.
18922 2007-08-25 Jay Belanger <jay.p.belanger@gmail.com>
18924 * calc/calc-forms.el (var-TimeZone): Make nil explicitly
18926 (math-calendar-tzinfo): New variable.
18927 (math-get-calendar-tzinfo): New function.
18928 (calcFunc-tzone, calcFunc-dst): Use Emacs's calendar
18929 to get information when zone is nil.
18931 2007-08-24 Dan Nicolaescu <dann@ics.uci.edu>
18933 * log-view.el (log-view-toggle-mark-entry): New function.
18934 (log-view-mode-map): Bind it.
18935 (log-view-marked-list): New variable.
18936 (log-view-mode): Make it local.
18938 2007-08-24 Thien-Thi Nguyen <ttn@gnuvola.org>
18940 * play/zone.el (zone-pgm-rat-race): New func.
18941 (zone-programs): Add `zone-pgm-rat-race'.
18943 2007-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
18945 * emacs-lisp/byte-opt.el (byte-optimize-if): Don't presume `clause' is
18948 2007-08-24 Thien-Thi Nguyen <ttn@gnuvola.org>
18950 * progmodes/hideshow.el (hs-match-data): Delete alias.
18951 (hs-hide-block-at-point, hs-find-block-beginning)
18952 (hs-show-block): Use `match-data' directly.
18954 2007-08-24 Martin Rudalics <rudalics@gmx.at>
18956 * format.el (format-alist): Fix typo in doc-string.
18958 2007-08-24 Michael Albinus <michael.albinus@gmx.de>
18960 * net/tramp.el (tramp-local-host-p): New defun.
18961 (tramp-handle-file-local-copy, tramp-handle-write-region):
18962 Implement fast track when being on the local host.
18963 (tramp-file-name-handler): Don't set "started" property. It shall
18964 be reserved for the "ftp" method.
18965 (tramp-make-copy-program-file-name): Use `tramp-file-name-real-host'.
18967 * net/tramp-ftp.el (top): Autoload `tramp-set-connection-property'.
18968 (tramp-ftp-file-name-handler): Set "started" property.
18970 2007-08-24 Ulrich Mueller <ulm@gentoo.org> (tiny change)
18972 * files.el (backup-buffer-copy): Don't wrap delete in
18973 condition-case, only try to delete if file exists.
18975 2007-08-24 Glenn Morris <rgm@gnu.org>
18977 * files.el (backup-buffer-copy): Revert 2007-08-22 change.
18979 * startup.el (tutorial-directory): Set with eval-at-startup so it
18980 gets the right value in an installed Emacs.
18982 2007-08-24 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
18984 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): New face.
18985 (eldoc-highlight-function-argument): Use it.
18987 2007-08-23 Masatake YAMATO <jet@gyve.org>
18989 * progmodes/cc-fonts.el (gtkdoc-font-lock-doc-comments): Highlight
18990 name of parameters in document body.
18992 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
18994 * emacs-lisp/bytecomp.el (byte-compile-output-docform)
18995 (byte-compile-output-as-comment): Use with-current-buffer rather than
18996 a weird set-buffer&prog1 combination.
18998 * emacs-lisp/byte-opt.el (byte-optimize-if): Move `progn' out of the
18999 test so as to optimise cases where the `progn's result is constant.
19001 2007-08-23 Thien-Thi Nguyen <ttn@gnuvola.org>
19003 * locate.el (locate-get-file-positions):
19004 Use line-beginning-position and line-end-position.
19006 2007-08-23 John Wiegley <johnw@newartisans.com>
19008 * calendar/cal-bahai.el: Added in the diacriticals that were
19009 missing for many of the month names.
19011 2007-08-22 Jason Rumney <jasonr@gnu.org>
19013 * vc-hooks.el (vc-menu-map-filter): Reapply 2007-08-06 bugfix.
19015 2007-08-22 Chong Yidong <cyd@stupidchicken.com>
19017 * image-mode.el (image-minor-mode): Use image-mode-text-map.
19019 2007-08-22 Sean O'Rourke <sorourke@cs.ucsd.edu>
19021 * dabbrev.el (dabbrev--progress-reporter): New variable.
19022 (dabbrev--scanning-message): Delete func.
19023 (dabbrev--find-expansion): Use a progress reporter
19024 instead of dabbrev--scanning-message.
19026 2007-08-22 Michael Albinus <michael.albinus@gmx.de>
19028 * comint.el (comint-exec-1): Raise an error if
19029 `start-file-process' does not return a process object.
19031 * shell.el (shell): Prompt for `default-directory' if it is a
19032 remote file name, and if called with a prefix arg.
19034 2007-08-22 Sam Steingold <sds@gnu.org>
19036 * pcvs.el (cvs-vc-command-advice): Fix a typo in code (file->files).
19038 2007-08-22 Carsten Dominik <dominik@science.uva.nl>
19040 * textmodes/org-export-latex.el: New file.
19042 * textmodes/org-publish.el (org-publish-org-to-latex): New function.
19044 * textmodes/org.el (org-agenda-skip): Allow a form for
19045 `org-agenda-skip-function'.
19046 (org-agenda-redo): Re-use local settings.
19047 (org-agenda): Store local settings.
19048 (org-agenda-deadline-faces): New option.
19049 (org-agenda-deadline-face): New function.
19050 (org-agenda-get-deadlines, org-agenda-get-scheduled): Also handle
19051 entries on their due date.
19052 (org-agenda-get-timestamps): No longer handle the due dates of
19053 schedules and deadline items.
19054 (org-insert-link-global, org-open-at-point-global): New commands.
19055 (org-export-as-ascii): Call `org-cleaned-string-for-export' with a
19056 :for-ascii parameter.
19057 (org-skip-comments): Function removed.
19058 (org-cleaned-string-for-export): Handle special table lines.
19059 (org-global-properties): New option.
19060 (org-entry-get-with-inheritance): Check global properties.
19061 (org-local-properties): New variable.
19062 (org-set-regexps-and-options): Find the #+PROPERTY line.
19063 (org-link-types): Change type into variable (was constant).
19064 (org-make-link-regexps): New function.
19065 (org-link-re-with-space, org-link-re-with-space2)
19066 (org-angle-link-re, org-plain-link-re, org-bracket-link-regexp)
19067 (org-bracket-link-analytic-regexp, org-any-link-re): Creation of
19068 these regular expressions happens now in the function
19069 `org-make-link-regexps'.
19070 (org-store-link): Call the functions in
19071 `org-store-link-functions'.
19072 (org-add-link-type): New function.
19073 (org-store-link-functions): New variable.
19074 (org-activate-tags): Force matches to be in headlines.
19075 (org-batch-store-agenda-views): Fix bug with killing agenda buffer.
19076 (org-columns-display-here): Make sure this works in a narrowed
19077 buffer by checking for point-min.
19078 (org-columns-display-here): Make the rest of the line intangible,
19079 so that point never can be there.
19080 (org-cleaned-string-for-export): Use `with-current-buffer'.
19081 (org-replace-region-by-html): Use `with-current-buffer'.
19082 (org-unfontify-region, org-do-occur, org-columns-display-here)
19083 (org-columns-remove-overlays, org-columns-quit)
19084 (org-columns-edit-value, org-columns-next-allowed-value)
19085 (org-eval-in-calendar, org-agenda-undo, org-no-read-only)
19086 (org-finalize-agenda, org-remove-subtree-entries-from-agenda)
19087 (org-agenda-todo, org-agenda-change-all-lines)
19088 (org-agenda-align-tags, org-agenda-priority)
19089 (org-agenda-set-tags, org-agenda-toggle-archive-tag)
19090 (org-agenda-show-new-time, org-cleaned-string-for-export)
19091 (org-export-grab-title-from-buffer)
19092 (org-export-as-ascii, org-export-as-html): Use `inhibit-read-only'
19093 instead of `buffer-read-only'.
19094 (org-export-as-html): Set `coding-system-for-write'.
19095 (org-remember-store-without-prompt): New option.
19096 (org-archive-subtree): Fixed bug with modifying TODO keyword.
19097 (org-beginning-of-line): Also treat C-a special in items.
19098 (org-table-convert-refs-to-rc): Fixed problem with column
19099 reference after "..".
19100 (org-columns-compute): Don't mark buffer modified because of text
19102 (org-batch-store-agenda-views): Use the variable
19103 `default-directory', not the function.
19104 (org-clock-out-if-current): Respect `org-clock-out-when-done'.
19105 (org-clock-out-when-done): New option.
19106 (org-html-entities): Added HTML entities for smileys.
19108 2007-08-22 Glenn Morris <rgm@gnu.org>
19110 * image.el (create-image): Doc fix.
19112 * startup.el (tutorial-directory): New constant.
19113 (fancy-splash-text): Tutorials now in tutorial-directory.
19114 * tutorial.el (help-with-tutorial): Tutorials now in
19115 tutorial-directory.
19117 2007-08-22 Michael Albinus <michael.albinus@gmx.de>
19119 * net/tramp.el (top): Require cl.el, when `copy-tree' is not available
19121 (tramp-get-remote-path): New defun. Replace occurrences of
19122 `tramp-default-remote-path' by this function.
19123 (tramp-set-remote-path): Move most of the code to
19124 `tramp-get-remote-path'.
19125 (tramp-get-ls-command, tramp-get-remote-id): Don't check for not
19126 existing directories, this is done already in
19127 `tramp-get-remote-path'.
19129 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
19131 * image-file.el (image-file-name-extensions): Add "svg".
19132 * image.el (image-type-header-regexps): Add svg entry.
19134 2007-08-22 Glenn Morris <rgm@gnu.org>
19136 * files.el (backup-buffer-copy): Check backup directory is
19137 writable, to avoid infloop deleting old backup.
19139 * mail/rmail.el (rmail-movemail-variant-p): Call on load to set
19140 movemail related variables.
19141 (rmail-insert-inbox-text): Use only rmail-movemail-program, which
19142 will now be set before this is called.
19144 2007-08-21 Juri Linkov <juri@jurta.org>
19146 * delsel.el (delete-selection-pre-hook):
19147 * emulation/cua-base.el (cua-paste): Use `mouse-region-match'
19148 instead of checking last-command.
19150 2007-08-21 Juri Linkov <juri@jurta.org>
19152 * loadup.el: Preload "button".
19154 2007-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
19156 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
19157 Add previous-line and next-line.
19159 * vc-arch.el (vc-arch-extra-menu-map): New var and fun.
19160 (vc-arch-find-file-not-found-hook): Remove, it's now the default.
19162 * vc-hooks.el (vc-menu-entry): New var.
19163 (vc-mode-line-map): Use it so that this menu also uses the extra-menu.
19164 (menu-bar-tools-menu): Add the VC menu here rather than in menu-bar.el.
19165 (vc-menu-map): Declare and initialize in one step.
19166 (vc-menu-map-filter): Move&rename from menu-bar.el:menu-bar-vc-filter.
19168 * menu-bar.el (vc-menu-map): Don't setup any more.
19169 Instead, just create the proper spot in the menu.
19171 2007-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
19173 * smerge-mode.el (smerge-resolve): New arg `safe'.
19174 (smerge-resolve-all, smerge-batch-resolve): New function.
19175 (smerge-refine): Make sure `diff' returns the expected result.
19176 (smerge-parsep-re): New const.
19177 (smerge-mode): Use it to adjust paragraph-separate.
19179 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
19180 Correctly match / regexp matchers as first char on a line when
19181 fontifying only that line.
19183 * emacs-lisp/cl-macs.el (cl-transform-lambda): Preserve the match-data.
19185 2007-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
19187 * vc-bzr.el: Don't fiddle with vc-handled-backend.
19188 (vc-bzr-registered): Don't redundantly protect against
19189 file-error. Actually use the format-specific code.
19190 (vc-bzr-buffer-nonblank-p): Remove.
19191 (vc-bzr-status): Change `kindchange' -> `kindchanged'.
19193 2007-08-20 Juri Linkov <juri@jurta.org>
19195 * startup.el (fancy-splash-text): Change multiple tabs into one
19196 tab. Remove "Useful File menu items" section (with "Exit Emacs"
19197 and "Recover Crashed Session").
19198 (fancy-splash-screens): Set tab-width to 22.
19199 (normal-splash-screen): Replace literal tabs with \t and
19200 fix whitespace. Remove "Useful File menu items" section (with
19201 "Exit Emacs" and "Recover Crashed Session").
19203 2007-08-20 Johannes Weiner <hannes@saeurebad.de> (tiny change)
19205 * emacs-lisp/lisp-mode.el (preceding-sexp): New fun, the code was
19206 extracted from `eval-last-sexp-1'.
19207 (eval-last-sexp-1): Call `preceding-sexp'.
19209 2007-08-20 Thien-Thi Nguyen <ttn@gnuvola.org>
19211 * vc-rcs.el (vc-rcs-annotate-command):
19212 Fix bug introduced 2007-07-18T16:32:40Z!esr@snark.thyrsus.com:
19213 Add back :vc-annotate-prefix propertization.
19215 2007-08-20 Andreas Schwab <schwab@suse.de>
19217 * mail/rmail.el (rmail-autodetect): Doc fix.
19219 2007-08-19 Juri Linkov <juri@jurta.org>
19221 * startup.el (normal-splash-screen): Add more links.
19223 2007-08-19 Juri Linkov <juri@jurta.org>
19225 * startup.el (splash-screen-keymap): Rename from `fancy-splash-keymap'
19226 because it's common to both types of splash screen: fancy and normal.
19227 Bind SPC to scroll-up, DEL to scroll-down and `q' to exit-splash-screen.
19228 (exit-splash-screen): Rename from `fancy-splash-quit'.
19229 Use `quit-window' instead of `kill-buffer'.
19230 (fancy-splash-head): Use make-button to insert GNU image link.
19231 (fancy-splash-screens, normal-splash-screen): Rename " About GNU
19232 Emacs" to "*About GNU Emacs*", and " GNU Emacs" to "*GNU Emacs*".
19233 (normal-splash-screen): Put "Browse manuals" on the same line with
19234 "Emacs manual". Remove descriptions from "Useful tasks" and put
19235 all links in two columns on two lines.
19237 2007-08-19 Michael Kifer <kifer@cs.stonybrook.edu>
19239 * emulation/viper.el (viper-remove-hooks): Remove some additional
19240 viper hooks when the user calls viper-go-away.
19241 (viper-go-away): Restore the default of default-major-mode.
19242 Save the value of default-major-mode before vaperization.
19244 * emulation/viper-cmd.el: Replace error "" with "Viper bell".
19246 * emulation/viper-ex.el: Replace error "" with "Viper bell".
19248 * ediff-util.el (ediff-make-temp-file): Use the coding system of the
19249 buffer for which file is created.
19251 2007-08-19 Glenn Morris <rgm@gnu.org>
19253 * Makefile.in (custom-deps, finder-data, autoloads, recompile)
19254 (progmodes/cc-mode.elc, mh-e/mh-loaddefs.el): Use $(emacs) rather
19255 than $(EMACS), so that EMACSLOADPATH is set. Prevents any system
19256 shadow files messing up the compilation.
19258 2007-08-18 Glenn Morris <rgm@gnu.org>
19260 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Add doc
19261 string. Also apply eldoc-argument-case in the help-split-fundoc
19262 case. Adapt for changed behavior of eldoc-function-argstring,
19263 eldoc-function-argstring-format, and
19264 eldoc-highlight-function-argument.
19265 (eldoc-highlight-function-argument): Handle nil INDEX argument,
19266 just call eldoc-docstring-format-sym-doc in that case.
19267 (eldoc-function-argstring): Change the behavior. Now it converts
19268 an argument list to a string.
19269 (eldoc-function-argstring-format): Change the behavior. Now it
19270 applies `eldoc-argument-case' to a string.
19272 * progmodes/scheme.el (scheme-mode-variables): Set
19273 font-lock-comment-start-skip.
19275 2007-08-18 Martin Rudalics <rudalics@gmx.at>
19277 * progmodes/ada-mode.el (ada-create-syntax-table): Move
19278 set-syntax-table from here to ...
19279 (ada-mode): ... here. Do not change global value of
19280 comment-multi-line. Call new function
19281 ada-initialize-syntax-table-properties and add new function
19282 ada-handle-syntax-table-properties to font-lock-mode-hook.
19283 (ada-deactivate-properties, ada-initialize-properties): Replace
19284 by new functions ...
19285 (ada-handle-syntax-table-properties)
19286 (ada-initialize-syntax-table-properties)
19287 (ada-set-syntax-table-properties): ... to set up syntax-table
19288 properties uniformly, independently from whether font-lock-mode
19289 is enabled or not. Handle read-only buffers and do not change
19290 undo-list when setting syntax-table properties.
19291 (ada-after-change-function): Use ada-set-syntax-table-properties.
19293 2007-08-18 Michaël Cadilhac <michael@cadilhac.name>
19295 * progmodes/meta-mode.el (meta-indent-calculate-last): Remove.
19296 (meta-indent-current-nesting): Use a computation of the nesting
19298 (meta-indent-current-indentation): Indentation is given according
19299 to nesting and if the previous line was finished or not.
19300 (meta-indent-unfinished-line): Tell if the current line ends with
19301 a finished expression.
19302 (meta-indent-looking-at-code): Like `looking-at', but checks if
19303 the point is in a string before.
19304 (meta-indent-level-count): Use it. Don't count parenthesis as it's
19305 done in the nesting function.
19306 (meta-indent-in-string-p): Tell if the current point is in a
19308 (meta-indent-calculate): Treat b-o-b as a special case. Use the
19309 previous functions.
19311 2007-08-17 Thien-Thi Nguyen <ttn@gnuvola.org>
19313 * emacs-lisp/copyright.el (copyright-limit): New defsubst.
19314 (copyright-update-year, copyright-update)
19315 (copyright-fix-years): Use it.
19317 2007-08-17 Kimit Yada <kimitto@gmail.com> (tiny change)
19319 * emacs-lisp/copyright.el (copyright-update-year):
19320 Fix bug: Handle nil copyright-limit.
19322 2007-08-17 Jay Belanger <jay.p.belanger@gmail.com>
19324 * calc/calc-units.el (math-standard-units): Give exact
19325 conversion for tsp.
19327 * calc/calc.el (math-bignum-digit-length): Compute the
19330 * calc/calc-bin.el (math-bignum-logb-digit-size)
19331 (math-bignum-digit-power-of-two):
19332 * calc/calc-comb.el (math-small-factorial-table):
19333 * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
19334 (math-approx-gamma-const):
19335 * calc/calc-funcs.el (math-besJ0, math-besJ1, math-besY0)
19336 (math-besY1, math-bernoulli-b-cache):
19337 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
19338 Remove `eval-when-compile's.
19340 2007-08-17 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> (tiny change)
19342 * progmodes/cperl-mode.el (cperl-look-at-leading-count)
19343 (cperl-find-pods-heres): Fix an error when typing expressions like
19346 2007-08-17 Michaël Cadilhac <michael@cadilhac.name>
19348 * mail/emacsbug.el (report-emacs-bug): Remove the last number of
19349 `emacs-version', use the topic prefix ``version; ''. Make MS-DOS
19350 a special case (there's no build number).
19352 2007-08-17 T. V. Raman <raman@users.sf.net> (tiny change)
19354 * completion.el (symbol-under-point, symbol-before-point)
19355 (symbol-before-point-for-complete): Use buffer-substring-no-properties.
19357 2007-08-17 Glenn Morris <rgm@gnu.org>
19359 * progmodes/compile.el (compilation-get-file-structure): Make use
19360 of the directory part when checking for an existing entry, to
19361 handle files with same basename in different directories.
19363 2007-08-17 Jay Belanger <jay.p.belanger@gmail.com>
19365 * calc/calc.el (calc-language-alist): Add texinfo-mode.
19367 2007-08-16 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19369 * ps-print.el (ps-header-font-size, ps-header-title-font-size)
19370 (ps-footer-font-size, ps-line-number-font-size, ps-line-spacing)
19371 (ps-paragraph-spacing): Docstring fix.
19373 2007-08-16 Glenn Morris <rgm@gnu.org>
19375 * ps-print.el (ps-font-size): Doc fix.
19377 2007-08-16 Richard Stallman <rms@gnu.org>
19379 * emacs-lisp/copyright.el (copyright-names-regexp): Add custom group.
19381 2007-08-15 Juri Linkov <juri@jurta.org>
19383 * startup.el (initialization): Change parent group from `internal'
19385 (initial-buffer-choice): New variable.
19386 (command-line): Revert 2007-07-02 change that sets
19387 buffer-offer-save in *scratch* and enables auto-save in it.
19388 (fancy-splash-text): Add links to existing items. Add new items
19389 with links for useful tasks. Move information about Control-g to
19390 fancy-splash-head. Move "Emacs Guided Tour" to the end.
19391 (fancy-splash-keymap): New variable.
19392 (fancy-splash-last-input-event): Remove variable.
19393 (fancy-splash-insert): Add processing of `:link' element.
19394 (fancy-splash-head): Replace "Type Control-l to begin editing"
19395 with "Type `q' to exit".
19396 (fancy-splash-screens-1): Let-bind inhibit-read-only to t.
19397 (fancy-splash-default-action, fancy-splash-special-event-action):
19399 (fancy-splash-quit): New function.
19400 (fancy-splash-screens): Rename input arg from `hide-on-input' to
19401 `static' and reverse the condition of its usage. Don't preserve
19402 original values of `minor-mode-map-alist',
19403 `emulation-mode-map-alists', `special-event-map'.
19404 Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
19405 Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
19406 Remove processing of special events. Use local key map
19407 `fancy-splash-keymap'. Set buffer to read-only.
19408 (normal-splash-screen): Rename input arg from `hide-on-input' to
19409 `static' and reverse the condition of its usage.
19410 Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
19411 Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
19412 Add links to existing items. Add new items with links for useful
19413 tasks. Use local key map `fancy-splash-keymap'.
19414 (display-splash-screen): Rename input arg from `hide-on-input' to
19416 (about-emacs): Add alias to display-splash-screen.
19417 (command-line-1): Use `initial-buffer-choice'.
19419 * menu-bar.el (menu-bar-help-menu):
19420 * term/mac-win.el (mac-apple-event-map): Bind About Emacs menu
19421 item to about-emacs instead of display-splash-screen.
19423 2007-08-15 Jay Belanger <jay.p.belanger@gmail.com>
19425 * calc/calc-units.el (math-standard-units): Update values.
19426 Put in exact, rational values when possible.
19427 (math-unit-prefixes): Replace floats with powers of ten.
19428 (math-standard-units-systems): Replace floats with integers.
19429 (math-make-unit-string): Remove extra spaces in output.
19431 2007-08-15 Glenn Morris <rgm@gnu.org>
19433 * mail/undigest.el (rmail-digest-parse-rfc1153sloppy): Be even
19434 sloppier, for the sake of GNU Mailman.
19435 (rmail-digest-rfc1153): Initialize `result' correctly.
19437 2007-08-15 Michaël Cadilhac <michael@cadilhac.name>
19439 * mail/emacsbug.el (report-emacs-bug): Put `Bug: emacs-version; '
19440 in the mail title. Suggested by Reiner Steib.
19442 2007-08-14 Chris Hecker <checker@d6.com> (tiny change)
19444 * calc/calc-aent.el (calc-do-quick-calc): Add binary
19445 representation of integers to the list of outputs.
19447 2007-08-14 Glenn Morris <rgm@gnu.org>
19449 * simple.el (bad-packages-alist): New constant.
19450 (bad-package-check): New function. Together, these two add elements
19451 to `after-load-alist' to check for problematic external packages.
19452 * emulation/cua-base.el: Move CUA-mode check to `bad-packages-alist'.
19454 2007-08-14 Jay Belanger <jay.p.belanger@gmail.com>
19456 * calc/calc-units.el (math-get-standard-units)
19457 (math-get-units, math-make-unit-string)
19458 (math-get-default-units, math-put-default-units): New functions.
19459 (math-default-units-table): New variable.
19460 (calc-convert-units, calc-convert-temperature): Add machinery
19461 to supply default values.
19463 2007-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
19465 * emulation/tpu-edt.el: Add tpu-extras's autoloads.
19466 (tpu-gold-map, tpu-global-map): Comment-out the bindings to nil.
19467 (tpu-gold-map): Bind F to tpu-cursor-free-mode.
19468 (minibuffer-local-map): Use funkey symbols rather than esc-sequence.
19470 * emulation/tpu-extras.el: Remove spurious * in docstrings.
19471 Put its autoloads into tpu-edt.el rather than loaddefs.el.
19472 (tpu-cursor-free-mode): Rename from tpu-cursor-free.
19473 Make into a proper minor-mode.
19474 (tpu-backward-char, tpu-next-line, tpu-previous-line)
19475 (tpu-next-end-of-line, tpu-current-end-of-line): Use new name.
19476 (tpu-trim-line-ends-if-needed): Rename from tpu-before-save-hook.
19477 (tpu-set-cursor-free, tpu-set-cursor-bound):
19478 Delegate to tpu-cursor-free-mode.
19479 (tpu-next-line, tpu-previous-line, tpu-forward-line)
19480 (tpu-backward-line, tpu-scroll-window-down, tpu-scroll-window-up):
19481 Use line-move or forward-line instead of next-line-internal.
19483 2007-08-13 Nick Roberts <nickrob@snap.net.nz>
19485 * progmodes/gdb-ui.el (gdb-send): Handle CTRL-D more carefully.
19487 2007-08-12 Richard Stallman <rms@gnu.org>
19489 * pcvs.el (cvs-reread-cvsrc, cvs-checkout, cvs-mode-checkout)
19490 (cvs-execute-single-file): Use new name split-string-and-unquote.
19491 (cvs-header-msg): Use new name combine-and-quote-strings.
19493 * emulation/vi.el (vi-next-line): Ignore return value of line-move.
19495 * progmodes/gud.el (gud-common-init): Use new name
19496 split-string-and-unquote.
19498 * progmodes/flymake.el (flymake-err-line-patterns): Fix infloop
19501 * pcvs-util.el (cvs-qtypedesc-strings): Use new names
19502 combine-and-quote-strings and split-string-and-unquote.
19504 * subr.el (combine-and-quote-strings): Rename from strings->string.
19505 (split-string-and-unquote): Rename from string->strings.
19507 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
19509 * log-view.el (log-view-font-lock-keywords): Use `eval' so as to adapt
19510 to buffer-local settings.
19512 * emacs-lisp/backquote.el (backquote-delay-process): New function.
19513 (backquote-process): Add internal arg `level'. Use the two to
19514 correctly handle nested backquotes.
19516 2007-08-09 Riccardo Murri <riccardo.murri@gmail.com>
19518 * vc-bzr.el (vc-bzr-registered): Use \0 instead of literal NULs.
19519 (vc-bzr-state-words): Add "kind changed" state word.
19520 (vc-bzr-status): New function. Return Bzr idea of file status,
19521 which is different from VC's.
19522 (vc-bzr-state): Use vc-bzr-status.
19523 (vc-workfile-unchanged-p): Use vc-bzr-status.
19524 (vc-bzr-revert): Use synchronous process; expect exitcode 0.
19525 (vc-dired-state): Process "kind changed" state word.
19527 2007-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
19529 * vc-hooks.el (vc-default-find-file-not-found-hook): Do nothing.
19531 * vc-rcs.el (vc-rcs-find-file-not-found-hook):
19532 Move from vc-default-find-file-not-found-hook.
19534 2007-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
19536 * man.el: Remove spurious * in docstrings.
19537 Merge defvars and toplevel setq-defaults.
19538 (Man-highlight-references0): Limit=nil rather than point-max.
19539 (Man-mode-map): Move initialization into the declaration.
19540 (Man-strip-page-headers, Man-unindent): Use dolist & inhibit-read-only.
19541 (Man-view-header-file): Use expand-file-name rather than concat.
19542 (Man-notify-when-ready, Man-bgproc-sentinel): Use with-current-buffer.
19544 * man.el (Man-next-section): Make sure we do not move backward.
19546 2007-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
19548 * files.el (auto-mode-alist): Use the purecopied text (duh!).
19550 2007-08-08 Glenn Morris <rgm@gnu.org>
19552 * Replace `iff' in doc-strings and comments.
19554 2007-08-08 Martin Rudalics <rudalics@gmx.at>
19556 * dired.el (dired-pop-to-buffer):
19557 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
19558 * calendar/calendar.el (generate-calendar-window):
19559 * progmodes/compile.el (compilation-set-window-height):
19560 * textmodes/two-column.el (2C-two-columns, 2C-merge):
19561 Use window-full-width-p instead of comparing frame-width and
19564 * progmodes/compile.el (compilation-find-buffer): Remove extra
19565 argument in call to compilation-buffer-internal-p.
19567 2007-08-07 Tom Tromey <tromey@redhat.com>
19569 * progmodes/tcl.el (tcl-indent-level, tcl-continued-indent-level):
19570 Add safe-local-variable property.
19572 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
19574 * image-mode.el (image-toggle-display): Use image-refresh.
19576 2007-08-07 Riccardo Murri <riccardo.murri@gmail.com>
19578 * vc-bzr.el: Remove comments about vc-bzr.el being a modified
19579 unofficial version.
19580 (vc-bzr-command): Remove redundant setting of process-connection-type.
19581 (vc-bzr-admin-checkout-format-file): Add autoload.
19582 (vc-bzr-root-dir): Remove in favor of vc-bzr-root.
19583 (vc-bzr-root): Switch to implementation of vc-bzr-root-dir.
19584 (vc-bzr-registered): Compare dirstate format tag with known good
19585 value, abort parsing if match fails. Warn user in docstring.
19586 (vc-bzr-workfile-version): Case for different Bzr branch formats.
19587 See bzrlib/branch.py in Bzr sources.
19588 (vc-bzr-diff): First argument FILES may be a string rather than a list.
19589 (vc-bzr-shell-command): Remove in favor of
19590 vc-bzr-command-discarding-stderr.
19591 (vc-bzr-command-discarding-stderr): New function.
19593 2007-08-06 Riccardo Murri <riccardo.murri@gmail.com>
19595 * vc-bzr.el (vc-bzr-registered): Gracefully handle missing "bzr"
19596 program, and return nil.
19597 (vc-bzr-state): Gracefully handle missing "bzr" program, and return nil.
19598 (vc-bzr-state): Look for path names relative to the repository
19599 root after status keyword.
19600 (vc-bzr-file-name-relative): New function.
19601 (vc-bzr-admin-dirname): Reinstate, as other vc-bzr-admin-... paths
19603 (vc-bzr-admin-dirname, ...-checkout-format-file)
19604 (...-branch-format-file, ...-revhistory): Paths to some Bzr internal
19605 files that we now parse directly for speed.
19606 (vc-bzr-root-dir): Use `vc-bzr-admin-checkout-format-file' as witness.
19607 (vc-bzr-registered): Only parse vc-bzr-admin-dirstate file if it exists.
19608 (vc-bzr-state): "bzr status" successful only if exitcode is 0.
19609 (vc-bzr-root): Use `vc-bzr-shell-command'. Stderr may contain
19610 Bzr warnings, so we must discard it.
19611 (vc-bzr-workfile-version): Speedup counting lines from
19612 `vc-bzr-admin-revhistory' file, but fallback to spawning "bzr revno"
19613 if that file doesn't exist.
19614 (vc-bzr-responsible-p): Use `vc-bzr-root' instead of
19615 `vc-bzr-root-dir' for speed. Add `vc-bzr-admin-dirname' (not ".bzr"!)
19616 to `vc-directory-exclusion-list'.
19617 (vc-bzr-shell-command): New function.
19619 2007-08-06 Tom Tromey <tromey@redhat.com>
19621 * diff-mode.el (diff-unified->context, diff-reverse-direction)
19622 (diff-fixup-modifs): Typo in docstring.
19624 2007-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
19626 * emulation/tpu-edt.el (tpu-current-line): Use posn-at-point and
19627 count-screen-lines.
19628 (tpu-edt-off): Disable relevant pieces of advice.
19630 * emulation/tpu-extras.el (tpu-before-save-hook): Rename from
19631 tpu-write-file-hook. Activate it with add-hook on buffer-save-hook.
19632 (newline, newline-and-indent, do-auto-fill): Use advice instead of
19633 redefining the function.
19634 (tpu-set-scroll-margins): Activate the pieces of advice.
19636 2007-08-06 Martin Rudalics <rudalics@gmx.at>
19638 * help.el (resize-temp-buffer-window): Use window-full-width-p
19639 instead of comparing frame-width and window-width.
19641 2007-08-13 Stephen Leake <stephen_leake@stephe-leake.org>
19643 * pcvs-parse.el (cvs-parse-table): Handle additional instance of
19644 optional quotes around files in NEED-UPDATE . REMOVED case.
19646 * progmodes/ada-xref.el (ada-gnatls-args): Fix docstring.
19647 (ada-treat-cmd-string): Improve error message.
19648 (ada-do-file-completion): Call `ada-require-project-file', so
19649 project variables are set properly.
19650 (ada-prj-find-prj-file): Delete Emacs 20.2 support.
19651 (ada-gnatfind-buffer-name): New constant.
19652 (ada-find-any-references): Use new constant. Set buffer name
19653 properly in compilation-start. Toggle read-only properly.
19654 (ada-find-in-src-path): Fix spelling error in docstring.
19656 * progmodes/vhdl-mode.el (vhdl-update-progress-info): Avoid divide
19659 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
19661 * emacs-lisp/autoload.el (autoload-print-form): Use print-quoted.
19663 2007-08-12 Richard Stallman <rms@gnu.org>
19665 * progmodes/sh-script.el (sh): Delete group `unix'.
19667 * progmodes/gud.el (gud): Change to group `processes'.
19669 2007-08-11 Glenn Morris <rgm@gnu.org>
19671 * progmodes/compile.el (compilation-buffer-name): Don't check
19672 compilation-arguments. It is superfluous, and the variable isn't
19673 even set when this function is called.
19675 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19677 * term/mac-win.el (mac-ae-reopen-application): New function.
19678 (mac-apple-event-map): Bind "reopen application" Apple event to it.
19680 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
19682 * textmodes/tex-mode.el (tex-font-lock-unfontify-region): Fix to
19683 take tex-font-script-display into account.
19684 (tex-font-script-display, tex-font-lock-suscript): Change from a cons
19685 cell to a list of 2 elements to simplify the unfontify code.
19687 2007-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19689 * ps-print.el (ps-default-fg, ps-default-bg): Docstring fix.
19690 (ps-begin-job): Use ps-default-fg and ps-default-bg only when
19691 ps-print-color-p is neither nil nor black-white. Reported by Christian
19692 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
19694 2007-08-08 Andreas Schwab <schwab@suse.de>
19696 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook): Check for
19697 self-insert-command, not self-insert.
19699 2007-08-08 Glenn Morris <rgm@gnu.org>
19701 * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Make second
19702 argument optional, for backwards compatibility, and only highlight
19703 args when present. Fix symbol name typo (doc/args).
19705 * help-mode.el (help-make-xrefs): Search for symbol constituents,
19706 rather than just `-'.
19708 2007-08-07 Jay Belanger <jay.p.belanger@gmail.com>
19710 * calc/calc-units.el (calc-convert-temperature):
19711 Use `/' to create fractions.
19713 2007-08-07 Michael Albinus <michael.albinus@gmx.de>
19715 * net/tramp.el (tramp-wrong-passwd-regexp): Make the regexp more
19717 (tramp-handle-shell-command): Handle OUTPUT-BUFFER and
19718 ERROR-BUFFER more robust. Display output.
19719 (tramp-file-name-handler): Add a connection property when we found
19720 a foreign file name handler. This allows backends like ftp to
19721 profit also from usr/host name completion based on connection
19723 (tramp-send-command-and-read): Search for trash after the regexp
19724 until eol only. In XEmacs, there is a problem with \n.
19726 * net/tramp-cache.el (top): Read persistent connection history
19727 when cache is empty.
19729 2007-08-07 Nic Ferrier <nferrier@tapsellferrier.co.uk> (tiny change)
19731 * net/tramp.el (tramp-handle-process-file): Fix bug inserting
19734 2007-08-07 Sam Steingold <sds@gnu.org>
19736 * progmodes/compile.el (compilation-start): Pass nil as startfile
19739 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
19741 * longlines.el (longlines-decoded): New variable.
19742 (longlines-mode): Avoid encoding or decoding the buffer twice.
19744 2007-08-07 Martin Rudalics <rudalics@gmx.at>
19746 * format.el (format-insert-file): Make sure that at most one undo
19747 entry is recorded for the insertion. Inhibit point-motion and
19748 modification hooks around call to insert-file-contents.
19750 2007-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
19752 * vc.el (vc-annotate): Select temp-buffer before running vc-exec-after.
19753 Select the buffer's window before moving point.
19755 2007-08-07 Richard Stallman <rms@gnu.org>
19757 * term.el (term): Remove parent group `unix'.
19759 * simple.el (default-indent-new-line): New function.
19760 It calls comment-line-break-function if there are comments.
19761 (do-auto-fill): Use that.
19763 2007-08-07 Sean O'Rourke <sorourke@cs.ucsd.edu>
19765 * complete.el (PC-lisp-complete-symbol): Complete symbol around point.
19766 (PC-do-completion): Add "acronym completion" for symbols and
19767 filenames, so e.g. "mvbl" expands to "make-variable-buffer-local".
19769 2007-08-06 Sam Steingold <sds@gnu.org>
19771 * mouse.el (mouse-buffer-menu): Pass mode-name through
19772 format-mode-line because it may be a list,
19773 e.g., (sgml-xml-mode "XML" "SGML"), and not a string.
19775 2007-08-06 Vinicius Jose Latorre <viniciusig@ig.com.br>
19777 * printing.el (pr-update-menus): Docstring fix.
19779 2007-08-06 Jason Rumney <jasonr@gnu.org>
19781 * menu-bar.el (menu-bar-vc-filter): Use vc-call-backend.
19783 * vc-hooks.el (vc-call): Add doc string.
19785 2007-08-06 Michael Albinus <michael.albinus@gmx.de>
19787 * net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
19790 2007-08-06 Kenichi Handa <handa@m17n.org>
19792 * international/quail.el: Wrap (require 'help-mode) by
19794 (quail-help-init): New function.
19795 (quail-help): Call quail-help-init.
19796 (quail-store-decode-map-key): Change it to a function.
19798 2007-08-05 Jason Rumney <jasonr@gnu.org>
19800 * vc.el (vc-rollback): Add norevert argument back.
19801 (vc-revert-buffer): Add back as obsolete alias.
19803 2007-08-05 Peter Povinec <ppovinec@yahoo.com> (tiny change)
19805 * term.el: Honor term-default-fg-color and term-default-bg-color
19806 settings when modifying term-current-face.
19807 (term-default-fg-color, term-default-bg-color): Initialize from
19808 default term-current-face.
19809 (term-mode, term-reset-terminal): Set term-current-face with
19810 term-default-fg-color and term-default-bg-color.
19811 (term-handle-colors-array): term-current-face has term-default-fg-color
19812 and term-default-bg-color after reset escape sequence.
19813 (term-handle-colors-array): Set term-current-color with
19814 term-default-fg/bg-color instead of ansi-term-color-vector when the
19815 index (term-ansi-current-color or term-ansi-current-bg-color) is zero.
19817 2007-08-05 Jay Belanger <jay.p.belanger@gmail.com>
19819 * calc/calc-nlfit.el (math-nlfit-curve): Remove unnecessary variables.
19820 (math-nlfit-givens): Let bind free variables.
19822 2007-08-05 Vinicius Jose Latorre <viniciusig@ig.com.br>
19824 * printing.el: Require lpr and ps-print when loading printing package.
19825 Reported by Glenn Morris <rgm@gnu.org>.
19827 2007-08-05 Michael Albinus <michael.albinus@gmx.de>
19829 * files.el (set-auto-mode): Handle also remote files wrt
19832 2007-08-04 Jay Belanger <jay.p.belanger@gmail.com>
19834 * calc/calcalg3.el (calc-curve-fit): Add support for nonlinear
19835 curves and plotting.
19837 * calc/calc-nlfit.el: New file.
19839 2007-08-04 Glenn Morris <rgm@gnu.org>
19841 * autorevert.el (auto-revert-tail-mode): auto-revert-tail-pos is
19842 zero, not nil, when the library is first loaded. Check for a file
19843 that has been modified on disk.
19845 * progmodes/cperl-mode.el (cperl-compilation-error-regexp-alist):
19846 Remove duplicate defvar preventing initialization.
19847 (cperl-mode): Fix compilation-error-regexp-alist-alist setting.
19849 2007-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
19851 * diff-mode.el (diff-font-lock-keywords): Fix up false positives.
19852 (diff-beginning-of-file): Adjust to the fact that diff-file-header-re
19853 may match up to 4 lines.
19854 (diff-beginning-of-file-and-junk): Rewrite.
19856 2007-08-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19858 * printing.el: Evaluate require only during compilation.
19859 (pr-version): New version 6.9.1.
19860 (deactivate-mark): Replace (defvar VAR nil) by (defvar VAR).
19861 (pr-global-menubar): Fix code.
19863 2007-08-03 Dan Nicolaescu <dann@ics.uci.edu>
19865 * term.el (term-erase-in-display): Fix case when point is not at
19866 the beginning of the line.
19868 2007-08-03 Jay Belanger <jay.p.belanger@gmail.com>
19870 * calc/calc-ext.el (math-get-value, math-get-sdev)
19871 (math-contains-sdev): New functions.
19873 * calc/calc-graph.el (calc-graph-format-data)
19874 (calc-graph-add-curve): Check for error forms.
19875 (calc-graph-set-styles): Add option for error forms.
19877 2007-08-03 Miles Bader <miles@gnu.org>
19879 * vc-hooks.el (vc-handled-backends): Change capitalization of VC
19880 backend names for new backends to `Git', `Hg', and `Bzr'.
19881 * vc-hg.el (vc-hg-dired-state-info): Use `Hg' as VC backend name,
19883 * vc-git.el (vc-git-dired-state-info): Use `Git' as VC backend
19885 * vc-bzr.el (vc-bzr-dir-state, vc-bzr-dired-state-info)
19886 (vc-bzr-unload-hook): Use `Bzr' as VC backend name, not `BZR'.
19888 2007-08-03 Richard Stallman <rms@gnu.org>
19890 * mail/rmailsum.el (rmail-make-summary-line): Find end of msg number
19891 to update deleted flag.
19893 * cus-edit.el (customize-apropos, customize-apropos-options)
19894 (customize-apropos-faces, customize-apropos-groups): Improve prompt.
19896 * menu-bar.el (menu-bar-help-menu): Add "About GNU" menu item.
19898 * startup.el (fancy-splash-head, startup-echo-area-message):
19899 Change message text.
19901 * emulation/tpu-edt.el (next-line-internal): Setting deleted.
19902 All callers use line-move.
19904 * progmodes/compile.el (compilation-find-buffer): Return current
19905 buffer immediately if suitable.
19906 (compile, compilation-buffer-name, compilation-start): Doc fixes.
19908 2007-08-03 Daiki Ueno <ueno@unixuser.org>
19910 * faces.el (face-normalize-spec): New function.
19911 (frame-set-background-mode): Normalize face-spec before calling
19914 2007-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
19916 * server.el (server-window): Add switch-to-buffer-other-frame option.
19918 2007-08-03 Glenn Morris <rgm@gnu.org>
19920 * cus-edit.el (customize-apropos): Make the error message indicate
19921 what kind of thing the user was trying to customize.
19923 * net/telnet.el (telnet-mode): Set comint-use-prompt-regexp to t.
19925 * progmodes/fortran.el (fortran-font-lock-syntactic-keywords):
19926 Fix off-by-one error in previous change.
19928 2007-08-03 Drew Adams <drew.adams@oracle.com>
19930 * emacs-lisp/pp.el (pp-eval-expression): Add progress message.
19931 Make buffer writable.
19933 2007-08-01 Jay Belanger <jay.p.belanger@gmail.com>
19935 * calc/calc-math.el (math-sqrt-raw, math-sin-raw-2)
19936 (math-cos-raw-2, math-arctan-raw, math-ln-raw):
19937 Use native Emacs functions, when appropriate.
19939 2007-08-01 Dan Nicolaescu <dann@ics.uci.edu>
19940 Stefan Monnier <monnier@iro.umontreal.ca>
19942 * vc.el: Document new VC operation `extra-menu'.
19944 * vc-hooks.el (vc-default-extra-menu): New function.
19946 * menu-bar.el (menu-bar-vc-filter): New function.
19947 (menu-bar-tools-menu): Use it as a filter.
19949 2007-08-01 Eric Hanchrow <offby1@blarg.net> (tiny change)
19951 * ibuf-ext.el (ibuffer-mark-old-buffers): Docstring fix.
19953 2007-08-01 Glenn Morris <rgm@gnu.org>
19955 * progmodes/fortran.el: Remove leading `*' from all defcustom doc
19957 (fortran-tab-mode-default): Remove needless autoload.
19958 (fortran-tab-mode-string): Add help-echo and mouse properties, and
19960 (fortran-line-length): New buffer-local variable, safe if integer.
19961 (fortran-if-start-re, fortran-end-prog-re1, fortran-end-prog-re):
19962 Change from variables to constants.
19963 (fortran-font-lock-syntactic-keywords): Delete as a variable,
19964 replace with a new function definition.
19965 (fortran-mode): Use fortran-line-length, and
19966 fortran-font-lock-syntactic-keywords as a function. Add a
19967 hack-local-variables-hook function.
19968 (fortran-line-length, fortran-hack-local-variables): New functions.
19969 (fortran-window-create, fortran-strip-sequence-nos): Doc fix.
19970 Use fortran-line-length rather than 72.
19971 (fortran-window-create-momentarily): Doc fix.
19973 2007-07-31 Drew Adams <drew.adams@oracle.com> (tiny change)
19975 * cus-edit.el (custom-group-value-create, custom-goto-parent):
19976 Fix parent groups link.
19978 2007-07-31 Paul Pogonyshev <pogonyshev@gmx.net>
19980 * progmodes/python.el (python-current-defun): Adjust to never fall
19981 into infinite loop.
19983 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
19985 * pcvs.el (cvs-vc-command-advice): Handle the new fileset case.
19987 2007-07-29 Kimit Yada <kimitto@gmail.com> (tiny change)
19989 * emacs-lisp/copyright.el (copyright-update-year, copyright-update)
19990 (copyright-fix-years, copyright): Correctly handle the case where
19991 copyright-limit is nil.
19993 2007-07-28 Konstantin Novitsky <knovitsk@Bear.com> (tiny change)
19995 * progmodes/python.el (run-python): Fix path separator under w32.
19997 2007-07-30 Richard Stallman <rms@gnu.org>
19999 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
20000 Treat non-break space as whitespace in Lisp.
20002 2007-07-30 Stefan Monnier <monnier@iro.umontreal.ca>
20004 * vc.el (vc-dired-hook): Use inhibit-read-only.
20006 * progmodes/compile.el (compilation-forget-errors):
20007 Reset compilation-auto-jump-to-next.
20009 2007-07-30 Michael Olson <mwolson@gnu.org>
20011 * cus-edit.el (custom-group-save): Fix void function definition
20012 error. Thanks to Zhang Wei for the report.
20014 * ps-print.el: Check in trivial changes to the autoloads section
20015 caused by the build process. These autoloads really ought to be
20016 placed in a separate file, methinks.
20018 2007-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
20020 * calendar/calendar.el (calendar-mode): Make sure
20021 displayed-(month|year) are set.
20022 (calendar-basic-setup): Display buffer before adjusting window sizes.
20023 (generate-calendar-window): Use inhibit-read-only. Simplify.
20024 Generate buffer and set displayed-month and displayed-year before
20025 calling update-calendar-mode-line.
20027 2007-07-29 Michael Albinus <michael.albinus@gmx.de>
20031 * net/trampver.el: Use utf-8 encoding with coding cookie.
20033 * net/tramp-cache.el:
20034 * net/tramp-fish.el:
20035 * net/tramp-ftp.el:
20037 * net/tramp-smb.el: Remove coding cookie.
20039 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
20040 Flush buffer file-name's file property.
20041 (tramp-handle-file-remote-p): The first parameter is FILENAME.
20043 * net/trampver.el: Update release number.
20045 2007-07-29 Juri Linkov <juri@jurta.org>
20047 * dired.el (dired-mode-map): Bind C-x C-q to dired-toggle-read-only.
20048 Filter out menu item "Edit File Names" `wdired-change-to-wdired-mode'
20049 when major-mode is not dired-mode.
20050 (dired-toggle-read-only): New function.
20051 (dired-recursive-deletes): Remove obsolete comments about old
20053 (dired-do-flagged-delete, dired-do-delete): Refill docstring.
20055 * wdired.el (wdired-exit): New function.
20056 (wdired-mode-map): Bind C-x C-q to wdired-exit.
20058 2007-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
20060 * cus-edit.el (customize-read-group): New fun.
20061 (customize-group-other-window, customize-face-other-window):
20062 Prompt before delegating to customize-(group|face).
20063 Bind pop-up-windows rather than use the other-window argument.
20064 (customize-group, customize-face): Prompt from the interactive spec.
20065 Remove args `prompt-for-group' and `other-window'.
20067 * emacs-lisp/advice.el (ad-interactive-form): Re-introduce.
20068 (ad-body-forms, ad-advised-interactive-form): Revert this part of
20071 2007-07-28 Masatake YAMATO <jet@gyve.org>
20073 * vc.el (vc-dired-mode): Add a menu for VC related operation.
20074 Use backend name as the menu label. Suggested by David Kastrup.
20076 2007-07-28 Alan Mackenzie <acm@muc.de>
20078 Fix problem with modes derived from CC Mode:
20079 * progmodes/cc-mode.el (c-make-emacs-variables-local): Move this
20081 (c-init-language-vars-for): Remove call to above macro.
20082 * progmodes/cc-langs.el (c-make-emacs-variables-local): Macro has
20083 been moved to here.
20084 (c-make-init-lang-vars-fun): Call c-make-emacs-variables-local.
20086 2007-07-28 Eli Zaretskii <eliz@gnu.org>
20088 * net/trampver.el: Fix the `coding' cookie.
20090 2007-07-28 Dan Nicolaescu <dann@ics.uci.edu>
20092 * vc-git.el (vc-git-print-log): Support both the old single file
20093 interface and the new one.
20095 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
20097 * bindings.el (mode-line-remote): Use updated %@ construct.
20099 2007-07-27 Stefan Monnier <monnier@iro.umontreal.ca>
20101 * calendar/cal-bahai.el (calendar-bahai-month-name-array)
20102 (calendar-bahai-epoch, calendar-bahai-leap-year-p)
20103 (calendar-bahai-leap-base, calendar-bahai-prompt-for-date)
20104 (diary-list-bahai-entries, diary-bahai-mark-entries)
20105 (calendar-bahai-mark-date-pattern, diary-insert-bahai-entry)
20106 (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
20107 New names to clean up namespace.
20108 (list-bahai-diary-entries, mark-bahai-diary-entries)
20109 (insert-bahai-diary-entry, insert-monthly-bahai-diary-entry)
20110 (insert-yearly-bahai-diary-entry, mark-bahai-calendar-date-pattern):
20111 Add compatibility aliases.
20113 * calendar/appt.el: Don't wrap defvar within eval-when-compile.
20115 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right)
20116 (calendar-scroll-left-three-months)
20117 (calendar-scroll-right-three-months): Clean up namespace.
20118 (scroll-calendar-left, scroll-calendar-right)
20119 (scroll-calendar-left-three-months)
20120 (scroll-calendar-right-three-months): Add compatibility aliases.
20122 * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
20123 Behave like mouse-scroll-calendar-* when used from the mouse.
20125 * calendar/cal-menu.el (cal-menu-scroll-menu)
20126 (cal-menu-global-mouse-menu):
20127 * calendar/calendar.el (calendar-mode-map):
20128 Use new calendar-scroll-* names.
20129 (mouse-scroll-calendar-left, mouse-scroll-calendar-right):
20130 Remove. Use calendar-scroll-* directly instead.
20132 2007-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
20134 * emacs-lisp/advice.el (ad-interactive-p, ad-interactive-form): Remove.
20135 (ad-body-forms, ad-advised-interactive-form, ad-make-cache-id)
20136 (ad-make-advised-definition, ad-cache-id-verification-code):
20137 Use commandp and interactive-form instead.
20139 2007-07-26 Dan Nicolaescu <dann@ics.uci.edu>
20141 * vc-git.el: Relicense to GPLv3 or later.
20142 (vc-directory-exclusion-list, vc-handled-backends): Remove.
20144 * vc-hooks.el (vc-handled-backends): Add GIT.
20146 * vc.el (vc-directory-exclusion-list): Add .git.
20148 2007-07-26 Alexandre Julliard <julliard@winehq.org>
20150 * vc-git.el (vc-git-revision-table)
20151 (vc-git-revision-completion-table): New functions.
20153 2007-07-25 Glenn Morris <rgm@gnu.org>
20155 * Relicense all FSF files to GPLv3 or later.
20157 * COPYING: Switch to GPLv3.
20159 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
20161 * pcvs.el (cvs-temp-buffer): Undo last ill-conceived change.
20162 Replace it with another one which disables undo before calling
20163 erase-buffer and then turns it back on if needed.
20165 2007-07-24 Dan Nicolaescu <dann@ics.uci.edu>
20167 * vc-hg.el (vc-hg-revision-completion-table): Temporarily comment out.
20169 2007-07-24 Glenn Morris <rgm@gnu.org>
20171 * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
20172 (cal-tex-rules, cal-tex-buffer, cal-tex-24)
20173 (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
20174 (cal-tex-cursor-week, cal-tex-cursor-week2)
20175 (cal-tex-cursor-week-iso, cal-tex-week-hours)
20176 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
20177 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
20178 (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
20180 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
20182 * calendar/calendar.el (calendar-mode-map): Move initialization
20183 into declaration. Add menu bindings (used to be done in cal-menu).
20184 (calendar-mode): Don't add an activate-menubar-hook.
20186 * calendar/cal-menu.el: Break dependency on calendar.el (i.e. do not
20187 modify calendar-mode-map), use easy-menu, and make sure that C-h k
20188 can be used on the menu entries.
20189 (cal-menu-holiday-window-suffix, cal-menu-set-date-title): New funs.
20190 (cal-menu-moon-menu, cal-menu-diary-menu, cal-menu-holidays-menu)
20191 (cal-menu-goto-menu, cal-menu-scroll-menu): New consts.
20192 (cal-menu-context-mouse-menu, cal-menu-global-mouse-menu): New menus.
20193 (calendar-flatten, cal-menu-update): Remove.
20194 (calendar-mouse-insert-hebrew-diary-entry)
20195 (calendar-mouse-insert-islamic-diary-entry)
20196 (calendar-mouse-insert-bahai-diary-entry):
20197 Remove (fold into cal-menu-diary-menu).
20198 (calendar-mouse-2-date-menu, calendar-mouse-cal-tex-menu)
20199 (cal-tex-mouse-filofax): Remove (fold into cal-menu-context-mouse-menu).
20200 (calendar-mouse-3-map): Remove (turn into cal-menu-global-mouse-menu).
20201 (calendar-mouse-view-diary-entries): Minor simplifications.
20202 (calendar-event-to-date): Use with-current-buffer.
20204 2007-07-25 Nick Roberts <nickrob@snap.net.nz>
20206 * add-log.el (change-log-redate): Remove (not needed anymore and
20207 doesn't appear to work).
20209 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
20211 * frame.el: Use mapc and dolist instead of mapcar where possible.
20212 (close-display-connection): New command.
20214 2007-07-25 Alexandre Julliard <julliard@winehq.org>
20216 * vc-git.el (vc-git-log-view-mode): Port to the multi-file vc interface.
20217 (vc-git-create-snapshot, vc-git-retrieve-snapshot): New functions.
20219 2007-07-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20221 * ps-print.el (ps-multibyte-buffer): Docstring fix.
20223 * ps-mule.el: Doc fix.
20224 (ps-multibyte-buffer, ps-mule-font-info-database-default)
20225 (ps-mule-external-libraries, ps-mule-begin-job): Docstring fix.
20227 2007-07-25 Glenn Morris <rgm@gnu.org>
20229 * calendar/cal-tex.el (cal-tex-which-days, cal-tex-holidays)
20230 (cal-tex-diary, cal-tex-daily-string, cal-tex-daily-start)
20231 (cal-tex-daily-end, cal-tex-hook)
20232 (cal-tex-cal-one-month, cal-tex-cal-multi-month)
20233 (cal-tex-year, cal-tex-cursor-week, cal-tex-cursor-week2)
20234 (cal-tex-cursor-week-iso, cal-tex-week-hours)
20235 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
20236 (cal-tex-cursor-day, cal-tex-insert-preamble): Doc fix.
20237 (cal-tex-day-prefix, cal-tex-day-name-format)
20238 (cal-tex-cal-one-month, cal-tex-cal-multi-month, cal-tex-myday)
20239 (cal-tex-caldate, cal-tex-LaTeX-hourbox)
20240 (cal-tex-LaTeX-subst-list): Change from variables to constants.
20241 (cal-tex-preamble, cal-tex-arg, cal-tex-nl): Simplify with `format'.
20242 (cal-tex-cursor-filofax-year, cal-tex-weekly4-box): Use \textbf,
20243 etc, rather than \bf.
20244 (cal-tex-mini-calendar): Fix typos in previous change.
20245 (cal-tex-latexify-list): Remove inner let binding.
20246 (cal-tex-end-document, cal-tex-banner): Use multi-line
20248 (cal-tex-comment): Handle embedded newlines.
20249 (cal-tex-LaTeXify-string): Use substring-no-properties.
20251 2007-07-25 Joakim Verona <joakim@verona.se> (tiny change)
20253 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20254 Add support for the Maden build tool.
20256 2007-07-25 William Xu <william.xwl@gmail.com> (tiny change)
20258 * net/webjump.el (webjump-url-encode): Fix for non-ASCII characters.
20260 2007-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
20262 * pcvs.el (cvs-temp-buffer): Disable undo in temp buffers.
20264 2007-07-24 Dan Nicolaescu <dann@ics.uci.edu>
20266 * dired.el (dired-mode-map): Bind wdired-change-to-wdired-mode to
20269 * vc-git.el (vc-git-print-log): Fix previous change.
20271 2007-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
20273 * window.el (save-selected-window): Minor optimization.
20274 (bw-adjust-window): If operation failed, try with a smaller delta.
20275 (window-fixed-size-p): New function.
20276 (window-area-factor): New var.
20277 (balance-windows-area): New command.
20279 * ps-mule.el (ps-multibyte-buffer): Docstring fixes.
20280 (ps-mule-encode-ethiopic): Make it clear that it's always defined.
20281 (ps-mule-prepare-font-for-components, ps-mule-encode-header-string)
20282 (ps-mule-encode-bit, ps-mule-encode-ucs2): Use dotimes.
20283 (ps-mule-begin-job): Use dolist.
20285 2007-07-24 Michael Albinus <michael.albinus@gmx.de>
20287 * subr.el (start-file-process-shell-command)
20288 (process-file-shell-command): New defuns.
20290 * progmodes/compile.el (compilation-start):
20291 Apply `start-file-process-shell-command'.
20293 2007-07-24 Alexandre Julliard <julliard@winehq.org>
20295 * vc-git.el (vc-git-checkout, vc-directory-exclusion-list): Fix typos.
20297 2007-07-24 Alan Mackenzie <acm@muc.de>
20299 * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
20300 Initialise byte-compile-unresolved-functions before rather than
20301 after a compilation.
20302 (byte-compile-unresolved-functions): Amplify doc string.
20304 2007-07-24 Glenn Morris <rgm@gnu.org>
20306 * startup.el (normal-splash-screen): Use `emacs-copyright'.
20308 * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
20309 (cal-tex-rules, cal-tex-buffer, cal-tex-24)
20310 (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
20311 (cal-tex-cursor-week, cal-tex-cursor-week2)
20312 (cal-tex-cursor-week-iso, cal-tex-week-hours)
20313 (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
20314 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
20315 (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
20317 * calendar/cal-tex.el: Remove leading `*' from defcustom docs.
20318 (cal-tex-daily-string, cal-tex-daily-start, cal-tex-daily-end)
20319 (cal-tex-day-name-format, cal-tex-cal-one-month)
20320 (cal-tex-cal-multi-month, cal-tex-myday, cal-tex-preamble)
20321 (cal-tex-comment, cal-tex-nl, cal-tex-cmd, cal-tex-e-parbox)
20322 (cal-tex-mini-calendar, cal-tex-em): Doc fix.
20323 (cal-tex-list-holidays, cal-tex-cursor-year)
20324 (cal-tex-cursor-year-landscape, cal-tex-year)
20325 (cal-tex-cursor-filofax-year, cal-tex-cursor-month-landscape)
20326 (cal-tex-cursor-month, cal-tex-insert-days)
20327 (cal-tex-insert-day-names, cal-tex-insert-blank-days)
20328 (cal-tex-first-blank-p, cal-tex-cursor-week)
20329 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
20330 (cal-tex-week-hours, cal-tex-cursor-week-monday)
20331 (cal-tex-weekly4-box, cal-tex-cursor-filofax-2week)
20332 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily)
20333 (cal-tex-cursor-day, cal-tex-daily-page, cal-tex-mini-calendar)
20334 (cal-tex-latexify-list, cal-tex-previous-month)
20335 (cal-tex-next-month, cal-tex-insert-preamble): General tidy-up and
20336 modernization, including using dotimes rather than
20338 (cal-tex-LaTeX-subst-list): Remove `@'.
20339 (cal-tex-em, cal-tex-bf, cal-tex-Huge-bf, cal-tex-large-bf):
20340 Use \textit and \textbf rather than \em and \it.
20342 * calendar/cal-bahai.el (list-bahai-diary-entries)
20343 * calendar/cal-hebrew.el (list-hebrew-diary-entries)
20344 * calendar/cal-islam.el (list-islamic-diary-entries)
20345 * calendar/calendar.el (generate-calendar, generate-calendar-month)
20346 * calendar/diary-lib.el (diary-list-entries)
20347 (mark-calendar-date-pattern): Use `dotimes' rather than
20348 `calendar-for-loop'.
20350 * calendar/calendar.el (calendar-for-loop): Doc fix.
20352 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
20354 * ses.el (ses-cleanup): Prevent Emacs from spuriously checking if the
20355 underlying file is uptodate.
20357 2007-07-23 Christopher J. Madsen <cjm@cjmweb.net>
20359 * replace.el (perform-replace): Use isearch-no-upper-case-p.
20361 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
20363 * vc-hooks.el (vc-mode-line-map): New const.
20364 (vc-mode-line): Use it.
20366 2007-07-23 Alexandre Julliard <julliard@winehq.org>
20368 * vc-git.el (vc-git-delete-file, vc-git-rename-file)
20369 (vc-git-unregister): New functions.
20370 (vc-git-find-version): Use the result of ls-files as a parameter
20373 2007-07-23 Michael Albinus <michael.albinus@gmx.de>
20375 * net/tramp.el (tramp-perl-file-attributes)
20376 (tramp-perl-directory-files-and-attributes)
20377 (tramp-handle-file-attributes-with-stat)
20378 (tramp-handle-directory-files-and-attributes-with-stat)
20379 (tramp-convert-file-attributes): Handle huge file sizes.
20381 2007-07-23 Juri Linkov <juri@jurta.org>
20383 * isearch.el (isearch-message-function): New variable.
20384 (isearch-update, isearch-search): Use it.
20386 * simple.el (goto-history-element): New function created from
20387 next-history-element.
20388 (next-history-element): Most code moved to goto-history-element.
20389 Call goto-history-element with (- minibuffer-history-position n).
20390 (previous-history-element): Call goto-history-element with (+
20391 minibuffer-history-position n).
20392 (minibuffer-setup-hook): Add minibuffer-history-isearch-setup.
20393 (minibuffer-history-isearch-message-overlay): New buffer-local variable.
20394 (minibuffer-history-isearch-setup, minibuffer-history-isearch-end)
20395 (minibuffer-history-isearch-search, minibuffer-history-isearch-message)
20396 (minibuffer-history-isearch-wrap, minibuffer-history-isearch-push-state)
20397 (minibuffer-history-isearch-pop-state): New functions.
20399 2007-07-23 Thien-Thi Nguyen <ttn@gnuvola.org>
20401 * vc-hooks.el (vc-stay-local-p): Fix bug: Avoid remove-if-not.
20402 Also, if FILE is a list, return non-nil if any of its elements
20403 should stay local. Update docstring.
20405 2007-07-23 Stefan Monnier <monnier@iro.umontreal.ca>
20407 * emacs-lisp/copyright.el (copyright-update-year): Fix 2007-05-25
20408 change by reverting a small part.
20410 2007-07-23 Richard Stallman <rms@gnu.org>
20412 * progmodes/octave-inf.el (inferior-octave-prompt): Accept .exe.
20414 2007-07-23 Dan Nicolaescu <dann@ics.uci.edu>
20416 * vc-git.el (vc-git-checkin): Delete unused parameter and the code
20417 handling it. Use vc-git-command.
20418 (vc-git-find-version, vc-git-diff-tree): New functions.
20419 (vc-git-revert): Use vc-git-command.
20420 (vc-git--run-command): Delete.
20422 2007-07-23 Alexandre Julliard <julliard@winehq.org>
20424 * vc-git.el (vc-git-workfile-unchanged-p): Update comment.
20426 2007-07-20 Kenichi Handa <handa@m17n.org>
20428 * international/utf-8.el (utf-8-post-read-conversion):
20429 Temporarily bind utf-8-compose-scripts to nil while running
20430 *-compose-region functions.
20432 2007-07-23 Dan Nicolaescu <dann@ics.uci.edu>
20434 * vc-git.el: Update status.
20435 (vc-directory-exclusion-list): Use eval-after-load.
20437 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
20439 * bindings.el (mode-line-remote): New variable.
20440 (help-echo): Add to default values of mode-line-format.
20442 * files.el: Mark mode-line-remote as risky.
20444 2007-07-22 Juri Linkov <juri@jurta.org>
20446 * isearch.el (isearch-edit-string): Save old point and
20447 isearch-other-end to old-point and old-other-end before reading
20448 the search string from minibuffer. After exiting minibuffer set
20449 point to old-other-end if point and the search direction is the
20450 same as before reading the search string.
20451 (isearch-del-char): Don't set isearch-yank-flag to t. Put point
20452 to isearch-other-end. Instead of isearch-search-and-update call
20453 three functions isearch-search, isearch-push-state and isearch-update.
20455 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
20457 * vc-git.el (vc-git-register, vc-git-checkin): Use vc-git-command,
20458 deal with multiple file arguments.
20459 (vc-git-print-log): Deal with multiple file arguments.
20461 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
20463 * diff-mode.el (diff-refine-ignore-spaces-hunk): Rename from
20464 diff-refine-hunk. Adjust users.
20465 (diff-unified-hunk-p, diff-splittable-p): New functions.
20466 (diff-mode-menu): Use it to disable Split when it doesn't work.
20468 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
20470 * diff-mode.el (diff-mode-menu): New entries.
20472 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
20474 * diff-mode.el (diff-unified->context): Use the new `apply' undo entry
20475 if applicable, so as to save undo-log space.
20477 * diff-mode.el (diff-find-file-name): Add arg `batch'.
20479 * diff-mode.el (diff-beginning-of-file-and-junk): New function.
20480 (diff-file-kill): Use it.
20481 (diff-beginning-of-hunk): Add arg `try-harder' using it.
20482 (diff-restrict-view, diff-find-source-location, diff-refine-hunk):
20483 Use it so they find the hunk even when we're in the file header.
20485 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
20487 * vc-git.el (vc-git-revision-granularity, vc-git-root)
20488 (vc-git-command, vc-git-dir-state, vc-git-dired-state-info)
20489 (vc-git-create-repo): New functions.
20490 (vc-git-registered): New autoloaded function definition.
20491 (vc-git-registered): Use vc-git-root.
20492 (vc-git-responsible-p): New defalias.
20493 (vc-git-annotate-extract-revision-at-line): Uncomment.
20494 (vc-git-print-log): Add the file name to the log.
20495 (vc-git-log-view-mode): New derived mode.
20496 (vc-git-diff, vc-git-annotate-command): Use vc-git-command.
20498 2007-07-22 Michael Albinus <michael.albinus@gmx.de>
20500 * progmodes/grep.el (grep-compute-defaults): Keep default values.
20502 2007-07-22 Ralf Angeli <angeli@caeruleus.net>
20504 * textmodes/reftex.el (reftex-access-parse-file): Create parse
20505 file in a way that does not interfere with recentf mode.
20506 (reftex-access-parse-file): Do not risk destroying an existing
20509 2007-07-22 Alexandre Julliard <julliard@winehq.org>
20511 * vc-git.el: New file.
20513 2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
20515 * textmodes/tex-mode.el (tex-font-script-display): Change default.
20517 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu>
20519 * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
20520 for branches and new files.
20522 * vc-hooks.el (vc-default-mode-line-string): Move mouse-face and
20523 local-map handling ...
20524 (vc-mode-line): ... here. Improve handling of help-echo.
20526 * vc.el (mode-line-string): Document help-echo usage.
20528 2007-07-22 Michael Albinus <michael.albinus@gmx.de>
20530 Sync with Tramp 2.1.10.
20532 * net/tramp.el (tramp-get-ls-command): Fix typo.
20534 * net/trampver.el: Update release number.
20536 2007-07-22 Jan Djärv <jan.h.d@swipnet.se>
20538 * startup.el (command-line-x-option-alist): Use x-handle-no-bitmap-icon.
20540 * term/x-win.el (x-handle-no-bitmap-icon): New function.
20542 2007-07-22 Martin Rudalics <rudalics@gmx.at>
20544 * add-log.el (change-log-fill-parenthesized-list): New function.
20545 (change-log-indent): Call change-log-fill-parenthesized-list.
20546 (change-log-fill-paragraph): Bind fill-indent-according-to-mode to t.
20547 Have lines with leading asterisk start a paragraph.
20549 2007-07-21 Jay Belanger <jay.p.belanger@gmail.com>
20551 * calc/calc-math.el (math-emacs-precision)
20552 (math-largest-emacs-expt, math-smallest-emacs-expt):
20554 (math-use-emacs-fn): New function.
20555 (math-exp-raw): Evaluate with `math-use-emacs-fn', when
20558 2007-07-21 Thien-Thi Nguyen <ttn@gnuvola.org>
20560 * image-dired.el (image-dired-sane-db-file): New func.
20561 (image-dired-write-tags, image-dired-remove-tag)
20562 (image-dired-list-tags, image-dired-write-comments)
20563 (image-dired-get-comment, image-dired-mark-tagged-files)
20564 (image-dired-create-gallery-lists): Call new func.
20565 Reported by Dieter Wilhelm <dieter@duenenhof-wilhelm.de>.
20567 2007-07-21 Dan Nicolaescu <dann@ics.uci.edu>
20569 * vc-hg.el (vc-hg-dir-state): Fix loop.
20570 (vc-hg-print-log): Fix expected return value for vc-hg-command.
20571 (vc-hg-next-version, vc-hg-delete-file, vc-hg-rename-file)
20572 (vc-hg-register, vc-hg-create-repo, vc-hg-checkin)
20573 (vc-hg-revert): Likewise.
20574 (vc-hg-revision-table, vc-hg-revision-completion-table): New
20577 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
20579 * add-log.el (change-log-resolve-conflict): Don't lose data if the
20582 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
20584 * progmodes/compile.el (compilation-auto-jump-to-first-error):
20585 Add group and version.
20587 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
20589 * add-log.el (add-log-file-name): Use file-relative-name.
20590 (add-change-log-entry): Delay reading
20591 add-log-(full-name|mailing-address) to after we've switched to the
20592 ChangeLog buffer so we get the right value.
20593 (add-change-log-entry, add-log-current-defun, change-log-merge):
20594 Use derived-mode-p rather than checking major-mode directly.
20596 * pcvs.el (cvs-mode-add-change-log-entry-other-window): Use a directory
20597 name for buffer-file-name if it refers to a directory.
20599 * vc-arch.el (vc-arch-diff): Fix last change.
20601 * progmodes/compile.el (compilation-start): Remember the original
20602 directory in a buffer-local compilation-directory.
20603 (compile): Set the global value of compilation-directory.
20604 (recompile): Use compilation-directory even in the compilation buffer.
20606 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
20608 * vc-hg.el (vc-hg-diff): Use vc-hg-command.
20610 2007-07-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20612 * ps-print.el: Problem with foreground and background color when
20613 printing a buffer with and without faces. Reported by Christian
20614 Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
20615 (ps-print-version): New version 6.7.5.
20616 (ps-default-fg): Change default value to nil, so black color is used
20617 when a face does not specify a foreground color.
20618 (ps-default-bg): Change default value to nil, so white color is used
20619 for background color.
20620 (ps-begin-job): Fix code.
20622 2007-07-20 Eli Zaretskii <eliz@gnu.org>
20624 * makefile.w32-in (install-lisp-SH): Don't create subdirectories
20625 in $(INSTALL_DIR)/lisp/ if they already exist.
20627 2007-07-20 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
20629 * makefile.w32-in (install-lisp-CMD): Don't create subdirectories
20630 in $(INSTALL_DIR)/lisp/ if they already exist.
20632 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
20634 * progmodes/vera-mode.el (vera-re-search-forward)
20635 (vera-re-search-backward): Remove use of store-match-data.
20636 (vera-mode-map): Move initialization into declaration.
20638 * progmodes/flymake.el (flymake-buildfile-dirs): Remove.
20639 (flymake-find-buildfile): Use locate-dominating-file.
20641 * vc.el (vc-delistify): Use mapconcat.
20642 (vc-do-command): Minor simplification.
20643 (vc-expand-dirs): Use push.
20645 * vc-mcvs.el (vc-mcvs-create-repo):
20646 * vc-cvs.el (vc-cvs-create-repo): Remove.
20648 * vc-hooks.el (vc-find-root): Fix case where `file' is the current
20649 directory and the root as well.
20651 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu>
20653 * vc-hooks.el (vc-default-workfile-unchanged-p): Pass a list
20656 * vc-hg.el (vc-hg-print-log): Deal with multiple file arguments.
20657 (vc-hg-registered): Replace if with when.
20658 (vc-hg-state): Deal with nonexistent files and handle removed files.
20659 (vc-hg-dir-state, vc-hg-dired-state-info): New functions.
20660 (vc-hg-checkout): Re-enable.
20661 (vc-hg-create-repo): Fix typos.
20662 (vc-hg-print-log): Fix for multiple files.
20663 (vc-hg-workfile-unchanged-p): New function.
20666 (vc-print-log): Fix call to print-log.
20667 (vc-default-comment-history): Likewise.
20668 (vc-directory-exclusion-list): Add .hg and .bzr.
20669 (vc-diff-internal): Pass a list instead of a file.
20671 * vc-mcvs.el (vc-mcvs-create-repo): Fix typos.
20673 * vc-bzr.el (vc-bzr-create-repo): New function.
20675 2007-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
20677 * vc-hooks.el (vc-find-root): Walk up the tree to find an existing
20678 `file' from which to start the search.
20680 2007-07-19 Eric S. Raymond <esr@snark.thyrsus.com>
20682 * vc-cvs.el (vc-cvs-checkin, vc-cvs-diff): Finish transition from
20683 having a single file argument to having a list of files as the
20686 2007-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
20688 * files.el (locate-dominating-file): New function.
20690 2007-07-18 Michael Albinus <michael.albinus@gmx.de>
20692 * progmodes/grep.el (grep-host-defaults-alist): New defvar.
20693 (grep-compute-defaults): Use it.
20695 2007-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
20697 * uniquify.el: Docstring fixes.
20699 2007-07-18 Eric S. Raymond <esr@snark.thyrsus.com>
20701 * vc.el (revision-granularity, create-repo): Document new vc
20702 backend properties.
20703 (vc-rollback): Renamed from vc-cancel-version. Update references.
20704 Pass a list instead of a file.
20705 (vc-revert): Renamed from vc-revert-buffer. Update references.
20706 (vc-delistify, vc-expand-dirs): New functions.
20707 (vc-do-command): Rename FILE to FILE-OR-LIST and deal with a list
20708 of files instead of a single file.
20709 (vc-position-context, vc-resync-window, vc-diff-internal)
20710 (vc-print-log): Pass a list instead of a file.
20712 * vc-hooks.el (vc-stay-local-p, vc-backend)
20713 (vc-backend-subdirectory-name): Work on a file list, not a single
20715 (vc-workfile-version): Update docstring.
20716 (vc-menu-map): Use vc-rollback instead of vc-cancel-version and
20717 vc-revert instead of vc-revert-buffer.
20718 (vc-prefix-map): Likewise. Bind vc-update.
20720 * vc-svn.el (vc-svn-revision-granularity, vc-svn-create-repo)
20721 (vc-svn-wash-log): New functions.
20722 (vc-svn-register, vc-svn-checkin, vc-svn-print-log)
20723 (vc-svn-command): Deal with a list of files, not a single file.
20725 * vc-rcs.el (vc-rcs-revision-granularity, vc-rcs-create-repo)
20726 (vc-rcs-wash-log): New functions.
20727 (vc-rcs-register, vc-rcs-checkin, vc-rcs-diff, vc-rcs-print-log):
20728 Deal with a list of files, not a single file.
20729 (vc-rcs-rollback): Likewise. Rename from vc-rcs-cancel-version.
20731 * vc-sccs.el (vc-sccs-revision-granularity, vc-sccs-wash-log): New
20733 (vc-sccs-register, vc-sccs-checkin, vc-sccs-diff): Deal with a
20734 list of files, not a single file.
20736 * vc-mcvs.el (vc-mcvs-revision-granularity, vc-mcvs-create-repo):
20738 (vc-mcvs-register, vc-mcvs-checkin, vc-mcvs-print-log)
20739 (vc-mcvs-diff): Deal with a list of files, not a single file.
20741 * vc-hg.el (vc-hg-revision-granularity, vc-hg-create-repo): New
20743 (vc-hg-print-log): Deal with a list of files, not a single file.
20744 (vc-hg-diff-tree): New function, replace defalias with the same
20746 (vc-hg-register, vc-hg-checkin, vc-hg-command): Rename FILE to
20747 FILES to denote that it is a file list, not a single file.
20749 * vc-cvs.el (vc-cvs-create-repo, vc-cvs-wash-log): New functions.
20750 (vc-cvs-register, vc-cvs-checkin): Deal with a list of files, not
20752 (vc-cvs-print-log, vc-cvs-command): Rename FILE to FILES to denote
20753 that it is a file list, not a single file.
20754 (vc-cvs-diff): Likewise. Simplify.
20756 * vc-arch.el (vc-arch-register, vc-arch-checkin, vc-arch-diff):
20757 Deal with a list of files, not a single file.
20759 * vc-bzr.el (vc-bzr-register, vc-bzr-command, vc-bzr-checkin)
20760 (vc-bzr-print-log): Update FILE parameter name to denote that it
20761 is a file list, not a single file.
20762 (vc-bzr-diff): Likewise. Use the car of files.
20764 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
20766 * follow.el (follow-mode-hook, follow-mode-off-hook, follow-mode)
20767 (follow-delete-other-windows-and-split, follow-recenter)
20768 (follow-windows-aligned-p, follow-point-visible-all-windows-p)
20769 (follow-redisplay, follow-estimate-first-window-start)
20770 (follow-xemacs-scrollbar-support, follow-intercept-process-output):
20771 Fix typos in docstrings.
20773 2007-07-18 Martin Rudalics <rudalics@gmx.at>
20775 * add-log.el (change-log-mode): Use fill-nobreak-predicate to
20776 avoid that filling introduces lines with a single asterisk.
20778 * kmacro.el (kmacro-end-macro): When ignoring empty macro
20779 avoid incorrect kmacro-ring-empty-p messages.
20780 Reported by Michael Schierl <schierlm@gmx.de>.
20782 2007-07-17 Dan Nicolaescu <dann@ics.uci.edu>
20784 * vc.el: Add more info about the vc-registered function.
20786 2007-07-17 Michael Albinus <michael.albinus@gmx.de>
20788 * files.el (file-remote-p): Introduce optional parameter
20791 * recentf.el (recentf-keep-default-predicate): Adapt call of
20794 * progmodes/grep.el (grep-probe): Use `process-file'.
20795 (grep-compute-defaults): Handle variables host specific.
20797 * net/ange-ftp.el (ange-ftp-file-remote-p): Handle optional
20798 parameter IDENTIFICATION.
20800 * net/tramp.el (tramp-handle-file-remote-p): Handle optional
20801 parameter IDENTIFICATION.
20802 (tramp-handle-set-file-times): New defun. Replaces `tramp-touch'.
20803 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
20804 Add entry for `set-file-times'.
20805 (tramp-do-copy-or-rename-file-via-buffer)
20806 (tramp-do-copy-or-rename-file-out-of-band): Use `set-file-times'.
20807 (tramp-handle-unhandled-file-name-directory): Rewrite.
20808 (tramp-convert-file-attributes): Add error handling when inode is
20810 (tramp-get-inode): Change parameter from FILE to VEC.
20811 (tramp-handle-start-file-process): Use (current-buffer) if BUFFER
20812 is nil. This is according to the specification. Goto (point-max)
20814 (tramp-handle-shell-command): Rewrite completely, using
20815 `process-file' and `start-file-process'.
20816 (tramp-methods, tramp-find-shell)
20817 (tramp-open-connection-setup-interactive-shell)
20818 (tramp-maybe-open-connection): Guard against $PROMPT_COMMAND shell
20819 var. Reported by Steve Youngs <steve@sxemacs.org>.
20821 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add
20822 entry for `set-file-times'. Rename `start-process' into
20823 `start-file-process'. Remove `call-process' entry.
20824 (tramp-fish-handle-set-file-times): New defun.
20825 (tramp-fish-handle-executable-find): Use `process-file'.
20826 (tramp-fish-handle-process-file): New defun. Replaces
20827 `tramp-fish-handle-call-process'.
20828 (tramp-fish-do-copy-or-rename-file-directly): Use
20830 (tramp-fish-get-file-entries): Change `tramp-get-inode' parameter.
20832 * net/tramp-smb.el (tramp-smb-handle-file-attributes): Change
20833 `tramp-get-inode' parameter.
20835 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
20837 * vc-bzr.el (vc-bzr-version, vc-bzr-at-least-version)
20838 (vc-bzr-post-command-function): Remove. Version 0.8 is already old
20839 nowadays, and by the time Emacs-23 comes out, nobody will even remember
20840 it has ever existed.
20842 2007-07-17 Dan Nicolaescu <dann@ics.uci.edu>
20844 * vc.el: Undo previous change.
20846 2007-07-16 Eli Zaretskii <eliz@gnu.org>
20848 * makefile.w32-in (clean): Don't delete *~.
20850 2007-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
20852 * textmodes/tex-mode.el (tex-verbatim-environments):
20853 Add safe-local-variable property.
20854 (tex-font-lock-syntactic-keywords): Lookup tex-verbatim-environments
20855 when starting font-lock rather than when loading tex-mode.el.
20857 * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Skip over the
20858 whole $( rather than just the $. Rename from sh-quoted-subshell.
20859 (sh-font-lock-syntactic-keywords): Adjust call accordingly.
20861 2007-07-16 Thien-Thi Nguyen <ttn@gnuvola.org>
20863 * bookmark.el (bookmark-maybe-sort-alist): Don't modify
20864 bookmark-alist. Instead, if not sorting, simply return it.
20865 (bookmark-bmenu-list): Call bookmark-maybe-sort-alist
20866 for its return value, not for its side effect.
20868 * emacs-lisp/lisp-mode.el (calculate-lisp-indent): In the
20869 case of alignment under a constant symbol, find and consider
20870 the sexp actually at indentation to be the "last sexp".
20872 2007-07-16 Drew Adams <drew.adams@oracle.com>
20874 * mouse.el (mouse-yank-secondary): Better error message if no
20875 secondary selection.
20877 2007-07-16 Dan Nicolaescu <dann@ics.uci.edu>
20879 * vc-hooks.el (vc-handled-backends): Move BZR later in the list.
20881 * term/xterm.el (xterm-turn-on-modify-other-keys)
20882 (xterm-turn-off-modify-other-keys): New functions.
20883 (terminal-init-xterm): Enable the modifyOtherKeys feature if the
20884 terminal supports it.
20886 2007-07-16 Thien-Thi Nguyen <ttn@gnuvola.org>
20888 * bookmark.el (bookmark-show-all-annotations):
20889 Make sure each inserted annotation ends with newline.
20891 2007-07-15 Richard Stallman <rms@gnu.org>
20893 * kmacro.el (kmacro-bind-to-key): Avoid comparisons on function keys.
20895 * tutorial.el (tutorial--find-changed-keys):
20896 Handle C-x specially like ESC.
20898 2007-07-15 Aaron Hawley <aaronh@garden.org>
20900 * tar-mode.el (tar-get-descriptor): No error for zero-length file.
20902 2007-07-15 Juri Linkov <juri@jurta.org>
20904 * delsel.el (delete-selection-pre-hook):
20905 * emulation/cua-base.el (cua-paste): Before a yank command,
20906 check also whether last-command is one of mouse-save-then-kill,
20907 mouse-secondary-save-then-kill, mouse-set-region, mouse-drag-region.
20909 2007-07-15 Michael Albinus <michael.albinus@gmx.de>
20911 * recentf.el (recentf-keep-default-predicate): New defun.
20912 (recentf-keep): Use it as initial value.
20914 2007-07-15 Karl Fogel <kfogel@red-bean.com>
20916 * bookmark.el: Revert 2007-07-13T18:16:17Z!kfogel@red-bean.com,
20917 thus restoring bookmark bindings to three slots under C-x r. See
20918 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00705.html.
20920 2007-07-15 Jeff Miller <jmiller@cablespeed.com> (tiny change)
20922 * calendar/calendar.el (calendar-goto-bahai-date): Autoload it.
20924 2007-07-15 Jason Rumney <jasonr@gnu.org>
20926 * w32-fns.el (set-default-process-coding-system): Use dos line ends
20927 for input to cmdproxy on all versions of Windows.
20928 Use dos line ends for input to plink.
20930 * comint.el (comint-simple-send): Concat newline before sending.
20931 (comint-password-prompt-regexp): Recognize plink's passphrase prompt.
20933 2007-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
20935 * emacs-lisp/autoload.el (generated-autoload-file): Autoload the
20936 safe-local-variable setting.
20938 2007-07-14 David Kastrup <dak@gnu.org>
20940 * emacs-lisp/advice.el (defadvice): Doc fix.
20942 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
20944 * subr.el (when, unless): Doc fix.
20946 2007-07-13 Dan Nicolaescu <dann@ics.uci.edu>
20948 * replace.el (match): Use yellow1 instead of yellow.
20950 * progmodes/gdb-ui.el (breakpoint-enabled): Use red1 instead of
20953 * pcvs-info.el (cvs-unknown): Likewise.
20955 2007-07-13 Eli Zaretskii <eliz@gnu.org>
20957 * makefile.w32-in (install-lisp-SH, install-lisp-CMD): New targets.
20958 (install): Use them to copy all *.el files before *.elc.
20960 2007-07-13 Drew Adams <drew.adams@oracle.com>
20962 * bookmark.el (bookmark-jump-other-window): New function.
20963 (bookmark-map): Bind it to "o".
20965 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html
20966 and its thread contains discussion about this change.
20967 The original patch was slightly tweaked by Karl Fogel
20968 <kfogel@red-bean.com> before committing.
20970 2007-07-13 Karl Fogel <kfogel@red-bean.com>
20972 * bookmark.el: Shorten some comments to fit within 80 lines.
20974 2007-07-13 Karl Fogel <kfogel@red-bean.com>
20976 * bookmark.el: Don't define bookmark keys under the "C-xr" map;
20977 instead, make "C-xp" a prefix for bookmark-map. Patch by Drew
20978 Adams <drew.adams@oracle.com>, mildly tweaked by me. See
20979 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html.
20981 2007-07-13 Carsten Dominik <dominik@science.uva.nl>
20983 * textmodes/org.el: Bug fixes.
20984 (org-end-of-line): Move to end of line if in headline without tags.
20986 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
20988 * vc-hooks.el: Remove spurious * in docstrings.
20989 (vc-handled-backends): Add BZR.
20991 * vc-hooks.el (vc-find-file-hook): Use with-demoted-errors.
20993 2007-07-12 Davis Herring <herring@lanl.gov>
20995 * desktop.el (desktop-buffer-info, desktop-save):
20996 Use `desktop-dirname' instead of `dirname'.
20998 2007-07-12 Paul Pogonyshev <pogonyshev@gmx.net>
21000 * progmodes/which-func.el (which-func-modes): Add `python-mode'.
21002 * progmodes/python.el (python-which-func-length-limit): New var.
21003 (python-which-func): New function.
21004 (python-current-defun): Add optional `length-limit' and try to fit
21005 computed function name to that length.
21006 (python-mode): Hook `python-which-func' up.
21008 2007-07-12 Sean O'Rourke <sorourke@cs.ucsd.edu> (tiny change)
21010 * pcomplete.el (pcomplete-entries): Obey pcomplete-ignore-case.
21012 * comint.el (comint-dynamic-complete-as-filename):
21013 Use read-file-name-completion-ignore-case.
21015 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
21017 * comint.el (comint-dynamic-list-filename-completions):
21018 Use read-file-name-completion-ignore-case.
21020 * vc-cvs.el: Require CL.
21021 (vc-cvs-revision-table, vc-cvs-revision-completion-table):
21022 New functions to provide completion of revision names.
21024 * vc-cvs.el (vc-functions): Clear up the cache when reloading the file.
21025 (vc-cvs-annotate-first-line-re): New const.
21026 (vc-cvs-annotate-process-filter): New fun.
21027 (vc-cvs-annotate-command): Use them and run the command asynchronously.
21029 2007-07-12 Paul Pogonyshev <pogonyshev@gmx.net>
21031 * emacs-lisp/eldoc.el (eldoc-last-data): Revise documentation.
21032 (eldoc-print-current-symbol-info): Adjust for changed helper
21033 function signatures.
21034 (eldoc-get-fnsym-args-string): Add `args' argument. Use new
21035 `eldoc-highlight-function-argument'.
21036 (eldoc-highlight-function-argument): New function.
21037 (eldoc-get-var-docstring): Format documentation with
21038 `font-lock-variable-name-face'.
21039 (eldoc-docstring-format-sym-doc): Add `face' argument and apply it
21041 (eldoc-fnsym-in-current-sexp): Return a list with argument index.
21042 (eldoc-beginning-of-sexp): Return number of skipped sexps.
21044 2007-07-11 Michael Albinus <michael.albinus@gmx.de>
21046 * progmodes/compile.el (compilation-start): `start-process' must
21047 still be redefined when calling `start-process-shell-command'.
21049 * progmodes/gud.el (gud-file-name): When `default-directory' is a
21050 remote file name, prepend its remote part to the filename.
21051 (gud-common-init): When `default-directory' is a remote file name,
21052 make the filename relative to it.
21053 Based on a patch by Nick Roberts <nickrob@snap.net.nz>.
21055 2007-07-11 Dan Nicolaescu <dann@ics.uci.edu>
21057 * vc-hooks.el (vc-default-mode-line-string): Add a mouse face,
21058 mouse binding and a tooltip.
21060 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
21062 * menu-bar.el (vc-menu-map): New defalias.
21064 2007-07-10 Richard Stallman <rms@gnu.org>
21066 * emacs-lisp/lisp-mode.el (eval-defun):
21067 Explain special handling of `defface'.
21069 2007-07-10 Jim Meyering <jim@meyering.net> (tiny change)
21071 * emacs-lisp/copyright.el (copyright-current-gpl-version): Set to 3.
21073 * autoinsert.el (auto-insert-alist): s/2/3/ in the generated comment.
21075 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
21077 * emacs-lisp/cl.el: Load cl-loaddefs.el quietly.
21079 * vc-arch.el (vc-arch-complete): Remove.
21080 (vc-arch-revision-completion-table): Use complete-with-action.
21082 * subr.el (condition-case-no-debug, with-demoted-errors): New macros.
21083 (complete-with-action): New function.
21084 (dynamic-completion-table): Use it.
21086 2007-07-10 Michael Albinus <michael.albinus@gmx.de>
21088 * comint.el (make-comint, make-comint-in-buffer)
21089 (comint-exec-1): Replace `start-process' by `start-file-process'.
21091 * progmodes/compile.el (compilation-start): Revert redefining
21094 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
21096 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Be careful
21097 with EOLs when generating MD5 checksums.
21099 * follow.el: Don't change the global map from the follow-mode-map
21100 defvar, but from the toplevel. Use easy-menu to unify the Emacs and
21102 (turn-on-follow-mode, turn-off-follow-mode): Remove interactive spec
21103 since `follow-mode' should be used instead for that.
21105 * emacs-lisp/easymenu.el (easy-menu-binding): New function.
21106 (easy-menu-do-define): Use it.
21107 (easy-menu-do-add-item): Inline into easy-menu-add-item and then remove.
21109 * progmodes/compile.el (compilation-auto-jump-to-first-error)
21110 (compilation-auto-jump-to-next): New vars.
21111 (compilation-auto-jump): New function.
21112 (compilation-error-properties): Use them to jump to first error.
21113 (compilation-start): Set the var if requested.
21115 * emacs-lisp/autoload.el (update-directory-autoloads): Remove
21116 duplicates without also removing entries from other directories.
21118 2007-07-10 Carsten Dominik <dominik@science.uva.nl>
21120 * textmodes/org.el (org-agenda-day-view, org-agenda-week-view):
21121 Remember span as default.
21122 (org-columns-edit-value): Rename from `org-column-edit'.
21123 (org-columns-display-here-title): Rename from
21124 `org-overlay-columns-title'.
21125 (org-columns-remove-overlays): Rename from org-remove-column-overlays.
21126 (org-columns-get-autowidth-alist): Rename from
21127 `org-get-columns-autowidth-alist'.
21128 (org-columns-display-here): Rename from `org-overlay-columns'.
21129 (org-columns-new-overlay): Rename from `org-new-column-overlay'.
21130 (org-columns-quit): Rename from `org-column-quit'.
21131 (org-columns-show-value): Rename from `org-column-show-value'.
21132 (org-columns-content, org-columns-widen)
21133 (org-columns-next-allowed-value)
21134 (org-columns-edit-allowed, org-columns-store-format)
21135 (org-columns-uncompile-format, org-columns-redo)
21136 (org-columns-edit-attributes, org-delete-property)
21137 (org-set-property, org-columns-update)
21138 (org-columns-compute, org-columns-eval)
21139 (org-columns-not-in-agenda, org-columns-compute-all)
21140 (org-property-next-allowed-value)
21141 (org-columns-compile-format)
21142 (org-fill-paragraph-experimental)
21143 (org-string-to-number, org-property-action)
21144 (org-columns-move-left, org-columns-new)
21145 (org-column-number-to-string)
21146 (org-property-previous-allowed-value)
21147 (org-at-property-p, org-columns-delete)
21148 (org-columns-previous-allowed-value)
21149 (org-columns-move-right, org-columns-narrow)
21150 (org-property-get-allowed-values)
21151 (org-verify-version, org-column-string-to-number)
21152 (org-delete-property-globally): New functions.
21153 (org-columns-current-fmt): Rename from `org-current-columns-fmt'.
21154 (org-columns-overlays): Rename from `org-column-overlays'.
21155 (org-columns-map): Rename from `org-column-map'.
21156 (org-columns-current-maxwidths): Rename from
21157 `org-current-columns-maxwidths'.
21158 (org-columns-begin-marker, org-columns-current-fmt-compiled)
21159 (org-previous-header-line-format)
21160 (org-columns-inhibit-recalculation)
21161 (org-columns-top-level-marker): New variables.
21162 (org-columns-default-format): Rename from `org-default-columns-format'.
21163 (org-property-re): New constant.
21165 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
21167 * subr.el (looking-at-p, string-match-p): New functions.
21169 2007-07-09 Reiner Steib <Reiner.Steib@gmx.de>
21171 * textmodes/tex-mode.el (tex-fontify-script)
21172 (tex-font-script-display): New variables to make display of
21173 superscripts and subscripts customizable.
21174 (tex-font-lock-suscript, tex-font-lock-match-suscript): Use them.
21176 2007-07-09 Richard Stallman <rms@gnu.org>
21178 * isearch.el (isearch-edit-string): Call to isearch-push-state
21181 2007-07-09 Jan Djärv <jan.h.d@swipnet.se>
21183 * window.el (fit-window-to-buffer): Remove setting of window-min-height
21184 to 1 as enlarge-window uses the value to resize/shrink windows other
21185 than WINDOW if needed.
21187 2007-07-08 Katsumi Yamaoka <yamaoka@jpl.org>
21189 * cus-start.el (file-coding-system-alist): Fix custom type.
21191 2007-07-08 Chong Yidong <cyd@stupidchicken.com>
21193 * longlines.el (longlines-wrap-region): Avoid marking buffer as
21195 (longlines-auto-wrap, longlines-window-change-function):
21196 Remove unnecessary calls to set-buffer-modified-p.
21198 2007-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
21200 * vc-cvs.el (vc-cvs-revert): Use vc-default-revert.
21201 (vc-cvs-checkout): Remove last arg now unused; simplify.
21203 2007-07-08 Michael Albinus <michael.albinus@gmx.de>
21205 * files.el (file-remote-p): Introduce optional parameter CONNECTED.
21208 * net/tramp-ftp.el:
21209 * net/tramp-smb.el:
21211 * net/trampver.el: Migrate to Tramp 2.1.
21213 * net/tramp-cache.el:
21214 * net/tramp-fish.el:
21215 * net/tramp-gw.el: New Tramp packages.
21217 * net/tramp-util.el:
21218 * net/tramp-vc.el: Removed.
21220 * net/ange-ftp.el: Add ange-ftp property to 'start-file-process.
21221 (ange-ftp-file-remote-p): Handle optional parameter CONNECTED.
21223 * net/rcompile.el (remote-compile): Handle Tramp 2.1 arguments.
21225 * progmodes/compile.el (compilation-start): Redefine
21226 `start-process' temporarily when `default-directory' is remote.
21227 Remove case of synchronous compilation, this won't happen ever.
21228 (compilation-setup): Make local variable `comint-file-name-prefix'
21229 for remote compilation.
21231 2007-07-08 Martin Rudalics <rudalics@gmx.at>
21233 * novice.el (disabled-command-function): Fit window to buffer to
21234 make last line visible.
21235 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
21237 * mouse.el (mouse-drag-track): Reset transient-mark-mode to nil
21238 when handling the terminating event.
21240 2007-07-07 Jay Belanger <jay.p.belanger@gmail.com>
21242 * calc/calc.el (math-read-number-simple): Remove leading 0s.
21243 (math-bignum-digit-length): Change to optimal value.
21245 * calc/calc-bin.el (math-bignum-logb-digit-size)
21246 (math-bignum-digit-power-of-two): Evaluate when compiled.
21248 * calc/calc-comb.el (math-small-factorial-table)
21249 (math-init-random-base, math-prime-test): Remove unnecessary calls
21250 to `math-read-number-simple'.
21252 * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
21253 (math-approx-gamma-const): Add docstrings.
21255 * calc/calc-forms.el (math-julian-date-beginning)
21256 (math-julian-date-beginning-int): New constants.
21257 (math-format-date-part, math-parse-standard-date, calcFunc-julian):
21258 Use the new constants.
21260 * calc/calc-funcs.el (math-gammap1-raw): Add docstring.
21262 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
21265 2007-07-07 Tom Tromey <tromey@redhat.com>
21267 * vc.el (vc-annotate): Jump to line and output message only after the
21268 process is really all done.
21270 2007-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
21272 * vc.el (vc-exec-after): Don't move point from the sentinel.
21273 Forcefully read all the remaining text in the pipe upon process exit.
21274 (vc-annotate-display-autoscale, vc-annotate-lines):
21275 Don't stop at the first unrecognized line.
21276 (vc-annotate-display-select): Run autoscale after the process is done
21277 since it depends on the whole result.
21279 2007-07-07 Eli Zaretskii <eliz@gnu.org>
21281 * term/w32-win.el (menu-bar-open): New function.
21284 2007-07-07 Michael Albinus <michael.albinus@gmx.de>
21286 * simple.el (start-file-process): New defun.
21288 2007-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
21290 * files.el (find-file-confirm-nonexistent-file): Rename from
21291 find-file-confirm-inexistent-file. Update users.
21293 * emacs-lisp/autoload.el (autoload-find-destination): Understand a new
21294 format of autoload block where the file's time-stamp is replaced by its
21296 (autoload-generate-file-autoloads): Use MD5 checksum instead of
21297 time-stamp for secondary autoloads files.
21298 (update-directory-autoloads): Remove duplicate entries.
21299 Use time-less-p for time-stamps, as done in autoload-find-destination.
21301 2007-07-07 Jay Belanger <jay.p.belanger@gmail.com>
21303 * calc/calc.el (math-read-number): Replace number by variable.
21304 (math-read-number-simple): Properly parse small integers.
21306 2007-07-07 Dan Nicolaescu <dann@ics.uci.edu>
21308 * vc.el: Fix doc for the checkout function.
21310 2007-07-06 Dan Nicolaescu <dann@ics.uci.edu>
21312 * vc-hg.el (vc-hg-root): New function.
21313 (vc-hg-registered): Use it.
21314 (vc-hg-diff-tree): New defalias.
21315 (vc-hg-responsible-p): Likewise.
21316 (vc-hg-checkout): Comment out, not needed.
21317 (vc-hg-delete-file, vc-hg-rename-file, vc-hg-could-register)
21318 (vc-hg-find-version, vc-hg-next-version): New functions.
21320 2007-07-06 Andreas Schwab <schwab@suse.de>
21322 * emacs-lisp/lisp-mode.el (eval-last-sexp): Avoid introducing any
21323 dynamic bindings around the evaluation of the expression.
21324 Reported by Jay Belanger <jay.p.belanger@gmail.com>.
21326 2007-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
21328 * autorevert.el (auto-revert-tail-handler): Use inhibit-read-only.
21329 Run before-revert-hook. Suggested by Denis Bueno <denbuen@sandia.gov>.
21330 Use run-hooks rather than run-mode-hooks.
21332 2007-07-05 Jay Belanger <jay.p.belanger@gmail.com>
21334 * calc/calc-comb.el (math-random-digit): Rename to
21335 `math-random-three-digit-number'.
21336 (math-random-digits): Don't depend on representation of integer.
21338 * calc/calc-bin.el (math-bignum-logb-digit-size)
21339 (math-bignum-digit-power-of-two): New constants.
21340 (math-and-bignum, math-or-bignum, math-xor-bignum, math-diff-bignum)
21341 (math-not-bignum, math-clip-bignum): Use the constants
21342 `math-bignum-digit-power-of-two' and `math-bignum-logb-digit-size'
21343 instead of their values.
21344 (math-clip): Use math-small-integer-size instead of its value.
21346 * calc/calc.el (math-add-bignum): Replace number by constant.
21348 2007-07-05 Chong Yidong <cyd@stupidchicken.com>
21350 * wid-edit.el (widget-documentation-string-value-create):
21351 Insert indentation spaces.
21353 2007-07-05 Thien-Thi Nguyen <ttn@gnuvola.org>
21355 * emacs-lisp/byte-opt.el: Revert last change.
21357 2007-07-05 Dan Nicolaescu <dann@ics.uci.edu>
21359 * vc-hooks.el (vc-handled-backends): Add HG.
21361 * vc-hg.el (vc-handled-backends): Remove, done in vc-hooks.el now.
21363 2007-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
21365 * complete.el (PC-do-complete-and-exit): Add support for the new
21366 `confirm-only' confirmation mode.
21368 2007-07-05 Chong Yidong <cyd@stupidchicken.com>
21370 * cus-edit.el (custom-commands): New variable.
21371 (custom-tool-bar-map): New variable. Initialize using
21373 (custom-mode): Use `custom-tool-bar-map'.
21374 (custom-buffer-create-internal): Insert action buttons only if
21375 tool bar is not used. Use `custom-commands'.
21376 (Custom-help, custom-command-apply): New function.
21377 (custom-command-apply, Custom-set, Custom-save)
21378 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard):
21379 Use `custom-command-apply' instead of duplicating code.
21380 (customize-group-other-window): Call `customize-group' instead of
21382 (customize-face-other-window): Call `customize-face' instead of
21384 (customize-group, customize-face): Add optional args for opening
21386 (custom-variable-tag): Don't inherit `variable-pitch' face.
21387 (custom-group-tag): Inherit `variable-pitch' face.
21388 (custom-variable-value-create): Set documentation indentation.
21389 (custom-group-value-create): Make group name a link, instead of
21390 using an extra "go to group" button.
21391 (custom-prompt-variable, custom-group-set, custom-group-save)
21392 (custom-group-reset-current, custom-group-reset-saved)
21393 (custom-group-reset-standard): Minor cleanup.
21395 2007-07-05 Thien-Thi Nguyen <ttn@gnuvola.org>
21397 * Makefile.in (bootstrap-prepare): When copying from
21398 ldefs-boot.el, make sure loaddefs.el is writeable.
21400 (bootstrap-prepare): Make $(lisp)/ps-print.el
21401 and $(lisp)/emacs-lisp/cl-loaddefs.el writable, as well.
21403 2007-07-05 Dan Nicolaescu <dann@ics.uci.edu>
21405 * vc-hg.el (vc-hg-internal-status): Inline in `vc-hg-state', the
21406 only caller, and delete.
21407 (vc-hg-state): Deal with exceptions and only parse the output on
21409 (vc-hg-internal-log): Inline in `vc-hg-workfile-version', the only
21410 caller, and delete.
21411 (vc-hg-workfile-version): Deal with exceptions and only parse the
21412 output on successful return.
21413 (vc-hg-revert): New function.
21415 2007-07-04 Jay Belanger <jay.p.belanger@gmail.com>
21417 * calculator.el (calculator-expt): Use more cases to determine
21420 2007-07-03 Dan Nicolaescu <dann@ics.uci.edu>
21422 * progmodes/gud.el (auto-mode-alist): Match more valid gdb init
21425 2007-07-03 Jay Belanger <jay.p.belanger@gmail.com>
21427 * calculator.el (calculator-expt, calculator-integer-p):
21429 (calculator-fact): Check to see if the factorial will be too
21430 large before computing it.
21431 (calculator-initial-operators): Use `calculator-expt' to
21433 (calculator-mode): Mention that results which are too large
21435 * calc/calc-comb.el (math-small-factorial-table): Replace list
21438 2007-07-03 David Kastrup <dak@gnu.org>
21440 * shell.el: On request of the authors, remove their addresses for
21441 the sake of bug reports, and add the developer list address as
21442 maintainer information.
21444 2007-07-03 Richard Stallman <rms@gnu.org>
21446 * files.el (make-directory): Doc fix.
21447 (find-file-confirm-inexistent-file): Make it a defcustom.
21448 Make nil the default.
21450 2007-07-02 Richard Stallman <rms@gnu.org>
21452 * startup.el (command-line): Set buffer-offer-save in *scratch*
21453 and enable auto-save in it.
21455 2007-07-02 Carsten Dominik <dominik@science.uva.nl>
21457 * textmodes/org.el (orgstruct-mode-map): New variable.
21458 (orgstruct-mode): New minor mode.
21459 (turn-on-orgstruct, orgstruct-error, orgstruct-setup)
21460 (orgstruct-make-binding, org-context-p, org-get-local-variables)
21461 (org-run-like-in-org-mode): New functions.
21462 (org-cycle-list-bullet): New command.
21463 (org-special-properties, org-property-start-re)
21464 (org-property-end-re): New constants.
21465 (org-with-point-at): New macro.
21466 (org-get-property-block, org-entry-properties, org-entry-get)
21467 (org-entry-delete, org-entry-get-with-inheritance)
21468 (org-entry-put, org-buffer-property-keys): New functions.
21469 (org-insert-property-drawer): New command.
21470 (org-entry-property-inherited-from): New variable.
21471 (org-column): New face.
21472 (org-column-overlays, org-current-columns-fmt)
21473 (org-current-columns-maxwidths, org-column-map): New variables.
21474 (org-column-menu): New menu.
21475 (org-new-column-overlay, org-overlay-columns)
21476 (org-overlay-columns-title, org-remove-column-overlays)
21477 (org-column-show-value, org-column-quit, org-column-edit):
21479 (org-columns, org-agenda-columns): New commands.
21480 (org-get-columns-autowidth-alist): New functions.
21481 (org-properties): New customize group.
21482 (org-default-columns-format): New option.
21483 (org-priority): Realign tags after changing priority.
21484 (org-preserve-lc): New macro.
21485 (org-update-checkbox-count): Catch case when there is no headline.
21486 (org-agenda-quit): Remove any column overlays.
21487 (org-beginning-of-item-list): Fixed bug when non-item line is
21489 (org-cached-props): New variable.
21490 (org-cached-entry-get): New function.
21491 (org-make-tags-matcher): Handle property matches.
21492 (org-table-recalculate): Swap evaluation order: Field formula
21493 first, then column formulas, but don't allow them to overwrite the
21495 (org-table-eval-formula): New argument untouchable.
21496 (org-table-put-field-property): New function.
21498 2007-07-02 Martin Rudalics <rudalics@gmx.at>
21500 * help-mode.el (help-make-xrefs): Skip spaces too when
21503 * ffap.el (dired-at-point-prompter): Improve prompt in
21504 list-directory case.
21506 2007-07-01 Richard Stallman <rms@gnu.org>
21508 * files.el (find-file-visit-truename): Fix safe-local-variable value.
21510 2007-07-01 Richard Stallman <rms@gnu.org>
21512 * cus-start.el (max-mini-window-height): Added.
21514 2007-07-01 Sean O'Rourke <sorourke@cs.ucsd.edu> (tiny change)
21516 * complete.el (partial-completion-mode): Remove advice of
21517 read-file-name-internal.
21518 (PC-do-completion): Rebind minibuffer-completion-table.
21519 (PC-read-file-name-internal): New function doing what
21520 read-file-name-internal advice did.
21522 2007-07-01 Paul Pogonyshev <pogonyshev@gmx.net>
21524 * emacs-lisp/byte-opt.el: Set `binding-is-magic'
21525 property on a few symbols.
21526 (byte-compile-side-effect-free-dynamically-safe-ops): New defconst.
21527 (byte-optimize-lapcode): Remove bindings that are not referenced
21528 and certainly will not effect through dynamic scoping.
21530 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21532 * files.el (find-file-confirm-inexistent-file): New var.
21533 (find-file, find-file-other-window, find-file-other-frame)
21534 (find-file-read-only, find-file-read-only-other-window)
21535 (find-file-read-only-other-frame): Use it.
21537 2007-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
21539 * emacs-lisp/rx.el (rx-constituents): Fix up `anything'.
21541 2007-06-29 Juanma Barranquero <lekktu@gmail.com>
21543 * generic-x.el (generic-define-mswindows-modes)
21544 (generic-define-unix-modes, apache-log-generic-mode)
21545 (bat-generic-mode-keymap, java-manifest-generic-mode)
21546 (show-tabs-generic-mode): Fix typos in docstrings.
21548 2007-06-29 Ryan Yeske <rcyeske@gmail.com>
21550 * net/rcirc.el (rcirc-server-alist): Rename from rcirc-connections.
21551 (rcirc-default-full-name): Rename from rcirc-default-user-full-name.
21552 (rcirc-clear-activity): Make sure RCIRC-ACTIVITY isn't modified.
21553 (rcirc-print): Never ignore messages from ourself.
21555 2007-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
21557 * font-lock.el (lisp-font-lock-keywords-2): Recognize the new \(?1:..\)
21558 syntax as well. Reported by Juri Linkov <juri@jurta.org>.
21560 2007-06-28 Jan Djärv <jan.h.d@swipnet.se>
21562 * dnd.el (dnd-get-local-file-name): Set fixcase to t in call to
21563 replace-regexp-in-string.
21565 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
21567 * emacs-lisp/cl.el: Set edebug and indentation before loading
21568 cl-loaddefs.el so that its use of dolist doesn't load cl-macs.
21570 2007-06-28 Andreas Schwab <schwab@suse.de>
21572 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Depend on
21573 $(lisp)/subdirs.el.
21575 2007-06-28 Juanma Barranquero <lekktu@gmail.com>
21577 * speedbar.el (speedbar-handle-delete-frame): Don't try to delete
21578 the speedbar frame if nil; that deletes the current frame or
21579 causes an error if it is the only frame.
21580 Reported by Angelo Graziosi <Angelo.Graziosi@roma1.infn.it>.
21582 2007-06-28 Kevin Ryde <user42@zip.com.au>
21584 * textmodes/nroff-mode.el: Groff \# comments.
21585 (nroff-mode-syntax-table): \# comment intro,
21586 plain # as punct per global table.
21587 (nroff-font-lock-keywords): Add # as a single char escape.
21588 (nroff-mode): In comment-start-skip, match \#.
21590 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
21592 * vc-bzr.el (vc-functions): Clear up the cache when reloading the file.
21593 (vc-bzr-workfile-version, vc-bzr-could-register): Don't hardcode
21596 2007-06-28 Nick Roberts <nickrob@snap.net.nz>
21598 * pcvs-util.el (cvs-strings->string, cvs-string->strings):
21599 Rename and move to...
21601 * subr.el (strings->string, string->strings): ...here.
21603 * pcvs.el (cvs-reread-cvsrc, cvs-header-msg, cvs-checkout)
21604 (cvs-mode-checkout, cvs-execute-single-file): Use new function names.
21606 * progmodes/gud.el (gud-common-init): Call string->strings instead
21609 2007-06-27 Michael Albinus <michael.albinus@gmx.de>
21611 * dired-aux.el: Remove `dired-call-process'.
21612 (dired-check-process): Call `process-file'.
21614 * wdired.el (wdired-do-perm-changes): Call `process-file'.
21616 * net/ange-ftp.el (ange-ftp-dired-call-process): Reimplement it as
21617 `ange-ftp-process-file'.
21619 2007-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
21621 * emacs-lisp/cl.el: Use cl-loaddefs.el rather than manual autoloads.
21623 * emacs-lisp/cl-extra.el:
21624 * emacs-lisp/cl-seq.el:
21625 * emacs-lisp/cl-macs.el: Set generated-autoload-file to cl-loaddefs.el.
21626 Add autoload cookies on all defs autoloaded manually in cl.el.
21628 * emacs-lisp/cl-loaddefs.el: New file.
21630 * textmodes/texinfmt.el (texinfo-raisesections-alist)
21631 (texinfo-lowersections-alist): Merge definition and declaration.
21632 (texinfo-start-of-header, texinfo-end-of-header): Remove.
21633 (texinfo-format-syntax-table): Merge init into declaration.
21634 (texinfo-format-parse-line-args, texinfo-format-parse-args)
21635 (texinfo-format-parse-defun-args, texinfo-format-node)
21636 (texinfo-push-stack, texinfo-multitable-widths)
21637 (texinfo-define-info-enclosure, texinfo-alias)
21638 (texinfo-format-defindex, batch-texinfo-format): Use push.
21639 (texinfo-footnote-number): Remove duplicate declaration.
21641 * ps-print.el: Update with auto-generated autoloads.
21643 * ps-mule.el: Set generated-autoload-file to "ps-print.el".
21645 2007-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
21647 * emacs-lisp/autoload.el (autoload-generated-file): Interpret names
21648 relative to current dir for file-local settings.
21649 (autoload-generate-file-autoloads): Add `outfile' arg.
21650 (update-directory-autoloads): Use it to directly call
21651 autoload-generate-file-autoloads instead of going through
21652 update-file-autoloads so we avoid redundant searches and so we can know
21653 the set of buffers changed so we can save them all.
21655 * emacs-lisp/autoload.el (autoload-find-destination): Return nil
21656 rather than throwing `up-to-date'.
21657 (autoload-generate-file-autoloads): Adjust correspondingly.
21658 (update-file-autoloads): Be careful to let-bind
21659 autoload-modified-buffers and adjust to new calling conventions.
21660 (autoload-modified-buffers): Make it a dynamically scoped var.
21661 (update-directory-autoloads): Use file-relative-name instead of
21662 autoload-trim-file-name.
21663 (autoload-insert-section-header): Don't use autoload-trim-file-name
21664 since the file is already relative now.
21665 (autoload-trim-file-name): Remove.
21667 * vc-arch.el (vc-arch-add-tagline): Do a slightly cleaner job.
21668 (vc-arch-complete, vc-arch--version-completion-table)
21669 (vc-arch-revision-completion-table): New functions to provide
21670 completion of revision names.
21671 (vc-arch-trim-find-least-useful-rev, vc-arch-trim-make-sentinel)
21672 (vc-arch-trim-one-revlib, vc-arch-trim-revlib): New functions
21673 to let the user trim the revlib.
21675 * vc.el: Add new VC operation `revision-completion-table'.
21676 (vc-default-revision-completion-table): New function.
21677 (vc-version-diff, vc-version-other-window): Use it to provide
21678 completion of revision names if the backend provides it.
21680 * log-edit.el (log-edit-changelog-entries): Use with-current-buffer.
21682 * vc-svn.el (vc-svn-repository-hostname): Adjust to non-XML format
21683 of newer .svn/entries.
21685 2007-06-25 David Kastrup <dak@gnu.org>
21687 * calc/calc-poly.el (math-padded-polynomial)
21688 (math-partial-fractions): Add some function comments.
21690 2007-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
21692 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
21693 Make `outbuf' optional.
21694 (update-file-autoloads): Use it.
21696 2007-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
21698 * emacs-lisp/autoload.el (autoload-modified-buffers): New var.
21699 (autoload-find-destination): Keep it uptodate.
21700 (autoload-save-buffers): New fun.
21701 (update-file-autoloads): Use it. Re-add the "up to date" message.
21703 * emacs-lisp/autoload.el: Refactor for upcoming changes.
21704 (autoload-find-destination): New function extracted from
21705 update-file-autoloads.
21706 (update-file-autoloads): Use it.
21707 (autoload-generate-file-autoloads): New function extracted from
21708 generate-file-autoloads. Use file-relative-name. Delay computation of
21709 output-start to the first cookie. Remove done-any, replaced by
21711 (generate-file-autoloads): Use it.
21713 2007-06-24 Jay Belanger <jay.p.belanger@gmail.com>
21715 * calc/calc-comb.el (math-init-random-base, math-prime-test):
21716 Use math-read-number-simple to insert constants.
21717 (math-prime-test): Redo calculation of sum.
21719 * calc/calc-misc.el (math-div2-bignum): Use math-bignum-digit-size.
21721 * calc/calc-math.el (math-scale-bignum-digit-size): Rename from
21722 math-scale-bignum-3.
21723 (math-isqrt-bignum): Use math-scale-bignum-digit-size and
21724 math-bignum-digit-size.
21725 (math-isqrt-small): Add another possible initial guess.
21727 2007-06-23 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
21729 * textmodes/bibtex.el (bibtex-entry-format): New options
21730 `whitespace', `braces', and `string'.
21731 (bibtex-field-braces-alist, bibtex-field-strings-alist)
21732 (bibtex-field-braces-opt, bibtex-field-strings-opt)
21733 (bibtex-cite-matcher-alist): New variables.
21734 (bibtex-font-lock-keywords): Use bibtex-cite-matcher-alist.
21735 (bibtex-flash-head): Use blink-matching-delay.
21736 (bibtex-insert-kill, bibtex-mark-entry): Use push-mark.
21737 (bibtex-format-entry, bibtex-reformat): Handle new options of
21738 bibtex-entry-format.
21739 (bibtex-field-re-init, bibtex-font-lock-cite, bibtex-dist):
21741 (bibtex-complete-internal): Do not display messages while
21742 minibuffer is used. Do not leave around a completions buffer
21743 that is out of date.
21744 (bibtex-copy-summary-as-kill): New optional arg.
21745 (bibtex-font-lock-url): New optional arg no-button.
21746 (bibtex-find-crossref): Use `bibtex-cite-matcher-alist'.
21747 (bibtex-url): Allow multiple URLs per entry.
21749 2007-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
21751 * emacs-lisp/autoload.el (autoload-generated-file): New function.
21752 (update-file-autoloads, update-directory-autoloads): Use it.
21753 (autoload-file-load-name): New function.
21754 (generate-file-autoloads, update-file-autoloads): Use it.
21755 (autoload-find-file): Accept non-absolute argument. Set default-dir.
21756 (generate-file-autoloads): If the autoloaded form is malformed,
21757 indicate the problem with a warning instead of aborting.
21759 2007-06-23 Thien-Thi Nguyen <ttn@gnuvola.org>
21761 * simple.el (next-error-recenter): Accept `(4)' as well;
21762 also, specify `integer' instead of `number'.
21764 2007-06-23 Eli Zaretskii <eliz@gnu.org>
21766 * ls-lisp.el (insert-directory): If an invalid regexp error is
21767 thrown, try using FILE as a literal file name, not a wildcard.
21769 2007-06-23 Juanma Barranquero <lekktu@gmail.com>
21771 * ruler-mode.el (ruler-mode): Prevent clobbering the original
21772 `header-line-format' when reentering ruler mode.
21774 2007-06-23 Eli Zaretskii <eliz@gnu.org>
21776 * ls-lisp.el (insert-directory): Don't treat FILE as a wildcard if
21777 FILE exists as a file.
21779 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
21781 * calc/calc.el (math-bignum-digit-length)
21782 (math-bignum-digit-size, math-small-integer-size):
21784 (math-normalize, math-bignum-big, math-make-float)
21785 (math-div10-bignum, math-scale-left, math-scale-left-bignum)
21786 (math-scale-right, math-scale-right-bignum, math-scale-rounding)
21787 (math-add, math-add-bignum, math-sub-bignum, math-sub, math-mul)
21788 (math-mul-bignum, math-mul-bignum-digit, math-idivmod)
21789 (math-quotient, math-div-bignum, math-div-bignum-digit)
21790 (math-div-bignum-part, math-format-bignum-decimal)
21791 (math-read-bignum): Use math-bignum-digit-length,
21792 math-bignum-digit-size and math-small-integer-size.
21794 * calc/calc-ext.el (math-fixnum-big): Use the variable
21795 math-bignum-digit-size.
21797 2007-06-23 Dan Nicolaescu <dann@ics.uci.edu>
21799 * log-view.el (log-view-mode-menu): New menu.
21801 2007-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
21803 * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change
21806 * vc-hg.el (vc-hg-registered): Add an autoloaded version.
21807 (vc-hg-log-view-mode): Use log-view-font-lock-keywords.
21809 2007-06-22 Dan Nicolaescu <dann@ics.uci.edu>
21811 * vc-hg.el (vc-hg-print-log): Insert the file name.
21812 (vc-hg-log-view-mode): Fontify the file name.
21814 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
21816 * calc/calc-forms.el (math-format-date-part, calc-parse-standard-date)
21817 (calcFunc-julian): Fix incorrect number used in calculations.
21819 2007-06-22 Thien-Thi Nguyen <ttn@gnuvola.org>
21821 * simple.el (next-error-recenter): New defcustom.
21822 (next-error, next-error-internal): Recenter if specified,
21823 immediately prior to running `next-error-hook'.
21825 * progmodes/hideshow.el (hs-show-block): Use line-end-position.
21826 (hs-hide-block-at-point, hs-hide-comment-region): Likewise.
21828 * progmodes/hideshow.el (hs-hide-all): Use progress reporter.
21830 2007-06-22 Jay Belanger <jay.p.belanger@gmail.com>
21832 * calc/calc-comb.el (math-small-factorial-table): New variable.
21833 (calcFunc-fact): Use `math-small-factorial-table'.
21835 * calc/calc-ext.el (math-defcache): Allow forms to evaluate
21837 (math-approx-pi, math-approx-sqrt-e, math-approx-gamma-const):
21838 New variables to use in caches.
21840 * calc/calc-forms.el (math-format-date-part, math-parse-standard-date)
21841 (calcFunc-julian): Use `math-read-number-simple' to insert bignums.
21843 * calc/calc-funcs.el (math-besJ0, math-besJ1, math-besY0, math-besY1)
21844 (math-bernoulli-b-cache): Use math-read-number-simple to insert
21847 * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
21848 New variables to use in caches.
21850 2007-06-22 Dan Nicolaescu <dann@ics.uci.edu>
21852 * vc-bzr.el (vc-bzr-log-view-mode): Add + to the email address regexp.
21854 * vc-hg.el (vc-hg-log-view-mode): New mode.
21856 2007-06-21 Jay Belanger <jay.p.belanger@gmail.com>
21858 * calc/calc.el (math-read-number-simple): New function.
21860 2007-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
21862 * progmodes/vera-mode.el (vera-mode): Fix `commend-end-skip' setting.
21863 (vera-font-lock-match-item): Fix doc string.
21864 (vera-in-comment-p): Remove unused function.
21865 (vera-skip-forward-literal, vera-skip-backward-literal): Improve code,
21867 (vera-forward-syntactic-ws): Fix argument order.
21868 (vera-prepare-search): Use `with-syntax-table'.
21869 (vera-indent-line): Fix doc string.
21870 (vera-electric-tab): Fix doc string.
21871 (vera-expand-abbrev): Define alias instead of using `fset'.
21872 (vera-comment-uncomment-region): Use `comment-start-skip'.
21874 2007-06-21 Carsten Dominik <dominik@science.uva.nl>
21876 * textmodes/org.el (org-export-with-footnotes): New option.
21877 (org-export-as-html): Fix replacement bug for XEmacs.
21878 (org-agenda-default-appointment-duration): New option.
21880 2007-06-21 Dan Nicolaescu <dann@ics.uci.edu>
21882 * vc-hg.el: Add to do items.
21883 (vc-hg-diff): Add support for comparing different revisions.
21884 (vc-hg-diff, vc-hg-annotate-command, vc-hg-annotate-time)
21885 (vc-hg-annotate-extract-revision-at-line)
21886 (vc-hg-previous-version, vc-hg-checkin): New functions.
21887 (vc-hg-annotate-re): New constant.
21889 2007-06-20 Jay Belanger <jay.p.belanger@gmail.com>
21891 * calc/calc.el (math-standard-ops): Fix precedence of multiplication.
21893 2007-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
21895 * log-view.el (log-view-font-lock-keywords): Use `eval' to consult the
21896 buffer-local value of log-view-*-re if applicable.
21898 * vc-bzr.el (vc-bzr-dir-state): Use setq rather than set.
21899 Use vc-bzr-command rather than the ill defined vc-bzr-command*.
21900 (vc-bzr-command*): Remove both (incompatible) versions.
21901 (vc-bzr-do-command*): Remove.
21902 (vc-bzr-with-process-environment, vc-bzr-std-process-invocation):
21903 Remove by folding into its only caller vc-bzr-command.
21904 (vc-bzr-command): Always set the environment, even when ineffective.
21905 (vc-bzr-version): Minor fix up.
21906 (vc-bzr-admin-dirname): New var.
21907 (vc-bzr-bzr-dir): Remove.
21908 (vc-bzr-root-dir): New fun.
21909 (vc-bzr-registered): Use it. Add an autoloaded version.
21910 (vc-bzr-responsible-p): Use vc-bzr-root-dir as well.
21911 (vc-bzr-view-log-function): Remove.
21912 (vc-bzr-log-view-mode): New major mode to replace it.
21913 (vc-bzr-print-log): Only activate the old hack if needed.
21915 * vc.el (vc-default-log-view-mode): New function.
21916 (vc-print-log): Add new `log-view-mode' VC operation.
21918 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
21920 * ido.el (ido-find-file-in-dir): Don't signal an error for
21923 * add-log.el (change-log-mode): Set `show-trailing-whitespace'.
21925 * desktop.el (desktop-read): Run `desktop-not-loaded-hook' in the
21926 directory where the desktop file was found, as the docstring says.
21927 (desktop-kill): Use `read-directory-name'.
21929 2007-06-20 Alan Mackenzie <acm@muc.de>
21931 * progmodes/cc-mode.el (c-remove-any-local-eval-or-mode-variables):
21932 When removing lines, also remove the \n. Correction of patch of
21935 2007-06-20 Martin Rudalics <rudalics@gmx.at>
21937 * mouse.el (mouse-drag-mode-line-1): Quit mouse tracking when
21938 event is not a cons cell. Do not unread drag-mouse-1 events.
21939 Select right window in check whether space was stolen from
21942 * help-mode.el (help-make-xrefs): Adjust position of new forward
21945 2007-06-20 Riccardo Murri <riccardo.murri@gmail.com>
21947 * vc-bzr.el (vc-bzr-with-process-environment)
21948 (vc-bzr-std-process-invocation): New macros.
21949 (vc-bzr-command, vc-bzr-command*): Use them.
21950 (vc-bzr-with-c-locale): Remove.
21951 (vc-bzr-dir-state): Replace its use with vc-bzr-command.
21952 (vc-bzr-buffer-nonblank-p): New function.
21953 (vc-bzr-state-words): New const.
21954 (vc-bzr-state): Look for `bzr status' keywords in output.
21955 Display everything else as a warning message to the user.
21956 Fix status report with bzr >= 0.15.
21958 2007-06-20 Dan Nicolaescu <dann@ics.uci.edu>
21960 * vc-hg.el (vc-hg-global-switches): Simplify.
21961 (vc-hg-state): Handle more states.
21962 (vc-hg-diff): Fix doc-string.
21963 (vc-hg-register): New function.
21964 (vc-hg-checkout): Likewise.
21966 2007-06-20 Reto Zimmermann <reto@gnu.org>
21968 * progmodes/vera-mode.el: New file.
21970 2007-06-19 Jay Belanger <jay.p.belanger@gmail.com>
21972 * calc/calc.el (calc-multiplication-has-precendence):
21974 (math-standard-ops, math-standard-ops-p, math-expr-ops):
21976 (math-expr-opers): Define using math-standard-ops rather than
21977 math-standard-opers.
21978 * calc/calc-aent.el (calc-do-calc-eval): Let math-expr-opers
21979 equal the function math-standard-ops rather than the variable
21980 math-standard-opers.
21981 (calc-algebraic-entry): Let math-expr-opers equal
21982 math-standard-ops or math-expr-ops, as appropriate.
21983 (math-expr-read-level, math-read-factor): Let math-expr-opers
21984 equal math-expr-ops.
21985 * calc/calc-embed.el (calc-embedded-finish-edit):
21986 Let math-expr-opers equal the function math-standard-ops
21987 rather than the variable math-standard-opers.
21988 * calc/calc-ext.el (math-read-plain-expr)
21989 (math-format-flat-expr-fancy): Let math-expr-opers equal the
21990 function math-standard-ops rather than the variable
21991 math-standard-opers.
21992 * calc/calc-lang.el (calc-set-language, math-read-big-rec):
21993 Let math-expr-opers equal the function math-standard-ops rather
21994 than the variable math-standard-opers.
21995 * calc/calc-prog.el (calc-read-parse-table): Let math-expr-opers
21996 equal the function math-standard-ops rather than the variable
21997 math-standard-opers.
21998 * calc/calc-yank.el (calc-finish-stack-edit): Let math-expr-opers
21999 equal the function math-standard-ops rather than the variable
22000 math-standard-opers.
22001 * calc/calccomp.el (math-compose-expr): Let math-expr-opers equal
22004 2007-06-19 Ivan Kanis <apple@kanis.eu>
22006 * vc-hg.el: New file.
22008 2007-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
22010 * progmodes/sh-script.el (sh-font-lock-paren): Mark the relevant text
22011 with font-lock-multiline.
22013 2007-06-17 Glenn Morris <rgm@gnu.org>
22015 * lpr.el (lpr-page-header-switches): Move %s to separate element
22016 for correct quoting. Doc fix.
22018 2007-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
22020 * textmodes/sgml-mode.el (sgml-xml-guess): Return the result rather
22021 than setting sgml-xml-mode.
22022 (sgml-mode, html-mode): Set sgml-xml-mode.
22023 (sgml-skip-tag-backward): Tell if we skipped over matched tags.
22024 (sgml-skip-tag-backward, sgml-electric-tag-pair-overlays): New var.
22025 (sgml-electric-tag-pair-before-change-function)
22026 (sgml-electric-tag-pair-flush-overlays): New functions.
22027 (sgml-electric-tag-pair-mode): New minor mode.
22028 (sgml-font-lock-keywords-2, sgml-get-context, sgml-unclosed-tag-p)
22029 (sgml-calculate-indent): Use assoc-string.
22031 2007-06-16 Karl Fogel <kfogel@red-bean.com>
22033 * thingatpt.el (thing-at-point-email-regexp): Don't require two
22034 chars before the "@" in an email address. Andreas Roehler noticed
22037 2007-06-15 Karl Fogel <kfogel@red-bean.com>
22039 * thingatpt.el: Add support for email addresses (`email').
22040 (thing-at-point, bounds-of-thing-at-point): Document `email' support.
22041 (thing-at-point-email-regexp): New variable.
22042 (`email'): Put `bounds-of-thing-at-point' and `thing-at-point'
22043 properties on this symbol, with lambda forms for values.
22045 2007-06-15 Masatake YAMATO <jet@gyve.org>
22047 * vc-bzr.el (vc-bzr-root): Cache the output of shell command execution.
22049 * vc.el (vc-dired-hook): Check the backend returned from
22050 `vc-responsible-backend' can really handle `subdir'.
22052 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
22054 * wid-edit.el (widget-add-documentation-string-button):
22055 Fix handling of documentation indent.
22057 2007-06-15 Miles Bader <miles@fencepost.gnu.org>
22059 * mb-depth.el: New file.
22061 2007-06-15 Masatake YAMATO <jet@gyve.org>
22063 * vc.el (vc-dired-mode): Show backend name as part of mode name.
22065 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
22067 * wid-edit.el (widget-default-create): Move ?h handling here...
22068 (widget-default-format-handler): ...from here.
22069 (widget-docstring, widget-add-documentation-string-button): New funs.
22070 (documentation-string): Add :visibility-widget property.
22071 (widget-documentation-string-value-create): Use it.
22073 * cus-edit.el (custom-split-regexp-maybe): Simplify.
22074 (custom-buffer-create-internal): Simplify message.
22075 (custom-variable-tag): Reduce height to normal.
22076 (custom-variable-value-create, custom-face-value-create)
22077 (custom-visibility): New widget.
22078 (custom-visibility): New face.
22079 (custom-group-value-create):
22080 Call widget-add-documentation-string-button, using `custom-visibility'.
22082 2007-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
22084 * emacs-lisp/bytecomp.el (byte-compile-current-group)
22085 (byte-compile-nogroup-warn, byte-compile-file): Revert part of last
22086 change. Apparently the "warning even if the group is implicit" is
22087 a feature rather than a bug.
22089 2007-06-14 Michael Kifer <kifer@cs.stonybrook.edu>
22091 * emulation/viper.el (viper-describe-key-ad)
22092 (viper-describe-key-briefly-ad): Different advices for Emacs and XEmacs.
22093 Compile them conditionally.
22094 (viper-version): Belated version change.
22096 2007-06-14 Juanma Barranquero <lekktu@gmail.com>
22098 * follow.el (follow-all-followers, follow-generic-filter):
22099 * pcomplete.el (pcomplete-restore-windows):
22100 * x-dnd.el (x-dnd-maybe-call-test-function, x-dnd-save-state)
22102 * emacs-lisp/edebug.el (edebug-pop-to-buffer, edebug-display):
22103 * progmodes/python.el (python-complete-symbol):
22104 * term/mac-win.el (mac-dnd-drop-data): Remove redundant check.
22106 2007-06-13 Ryan Yeske <rcyeske@gmail.com>
22108 * net/rcirc.el (rcirc-format-response-string): Use rcirc-nick-syntax
22109 around bright and dim regexps. Make sure bright and dim matches
22110 use word anchors. Send text through rcirc-markup functions.
22111 (rcirc-url-regexp): Add single quote character.
22112 (rcirc-connect): Write logs to disk on auto-save-hook.
22113 Make server a non-optional argument.
22114 (rcirc-log-alist): New variable.
22115 (rcirc-log-directory): Make customizable.
22116 (rcirc-log-flag): New customizable variable.
22117 (rcirc-log): New function.
22118 (rcirc-print): Use above function.
22119 (rcirc-log-write): New function.
22120 (rcirc-generate-new-buffer-name): Strip text properties.
22121 (rcirc-switch-to-buffer-function): Remove variable.
22122 (rcirc-last-non-irc-buffer): Remove variable.
22123 (rcirc-non-irc-buffer): Add function.
22124 (rcirc-next-active-buffer): Use above function.
22125 (rcirc-keepalive): Send KEEPALIVE ctcp instead of a PING.
22126 (rcirc-handler-ctcp-KEEPALIVE): Add handler.
22127 (rcirc-handler-CTCP): Don't print KEEPALIVE responses.
22128 (rcirc-omit-mode): Add minor-mode.
22129 (rcirc-mode-map): Change C-c C-o binding.
22130 (rcirc-mode): Clear mode-line-process. Use a custom
22131 fill-paragraph-function. Set up buffer-invisibility-spec.
22132 (rcirc-response-formats): Remove timestamp code.
22133 (rcirc-omit-responses): Add variable.
22134 (rcirc-print): Don't put the overlay arrow on potentially omitted
22135 lines. Log line to disk. Record activity for private messages
22136 from /dim nicks. Facify the fill-prefix with rcirc-timestamp face.
22137 (rcirc-jump-to-first-unread-line): Print message if there is no
22139 (rcirc-clear-unread): New function.
22140 (rcirc-markup-text-functions): Add variable.
22141 (rcirc-markup-timestamp, rcirc-markup-fill): Add functions.
22142 (rcirc-debug): Don't mess with window configuration.
22143 (rcirc-send-message): Send message before printing locally.
22144 Add SILENT argument, do not print message if non-nil.
22145 (rcirc-visible-buffers): New function and variable.
22146 (rcirc-window-configuration-change-1): Add function.
22147 (rcirc-target-buffer): Make sure ACTIONs don't get sent to the
22149 (rcirc-clean-up-buffer): Set rcirc-target to nil when finished.
22150 (rcirc-fill-paragraph): Add function.
22151 (rcirc-record-activity, rcirc-window-configuration-change-1):
22152 Only update the activity string if it has actually changed.
22153 (rcirc-update-activity-string): Remove padding characters from the
22155 (rcirc-disconnect-buffer): New function to be called when a
22156 channel is parted or the user quits.
22157 (rcirc-server-name): Warn when the server-name hasn't been set.
22158 (rcirc-window-configuration-change): Postpone work until
22160 (rcirc-window-configuration-change-1): Update mode-line and
22161 overlay arrows here.
22162 (rcirc-authenticate): Fixc hanserv identification.
22163 (rcirc-default-server): Remove variable.
22164 (rcirc): Connect according to rcirc-connections.
22165 (rcirc-connections): Add variable.
22166 (rcirc-startup-channels-alist): Remove variable.
22167 (rcirc-startup-channels): Remove function.
22169 2007-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
22171 * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change.
22173 2007-06-13 Johan Bockgård <bojohan@dd.chalmers.se> (tiny change)
22175 * term/xterm.el (terminal-init-xterm): Escape parens in character
22178 2007-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
22180 * progmodes/sh-script.el: Remove unneeded * from docstrings.
22181 Use [:alpha:] and [:alnum:] where applicable.
22182 (sh-quoted-subshell): Rewrite to correctly
22183 handle nested mixes of `...' and $(...).
22184 (sh-apply-quoted-subshell): Remove.
22185 (sh-font-lock-syntactic-keywords): Adjust call to sh-quoted-subshell.
22187 * vc-arch.el (vc-arch-command): Remove bzr. It's a different program.
22189 2007-06-13 Michael Kifer <kifer@cs.stonybrook.edu>
22191 * ediff-ptch.el (ediff-context-diff-label-regexp): Partially undo
22194 2007-06-12 Tom Tromey <tromey@redhat.com>
22196 * subr.el (user-emacs-directory): New defconst.
22197 * cmuscheme.el (scheme-start-file):
22198 * shell.el (shell):
22199 * completion.el (save-completions-file-name):
22200 * custom.el (custom-theme-directory):
22201 * term/x-win.el (emacs-session-filename):
22202 * filesets.el (filesets-menu-cache-file):
22203 * thumbs.el (thumbs-thumbsdir):
22204 * server.el (server-auth-dir):
22205 * image-dired.el (image-dired-dir):
22206 (image-dired-db-file):
22207 (image-dired-temp-image-file):
22208 (image-dired-gallery-dir):
22209 (image-dired-temp-rotate-image-file):
22210 * play/gamegrid.el (gamegrid-user-score-file-directory):
22211 * savehist.el (savehist-file):
22212 * tutorial.el (tutorial--saved-dir):
22213 * startup.el (auto-save-list-file-prefix): Use user-emacs-directory.
22215 2007-06-12 Ralf Angeli <angeli@caeruleus.net>
22217 * scroll-lock.el (scroll-lock-mode): Doc fix.
22219 2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
22221 * ediff-ptch.el (ediff-context-diff-label-regexp): Spurious parenthesis.
22223 * ediff-init.el: Doc strings.
22225 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
22227 * emacs-lisp/bytecomp.el (byte-compile-current-group): New var.
22228 (byte-compile-file): Bind it.
22229 (byte-compile-nogroup-warn): Use it to avoid spurious warnings when the
22230 group argument is provided implicitly.
22231 (byte-compile-format-warn, byte-compile-from-buffer)
22232 (byte-compile-insert-header): Don't hardcode point-min==1.
22233 (byte-compile-file-form-require): Remove unused var old-load-list.
22234 (byte-compile-eval): Remove unused vars old-autoloads and hist-nil-new.
22236 2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
22238 * emulation/viper-cmd.el (viper-prefix-arg-com, viper-prefix-arg-value):
22239 Display error messages.
22240 (viper-prev-destructive-command, viper-insert-prev-from-insertion-ring):
22241 Get rid of cl.el dependencies.
22243 * emulation/viper-init.el (viper-suppress-input-method-change-message):
22245 (viper-activate-input-method-action)
22246 (viper-inactivate-input-method-action):
22247 Use viper-suppress-input-method-change-message.
22249 * emulation/viper-keym.el (viper-vi-basic-map): Disable the bindings
22252 * emulation/viper-util.el (viper-set-cursor-color-according-to-state):
22253 Use viper-replace-overlay-cursor-color instead of
22254 viper-replace-overlay-cursor-color.
22255 (viper-sit-for-short): Use sit-for with 3 arguments.
22257 * emulation/viper.el (viper-insert-state-mode-list): Add gud-mode.
22258 (viper-major-mode-modifier-list): Add viper-comint-mode-modifier-map
22261 * ediff-mult.el (ediff-meta-buffer-brief-message)
22262 (ediff-meta-buffer-verbose-message): New variables.
22263 (ediff-meta-buffer-message): Variable deleted.
22264 (ediff-verbose-help-enabled): New variable.
22265 (ediff-toggle-verbose-help-meta-buffer): New function.
22266 (ediff-redraw-directory-group-buffer): Made aware of short/verbose
22269 * ediff-ptch.el (ediff-context-diff-label-regexp): Better regexp.
22270 (ediff-fixup-patch-map): Improve heuristic.
22272 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
22274 * log-view.el (log-view-file-re, log-view-message-re): Use \(?1:...\).
22275 (log-view-font-lock-keywords): Simplify.
22276 (log-view-current-file, log-view-current-tag): Simplify.
22278 2007-06-12 Sam Steingold <sds@gnu.org>
22280 * vc-arch.el (vc-arch-command): Also try "baz" and "bzr".
22282 2007-06-12 Juanma Barranquero <lekktu@gmail.com>
22284 * desktop.el (desktop-load-locked-desktop): New option.
22285 (desktop-read): Use it.
22286 (desktop-truncate, desktop-outvar, desktop-restore-file-buffer):
22289 2007-06-12 Davis Herring <herring@lanl.gov>
22291 * desktop.el (desktop-save-mode-off): New function.
22292 (desktop-base-lock-name, desktop-not-loaded-hook): New variables.
22293 (desktop-full-lock-name, desktop-file-modtime, desktop-owner)
22294 (desktop-claim-lock, desktop-release-lock): New functions.
22295 (desktop-kill): Tell `desktop-save' that this is the last save.
22296 Release the lock afterwards.
22297 (desktop-buffer-info): New function.
22298 (desktop-save): Use it. Run `desktop-save-hook' where the doc
22299 says to. Detect conflicts, and manage the lock.
22300 (desktop-read): Detect conflicts. Manage the lock.
22302 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
22304 * emulation/tpu-mapper.el (tpu-emacs-map-key): Use new keymap names.
22306 * emulation/tpu-edt.el (tpu-gold-map): Rename from GOLD-map.
22307 (tpu-lucid-emacs-p): Remove. Use (featurep 'xemacs) instead.
22308 (CSI-map, GOLD-CSI-map, GOLD-SS3-map, SS3-map): Delete vars.
22309 (tpu-gold-map, tpu-global-map): Add all the SS3 and CSI bindings, using
22310 keysyms rather than byte sequences.
22311 (tpu-copy-keyfile): Don't force the user to use tpu-mapper.el.
22313 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
22315 * font-lock.el (font-lock-add-keywords): In case font-lock was only
22316 half-activated, forcefully activate it completely.
22318 2007-06-11 Richard Stallman <rms@gnu.org>
22320 * cus-edit.el (custom-variable-type): Doc fix.
22322 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
22324 * progmodes/sh-script.el (sh-font-lock-backslash-quote)
22325 (sh-font-lock-flush-syntax-ppss-cache): New functions.
22326 (sh-font-lock-syntactic-keywords): Use them to distinguish the
22327 different possible cases for \'.
22329 * complete.el (PC-bindings): Don't bind things already bound in the
22332 * textmodes/bibtex-style.el: New file.
22334 2007-06-11 Riccardo Murri <riccardo.murri@gmail.com>
22336 * vc-bzr.el: New file.
22338 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
22340 * vc-svn.el (vc-svn-program): New var.
22341 (vc-svn-command): Use it.
22343 2007-06-11 Juanma Barranquero <lekktu@gmail.com>
22345 * server.el (server-switch-buffer): Remove redundant check.
22347 2007-06-10 Martin Rudalics <rudalics@gmx.at>
22349 * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
22350 Match against file-name-nondirectory.
22351 Fix text on user customization variables.
22352 Reported by Johan Bockgård <bojohan@dd.chalmers.se>.
22354 2007-06-09 Alfred M. Szmidt <ams@gnu.org> (tiny change)
22356 * mail/rmail.el (rmail-movemail-variant-in-use): Fix doc typo.
22358 2007-06-09 Davis Herring <herring@lanl.gov>
22360 * desktop.el (desktop-minor-mode-table): Doc fix.
22362 2007-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
22364 * textmodes/css-mode.el (css-navigation-syntax-table):
22365 Use set-char-table-range so it also works in the unicode branch.
22367 2007-06-08 Nick Roberts <nickrob@snap.net.nz>
22369 * help-mode.el (help-xref-forward-stack)
22370 (help-xref-stack-forward-item, help-forward-label): New variables.
22371 (help-forward): New button type.
22372 (help-setup-xref): Initialise help-xref-forward-stack.
22373 (help-make-xrefs): Add forward button, if appropriate.
22374 (help-xref-go-back): Push item on forward stack.
22375 (help-xref-go-forward, help-go-forward): New functions.
22377 2007-06-07 Chong Yidong <cyd@stupidchicken.com>
22379 * dired.el (dired-mode-map): Remove spurious separator.
22381 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
22383 * progmodes/ebrowse.el (ebrowse-draw-file-member-info): Doc fix.
22385 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
22386 * progmodes/idlwave.el (idlwave-one-key-select): Fix typo in docstring.
22388 2007-06-07 Carsten Dominik <dominik@science.uva.nl>
22390 * textmodes/org.el: Version number fixed.
22392 2007-06-07 Glenn Morris <rgm@gnu.org>
22394 * version.el (emacs-copyright): New constant.
22395 * startup.el (fancy-splash-tail): Use emacs-copyright.
22396 * calc/calc-help.el (calc-full-help): Use emacs-copyright.
22398 * emacs-lisp/bytecomp.el (byte-compile-warnings): Add new option
22400 (byte-compile-warnings-safe-p): Add `make-local'.
22401 (byte-compile-make-variable-buffer-local):
22402 Allow byte-compile-warnings to suppress this warning.
22404 * tutorial.el (tutorial--describe-nonstandard-key): Adjust for new
22405 format of "menu" description.
22406 (tutorial--find-changed-keys): Describe the specific menu a
22409 * dframe.el (dframe-frame-parameter, dframe-mouse-event-p):
22410 Rewrite compatibility functions to silence byte-compiler.
22412 2007-06-07 Alfred M. Szmidt <ams@gnu.org> (tiny change)
22414 * mail/rmailsum.el (rmail-summary-save-buffer): New command.
22415 (rmail-summary-mode-map): Add rmail-summary-save-buffer.
22417 2007-06-07 Eric M. Ludlam <eric@siege-engine.com>
22419 * emacs-lisp/checkdoc.el (checkdoc-ispell-lisp-words): Remove "iff".
22421 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
22423 * progmodes/ebrowse.el (ebrowse-member-table):
22424 * textmodes/org.el (org-export-ascii-bullets, org-batch-agenda)
22425 (org-batch-agenda-csv): Fix typos in docstrings.
22427 2007-06-06 Juanma Barranquero <lekktu@gmail.com>
22429 * pgg.el (pgg-sign-region, pgg-sign):
22430 * ses.el (ses-call-printer):
22431 * calendar/icalendar.el (icalendar--diarytime-to-isotime):
22432 * textmodes/org.el (org-cycle): Fix typos in docstrings.
22434 2007-06-06 Carsten Dominik <dominik@science.uva.nl>
22436 * textmodes/org.el (org-export-region-as-html)
22437 (org-replace-region-by-html, org-number-to-letters)
22438 (org-table-fedit-finish, org-normalize-color)
22439 (org-table-fedit-ref-right, org-date-to-gregorian)
22440 (org-table-fedit-move, org-table-convert-refs-to-rc)
22441 (org-calendar-holiday, org-table-fedit-toggle-ref-type)
22442 (org-write-agenda, org-colgroup-info-to-vline-list)
22443 (org-agenda-todo-previousset, org-defkey, org-encode-for-stdout)
22444 (org-indent-line-function, org-export-as-html-to-buffer)
22445 (org-store-agenda-views, org-update-mode-line)
22446 (org-find-if, org-delete-all)
22447 (org-table-fedit-convert-buffer, org-emphasize)
22448 (org-uniquify, org-table-fedit-lisp-indent)
22449 (org-table-fedit-scroll, org-get-todo-sequence-head)
22450 (org-table-fedit-scroll-down, org-table-fedit-line-down)
22451 (org-table-fedit-ref-left, org-agenda-export-csv-mapper)
22452 (org-table-fedit-toggle-coordinates, org-dvipng-color)
22453 (org-table-fedit-line-up, org-table-fedit-ref-down)
22454 (org-table-formula-from-user, org-mode-flyspell-verify)
22455 (org-cycle-show-empty-lines, org-ctrl-c-ret)
22456 (org-table-formula-to-user, org-diary-to-ical-string)
22457 (orgtbl-export, org-table-fedit-post-command)
22458 (org-closed-in-range, org-shiftcontrolright)
22459 (org-table-convert-refs-to-an, org-table-hline-and-move)
22460 (org-table-formula-less-p, org-format-table-ascii)
22461 (org-agenda-get-sexps, org-shift-refpart)
22462 (org-diary-sexp-entry, org-time-string-to-absolute)
22463 (org-table-show-reference, org-letters-to-number)
22464 (org-fix-agenda-info, org-table-fedit-ref-up)
22465 (org-table-fedit-shift-reference, org-table-fedit-abort)
22466 (org-closest-date, org-shiftcontrolleft)
22467 (org-at-heading-or-item-p, org-rematch-and-replace)
22468 (org-agenda-todo-nextset, org-export-grab-title-from-buffer):
22470 (org-table-edit-scroll-down, org-finish-edit-formulas)
22471 (org-table-edit-next-field, org-abort-edit-formulas)
22472 (org-font-lock-level, org-export-find-first-heading-line)
22473 (org-table-edit-line-down, org-table-edit-backward-field)
22474 (org-edit-formula-lisp-indent, org-table-edit-move)
22475 (org-check-log-option, org-this-word)
22476 (org-table-edit-line-up, org-table-edit-formulas-post-command)
22477 (org-agenda-file-to-end, org-expand-file-name)
22478 (org-fake-empty-table-line, org-table-edit-scroll)
22479 (org-toggle-log-option, org-show-reference): Function removed.
22480 (org-inhibit-invisibility, org-table-formula-make-cmp-string):
22482 (org-unmodified, org-batch-store-agenda-views)
22483 (org-batch-agenda-csv): New macro.
22484 (org-agenda-export): New customization group.
22485 (org-agenda-skip-deadline-if-done, org-agenda-remove-tags)
22486 (org-highest-priority, org-agenda-exporter-settings)
22487 (org-log-done-with-time, org-replace-disputed-keys)
22488 (org-format-latex-header, org-export-table-header-tags)
22489 (org-cycle-separator-lines, org-export-table-data-tags)
22490 (org-icalendar-include-sexps)
22491 (org-empty-line-terminates-plain-lists)
22492 (org-log-repeat, org-special-ctrl-a)
22493 (org-table-use-standard-references, org-disputed-keys)
22494 (org-export-skip-text-before-1st-heading, org-agenda-with-colors)
22495 (org-agenda-export-html-style): New option.
22496 (org-allow-auto-repeat, org-agenda-remove-tags-when-in-prefix)
22497 (org-CUA-compatible): Option removed.
22498 (org-agenda-structure, org-sexp-date): New face.
22499 (org-todo-keywords-for-agenda, org-not-done-keywords)
22500 (org-planning-or-clock-line-re, org-agenda-name)
22501 (org-table-colgroup-info, org-todo-sets)
22502 (constants-unit-system, org-clock-mode-line-entry)
22503 (org-mode-line-timer, org-table-current-begin-pos)
22504 (org-todo-keywords-1, org-mode-line-string)
22505 (org-table-clean-did-remove-column, org-table-fedit-map)
22506 (org-clock-heading, org-table-buffer-is-an)
22507 (org-agenda-info, org-done-keywords)
22508 (org-done-keywords-for-agenda, org-todo-heads)
22509 (org-todo-kwd-alist, org-clock-start-time): New variable.
22510 (org-todo-kwd-priority-p, org-edit-formulas-map)
22511 (org-repeat-re, org-todo-kwd-max-priority)
22512 (org-version, org-done-string)
22513 (org-table-clean-did-remove-column-1, org-disputed-keys):
22515 (org-table-translate-regexp, org-repeat-re, org-version): New consts.
22516 (org-ts-lengths): Constant removed.
22517 (org-follow-gnus-link): Don't ask how many articles to read.
22518 (org-export-find-first-export-line): Rename from
22519 `org-export-find-first-heading'.
22520 Use `org-export-skip-text-before-1st-heading'.
22521 (org-table-fedit-post-command): Rename from
22522 `org-table-edit-formulas-post-command'.
22523 (org-table-fedit-finish): Rename from `org-finish-edit-formulas'.
22524 (org-table-fedit-abort): Rename from `org-abort-edit-formulas'.
22525 (org-table-fedit-lisp-indent): Rename from
22526 `org-edit-formula-lisp-indent'.
22527 (org-table-show-reference): Rename from `org-show-reference'.
22528 (org-table-store-formulas): Use `org-table-formula-less-p'.
22529 (org-table-edit-formulas): Position cursor to current field equation.
22530 (org-update-checkbox-count, org-hide-archived-subtrees)
22531 (org-timestamp-up-day, org-timestamp-down-day)
22532 (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
22533 (org-shiftmetadown, org-metaleft, org-metaright, org-metaup)
22534 (org-metadown, org-shiftup, org-shiftdown, org-shiftright)
22535 (org-shiftleft, org-ctrl-c-ctrl-c, org-context):
22536 Let `org-on-heading-p' also check for invisible heading.
22537 (org-read-date): Match am/pm times.
22538 (org-eval-in-calendar): Fix default date in prompt.
22540 2007-06-05 Chong Yidong <cyd@stupidchicken.com>
22542 * files.el (auto-mode-alist): Separate "ChangeLog.1" and
22543 "ChangeLog.a" entries, giving the latter lower priority.
22545 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
22547 * faces.el (face-id): If the argument is a face alias,
22548 return the ID of the target face.
22550 2007-06-05 Michael Albinus <michael.albinus@gmx.de>
22552 * net/socks.el (top): Remove unnecessary copyright line.
22554 2007-06-04 Chong Yidong <cyd@stupidchicken.com>
22556 * longlines.el (longlines-auto-wrap): Handle argument correctly.
22558 2007-06-04 Michael Albinus <michael.albinus@gmx.de>
22560 * net/socks.el: New file, taken from w3 repository.
22561 (top): Update Copyright. Don't load cl.el.
22562 (all): Replace `case' by `cond', `string-to-int' by
22563 `string-to-number', and `process-kill-without-query' by
22564 `set-process-query-on-exit-flag'.
22565 (socks-char-int): Remove defalias and all occurrences.
22567 2007-06-04 Juanma Barranquero <lekktu@gmail.com>
22569 * progmodes/compile.el (compilation-find-file, compilation-handle-exit):
22570 Fix typos in docstrings.
22571 (compilation-search-path, compilation-buffer-name-function): Doc fixes.
22572 (compilation-finish-function): Fix typo in obsolescence declaration.
22574 2007-06-03 Sam Steingold <sds@gnu.org>
22576 * progmodes/compile.el: Add TIMESTAMP to the LOC data structure, to
22577 handle unending automatic recompilation of changed files (`omake -P').
22578 (compilation-loop): VISITED is now 5th CDR.
22579 (compilation-next-error-function): Set TIMESTAMP.
22581 2007-06-03 Sam Steingold <sds@gnu.org>
22583 * files.el (kill-buffer-ask): New function.
22584 (kill-some-buffers): Use it.
22585 (kill-matching-buffers): New user command.
22587 2007-06-01 David Kastrup <dak@gnu.org>
22589 * dired.el (dired-recursive-deletes, dired-recursive-copies):
22590 Change default to `top'.
22592 2007-05-31 Richard Stallman <rms@gnu.org>
22594 * dired.el (dired-do-flagged-delete, dired-do-delete): Doc fix.
22596 2007-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22598 * textmodes/css-mode.el: New file.
22600 2007-05-30 Michael Olson <mwolson@gnu.org>
22602 * emacs-lisp/tq.el (tq-queue-pop): Stifle error when a process has
22603 died and we are trying to send a signal to it. The program using
22604 tq.el should periodically check to see whether the process has
22605 died and react appropriately -- this is not the responsibility of
22606 tq.el, and is consistent with the rest of the tq.el source code.
22608 2007-05-29 Martin Rudalics <rudalics@gmx.at>
22610 * textmodes/table.el (table--point-entered-cell-function)
22611 (table--point-left-cell-function):
22612 Bind `inhibit-point-motion-hooks' to t.
22614 2007-05-29 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
22616 * emacs-lisp/rx.el (rx): Doc fix.
22618 2007-05-28 Juanma Barranquero <lekktu@gmail.com>
22620 * progmodes/idlwave.el (idlwave-routines): Fix typo in docstring.
22622 2007-05-28 Michael Albinus <michael.albinus@gmx.de>
22624 Sync with Tramp 2.0.56.
22627 * net/tramp-ftp.el:
22628 * net/tramp-smb.el:
22629 * net/tramp-util.el:
22631 Don't load cl.el, because that pollutes the namespace. Replace cl
22632 macros by their implementations where necessary. Requested by
22633 Richard Stallman <rms@gnu.org>.
22635 * net/tramp.el (top): Make `set-buffer-multibyte' an alias if it
22637 (with-parsed-tramp-file-name): Protect debug spec during compilation.
22638 (tramp-handle-insert-directory): Check (featurep 'ls-lisp).
22639 (tramp-file-name-p, tramp-file-name-multi-method)
22640 (tramp-file-name-method, tramp-file-name-user)
22641 (tramp-file-name-host, tramp-file-name-localname): New defuns,
22642 replacing defstruct `tramp-file-name'.
22643 (tramp-handle-file-remote-p, tramp-completion-dissect-file-name1)
22644 (tramp-dissect-file-name, tramp-dissect-multi-file-name):
22645 Apply `vector' instead of `make-tramp-file-name'.
22646 (tramp-handle-make-auto-save-file-name):
22647 Apply `tramp-temporary-file-directory' for compatibility reasons.
22648 (tramp-completion-mode): Use `natnump' instead of `wholenump'
22650 (tramp-completion-mode): `last-input-event' is nil when XEmacs is
22653 2007-05-28 Chong Yidong <cyd@stupidchicken.com>
22655 * textmodes/sgml-mode.el (sgml-point-entered): Use condition-case.
22657 2007-05-27 Tetsurou Okazaki <okazaki@be.to> (tiny change)
22659 * log-edit.el (log-edit-changelog-paragraph): Return point-max
22660 as the end of the ChangeLog paragraph when it ends without a line
22663 2007-05-27 Ryan Yeske <rcyeske@gmail.com>
22665 * net/webjump.el (webjump-sample-sites):
22666 Add simple Wikipedia query.
22668 2007-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
22670 * emacs-lisp/derived.el (define-derived-mode): Remove bogus
22671 compatibility code.
22673 * emacs-lisp/copyright.el (copyright-names-regexp): New var.
22674 (copyright-update-year): Use it.
22676 * edmacro.el (edmacro-format-keys): Use current-active-maps.
22678 * ediff-init.el (ediff-defvar-local, ediff-with-current-buffer):
22679 Add indentation and debugging info. Fix up comment convention.
22681 * cus-dep.el (custom-make-dependencies): Simplify.
22683 * composite.el (compose-region, decompose-region):
22684 Use inhibit-read-only and restore-buffer-modified-p.
22686 * xt-mouse.el (xterm-mouse-truncate-wrap): New function.
22687 (xterm-mouse-event): Use it.
22689 2007-05-25 Juanma Barranquero <lekktu@gmail.com>
22691 * bs.el (bs-cycle-previous): Don't modify the cycle list until
22692 `switch-to-buffer' has returned succesfully.
22693 (bs-cycle-next): Ditto. Also, don't bury the buffer when the
22694 window is dedicated (it could iconify the frame).
22696 2007-05-25 Miles Bader <miles@fencepost.gnu.org>
22698 * vc-hooks.el (vc-find-root): Fix file attribute test.
22700 2007-05-24 Richard Stallman <rms@gnu.org>
22702 * textmodes/flyspell.el (flyspell-correct-word-before-point):
22703 Don't let opoint be nil.
22704 (flyspell-emacs-popup): Explicit error if no dialogs.
22706 2007-05-24 Chong Yidong <cyd@stupidchicken.com>
22708 * image-mode.el (image-forward-hscroll, image-backward-hscroll)
22709 (image-next-line, image-previous-line, image-scroll-up)
22710 (image-scroll-down, image-bol, image-eol, image-bob, image-eob):
22712 (image-mode-map): Remap motion commands.
22713 (image-mode-text-map): New keymap for viewing images as text.
22714 (image-mode): Use image-mode-map.
22715 (image-toggle-display): Toggle auto-hscroll-mode and mode keymaps.
22717 2007-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
22719 * textmodes/fill.el (canonically-space-region): Make the second arg
22720 a marker if it's not already the case.
22722 2007-05-23 Eli Zaretskii <eliz@gnu.org>
22724 * tar-mode.el (tar-header-block-summarize, tar-summarize-buffer)
22725 (tar-get-descriptor): Handle type 55, an extended pax header.
22727 2007-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
22729 * autoinsert.el (auto-insert-alist): Quote elisp sample code so as not
22730 to confuse outline-minor-mode.
22732 2007-05-23 Eli Zaretskii <eliz@gnu.org>
22734 * tar-mode.el (tar-file-name-handler): New function.
22735 (tar-extract): Bind file-name-handler-alist to it to force
22736 find-buffer-file-type-coding-system behave as if the file being
22737 extracted existed. Use last-coding-system-used to force
22738 buffer-file-coding-system to what decode-coding-region actually
22739 used to decode the file.
22741 2007-05-23 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
22743 * progmodes/compile.el (compilation-handle-exit):
22744 `compilation-finish-function' may change the current buffer.
22746 2007-05-22 Richard Stallman <rms@gnu.org>
22748 * files.el (set-auto-mode): Doc fix.
22750 2007-05-22 Jan Djärv <jan.h.d@swipnet.se>
22752 * help-fns.el (find-source-lisp-file): New function.
22753 (describe-function-1): Use find-source-lisp-file to find source
22754 file in compile tree.
22756 2007-05-22 Eli Zaretskii <eliz@gnu.org>
22758 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
22760 2007-05-22 Juanma Barranquero <lekktu@gmail.com>
22762 * emacs-lisp/easy-mmode.el (define-minor-mode)
22763 (easy-mmode-define-navigation): Fix typos in docstrings.
22765 2007-05-22 Glenn Morris <rgm@gnu.org>
22767 * files.el (auto-mode-alist): Open `.asd' files in lisp-mode.
22769 2007-05-22 Katsumi Yamaoka <yamaoka@jpl.org>
22771 * mail/mail-extr.el (mail-extract-address-components):
22772 Recognize non-ASCII characters except for NBSP as words.
22774 2007-05-21 Trent Buck <trentbuck@gmail.com> (tiny change)
22776 * net/rcirc.el (rcirc-fill-column): Allow `window-width'.
22777 (rcirc-print): Handle `window-width'.
22778 (rcirc-buffer-maximum-lines): Doc fix.
22780 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
22782 * image-mode.el (image-toggle-display): Don't clear image cache.
22783 Only use filename in image spec if the file is readable.
22784 Call image-refresh.
22786 * image.el (image-type-from-file-name, image-type): Simplify.
22787 (image-type-auto-detected-p): Don't scan auto-mode-alist.
22789 * files.el (magic-mode-alist): Remove image-type-auto-detected-p.
22790 (magic-fallback-mode-alist): Add image-type-auto-detected-p.
22792 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
22794 * t-mouse.el (t-mouse-mode): Reset t-mouse-mode to nil if there
22797 * term/linux.el (terminal-init-linux): Don't signal an error
22798 if gpm isn't running.
22800 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
22802 * t-mouse.el: Reduce to a minor-mode macro call.
22803 (t-mouse-mode): Remove the lighter.
22805 * term/linux.el (terminal-init-linux): Enable t-mouse by default.
22807 2007-05-19 Dan Nicolaescu <dann@ics.uci.edu>
22809 * files.el (auto-mode-alist): Change the regexp so that
22810 ChangeLog.unicode and ChangeLog.multi-tty use change-log-mode.
22812 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
22814 * Version 22.1 released.
22816 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
22818 * paren.el (show-paren-function): Undo 2007-04-19 and 2007-04-20
22821 2007-05-19 Kevin Ryde <user42@zip.com.au>
22823 * info.el (Info-fontify-node): Fontify https as well as http and ftp.
22825 2007-05-18 Thien-Thi Nguyen <ttn@gnuvola.org>
22827 * textmodes/sgml-mode.el: Revert last change.
22829 2007-05-18 Richard Stallman <rms@gnu.org>
22831 * simple.el (push-mark): Doc fix.
22833 2007-05-18 Rob Riepel <riepel@Stanford.EDU>
22835 * emulation/tpu-edt.el (CSI-map, SS3-map): Move from global-map to
22837 (tpu-original-global-map): Variable deleted.
22838 (tpu-control-keys-map): New keymap variable.
22839 (tpu-set-control-keys): Use tpu-reset-control-keys rather than
22840 setting keymapping directly.
22841 (tpu-reset-control-keys): Use tpu-control-keys-map instead of
22843 (tpu-edt-on): Activate the tpu-global-map.
22844 (tpu-edt-off): Deactivate the tpu-global-map.
22846 2007-05-18 Ryan Yeske <rcyeske@gmail.com>
22848 * textmodes/ispell.el (ispell-get-word): Return markers
22849 for start and end positions.
22850 (ispell-word): Assume END is a marker.
22852 2007-05-17 Christian Plate <cplate@web.de> (tiny change)
22854 * textmodes/sgml-mode.el (sgml-tag):
22855 Fix bug: Call sgml-transformation-function.
22857 2007-05-17 Martin Rudalics <rudalics@gmx.at>
22859 * hilit-chg.el (highlight-changes-rotate-faces): Don't set
22860 modified flag of buffer. Use `inhibit-modification-hooks'.
22862 2007-05-16 Richard Stallman <rms@gnu.org>
22864 * buff-menu.el (Buffer-menu-sort-column): Doc fix.
22866 2007-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
22868 * files.el (magic-mode-alist, magic-fallback-mode-alist):
22869 Move the *ml, Postscript, and XmCD entries to the fallback part.
22871 * files.el (magic-fallback-mode-alist):
22872 Rename from file-start-mode-alist.
22874 2007-05-16 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
22876 * progmodes/compile.el (compilation-handle-exit): Quote first
22877 argument of `run-hook-with-args'.
22879 2007-05-16 Juanma Barranquero <lekktu@gmail.com>
22881 * buff-menu.el (Buffer-menu-sort-column):
22882 * dabbrev.el (dabbrev-upcase-means-case-search):
22883 * dired.el (dired-recursive-deletes, dired-recursive-copies):
22884 * info.el (Info-current-subfile):
22885 * ls-lisp.el (ls-lisp-verbosity):
22886 * msb.el (msb-menu-cond):
22887 * pcvs.el (cvs-dired-use-hook):
22888 * simple.el (set-mark-command-repeat-pop):
22889 * time.el (display-time-24hr-format, display-time-mail-file):
22892 * tutorial.el (get-lang-string, tutorial--find-changed-keys):
22893 * printing.el (pr-ps-fast-fire): Fix typos in docstrings.
22895 * view.el (view-inhibit-help-message): Fix typo in docstring.
22896 (view-scroll-auto-exit, view-try-extend-at-buffer-end): Doc fixes.
22898 2007-05-16 Martin Rudalics <rudalics@gmx.at>
22900 * textmodes/ispell.el (ispell-start-process): Defend against bad
22903 2007-05-14 Eli Zaretskii <eliz@gnu.org>
22905 * mail/rmail.el (rmail-convert-to-babyl-format): Check
22906 content-transfer-encoding _last_, because it's its position that
22907 we need as value of base64-header-field-end.
22909 2007-05-14 Juanma Barranquero <lekktu@gmail.com>
22911 * files.el (mode-require-final-newline, require-final-newline)
22912 (enable-local-variables, enable-local-eval): Doc fixes.
22914 2007-05-13 Vinicius Jose Latorre <viniciusjl@ig.com.br>
22916 * ps-print.el: Use default color when foreground or background color
22917 are unspecified. Reported by Leo <sdl.web@gmail.com>.
22918 (ps-print-version): New version 6.7.4.
22919 (ps-rgb-color): New argument. Use default color when color is
22921 (ps-begin-job): Fix code.
22923 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
22925 * longlines.el (longlines-mode): Make longlines-auto-wrap
22926 buffer-local. Add hooks unconditionally.
22927 (longlines-auto-wrap): Toggle wrapping.
22928 (longlines-after-change-function)
22929 (longlines-post-command-function): Check longlines-auto-wrap.
22931 2007-05-12 Nick Roberts <nickrob@snap.net.nz>
22933 * xt-mouse.el (xterm-mouse-debug-buffer): New variable.
22934 (xterm-mouse-translate): Use it.
22936 2007-05-10 Richard Stallman <rms@gnu.org>
22938 * international/iso-cvt.el (iso-cvt-read-only): Ignore arguments.
22939 (iso-cvt-write-only): Likewise.
22941 * emacs-lisp/easy-mmode.el (define-minor-mode):
22942 Fix generated doc string.
22944 * startup.el (fancy-splash-text): Add URL of guided tour.
22945 Adjust horizontal and vertical whitespace.
22947 * progmodes/compile.el (compilation-handle-exit):
22948 Use run-hook-with-args to run compilation-finish-functions.
22950 * files.el (file-start-mode-alist): New variable.
22951 (magic-mode-regexp-match-limit): Doc fix.
22952 (set-auto-mode): Handle file-start-mode-alist.
22953 A little cleanup of structure.
22955 * dabbrev.el (dabbrev-eliminate-newlines):
22956 Renamed from dabbrev--eliminate-newlines. All uses changed.
22958 2007-05-10 Michaël Cadilhac <michael@cadilhac.name>
22960 * man.el (Man-next-section): Don't consider the last line of the page
22961 as being part of any section.
22963 2007-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
22965 * textmodes/sgml-mode.el (sgml-value): Fix handling of attributes which
22966 can take any number of values.
22968 2007-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
22970 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add citet and citep
22971 to the list of citation commands.
22973 2007-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
22975 * vc-hooks.el (vc-find-root): Stop searching when the user changes.
22977 2007-05-09 Edward O'Connor <hober0@gmail.com> (tiny change)
22979 * progmodes/python.el (python-font-lock-keywords)
22980 (python-open-block-statement-p, python-mode): Add support for the new
22983 2007-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
22985 * diff-mode.el (diff-apply-hunk, diff-test-hunk): Don't do by default
22986 the exact opposite of diff-goto-source.
22988 * emacs-lisp/advice.el (ad-special-forms): Remove.
22989 (ad-special-form-p): Use subr-arity.
22991 * newcomment.el (comment-search-forward): Make sure we search forward.
22992 (comment-enter-backward): Try and distinguish the non-matching case at
22993 EOB from the non-matching case with a missing comment-end-skip for
22994 a 2-char comment ender.
22995 (comment-choose-indent): New function extracted from comment-indent.
22996 Improve the alignment algorithm.
22997 (comment-indent): Use it.
22999 * textmodes/sgml-mode.el (sgml-lexical-context): Add handling of
23000 XML style Processing Instructions.
23001 (sgml-parse-tag-backward): Handle XML-style PIs. Also ensure progress.
23002 (sgml-calculate-indent): Handle `pi' context.
23004 * vc.el: Ensure that update-changelog issues an error when used with
23005 a backend that does not implement it.
23006 (vc-update-changelog-rcs2log): Rename from vc-default-update-changelog.
23007 Remove `backend' argument. Use expand-file-name.
23008 (vc-cvs-update-changelog, vc-rcs-update-changelog): New aliases.
23010 * progmodes/python.el (python-end-of-block): Revert last change.
23011 (python-end-of-statement): Make sure we move *forward*.
23013 2007-05-08 Richard Stallman <rms@gnu.org>
23015 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
23016 Don't include non-self-insert commands in the exception for `-'.
23018 2007-05-08 David Reitter <david.reitter@gmail.com>
23020 * progmodes/python.el (python-guess-indent): Check non-nullness
23021 before comparing indent against the 2..8 interval.
23023 2007-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23025 * term/mac-win.el (mac-ts-unicode-for-key-event): Check if text is
23028 2007-05-06 Richard Stallman <rms@gnu.org>
23030 * emacs-lisp/eldoc.el (turn-on-eldoc-mode): Doc fix.
23032 2007-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
23034 * diff.el (diff): Use buffer-local vars diff-old-file and diff-new-file
23035 rather than storing their value in the revert-buffer function.
23037 2007-05-04 Nick Roberts <nickrob@snap.net.nz>
23039 * t-mouse.el (t-mouse-mode): Do nothing on a graphical display
23040 when disabling t-mouse-mode.
23042 2007-05-01 Davis Herring <herring@lanl.gov>
23044 * calendar/timeclock.el: Update version number.
23045 (timeclock-modeline-display): Mention timeclock-use-display-time
23046 in explanatory message.
23047 (timeclock-in): Fix non-interactive workday specifications.
23048 (timeclock-log): Don't kill the log buffer if it already existed.
23049 Suppress warnings when finding the log. Don't check for a nil
23050 project twice. Run hooks after killing the buffer (if applicable).
23051 (timeclock-geometric-mean): Rename to `timeclock-mean' (it never
23052 was geometric). All uses changed.
23053 (timeclock-generate-report): Support prefix argument.
23055 2007-05-03 Ryan Yeske <rcyeske@gmail.com>
23057 * net/rcirc.el (rcirc-timeout-seconds): Increase to prevent unwanted
23060 2007-05-01 Romain Francoise <romain@orebokech.com>
23062 * dired-x.el: Revert 2007-04-06 change.
23064 2007-04-29 Stephen Berman <Stephen.Berman@gmx.net>
23066 * find-dired.el (find-dired-filter): Propertize all text down to eob.
23068 2007-04-29 Richard Stallman <rms@gnu.org>
23070 * international/mule.el (auto-coding-alist): Add pdf => no-conversion.
23072 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
23074 * progmodes/cc-mode.el (c-before-change): Use point-min rather
23077 2007-04-28 Richard Stallman <rms@gnu.org>
23079 * progmodes/sh-script.el (sh-mode): Recognize .profile as sh style.
23081 2007-04-28 Nick Roberts <nickrob@snap.net.nz>
23083 * progmodes/gud.el (gud-menu-map): Pdb can't handle SIGINT so
23084 don't put stop on toolbar.
23086 2007-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
23088 * vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem.
23090 2007-04-28 Eli Zaretskii <eliz@gnu.org>
23092 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el): Use ./mh-e
23093 instead of $(lisp)/mh-e.
23095 2007-04-28 Glenn Morris <rgm@gnu.org>
23097 * image-dired.el (image-dired-cmd-create-thumbnail-options)
23098 (image-dired-cmd-create-temp-image-options): Replace option
23099 +profile "*" with -strip.
23101 2007-04-27 Chong Yidong <cyd@stupidchicken.com>
23103 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
23104 Use window-start and window-end.
23106 2007-04-27 Andreas Schwab <schwab@suse.de>
23108 * emacs-lisp/sregex.el (sregexq): Fix doc string quoting.
23110 2007-04-27 Eli Zaretskii <eliz@gnu.org>
23112 * textmodes/fill.el (fill-paragraph): Doc fix.
23114 2007-04-26 Luc Teirlinck <teirllm@dms.auburn.edu>
23116 * locate.el (locate-in-alternate-database): Doc fix.
23118 2007-04-26 Glenn Morris <rgm@gnu.org>
23120 * button.el (button): Use underline if supported, else fall back
23123 * version.el (emacs-version): Increase to 22.1.50.
23125 2007-04-25 Richard Stallman <rms@gnu.org>
23127 * hi-lock.el (hi-lock-file-patterns-policy): Default to `ask'.
23129 2007-04-25 J.D. Smith <jdsmith@as.arizona.edu>
23131 * progmodes/idlwave.el (idlwave-beginning-of-subprogram)
23132 (idlwave-end-of-subprogram): Take optional NOMARK arg to prevent
23134 (idlwave-current-routine): Don't push mark.
23136 2007-04-25 Mathias Dahl <mathias.dahl@gmail.com>
23138 * image-dired.el (image-dired-display-image): Derive image-type from
23139 filename rather than assuming jpeg, in case no resizing was needed.
23141 2007-04-25 Johan Bockgård <bojohan@dd.chalmers.se>
23143 * custom.el (defface): Doc fix.
23145 See ChangeLog.12 for earlier changes.
23147 ;; Local Variables:
23149 ;; add-log-time-zone-rule: t
23152 Copyright (C) 2007, 2008 Free Software Foundation, Inc.
23154 This file is part of GNU Emacs.
23156 GNU Emacs is free software; you can redistribute it and/or modify
23157 it under the terms of the GNU General Public License as published by
23158 the Free Software Foundation; either version 3, or (at your option)
23161 GNU Emacs is distributed in the hope that it will be useful,
23162 but WITHOUT ANY WARRANTY; without even the implied warranty of
23163 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23164 GNU General Public License for more details.
23166 You should have received a copy of the GNU General Public License
23167 along with GNU Emacs; see the file COPYING. If not, write to the
23168 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23169 Boston, MA 02110-1301, USA.
23171 ;; arch-tag: 1e8aa93a-fc6c-4ac3-9b10-1f445e1840af