X-Git-Url: https://git.hcoop.net/bpt/emacs.git/blobdiff_plain/b4deec2e852119c77df0803bb08f00f5d1637c28..2fb1ec93cedbc35037476cd01b197dd4d2e53434:/lisp/ChangeLog diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ce2c1463b2..e54ce5715c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,658 @@ +2009-09-01 Nick Roberts + + * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant + MI command -var-evaluate-expression. + (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el + and tweak for case of string child. + (gdb-var-list-children-handler): Update from handler-1 in + gdb-ui.el. + +2009-09-01 Glenn Morris + + * add-log.el (change-log-date-face, change-log-name-face) + (change-log-email-face, change-log-file-face, change-log-list-face) + (change-log-conditionals-face, change-log-function-face) + (change-log-acknowledgement-face): + * cus-edit.el (custom-invalid-face, custom-rogue-face) + (custom-modified-face, custom-set-face, custom-changed-face) + (custom-saved-face, custom-button-face, custom-button-pressed-face) + (custom-documentation-face, custom-state-face, custom-comment-face) + (custom-comment-tag-face, custom-variable-tag-face) + (custom-variable-button-face, custom-face-tag-face) + (custom-group-tag-face-1, custom-group-tag-face): + * diff-mode.el (diff-header-face, diff-file-header-face) + (diff-index-face, diff-hunk-header-face, diff-removed-face) + (diff-added-face, diff-changed-face, diff-function-face) + (diff-context-face, diff-nonexistent-face): + * generic-x.el (show-tabs-tab-face, show-tabs-space-face): + * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face): + * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face) + (Info-title-4-face): + * isearch.el (isearch-lazy-highlight-face): + * log-view.el (log-view-file-face, log-view-message-face): + * paren.el (show-paren-match-face, show-paren-mismatch-face): + * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face) + (cvs-handled-face, cvs-need-action-face, cvs-marked-face) + (cvs-msg-face): + * smerge-mode.el (smerge-mine-face, smerge-other-face) + (smerge-base-face, smerge-markers-face): + * wid-edit.el (widget-documentation-face, widget-button-face) + (widget-field-face, widget-single-line-field-face) + (widget-inactive-face, widget-button-pressed-face): + * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face) + (woman-addition-face): + * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face) + (eshell-ls-executable-face, eshell-ls-readonly-face) + (eshell-ls-unreadable-face, eshell-ls-special-face) + (eshell-ls-missing-face, eshell-ls-archive-face) + (eshell-ls-backup-face, eshell-ls-product-face) + (eshell-ls-clutter-face): + * eshell/em-prompt.el (eshell-prompt-face): + * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face): + * obsolete/old-whitespace.el (whitespace-highlight-face): + * progmodes/ebrowse.el (ebrowse-tree-mark-face) + (ebrowse-root-class-face, ebrowse-file-name-face) + (ebrowse-default-face, ebrowse-member-attribute-face) + (ebrowse-member-class-face, ebrowse-progress-face): + * progmodes/make-mode.el (makefile-space-face): + * progmodes/sh-script.el (sh-heredoc-face): + * textmodes/flyspell.el (flyspell-incorrect-face) + (flyspell-duplicate-face): + * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face): + * textmodes/texinfo.el (texinfo-heading-face): + Mark face aliases with "-face" suffix as obsolete. + + * mail/feedmail.el (file-name-buffer-file-type-alist): Define for + compiler. + + * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu) + (eudc-bob-sound-menu): Use defvar rather than defconst, since + easy-menu-define wants to modify these. + + * net/net-utils.el (nslookup): Use make-comint rather than comint-run. + + * net/browse-url.el (browse-url-file-url): + * term/internal.el (dos-codepage-setup): + Use default-value rather than default-enable-multibyte-characters. + + * progmodes/etags.el (etags-goto-tag-location): + * progmodes/flymake.el (flymake-highlight-line) + (flymake-goto-file-and-line, flymake-goto-line): + * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump) + (gdb-goto-breakpoint): + * progmodes/idlw-shell.el (idlwave-shell-move-to-bp): + * progmodes/python.el (python-find-function) + (python-pdbtrack-track-stack-file): + * progmodes/verilog-mode.el (verilog-surelint-off): + * term/ns-win.el (ns-open-file-select-line): + * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally): + Use forward-line rather than goto-line. + + * textmodes/reftex-cite.el (reftex-offer-bib-menu): + * textmodes/reftex-index.el (reftex-display-index): + * textmodes/reftex-ref.el (reftex-offer-label-menu): + * textmodes/reftex-toc.el (reftex-toc): + Remove unnecessary bindings of default-major-mode (all are followed by + major-mode check and possible mode switch). + +2009-08-31 Nick Roberts + + * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom): + Handle watchpoints (bug#4282). + (def-gdb-thread-buffer-command): Enable thread to be selected by + clicking without selecting threads buffer first. + (gdb-current-context-command): Use selected frame so that "up", + "down" etc work in the GUD buffer. + (gdb-update): Find selected frame before rendering stack buffer. + (gdb-frame-handler): Set gdb-frame-number for stack buffer. + +2009-08-31 Stefan Monnier + + * progmodes/sym-comp.el (displayed-completions): Remove. + (symbol-complete): Use minibuffer-complete. + +2009-08-31 Glenn Morris + + * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro. + + * apropos.el (apropos-symbols-internal): Handle (obsolete) face aliases. + + * faces.el (describe-face): Adjust the output format to be more like + describe-variable, and to mention (obsolete) face aliases. + Adjust the whitespace so that help-setup-xref works. + + * calendar/calendar.el (calendar-today-face, diary-face, holiday-face): + * calendar/diary-lib.el (diary-button-face): + Mark these face aliases as obsolete. + + * calendar/calendar.el (calendar-today): Doc fix. + +2009-08-31 Nick Roberts + + * progmodes/gdb-mi.el (gdb-control-all-threads) + (gdb-control-current-thread): Force tool bar update. + (gdb-non-stop-handler): New function. + (gdb-init-1): Use it to test if non-stop mode is supported. + Remove unused gdbmi buffer type. + +2009-08-30 Kevin Rodgers + + * progmodes/grep.el (grep-read-files): Strip trailing from + buffer names not visiting a file (e.g. cloned buffers). + +2009-08-30 Nick Roberts + + * comint.el (comint-exec-1): Check command is non-null first. + Part of gdb-mi.el change (2009-08-28). + +2009-08-30 Stefan Monnier + + * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete. + +2009-08-30 Juanma Barranquero + + * subr.el (do-after-load-evaluation): Fix last change: use `mapc' + instead of `dolist' to avoid a recursive require when bootstrapping. + +2009-08-30 Stefan Monnier + + * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete. + + * net/ldap.el (ldap-search-internal): Use with-current-buffer and push. + + * net/imap.el (imap-send-command): Simplify. + (imap-wait-for-tag): point-max - buffer-size. + + * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode. + + * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value + with constant argument. + + * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte. + + * emacs-lisp/cl.el (cl-macro-environment): Don't define it here. + + * emacs-lisp/checkdoc.el (checkdoc-force-history-flag): + Change default, since most of our files don't have a history. + (checkdoc-display-status-buffer): Don't use a hidden buffer to show to + the user. + + * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions): + Add comint-run. + + * calc/calc.el: Improve commenting convention. + (calc-digit-map, toplevel): Simplify. + + * comint.el (comint-insert-input): Be careful to only set point if we + don't delegate to some other command. + + * proced.el (proced-signal-list): Make it an alist. + (proced-grammar-alist): Capitalize names. + (proced-send-signal): Use a non-hidden buffer (since it's displayed). + Disable undo manually and make it read-only. + Use completion-annotate-function. + + * minibuffer.el (minibuffer-message): If the current buffer is not + a minibuffer, insert the message in the echo area rather than at the + end of the buffer. + (completion-annotate-function): New variable. + (minibuffer-completion-help): Use it. + (completion--embedded-envvar-table): Environment vars are + always case-sensitive. + +2009-08-30 Glenn Morris + + * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted + from fortran-current-defun. + (fortran-beginning-of-subprogram): Be more precise about finding the + start, to avoid an infinite loop in end-of-defun. (Bug#4259) + (fortran-end-of-subprogram): Simplify. + (fortran-current-defun): Use fortran-start-prog-re. + +2009-08-29 Juanma Barranquero + + * subr.el (do-after-load-evaluation): Simplify. + +2009-08-29 Dan Nicolaescu + + * vc.el (vc-print-log-internal): Move RCS/CVS specific code ... + + * vc-rcs.el (vc-rcs-print-log-cleanup): ... here. New function. + (vc-rcs-print-log): Use it. + + * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup. + +2009-08-29 Stefan Monnier + + * paths.el (abbrev-file-name): Move to abbrev.el. + * abbrev.el (abbrev-file-name): Move from paths.el. + Obey user-emacs-directory. + * calc/calc.el (calc-settings-file): Don't autoload and instead obey + user-emacs-directory. + * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate + abbrev-file-name and calc-settings-file any more. + * startup.el (command-line): Recompute abbrev-file-name and + abbreviated-home-dir. + (normal-no-mouse-startup-screen): Improve the generic code and get rid + of the special code for when C-h bindings haven't been changed. + (display-startup-echo-area-message): Use with-current-buffer. + (command-line-1): Use a list of strings, rather than a list of lists + of strings for longopts. + + * files.el (get-free-disk-space): Use / for default-directory. + + * textmodes/ispell.el (ispell-accept-output, ispell-command-loop): + Use with-current-buffer. + + * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p): + Recognize immutable variables like most-positive-fixnum. + (byte-compile-setq-default): Check and warn if trying to assign + to an immutable variable, or a non-variable. + + * progmodes/cc-vars.el (c-comment-continuation-stars): + * progmodes/cc-engine.el (c-looking-at-bos): + * progmodes/cc-cmds.el (c-toggle-auto-state) + (c-forward-into-nomenclature, c-backward-into-nomenclature) + (c-comment-line-break-function): Add version of obsolescence. + +2009-08-28 Juri Linkov + + * files.el (magic-fallback-mode-alist): Add ZIP magic number + associated with `archive-mode'. + + * image.el (image-type-header-regexps): Use only JPEG magic number + to determine JPEG images, and don't use `image-jpeg-p' because + Emacs can display non-JFIF non-Exif JPEG images. + +2009-08-28 Juanma Barranquero + + * arc-mode.el (archive-mode): + * emacs-lisp/re-builder.el (re-builder-unload-function): + Protect against the default value of `major-mode' being nil. + +2009-08-28 Juanma Barranquero + + * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list): + Fix typos in docstrings. + + * progmodes/js.el (js--macro-decl-re): Doc fix. + (js--plain-method-re, js--split-name): Refloc docstring. + (js--class-styles, js--make-merged-item, js--splice-into-items): + Fix typos in docstrings; reflow docstrings. + (js--maybe-join, js--function-prologue-beginning, js--flush-caches) + (js--variable-decl-matcher, js--inside-pitem-p) + (js--parse-state-at-point, js--get-all-known-symbols) + (js--symbol-history, js-find-symbol, js--js-references) + (js--moz-interactor, js--js-encode-value, js--read-tab): + Fix typos in docstrings. + +2009-08-28 Stefan Monnier + + * textmodes/reftex.el (reftex-get-file-buffer-force): + * progmodes/verilog-mode.el (verilog-batch-execute-func): + * emulation/viper.el (viper-go-away, viper-set-hooks): + * emacs-lisp/re-builder.el (re-builder-unload-function): + * emacs-lisp/bytecomp.el (byte-compile-file): + * ses.el (ses-unload-function): + * hexl.el (hexl-find-file): + * files.el (normal-mode): + * ehelp.el (with-electric-help): + * autoinsert.el (auto-insert-alist): + * arc-mode.el (archive-mode): + Use (default-value 'major-mode) instead of default-major-mode. + + * textmodes/ispell.el (ispell-check-version, ispell-send-string): + * international/mule.el (load-with-code-conversion): + * emacs-lisp/debug.el (debug): + * ediff-vers.el (ediff-rcs-get-output-buffer): + * dired.el (dired-internal-noselect): Don't let-bind + default-major-mode around code that doesn't use it. + E.g. buffer creation via get-buffer-create doesn't use it. + +2009-08-28 Michael Albinus + + * net/tramp.el (all): Replace "'(lambda" by "(lambda". + (tramp-handle-file-local-copy): Unset `file-name-handler-alist' + when writing the temp file. Otherwise, epa-file gets confused. + (tramp-register-file-name-handlers): Make it a defun. Move also + `epa-file-handler' to the front of `file-name-handler-alist'. + +2009-08-28 Stefan Monnier + + * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to + start right after a ^M. + (tramp-root-regexp, tramp-completion-file-name-regexp-unified) + (tramp-completion-file-name-regexp-separate) + (tramp-completion-file-name-regexp-url): Use \\` and \\'. + (tramp-handle-file-attributes, tramp-set-file-uid-gid): + Don't modify last-coding-system-used by accident. + (tramp-completion-file-name-handler): Apply the checks here, + instead during registration. + (tramp-register-file-name-handlers) Renamed from + `tramp-register-file-name-handler'. Register both + `tramp-file-name-handler' and `tramp-completion-file-name-handler'. + (tramp-register-completion-file-name-handler): Remove. (Bug#4260) + +2009-08-28 Nick Roberts + + * progmodes/gdb-mi.el (gdb-use-separate-io-buffer): + Remove variable ... + (gdb-init-1, gdb-display-separate-io-buffer) + (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and + references to it. + (gdb-inferior-io-mode): Use make-comint-in-buffer. + (gdb-inferior-filter): Use comint-output-filter to stop + echoing and remove ^M characters. + +2009-08-28 Stefan Monnier + + * emulation/viper-init.el (viper-restore-cursor-type): + * emulation/cua-base.el (cua--update-indications): + Replace default-cursor-type with (default-value 'cursor-type). + + * mail/sendmail.el (mail-recover-1): + * international/mule-diag.el (describe-current-coding-system-briefly) + (describe-current-coding-system): + * international/mule-cmds.el (select-safe-coding-system) + (select-message-coding-system) + (set-language-environment-coding-systems, set-locale-environment): + * hexl.el (hexl-insert-multibyte-char): + * dos-w32.el (find-buffer-file-type-coding-system): + * simple.el (what-cursor-position): + Replace uses of default-buffer-file-coding-system + with (default-value 'buffer-file-coding-system). + + * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion): + Replace uses of default-cursor-in-non-selected-windows + with (default-value 'cursor-in-non-selected-windows). + Use with-current-buffer. + + * mail/feedmail.el: Use CL macros. + (feedmail-run-the-queue, feedmail-send-it-immediately): + * dos-w32.el (find-buffer-file-type): Replace uses of + default-buffer-file-type with (default-value 'buffer-file-type). + +2009-08-28 Glenn Morris + + * calendar/diary-lib.el (diary-list-entries, diary-goto-entry) + (diary-show-all-entries, diary-mark-entries, diary-make-entry): + Use default-value of major-mode rather than default-major-mode. + +2009-08-27 Stefan Monnier + + * Makefile.in (update-elcfiles): Report left over elc files. + + * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer, + expand-file-name and with-current-buffer. + (mail-get-names, mail-directory): Use with-current-buffer. + + * vc.el (vc-read-revision): New function. + (vc-version-diff, vc-merge): Use it. + +2009-08-27 Sam Steingold + + * simple.el (kill-do-not-save-duplicates): New user option. + (kill-new): When it is non-nil, and the new string is the same as + the latest kill, set replace to t to avoid duplicates in kill-ring. + +2009-08-19 Julian Scheid (tiny change) + + * net/tramp.el (tramp-handle-process-file): Do not flush all + caches when `process-file-side-effects' is set. + (tramp-handle-vc-registered): Use `tramp-get-file-exists-command' + instead of `tramp-find-file-exists-command'. + Unset `process-file-side-effects'. + +2009-08-27 Michael Albinus + + * net/tramp.el (tramp-methods): New method "rsyncc". + (top): Add completion function for "rsyncc". + (tramp-message-show-message): New defvar. + (tramp-message, tramp-error): Use it. + (tramp-do-copy-or-rename-file-directly): Extend check for direct + remote copying. + (tramp-do-copy-or-rename-file-out-of-band): Handle new + `tramp-methods' entry `copy-env' of "rsyncc". + (tramp-vc-registered-read-file-names): New defconst. + (tramp-vc-registered-file-names): New defvar. + (tramp-handle-vc-registered): Implement optimization strategy. + (tramp-run-real-handler): Add `tramp-vc-file-name-handler'. + (tramp-vc-file-name-handler): New defun. + (tramp-get-ls-command, tramp-get-test-command) + (tramp-get-file-exists-command, tramp-get-remote-ln) + (tramp-get-remote-perl, tramp-get-remote-stat) + (tramp-get-remote-id): Remove superfluous `with-current-buffer'. + + * net/tramp-cache.el (top): Autoload `tramp-time-less-p'. + (tramp-cache-inhibit-cache): Extend doc string. It allows also + timestamps. + (tramp-get-file-property): Check for timestamps in + `tramp-cache-inhibit-cache'. + (tramp-set-file-property): Write timestamp. + +2009-08-27 ARISAWA Akihiro (tiny change) + + * language/japan-util.el (japanese-symbol-table): Add entries for + cp932-2-byte. + + * international/characters.el: Add category `j' to cp932-2-byte. + +2009-08-27 Kenichi Handa + + * international/fontset.el (build-default-fontset-data): New macro. + (setup-default-fontset): Use build-default-fontset-data for CJK, + tibetan, ethiopic, and ipa. + +2009-08-27 Stefan Monnier + + * cus-start.el (default-major-mode): Customize `major-mode' instead. + (enable-multibyte-characters): Not customizable any more. + + * subr.el (default-mode-line-format, default-header-line-format) + (default-line-spacing, default-abbrev-mode, default-ctl-arrow) + (default-direction-reversed, default-truncate-lines) + (default-left-margin, default-tab-width, default-case-fold-search) + (default-left-margin-width, default-right-margin-width) + (default-left-fringe-width, default-right-fringe-width) + (default-fringes-outside-margins, default-scroll-bar-width) + (default-vertical-scroll-bar, default-indicate-empty-lines) + (default-indicate-buffer-boundaries, default-fringe-indicator-alist) + (default-fringe-cursor-alist, default-scroll-up-aggressively) + (default-scroll-down-aggressively, default-fill-column) + (default-cursor-type, default-buffer-file-type) + (default-cursor-in-non-selected-windows) + (default-buffer-file-coding-system, default-major-mode) + (default-enable-multibyte-characters): Mark as obsolete. + +2009-08-27 Dan Nicolaescu + + * vc-dir.el (vc-dir-update): Remove debug helper. + + * vc-cvs.el (vc-cvs-update-changelog): Fix typo. + +2009-08-26 Sam Steingold + + * simple.el (save-interprogram-paste-before-kill): New user option. + (kill-new): When `save-interprogram-paste-before-kill' is non-nil, + save the interprogram-paste into kill-ring before overriding it + with the Emacs kill. + +2009-08-26 Dan Nicolaescu + + * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el. + (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el. + (vc-default-previous-revision): Rename to vc-rcs-previous-revision + and move to vc-rcs.el. + (vc-default-next-revision): Rename to vc-rcs-next-revision and + move to vc-rcs.el. + (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend. + (vc-rcs-update-changelog): Remove. + (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog + and move to vc-rcs.el. + + * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin) + (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p + renaming. + (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision) + (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from + vc.el, renamed to be RCS specific. + + * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision): + New functions. + (vc-cvs-update-changelog): Move here from vc.el. + + * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision): + New functions. + +2009-08-26 Stefan Monnier + + * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change. + +2009-08-26 Dan Nicolaescu + + * vc-git.el (vc-git-register): Use "git add" for directories. + (vc-git-stash, vc-git-stash-show): New functions. + (vc-git-extra-menu-map): Bind them. + + * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent + directory correctly in case the item is a directory itself. + + * vc.el: Document the desired behavior for reverted files in the + `added' state. + (vc-default-prettify-state-info): Remove function, unused. + + * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused. + +2009-08-26 Glenn Morris + + * bindings.el (standard-mode-line-format): Reposition dashes in + which-func entry. (Bug#4217) + + * files.el (enable-local-variables, enable-local-eval) + (safe-local-variable-values, safe-local-eval-forms): Mark as risky in + the defcustoms. + (auto-mode-alist, ignored-local-variables) + (save-some-buffers-action-alist): Move risky declarations to the + definitions. + (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string) + (font-lock-defaults, format-alist, imenu--index-alist) + (imenu-generic-expression, input-method-alist, minor-mode-alist) + (mode-line-buffer-identification, mode-line-client, mode-line-modes) + (mode-line-modified, mode-line-mule-info, mode-line-position) + (mode-line-process, mode-line-remote, outline-level) + (parse-time-rules, rmail-output-file-alist) + (special-display-buffer-names, vc-mode): + Move risky declarations to the relevant files. + * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote) + (mode-line-modified, mode-line-process, mode-line-position) + (mode-line-modes, mode-line-buffer-identification, minor-mode-alist) + * font-core.el (font-lock-defaults): + * format.el (format-alist): + * vc-hooks.el (vc-mode): + * window.el (special-display-buffer-names): + * international/mule-cmds.el (input-method-alist): + Define riskiness here (dumped file) rather than in files.el. + * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace): + * imenu.el (imenu-generic-expression, imenu--index-alist): + * outline.el (outline-level): + * time.el (display-time-string): + * calendar/parse-time.el (parse-time-rules): + * mail/rmailout.el (rmail-output-file-alist): + Autoload riskiness here, rather than placing in files.el. + +2009-08-26 Andreas Schwab + + * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow. + +2009-08-25 Michael Albinus + + * simple.el (process-file-side-effects): New defvar. + + * dired-aux.el (dired-show-file-type): + * vc.el (vc-diff-internal): + * vc-arch.el (vc-arch-diff): + * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table): + * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table): + * vc-git.el (vc-git-registered, vc-git-working-revision) + (vc-git-find-revision, vc-git-diff, vc-git-revision-table) + (vc-git--empty-db-p): + * vc-hooks.el (vc-user-login-name): + * vc-svn.el (vc-svn-registered, vc-svn-state) + (vc-svn-dir-extra-headers, vc-svn-find-revision): + * progmodes/grep.el (grep-probe): Let-bind + `process-file-side-effects' with nil. + + * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT. + + * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS + daemon. Replace ping by checking for running service for bluez + and zeroconf. (Bug#4239) + +2009-08-25 Kevin Ryde + + * net/dig.el (dig): Add autoload cookie. + +2009-08-25 Glenn Morris + + * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in + load-history for absolute file-names. + (byte-compile-file-form-require): Warn about use of the cl package. + + * format.el (format-alist): Doc fix. + + * play/bubbles.el (top-level): Don't require cl at run-time. + + * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence + run-time cl). + +2009-08-24 Dmitry Dzhus + + * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*' + from cl package. + (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'. + +2009-08-24 Jay Belanger + + * calc/calc-alg.el (math-trig-rewrite) + (math-hyperbolic-trig-rewrite): New functions. + (calc-simplify): Simplify trig functions when asked. + +2009-08-24 Stefan Monnier + + * diff-mode.el (diff-find-source-location): Avoid goto-line. + +2009-08-24 Kenichi Handa + + * language/ind-util.el (mapthread): Delete it. + (combinatorial): New function. + (indian--puthash-cv): Use combinatorial instead of mapthread. + +2009-08-22 Kevin Ryde + + * emacs-lisp/checkdoc.el (checkdoc-force-history-flag) + (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp. + (checkdoc-symbol-words): Add safe-local-variable for list of strings. + Clarify docstring that the value is strings not symbols. + (checkdoc-list-of-strings-p): New function. + 2009-08-22 Glenn Morris + * files.el (auto-mode-alist): + * hippie-exp.el (he-concat-directory-file-name): + * lpr.el (lpr-windows-system, printer-name): + * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program): + * ps-print.el (ps-windows-system): + * startup.el (command-line): + * emulation/viper-ex.el (viper-glob-function): + * international/mule-cmds.el (set-language-environment-coding-systems): + * net/ange-ftp.el (ange-ftp-write-region): + * obsolete/fast-lock.el (fast-lock-cache-name): + Remove code for defunct system-types emx, macos, mswindows, next-mach, + unisoft-unix, vax-vms, win32, w32. + + * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a + given name if the pattern is not more specific. + * calendar/lunar.el (lunar-phase-names): New option. (lunar-phase): Doc fix. (lunar-cycles-per-year): New constant. @@ -48,13 +701,12 @@ * emulation/vi.el (vi-goto-line): Don't warn about non-interactive goto-line. - * international/ucs-normalize.el (nfd) - (decomposition-translation-alist, decomposition-char-recursively) - (alist-list-to-vector, quick-check-list, quick-check-list-to-regexp): - Declare. + * international/ucs-normalize.el (nfd, decomposition-translation-alist) + (decomposition-char-recursively, alist-list-to-vector, quick-check-list) + (quick-check-list-to-regexp): Declare. - * progmodes/make-mode.el (makefile-browser-insert-selection): Use - goto-char rather than goto-line. + * progmodes/make-mode.el (makefile-browser-insert-selection): + Use goto-char rather than goto-line. * progmodes/prolog.el (compilation-error-regexp-alist) (compilation-forget-errors): Declare. @@ -316,7 +968,7 @@ * whitespace.el (whitespace-style): Doc fix (Bug#3661). -2009-08-16 Jan Seeger (tiny change) +2009-08-16 Jan Seeger (tiny change) * calendar/parse-time.el (parse-time-string-chars): Compute using character classes, to handle non-ascii characters (Bug#3190). @@ -382,7 +1034,7 @@ * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry. 2009-08-14 Daniel Colascione - Karl Landstrom + Karl Landstrom * progmodes/js.el: New file. @@ -467,7 +1119,7 @@ (gdb-place-breakpoints, gdb-get-location): Rewritten without `goto-line'. (gdb-invalidate-disassembly): Do not refresh upon receiving - 'update signal. Instead, update all disassembly buffers only after + 'update signal. Instead, update all disassembly buffers only after threads list. (gdb): Send -target-detach when buffer is killed (#3794). (gdb-starting): Moved -data-list-register-names... @@ -479,7 +1131,7 @@ from `gdb-mi.el' to avoid extra tangling. * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous - change which breaks `gud-def' definitions. used in `gdb'. + change which breaks `gud-def' definitions used in `gdb'. (gdb-update-gud-running): No extra fuss for updating frame number. 2009-08-10 Stefan Monnier @@ -537,7 +1189,7 @@ (gdb-control-current-thread): Interactive setters for `gdb-gud-control-all-threads' to use in menu. (gdb-show-run-p): Show «Go» when process is not active. - (gud-tool-bar-map): Add non-stop/A,T indicator. Uses + (gud-tool-bar-map): Add non-stop/A,T indicator. Uses gud/thread.xpm and gud/all.xpm. 2009-08-08 Yoni Rabkin @@ -638,8 +1290,7 @@ 2009-08-04 Dmitry Dzhus * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil. - (gdb-overlay-arrow-position): Renamed to - `gdb-disassembly-position'. + (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'. (gdb-overlay-arrow-position, gdb-thread-position) (gdb-disassembly-position): Declare variables. (gdb-wait-for-pending): Function now. @@ -715,8 +1366,8 @@ (gdb-wait-for-pending): New macro to deal with congestion problems. (gdb-breakpoints-list-handler-custom): Don't fail on pending breakpoints. - (gdb-invalidate-disassembly): Use 'fullname instead of 'file. This - fixes problem similar to one described in bug 3947. + (gdb-invalidate-disassembly): Use 'fullname instead of 'file. + This fixes problem similar to one described in bug 3947. (gud-menu-map): More menu items. (gdb-init-1): Reset `gdb-thread-number' to nil. @@ -733,7 +1384,7 @@ customization options. (gdb-gud-context-command, gdb-gud-context-call): New wrappers for GUD commands. - (gdb): `gud-def' definitions changed to use `gdb-gud-context-call' + (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'. (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled. (gdb-setq-thread-number, gdb-update-gud-running): New functions to set `gdb-thread-number' and update `gud-running' properly. @@ -771,7 +1422,7 @@ (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher) (gdb-update): We now store all GDB buffers in a list so that they can be updated by traversing a list instead of calling invalidate - triggers explicitly + triggers explicitly. (def-gdb-trigger-and-handler): New macro to define trigger-handler pair for GDB buffer. (gdb-stack-buffer-name): Add thread information. @@ -781,12 +1432,12 @@ (def-gdb-thread-buffer-simple-command) (gdb-display-stack-for-thread, gdb-display-locals-for-thread) (gdb-display-registers-for-thread, gdb-frame-stack-for-thread) - (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread): New - commands which show buffers bound to thread. + (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread): + New commands which show buffers bound to thread. (gdb-stack-list-locals-regexp): Removed unused regexp. - * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name,gdb-locals-buffer-name) - (gdb-registers-buffer-name) + * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name) + (gdb-locals-buffer-name, gdb-registers-buffer-name) (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch to (gud-comint-buffer) in *-buffer-name functions because (gdb-get-target-string) already does that. @@ -797,9 +1448,9 @@ (gdb-thread-number): New variable. (gdb-current-context-command): New macro which adds --thread option to command. - (gdb-threads-mode-map): Select thread with SPC + (gdb-threads-mode-map): Select thread with SPC. (gdb-thread-list-handler-custom): Mark current thread with overlay - arrow. Synchronize GDB thread and Emacs thread. + arrow. Synchronize GDB thread and Emacs thread. (gdb-select-thread): New command which selects current thread. (gdb-invalidate-frames, gdb-invalidate-locals) (gdb-invalidate-registers): Use --thread option. @@ -821,14 +1472,14 @@ 2009-08-03 Michael Albinus - * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp) New - defconst. + * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp): + New defconst. (tramp-rfn-eshadow-update-overlay): Use it. (Bug#4004) 2009-08-02 Kevin Ryde - * net/newst-backend.el (newsticker--raw-url-list-defaults): Update - freshmeat link. Delete newsforge.com as it seems gone. + * net/newst-backend.el (newsticker--raw-url-list-defaults): + Update freshmeat link. Delete newsforge.com as it seems gone. 2009-08-02 Chong Yidong @@ -839,7 +1490,7 @@ * help-fns.el (describe-variable): Treat list return values from dir-locals-find-file properly (Bug#4005). -2009-08-02 Julian Scheid (tiny change) +2009-08-02 Julian Scheid (tiny change) * net/tramp.el (tramp-debug-message): Print also microseconds. @@ -860,7 +1511,7 @@ 2009-08-02 Jason Rumney * minibuffer.el (read-file-name): Treat confirm options to - MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969) + MUSTMATCH as nil when invoking x-file-dialog. (Bug#3969) 2009-08-02 Chong Yidong @@ -897,7 +1548,7 @@ * calc/calc.el (calc-mode-map): Add keybinding for `calc-transpose-lines'. -2009-07-29 Vincent Belaïche +2009-07-29 Vincent Belaïche * calc/calc-misc.el (calc-transpose-lines): New function. @@ -972,8 +1623,7 @@ 2009-07-24 Kenichi Handa * international/characters.el: Fix setting of category ?C, ?|, ?K, - and ?H. Fix setting of case for Latin Extended and Greek - Extended. + and ?H. Fix setting of case for Latin Extended and Greek Extended. (build-unicode-category-table): Fix range checks. 2009-07-24 Dan Nicolaescu @@ -1219,7 +1869,7 @@ 2009-07-18 Alan Mackenzie - * progmodes/cc-mode.el (c-before-hack-hook), + * progmodes/cc-mode.el (c-before-hack-hook) (c-postprocess-file-styles): Give invocation of `c-set-style' DONT-OVERRIDE parameter of t. Already set style variables will thus not be overridden by style settings given by `c-file-syle'. @@ -1400,12 +2050,12 @@ 2009-07-13 Jan Djärv - * term/ns-win.el (x-select-font): defailias x-select-font to + * term/ns-win.el (x-select-font): defalias x-select-font to ns-popup-font-panel instead of generate-fontset-menu. 2009-07-12 Eli Zaretskii - * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833) + * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833) 2009-07-12 Peter Jolly (tiny change) @@ -1529,7 +2179,7 @@ * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly buffer properly. (gdb-breakpoints-list-handler-custom): Replacement for - `gdb-break-list-handler'. Using real parser instead of regexps + `gdb-break-list-handler'. Using real parser instead of regexps now. (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'. Use `gdb-breakpoints-list' instead of parsing breakpoints buffer @@ -1541,14 +2191,14 @@ disassembly buffer. (gdb-toggle-breakpoint, gdb-delete-breakpoint) (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties - instead of parsing breakpoints buffer. Fixed old menu references + instead of parsing breakpoints buffer. Fixed old menu references in `gud-menu-map'. * fadr.el: Remove. - * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el + * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el. (gdb-memory-address): New variable which holds top address of - memory page shown in memory buffer + memory page shown in memory buffer. (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New customization variables. New functions: @@ -1593,7 +2243,7 @@ representation of verilog error regular expressions to work with Emacs-22's new format. (verilog-error-regexp-xemacs-alist): Coded custom representation - of verilog error regular expressions to work with XEmacs format + of verilog error regular expressions to work with XEmacs format. (verilog-error-regexp-add-xemacs): Hook routine to install verilog error recognition into XEmacs. (verilog-error-regexp-add-emacs): Hook routine to install verilog @@ -1618,7 +2268,7 @@ * subr.el (eval-after-load): Doc fix. -2009-07-06 Vincent Belaïche +2009-07-06 Vincent Belaïche * calc/calc-embed.el (calc-embedded-make-info): Don't force when `calc-embedded-word' is called twice. @@ -1840,7 +2490,7 @@ had been). (verilog-leap-to-case-head): Support priority/unique case statements. (verilog-auto-lineup): Rework to give users radio buttons to - select the various styles of automatic lineup + select the various styles of automatic lineup. (verilog-error-regexp-alist): Rework to support the XEmacs style of error regular expressions from compilers, lint tools & simulators. Note that GNU Emacs has made it impossible for a mode @@ -1864,7 +2514,7 @@ (verilog-mode): Alter the definition of verilog-font-lock-defualts to avoid circular calls if syntax-ppss is a function (as is the case now in 22.x GNU Emacs) as that function would sometimes call - itself, leading to (nearly) infinite recursion + itself, leading to (nearly) infinite recursion. (verilog-ovm-begin-re, verilog-ovm-end-re) (verilog-ovm-statement-re, verilog-leap-to-head) (verilog-backward-token): Add support for OVM macros. Some are @@ -1872,9 +2522,9 @@ and end. (verilog-defun-level-not-generate-re, verilog-defun-level-re) (verilog-defun-level-generate-only-re): Really fix the defun-list - compilation issue + compilation issue. (verilog-calc-1) (verilog-beg-of-statement): Enhance support for - coverpoint, constraint and cross statements + coverpoint, constraint and cross statements. (verilog-defun-level-list, verilog-generate-defun-level-list) (verilog-all-defun-level-list): Redo these specifications - it is too hard to support eval-when compile aggregation of lists also @@ -1885,7 +2535,7 @@ without load. (verilog-beg-block-re-ordered): Support indenting virtual/protected tasks and functions. - (verilog-defun-level-list,verilog-in-generate-region-p) + (verilog-defun-level-list, verilog-in-generate-region-p) (verilog-backward-ws&directives, verilog-calc-1): Speed up indentation of some module items (generate items). (verilog-forward-sexp, verilog-leap-to-head): Support stepping @@ -1925,7 +2575,7 @@ (verilog-read-sub-decls-expr, verilog-read-sub-decls-line) (verilog-read-sub-decls-sig, verilog-symbol-detick-text): Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included - in AUTOINOUT. Reported by Matthew Lovell. + in AUTOINOUT. Reported by Matthew Lovell. (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)" causing use of <= assignments. Reported by Alex Reed. (verilog-read-decls): Fix triand, trior, wand, wor to be @@ -1937,13 +2587,13 @@ (verilog-sk-header-tmpl): Fix verilog-header inserting error on Windows systems. Reported by Michael Potts. (verilog-read-module-name): Fix AUTOINST when the child module - declaration's name is a tick define. Reported by Elliot Mednick. + declaration's name is a tick define. Reported by Elliot Mednick. (verilog-read-decls): Fix V2K parameter bit subscripts getting - passed to next parameter's definition. Reported by Bruce T. + passed to next parameter's definition. Reported by Bruce T. (verilog-read-decls): Fix detecting "parameter int" when using AUTOINSTPARAM. Reported by Bruce T. (verilog-goto-defun): Fix goto not finding modules unless first - perform a verilog-auto expansion. Suggested by Lawrence Butcher. + perform a verilog-auto expansion. Suggested by Lawrence Butcher. (verilog-mode): Expand -f flag arguments on entry to mode so verilog-goto-defun will work. Reported by Lawrence Butcher. (verilog-getopt): Expand environment variables in -f file @@ -2007,10 +2657,10 @@ 2009-06-25 Agustín Martín * textmodes/ispell.el: Add `ispell-looking-back' XEmacs - compatibility function for `looking-back' + compatibility function for `looking-back'. * textmodes/flyspell.el (sgml-mode-flyspell-verify): - Use `ispell-looking-back' + Use `ispell-looking-back'. 2009-06-24 Michael Albinus