aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-11-09 05:56:23 +0000
committerKarl Heuer1994-11-09 05:56:23 +0000
commit36cd82fe63bb69a4f929cc9bc1d40344cb3c5de1 (patch)
tree9f0fd0dcd50ce8c83aabc4a2ae2984ec5727caa8 /src
parent04befa074c84c321d8994bb4e396b49f42592ed1 (diff)
downloademacs-36cd82fe63bb69a4f929cc9bc1d40344cb3c5de1.tar.gz
emacs-36cd82fe63bb69a4f929cc9bc1d40344cb3c5de1.zip
(describe_syntax_1): Set help-mode in *Help* buffer.
Diffstat (limited to 'src')
-rw-r--r--src/syntax.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 8d7f908865f..8aeb5bdd519 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -471,6 +471,7 @@ describe_syntax_1 (vector)
471 struct buffer *old = current_buffer; 471 struct buffer *old = current_buffer;
472 set_buffer_internal (XBUFFER (Vstandard_output)); 472 set_buffer_internal (XBUFFER (Vstandard_output));
473 describe_vector (vector, Qnil, describe_syntax, 0, Qnil); 473 describe_vector (vector, Qnil, describe_syntax, 0, Qnil);
474 call0 (intern ("help-mode"));
474 set_buffer_internal (old); 475 set_buffer_internal (old);
475 return Qnil; 476 return Qnil;
476} 477}