diff options
| author | Richard M. Stallman | 1994-08-06 19:25:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-08-06 19:25:24 +0000 |
| commit | cb88b56ea9ea0a8c2e6ee5a2d61094d432ab93af (patch) | |
| tree | 7302ca09420d7db7cd13afcadffc21b879212e98 /lisp | |
| parent | b65a149a9582766142e52a48d0ad642a3e4d1bbb (diff) | |
| download | emacs-cb88b56ea9ea0a8c2e6ee5a2d61094d432ab93af.tar.gz emacs-cb88b56ea9ea0a8c2e6ee5a2d61094d432ab93af.zip | |
(byte-after-unbind-ops): Fix paren error wrt doc string.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/emacs-lisp/byte-opt.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index 8b7937b7d80..7bfa75dbaaf 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el | |||
| @@ -1177,10 +1177,10 @@ | |||
| 1177 | byte-symbolp byte-consp byte-stringp byte-listp byte-numberp byte-integerp | 1177 | byte-symbolp byte-consp byte-stringp byte-listp byte-numberp byte-integerp |
| 1178 | byte-eq byte-equal byte-not | 1178 | byte-eq byte-equal byte-not |
| 1179 | byte-cons byte-list1 byte-list2 ; byte-list3 byte-list4 | 1179 | byte-cons byte-list1 byte-list2 ; byte-list3 byte-list4 |
| 1180 | byte-interactive-p | 1180 | byte-interactive-p) |
| 1181 | ;; How about other side-effect-free-ops? Is it safe to move an | 1181 | ;; How about other side-effect-free-ops? Is it safe to move an |
| 1182 | ;; error invocation (such as from nth) out of an unwind-protect? | 1182 | ;; error invocation (such as from nth) out of an unwind-protect? |
| 1183 | "Byte-codes that can be moved past an unbind.")) | 1183 | "Byte-codes that can be moved past an unbind.") |
| 1184 | 1184 | ||
| 1185 | (defconst byte-compile-side-effect-and-error-free-ops | 1185 | (defconst byte-compile-side-effect-and-error-free-ops |
| 1186 | '(byte-constant byte-dup byte-symbolp byte-consp byte-stringp byte-listp | 1186 | '(byte-constant byte-dup byte-symbolp byte-consp byte-stringp byte-listp |