aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa1997-02-27 11:13:46 +0000
committerKenichi Handa1997-02-27 11:13:46 +0000
commit7bce92a6736c5d0da30a5f8c07e004d889ebd799 (patch)
tree70fd8aa8245d7dd21f6ca9c9aa2b06a2e645d8e2
parent550017463dc286fc89d739f62b807cbbbd7acdbd (diff)
downloademacs-7bce92a6736c5d0da30a5f8c07e004d889ebd799.tar.gz
emacs-7bce92a6736c5d0da30a5f8c07e004d889ebd799.zip
(Fregister_ccl_program): Escape newlines in docstring.
-rw-r--r--src/ccl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ccl.c b/src/ccl.c
index 0aa45482acc..b3f9d49c0c7 100644
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -1074,8 +1074,8 @@ Returns the contents of write buffer as a string,\n\
1074 1074
1075DEFUN ("register-ccl-program", Fregister_ccl_program, Sregister_ccl_program, 1075DEFUN ("register-ccl-program", Fregister_ccl_program, Sregister_ccl_program,
1076 2, 2, 0, 1076 2, 2, 0,
1077 "Register CCL program PROGRAM of NAME in `ccl-program-table'. 1077 "Register CCL program PROGRAM of NAME in `ccl-program-table'.\n\
1078PROGRAM should be a compiled code of CCL program, or nil. 1078PROGRAM should be a compiled code of CCL program, or nil.\n\
1079Return index number of the registered CCL program.") 1079Return index number of the registered CCL program.")
1080 (name, ccl_prog) 1080 (name, ccl_prog)
1081 Lisp_Object name, ccl_prog; 1081 Lisp_Object name, ccl_prog;