aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorRichard Stallman2015-04-05 08:36:56 -0400
committerRichard Stallman2015-04-05 08:42:43 -0400
commit4e23cd0ccde4ad1e14fe2870ccf140487af649b2 (patch)
treeb709ac1e92a892f6ec1faa85eb59a9e5960c25dd /src/bytecode.c
parentdca743f0941909a80e3f28c023977120b6203e20 (diff)
parent16eec6fc55dcc05d1d819f18998e84a9580b2521 (diff)
downloademacs-4e23cd0ccde4ad1e14fe2870ccf140487af649b2.tar.gz
emacs-4e23cd0ccde4ad1e14fe2870ccf140487af649b2.zip
* mail/rmail.el (rmail-show-message-1): When displaying a mime message,
indicate start and finish in the echo area. * mail/rmail.el (rmail-epa-decrypt): Disregard <pre> before armor. Ignore more kinds of whitespace in mime headers. Modify the decrypted mime part's mime type so it will be displayed by default when visiting this message again. * net/browse-url.el (browse-url-firefox-program): Prefer IceCat, doc. (browse-url-firefox-arguments) (browse-url-firefox-startup-arguments): Doc fix.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index b4583676835..55789b41ad9 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -1945,10 +1945,10 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
1945 /* Actually this is Bstack_ref with offset 0, but we use Bdup 1945 /* Actually this is Bstack_ref with offset 0, but we use Bdup
1946 for that instead. */ 1946 for that instead. */
1947 /* CASE (Bstack_ref): */ 1947 /* CASE (Bstack_ref): */
1948 call3 (intern ("error"), 1948 call3 (Qerror,
1949 build_string ("Invalid byte opcode: op=%s, ptr=%d"), 1949 build_string ("Invalid byte opcode: op=%s, ptr=%d"),
1950 make_number (op), 1950 make_number (op),
1951 make_number ((stack.pc - 1) - stack.byte_string_start)); 1951 make_number ((stack.pc - 1) - stack.byte_string_start));
1952 1952
1953 /* Handy byte-codes for lexical binding. */ 1953 /* Handy byte-codes for lexical binding. */
1954 CASE (Bstack_ref1): 1954 CASE (Bstack_ref1):