]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 14 May 2003 02:03:10 +0000 (02:03 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 14 May 2003 02:03:10 +0000 (02:03 +0000)
lisp/ChangeLog
src/ChangeLog

index 822f543c9ba354376daf18362ed24cd4087f951d..37bdc38be65643f60002bb365cf09e261c739cfd 100644 (file)
@@ -1,5 +1,50 @@
 2003-05-13  Stefan Monnier  <monnier@cs.yale.edu>
 
+       * textmodes/ispell.el (xemacsp): Remove.  Use (featurep 'xemacs).
+       (ispell-graphic-p): Inline and then remove.
+       (toplevel): Get rid of unnecessary loop.
+       (ispell-parse-output, ispell-complete-word): Replace (substring s 0 1)
+       with a call to aref.
+       (ispell-get-line): Remove unused arg `reg-end'.
+       (ispell-region): Update corresponding call.
+
+       * progmodes/cpp.el (cpp-make-overlay-hidden): Don't make intangible.
+
+       * progmodes/compile.el (compile-internal): Use with-current-buffer.
+       (compilation-set-window-height): Use save-selected-window.
+
+       * progmodes/ada-xref.el (ada-xref-update-project-menu): Use easymenu.
+       (ada-goto-declaration-other-frame): Remove unused arg other-frame.
+       (ada-gdb-application): Remove unused vars comint-exec, in-post-mode,
+       and gud-gdb-massage-args.
+
+       * progmodes/cc-langs.el (c-lang-defvar-init-form-tail):
+       This is actually not a constant.
+
+       * progmodes/autoconf.el (autoconf-current-defun-function):
+       Copy the syntax table before modifying it.
+
+       * progmodes/ada-mode.el (ada-in-comment-p, ada-in-string-p)
+       (ada-in-string-or-comment-p): Use line-beginning-position.
+
+       * textmodes/reftex.el (reftex-select-with-char): Don't assume
+       that point-min == 1.
+
+       * textmodes/reftex-toc.el (reftex-toc-visit-location):
+       Don't switch the current window if the new buffer is in another.
+       (reftex-toc): Don't assume that point-min == 1.
+
+       * textmodes/reftex-parse.el (reftex-what-macro): Don't assume
+       that point-min == 1.
+
+       * textmodes/reftex-cite.el (reftex-extract-bib-entries)
+       (reftex-extract-bib-entries-from-thebibliography): New arg re-list.
+       (reftex-extract-bib-entries): Use ^ rather than \(\`\|[\n\r]\).
+       Use member-ignore-case.  Don't add unnecessary trailing \n.
+       (reftex-offer-bib-menu): Consolidate duplicated code from
+       reftex-extract-bib-entries and
+       reftex-extract-bib-entries-from-thebibliography.
+
        * simple.el (back-to-indentation): Simplify.
        (undo-equiv-table, undo-in-region, undo-no-redo): New vars.
        (undo): Use them to implement the no-redo form of undo.
index d9b6166e52f3b09b778e0c451bcba99c050368dc..197631eef5296f3769a5cba67a77ed7d0722d846 100644 (file)
@@ -1,3 +1,7 @@
+2003-05-11  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * keyboard.c (adjust_point_for_property): Ensure termination.
+
 2003-05-10  Stefan Monnier  <monnier@cs.yale.edu>
 
        * keyboard.c (follow_key): Remove dead variable `did_meta'.