X-Git-Url: https://git.hcoop.net/bpt/emacs.git/blobdiff_plain/1e8eecea4be7cd99c0f194c9249495d60dfc584b..2fb1ec93cedbc35037476cd01b197dd4d2e53434:/lisp/ChangeLog diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d7a132584a..e54ce5715c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,269 @@ +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):