aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPavel Janík2001-10-15 14:55:28 +0000
committerPavel Janík2001-10-15 14:55:28 +0000
commite2ba787b86469253337f6360594d5dbbcc154dc8 (patch)
treea665a5eb5d94fff847393a4c5eaff60c55231c5c /src
parenta65da64122645c8d4c8eaef3446c96be2c64b3ec (diff)
downloademacs-e2ba787b86469253337f6360594d5dbbcc154dc8.tar.gz
emacs-e2ba787b86469253337f6360594d5dbbcc154dc8.zip
(process-inherit-coding-system-flag, get-buffer-process): Do not confuse
make-docfile with doc strings in comment.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/process.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ffcaf349582..10518e2fd7e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
12001-10-15 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 12001-10-15 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 2
3 * process.c (process-inherit-coding-system-flag,
4 get-buffer-process): Do not confuse make-docfile with doc strings
5 in comment.
6
3 * editfns.c (Fchar_to_string): Make doc string consistent with arguments. 7 * editfns.c (Fchar_to_string): Make doc string consistent with arguments.
4 8
5 * abbrev.c, minibuf.c: Put doc strings in comments. 9 * abbrev.c, minibuf.c: Put doc strings in comments.
diff --git a/src/process.c b/src/process.c
index d9eab3f097b..f3407838720 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4965,9 +4965,9 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
4965} 4965}
4966 4966
4967 4967
4968/* Don't confuse make-docfile by having two doc strings for this function.
4969 make-docfile does not pay attention to #if, for good reason! */
4968DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, 4970DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
4969 /* Don't confuse make-docfile by having two doc strings for this function.
4970 make-docfile does not pay attention to #if, for good reason! */
4971 0) 4971 0)
4972 (name) 4972 (name)
4973 register Lisp_Object name; 4973 register Lisp_Object name;
@@ -4975,11 +4975,11 @@ DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0,
4975 return Qnil; 4975 return Qnil;
4976} 4976}
4977 4977
4978 /* Don't confuse make-docfile by having two doc strings for this function.
4979 make-docfile does not pay attention to #if, for good reason! */
4978DEFUN ("process-inherit-coding-system-flag", 4980DEFUN ("process-inherit-coding-system-flag",
4979 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag, 4981 Fprocess_inherit_coding_system_flag, Sprocess_inherit_coding_system_flag,
4980 1, 1, 0, 4982 1, 1, 0,
4981 /* Don't confuse make-docfile by having two doc strings for this function.
4982 make-docfile does not pay attention to #if, for good reason! */
4983 0) 4983 0)
4984 (process) 4984 (process)
4985 register Lisp_Object process; 4985 register Lisp_Object process;