]> code.delx.au - gnu-emacs/blobdiff - lisp/ChangeLog
(rmail-current-message, rmail-inbox-list): Add defvars.
[gnu-emacs] / lisp / ChangeLog
index 67faa758ca358f8fdb0b1fc952f2bb5a767c66dc..5ad71ff645cc6823d467d78104aa9be44864013f 100644 (file)
@@ -1,5 +1,160 @@
+2005-08-29  Juanma Barranquero  <lekktu@gmail.com>
+
+       * man.el (Man-init-defvars, Man-translate-references)
+       (Man-support-local-filenames, Man-highlight-references):
+       * progmodes/sql.el (sql-interactive-mode):
+       * shell.el (shell-mode, shell-resync-dirs): Fix typos in
+       docstrings.
+
+       * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
+       (compilation-mode-font-lock-keywords): Add defvars.
+       (checkdoc-interactive-loop): "?\ " -> "?\s".
+
+       * emacs-lisp/lisp-mode.el (font-lock-comment-face)
+       (font-lock-doc-face, font-lock-string-face)
+       (font-lock-keywords-case-fold-search): Add defvars.
+       (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
+
+       * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
+       Don't pass X and Y (they are ignored anyway).
+       (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
+       (mouse-delete-window): Make arguments optional.
+
+       * obsolete/rnews.el (news-add-news-group): Don't use
+       `end-of-line'.
+       (caesar-translate-table, minor-modes, news-buffer-save)
+       (news-group-name, news-minor-modes): Add defvars.
+
+       * emacs-lisp/lselect.el (mouse-highlight-priority)
+       (x-lost-selection-functions, zmacs-regions):
+       * emacs-lisp/pp.el (font-lock-verbose):
+       * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
+       * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
+       (ses-mode-map):
+       * emacs-lisp/tcover-unsafep.el (safe-functions):
+       * obsolete/fast-lock.el (font-lock-face-list):
+       * obsolete/rnewspost.el (mail-reply-buffer):
+       * obsolete/scribe.el (compile-command):
+       * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
+
+2005-08-28  John Paul Wallington  <jpw@gnu.org>
+
+       * ibuf-ext.el (ibuffer-auto-update-changed): Use
+       `frame-or-buffer-changed-p' to check whether we need to update.
+       (ibuffer-auto-mode): Don't advise `get-buffer-create' and
+       `kill-buffer'.  Initialise `ibuffer-auto-buffers-changed'
+       as a `frame-or-buffer-changed-p' state vector instead.
+
+2005-08-27  Romain Francoise  <romain@orebokech.com>
+
+       * textmodes/makeinfo.el (makeinfo-compile): Use
+       `compilation-start'.  Set `next-error-function' according to
+       `disable-errors'.
+       (makeinfo-next-error): New function.
+       (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
+       (makeinfo-buffer): Likewise.
+
+       * progmodes/compile.el (compilation-start): Add autoload cookie.
+
+       * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
+       * textmodes/sgml-mode.el: Likewise.
+       * progmodes/python.el: Likewise.
+
+2005-08-27  Eli Zaretskii  <eliz@gnu.org>
+
+       * simple.el (blink-matching-paren-distance): Document the meaning
+       of nil value, and allow to customize to nil.
+
+       * eshell/esh-ext.el (eshell-windows-shell-file): Look for
+       command.com, not command.exe.
+
+2005-08-26  John Wiegley  <johnw@newartisans.com>
+
+       * eshell/esh-cmd.el (eshell-rewrite-named-command): Changed the
+       code around a bit so that an extraneous nil argument is not added
+       to a command when no args are given.
+
+       * eshell/esh-arg.el (eshell-parse-double-quote): If a
+       double-quoted argument resolves to nil, return it as an empty
+       string rather than as nil.  This made it impossible to pass "" to
+       a shell script as a null string argument.
+
+2005-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * outline.el (outline-invent-heading): New fun.
+       (outline-promote, outline-demote): Use it.
+       (outline-move-subtree-down): Remove unused vars `re' and `txt'.
+       (outline-end-of-subtree): Remove unused var `opoint'.
+
+2005-08-26  David Reitter  <david.reitter@gmail.com>
+
+       * menu-bar.el (truncate-lines, write-file, print-buffer)
+       (ps-print-buffer-faces, ps-print-buffer, split-window):
+       Disable menu items when the frame they refer to is invisible, or when
+       they refer to a buffer and the minibuffer is selected.
+
+2005-08-26  Pavel Kobiakov  <pk_at_work@yahoo.com>
+
+       * progmodes/flymake.el (flymake-highlight-err-lines):
+       Use save-excursion around flymake-highlight-line to preserve point.
+
+2005-08-26  Eli Zaretskii  <eliz@gnu.org>
+
+       * progmodes/octave-mod.el: Change Author and Maintainer address.
+       (octave-maintainer-address): Change Kurt's email address.
+       * progmodes/octave-inf.el: Change Author and Maintainer address.
+       * progmodes/octave-hlp.el: Change Author and Maintainer address.
+
+2005-08-26  Kim F. Storm  <storm@cua.dk>
+
+       * subr.el (version-list-<, version-list-<=, version-list-=):
+       Renamed from integer-list-*.
+       (version-list-not-zero): Likewise.  Fix while loop.
+       (version=): Use version-list-= instead of string-equal.
+
+2005-08-26  Richard M. Stallman  <rms@gnu.org>
+
+       * outline.el (outline-promote): Try shortening the heading.
+       As last resort, read the heading to use.
+       (outline-demote): As last resort, read the heading to use.
+
+2005-08-26  Romain Francoise  <romain@orebokech.com>
+
+       * progmodes/compile.el (compilation-start): Doc fix.
+
+       * progmodes/antlr-mode.el (antlr-default): Fix defface form.
+       (antlr-font-lock-additional-keywords): Fix reference to
+       `antlr-font-lock-literal-regexp' erroneously changed during the
+       mass face rename.
+       (antlr-run-tool): Use `compilation-start'.
+
+       * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
+       instead of the obsolete `compile-internal'.
+
 2005-08-26  Juanma Barranquero  <lekktu@gmail.com>
 
+       * calendar/cal-bahai.el (date, displayed-month, displayed-year)
+       (number, original-date):
+       * calendar/cal-china.el (date):
+       * calendar/cal-coptic.el (date):
+       * calendar/cal-french.el (date):
+       * calendar/cal-hebrew.el (date, entry, number, original-date):
+       * calendar/cal-islam.el (date, number, original-date):
+       * calendar/cal-iso.el (date):
+       * calendar/cal-julian.el (date):
+       * calendar/cal-mayan.el (date):
+       * calendar/cal-menu.el (date, event):
+       * calendar/cal-persia.el (date):
+       * calendar/lunar.el (date):
+       * calendar/solar.el (date): Add defvars.
+
+       * emerge.el:
+       * ibuffer.el:
+       * info-xref.el:
+       * obsolete/bg-mouse.el:
+       * obsolete/sun-curs.el:
+       * obsolete/swedish.el: Move the `defvar's to the top level.
+
        * smerge-mode.el (smerge-refined-change): Add :group.
 
 2005-08-25  Stefan Monnier  <monnier@iro.umontreal.ca>
 
 2005-01-21  Ren\e,Ai\e(B Kyllingstad  <listmailxemacs@kyllingstad.com>
 
-       * pcomplete.el: define pcomplete-read-event instead of read-event,
+       * pcomplete.el: Define pcomplete-read-event instead of read-event,
        since it's not a complete read-event implementation
 
 2005-01-20  Jay Belanger  <belanger@truman.edu>