emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/ChangeLog [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/ChangeLog [lexbind]
Date: Tue, 06 Jul 2004 07:11:56 -0400

Index: emacs/lisp/ChangeLog
diff -c emacs/lisp/ChangeLog:1.3986.2.46 emacs/lisp/ChangeLog:1.3986.2.47
*** emacs/lisp/ChangeLog:1.3986.2.46    Tue Jul  6 09:14:14 2004
--- emacs/lisp/ChangeLog        Tue Jul  6 09:23:21 2004
***************
*** 230,245 ****
        * subr.el (functionp): Function removed (now a subr).
        * help-fns.el (describe-function-1): Handle interpreted closures.
  
  2004-05-17  Glenn Morris  <address@hidden>
  
!       * progmodes/f90.el (f90-end-block-re, f90-start-block-re): New
!       constants.
        (hs-special-modes-alist): Add an f90-mode entry.
  
  2004-05-17  Sam Steingold  <address@hidden>
  
!       * emacs-lisp/cl-indent.el (common-lisp-indent-function-1): Indent
!       "without-" forms just like "with-" and "do-".  Use regexp-opt.
  
  2004-05-16  Kim F. Storm  <address@hidden>
  
--- 230,377 ----
        * subr.el (functionp): Function removed (now a subr).
        * help-fns.el (describe-function-1): Handle interpreted closures.
  
+ 2004-05-22  Richard M. Stallman  <address@hidden>
+ 
+       * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
+       as a close quote.
+ 
+       * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
+ 
+       * progmodes/idlw-shell.el (idlwave-shell-get-object-class): 
+       Use assoc-string, not assoc-ignore-case.
+       
+       * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
+ 
+       * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
+       If moving back then fwd gets a defun that ends before point,
+       try again moving fwd then back.
+ 
+       * files.el (file-name-non-special): Allow t in file-arg-indices
+       to mean requote the return value.  Use `identity' as an element
+       rather than as the whole value.
+ 
+       * gs.el (gs-options): Add -dSAFER.  Mark it risky.
+ 
+ 2004-05-22  Juanma Barranquero  <address@hidden>
+ 
+       * help-fns.el (help-add-fundoc-usage): Use %S only for output of
+       `help-make-usage'.
+       (help-highlight-arguments): Skip function name before searching
+       for arguments.
+ 
+ 2004-05-21  Juanma Barranquero  <address@hidden>
+ 
+       * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
+       Don't mention in the docstring these arguments meant for
+       internal (recursive) use only.
+       (allout-char-spec): Comment out (it's not implemented).
+       (allout-old-expose-topic, allout-exposure): Fix docstring and add
+       obsolescence declaration.
+       (allout-flatten-exposed-to-buffer)
+       (allout-indented-exposed-to-buffer): Fix typos in docstring.
+       (my-mark-marker): Doc fix.
+       (produce-allout-mode-map, allout-sibling-index)
+       (allout-isearch-expose, allout-distinctive-bullet)
+       (allout-open-topic, allout-reindent-body)
+       (allout-rebullet-heading, allout-process-exposed)
+       (allout-insert-listified, allout-latex-verb-quote)
+       (allout-insert-latex-header, allout-insert-latex-trailer):
+       Make arguments match their use in docstring.
+       (allout-primary-bullet, allout-old-style-prefixes)
+       (allout-inhibit-protection, allout-init, allout-mode)
+       (allout-before-change-protect, allout-flag-region):
+       Use "Emacs" instead of "emacs" in docstrings.
+ 
+ 2004-05-21  Masayuki Ataka  <address@hidden>  (tiny change)
+ 
+       * international/characters.el: Modify syntax of more characters.
+ 
+ 2004-05-21  Masatake YAMATO  <address@hidden>
+ 
+       * progmodes/etags.el (tags-apropos, list-tags): Require
+       apropos.
+       (etags-tags-completion-table): Show parsing progress.
+ 
+ 2004-05-20  Luc Teirlinck  <address@hidden>
+ 
+       * locate.el (locate-prompt-for-command): Shorten first line of
+       docstring.
+       (locate-mode): Expand docstring and include keymap summary.
+ 
+       * files.el (find-file-noselect-1): Limit the scope of the
+       `inhibit-read-only' binding.  Make sure that `inhibit-read-only'
+       is, by default, nil during the execution of
+       `find-file-not-found-functions' and `find-file-hook'.
+ 
+ 2004-05-20  Michael Mauger  <address@hidden>
+ 
+       * facemenu.el (facemenu-color-name-equal): New function.
+       (list-colors-display): Use it to compare colors instead of
+       facemenu-color-equal.
+ 
+ 2004-05-20  Dan Nicolaescu  <address@hidden>
+ 
+       * compare-w.el (compare-windows-face): Use min-colors instead of
+       checking for tty or pc types.
+ 
+ 2004-05-19  Stefan Monnier  <address@hidden>
+ 
+       * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
+       (completion-setup-function): Use with-current-buffer.
+       Properly save excursion.  Simplify.
+       Don't assume there is necessarily a `mouse-face' property somewhere.
+ 
+       * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
+ 
+       * progmodes/gdb-ui.el (gdb-reset): Use unless.  Fix regexp.
+ 
+       * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
+       (byte-compile-log-1): Don't call (byte-goto-log-buffer).
+       Use with-current-buffer.
+       (byte-goto-log-buffer): Delete.
+       (byte-compile-log-file): Call compilation-forget-errors.
+ 
+ 2004-05-19  Takaaki Ota  <address@hidden>  (tiny change)
+ 
+       * net/ldap.el (ldap-search-internal): Avoid mixing standard error
+       output messages into the search result.
+ 
+ 2004-05-19  Masatake YAMATO  <address@hidden>
+ 
+       * wid-edit.el (widget-radio-button-notify): Revert my last
+       change.  Reported by Katsumi Yamaoka <address@hidden>.
+ 
+ 2004-05-19  Kenichi Handa  <address@hidden>
+ 
+       * international/characters.el: Fix syntax (open/close) of CJK chars.
+ 
+ 2004-05-18  Karl Chen  <address@hidden>  (tiny change)
+ 
+       * help-mode.el (help-go-back): Don't depend on position of back button.
+ 
+ 2004-05-18  Stefan Monnier  <address@hidden>
+ 
+       * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
+       files files don't contain an accidental additional /.
+ 
+       * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
+       in source buffer.
+ 
+ 2004-05-18  Masatake YAMATO  <address@hidden>
+ 
+       * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
+       to widget-apply.  :action method assumes 2 arguments, not 3.
+ 
  2004-05-17  Glenn Morris  <address@hidden>
  
!       * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
!       New constants.
        (hs-special-modes-alist): Add an f90-mode entry.
  
  2004-05-17  Sam Steingold  <address@hidden>
  
!       * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
!       Indent "without-" forms just like "with-" and "do-".  Use regexp-opt.
  
  2004-05-16  Kim F. Storm  <address@hidden>
  
***************
*** 247,261 ****
  
  2004-05-15  John Wiegley  <address@hidden>
  
!       * eshell/esh-io.el (eshell-get-target): whitespace changes.
        (eshell-output-object-to-target): Improve output speed 20% by not
!       calling `eshell-stringify' if something is already known to be a
!       string.
  
  2004-05-15  Alex Ott  <address@hidden>
  
!       * textmodes/ispell.el (ispell-local-dictionary-alist): Add
!       windows-1251 to the choice of coding systems.
        (ispell-dictionary-alist-6): Add support for "russianw.aff",
        encoded in cp1251.
  
--- 379,392 ----
  
  2004-05-15  John Wiegley  <address@hidden>
  
!       * eshell/esh-io.el (eshell-get-target): Whitespace changes.
        (eshell-output-object-to-target): Improve output speed 20% by not
!       calling `eshell-stringify' if something is already known to be a string.
  
  2004-05-15  Alex Ott  <address@hidden>
  
!       * textmodes/ispell.el (ispell-local-dictionary-alist):
!       Add windows-1251 to the choice of coding systems.
        (ispell-dictionary-alist-6): Add support for "russianw.aff",
        encoded in cp1251.
  
***************
*** 302,308 ****
  
  2004-05-13  Marcelo Toledo  <address@hidden>
  
!       * language/european.el ("Brazilian Portuguese"): Added support for
        Brazilian Portuguese.
  
  2004-05-13  John Wiegley  <address@hidden>
--- 433,439 ----
  
  2004-05-13  Marcelo Toledo  <address@hidden>
  
!       * language/european.el ("Brazilian Portuguese"): Add support for
        Brazilian Portuguese.
  
  2004-05-13  John Wiegley  <address@hidden>
***************
*** 311,318 ****
        `recentf-mode' if this variable has been customized to t.
  
        * eshell/esh-test.el (eshell-test): Call the function
!       `emacs-version' rather than trying to build a custom version
!       string.
  
  2004-05-13  Stefan Monnier  <address@hidden>
  
--- 442,448 ----
        `recentf-mode' if this variable has been customized to t.
  
        * eshell/esh-test.el (eshell-test): Call the function
!       `emacs-version' rather than trying to build a custom version string.
  
  2004-05-13  Stefan Monnier  <address@hidden>
  
***************
*** 784,790 ****
        list of arguments in a string.
        (help-highlight-arguments): Highlight the function arguments and
        all uses of them in the docstring.
!       (describe-function-1): Use it. Do docstring output via `insert',
        not 'princ', so text attributes are preserved.
  
        * winner.el (winner-mode-map): Move `winner-undo' and
--- 914,920 ----
        list of arguments in a string.
        (help-highlight-arguments): Highlight the function arguments and
        all uses of them in the docstring.
!       (describe-function-1): Use it.  Do docstring output via `insert',
        not 'princ', so text attributes are preserved.
  
        * winner.el (winner-mode-map): Move `winner-undo' and
***************
*** 809,815 ****
        (bibtex-parse-entry): Fix docstring.
        (bibtex-print-help-message): Use bibtex-field-list.
        (bibtex-make-field): Use bibtex-field-list.
!       (bibtex-entry-index): Bugfix. Return crossref key if required.
        (bibtex-lessp): Fix docstring.
  
  2004-05-03  Luc Teirlinck  <address@hidden>
--- 939,945 ----
        (bibtex-parse-entry): Fix docstring.
        (bibtex-print-help-message): Use bibtex-field-list.
        (bibtex-make-field): Use bibtex-field-list.
!       (bibtex-entry-index): Bugfix.  Return crossref key if required.
        (bibtex-lessp): Fix docstring.
  
  2004-05-03  Luc Teirlinck  <address@hidden>
***************
*** 1002,1019 ****
        * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
        than duplicate call to `line-beginning-position'.
  
!       * progmodes/f90.el (f90-get-present-comment-type): Return
!       whitespace, as well as comment chars, for consistent filling
        of comment blocks.  Use `match-string-no-properties'.
!       (f90-break-line): Do not leave trailing whitespace when filling
!       comments.
  
  2004-04-30  Dave Love  <address@hidden>
  
        * calendar/diary-lib.el (diary-outlook-formats): New variable.
        (diary-from-outlook-internal, diary-from-outlook)
!       (diary-from-outlook-gnus, diary-from-outlook-rmail): New
!       functions to import diary entries from Outlook-format
        appointments in mail messages.
  
  2004-04-29  Stefan Monnier  <address@hidden>
--- 1132,1148 ----
        * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
        than duplicate call to `line-beginning-position'.
  
!       * progmodes/f90.el (f90-get-present-comment-type):
!       Return whitespace, as well as comment chars, for consistent filling
        of comment blocks.  Use `match-string-no-properties'.
!       (f90-break-line): Trim trailing whitespace when filling comments.
  
  2004-04-30  Dave Love  <address@hidden>
  
        * calendar/diary-lib.el (diary-outlook-formats): New variable.
        (diary-from-outlook-internal, diary-from-outlook)
!       (diary-from-outlook-gnus, diary-from-outlook-rmail):
!       New functions to import diary entries from Outlook-format
        appointments in mail messages.
  
  2004-04-29  Stefan Monnier  <address@hidden>
***************
*** 1041,1048 ****
  
        * progmodes/sql.el (sql-product-alist): Rename variable
        `sql-product-support'.  Add Postgres login parameters.
!       (sql-set-product, sql-product-feature): Update with renamed
!       variable.
        (sql-connect-postgres): Add username prompt.
        (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
        Make patterns less product specific.
--- 1170,1176 ----
  
        * progmodes/sql.el (sql-product-alist): Rename variable
        `sql-product-support'.  Add Postgres login parameters.
!       (sql-set-product, sql-product-feature): Update with renamed variable.
        (sql-connect-postgres): Add username prompt.
        (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
        Make patterns less product specific.
***************
*** 1064,1071 ****
        (sql-mode-sqlite-font-lock-keywords)
        (sql-mode-db2-font-lock-keywords): Default to nil.
        (sql-product-font-lock): Always highlight ANSI keywords.
!       (sql-add-product-keywords): Made similar to
!       `font-lock-add-keywords'.
        (sql-send-string): Add function.
  
  2004-04-29  Dave Love  <address@hidden>
--- 1192,1198 ----
        (sql-mode-sqlite-font-lock-keywords)
        (sql-mode-db2-font-lock-keywords): Default to nil.
        (sql-product-font-lock): Always highlight ANSI keywords.
!       (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
        (sql-send-string): Add function.
  
  2004-04-29  Dave Love  <address@hidden>
***************
*** 7618,7624 ****
  ;; coding: iso-2022-7bit
  ;; End:
  
!     Copyright (C) 2001, 2002 Free Software Foundation, Inc.
    Copying and distribution of this file, with or without modification,
    are permitted provided the copyright notice and this notice are preserved.
  
--- 7745,7751 ----
  ;; coding: iso-2022-7bit
  ;; End:
  
!     Copyright (C) 2001, 02, 04  Free Software Foundation, Inc.
    Copying and distribution of this file, with or without modification,
    are permitted provided the copyright notice and this notice are preserved.
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]