aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2003-05-14 02:03:10 +0000
committerStefan Monnier2003-05-14 02:03:10 +0000
commitfd93e33104f25932d6b3e8bd4f8411fd5e127c8b (patch)
treeab2c9e40d49efd461395dca70234109c43dd9d48
parent877d353af837abfce3cea598836e8d2054a69f06 (diff)
downloademacs-fd93e33104f25932d6b3e8bd4f8411fd5e127c8b.tar.gz
emacs-fd93e33104f25932d6b3e8bd4f8411fd5e127c8b.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog45
-rw-r--r--src/ChangeLog4
2 files changed, 49 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 822f543c9ba..37bdc38be65 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,50 @@
12003-05-13 Stefan Monnier <monnier@cs.yale.edu> 12003-05-13 Stefan Monnier <monnier@cs.yale.edu>
2 2
3 * textmodes/ispell.el (xemacsp): Remove. Use (featurep 'xemacs).
4 (ispell-graphic-p): Inline and then remove.
5 (toplevel): Get rid of unnecessary loop.
6 (ispell-parse-output, ispell-complete-word): Replace (substring s 0 1)
7 with a call to aref.
8 (ispell-get-line): Remove unused arg `reg-end'.
9 (ispell-region): Update corresponding call.
10
11 * progmodes/cpp.el (cpp-make-overlay-hidden): Don't make intangible.
12
13 * progmodes/compile.el (compile-internal): Use with-current-buffer.
14 (compilation-set-window-height): Use save-selected-window.
15
16 * progmodes/ada-xref.el (ada-xref-update-project-menu): Use easymenu.
17 (ada-goto-declaration-other-frame): Remove unused arg other-frame.
18 (ada-gdb-application): Remove unused vars comint-exec, in-post-mode,
19 and gud-gdb-massage-args.
20
21 * progmodes/cc-langs.el (c-lang-defvar-init-form-tail):
22 This is actually not a constant.
23
24 * progmodes/autoconf.el (autoconf-current-defun-function):
25 Copy the syntax table before modifying it.
26
27 * progmodes/ada-mode.el (ada-in-comment-p, ada-in-string-p)
28 (ada-in-string-or-comment-p): Use line-beginning-position.
29
30 * textmodes/reftex.el (reftex-select-with-char): Don't assume
31 that point-min == 1.
32
33 * textmodes/reftex-toc.el (reftex-toc-visit-location):
34 Don't switch the current window if the new buffer is in another.
35 (reftex-toc): Don't assume that point-min == 1.
36
37 * textmodes/reftex-parse.el (reftex-what-macro): Don't assume
38 that point-min == 1.
39
40 * textmodes/reftex-cite.el (reftex-extract-bib-entries)
41 (reftex-extract-bib-entries-from-thebibliography): New arg re-list.
42 (reftex-extract-bib-entries): Use ^ rather than \(\`\|[\n\r]\).
43 Use member-ignore-case. Don't add unnecessary trailing \n.
44 (reftex-offer-bib-menu): Consolidate duplicated code from
45 reftex-extract-bib-entries and
46 reftex-extract-bib-entries-from-thebibliography.
47
3 * simple.el (back-to-indentation): Simplify. 48 * simple.el (back-to-indentation): Simplify.
4 (undo-equiv-table, undo-in-region, undo-no-redo): New vars. 49 (undo-equiv-table, undo-in-region, undo-no-redo): New vars.
5 (undo): Use them to implement the no-redo form of undo. 50 (undo): Use them to implement the no-redo form of undo.
diff --git a/src/ChangeLog b/src/ChangeLog
index d9b6166e52f..197631eef52 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12003-05-11 Stefan Monnier <monnier@cs.yale.edu>
2
3 * keyboard.c (adjust_point_for_property): Ensure termination.
4
12003-05-10 Stefan Monnier <monnier@cs.yale.edu> 52003-05-10 Stefan Monnier <monnier@cs.yale.edu>
2 6
3 * keyboard.c (follow_key): Remove dead variable `did_meta'. 7 * keyboard.c (follow_key): Remove dead variable `did_meta'.