aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2008-02-06 17:49:56 +0000
committerRichard M. Stallman2008-02-06 17:49:56 +0000
commit27c335693403393b7c38be96e85bf6629972ed2b (patch)
tree8563be25bcc607a1b94168054788e779767b8c44
parent64137f20978c133c6f74d9aea65b240edc76be3a (diff)
downloademacs-27c335693403393b7c38be96e85bf6629972ed2b.tar.gz
emacs-27c335693403393b7c38be96e85bf6629972ed2b.zip
(mh-make-seq, mh-seq-name): Use defsubst.
-rw-r--r--lisp/mh-e/ChangeLog10
-rw-r--r--lisp/mh-e/mh-seq.el8
2 files changed, 14 insertions, 4 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog
index d538ddc94ef..79e44c96256 100644
--- a/lisp/mh-e/ChangeLog
+++ b/lisp/mh-e/ChangeLog
@@ -1,3 +1,13 @@
12008-02-06 Richard Stallman <rms@gnu.org>
2
3 * mh-seq.el (mh-make-seq, mh-seq-name): Use defsubst.
4
5 * mh-acros.el (mh-do-in-gnu-emacs, mh-do-in-xemacs)
6 (with-mh-folder-updating, mh-in-show-buffer)
7 (mh-iterate-on-messages-in-region, mh-iterate-on-range):
8 (mh-do-at-event-location): Add debug decls.
9 (mh-seq-msgs): Use defsubst.
10
12008-02-05 Juanma Barranquero <lekktu@gmail.com> 112008-02-05 Juanma Barranquero <lekktu@gmail.com>
2 12
3 * mh-e.el (mh-scan-format-file-check, mh-adaptive-cmd-note-flag-check): 13 * mh-e.el (mh-scan-format-file-check, mh-adaptive-cmd-note-flag-check):
diff --git a/lisp/mh-e/mh-seq.el b/lisp/mh-e/mh-seq.el
index 87c59cd8136..fd64d8a6902 100644
--- a/lisp/mh-e/mh-seq.el
+++ b/lisp/mh-e/mh-seq.el
@@ -53,13 +53,13 @@
53 53
54;;; Macros 54;;; Macros
55 55
56(defmacro mh-make-seq (name msgs) 56(defsubst mh-make-seq (name msgs)
57 "Create sequence NAME with the given MSGS." 57 "Create sequence NAME with the given MSGS."
58 (list 'cons name msgs)) 58 (cons name msgs))
59 59
60(defmacro mh-seq-name (sequence) 60(defsubst mh-seq-name (sequence)
61 "Extract sequence name from the given SEQUENCE." 61 "Extract sequence name from the given SEQUENCE."
62 (list 'car sequence)) 62 (car sequence))
63 63
64 64
65 65