diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 4 | ||||
| -rw-r--r-- | src/process.c | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/editfns.c b/src/editfns.c index 0e1a6e3415f..afcf1cab72b 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2535,7 +2535,7 @@ insert1 (Lisp_Object arg) | |||
| 2535 | 2535 | ||
| 2536 | DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0, | 2536 | DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0, |
| 2537 | doc: /* Insert the arguments, either strings or characters, at point. | 2537 | doc: /* Insert the arguments, either strings or characters, at point. |
| 2538 | Point and before-insertion markers move forward to end up | 2538 | Point and after-insertion markers move forward to end up |
| 2539 | after the inserted text. | 2539 | after the inserted text. |
| 2540 | Any other markers at the point of insertion remain before the text. | 2540 | Any other markers at the point of insertion remain before the text. |
| 2541 | 2541 | ||
| @@ -2559,7 +2559,7 @@ usage: (insert &rest ARGS) */) | |||
| 2559 | DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit, | 2559 | DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit, |
| 2560 | 0, MANY, 0, | 2560 | 0, MANY, 0, |
| 2561 | doc: /* Insert the arguments at point, inheriting properties from adjoining text. | 2561 | doc: /* Insert the arguments at point, inheriting properties from adjoining text. |
| 2562 | Point and before-insertion markers move forward to end up | 2562 | Point and after-insertion markers move forward to end up |
| 2563 | after the inserted text. | 2563 | after the inserted text. |
| 2564 | Any other markers at the point of insertion remain before the text. | 2564 | Any other markers at the point of insertion remain before the text. |
| 2565 | 2565 | ||
diff --git a/src/process.c b/src/process.c index 2d0fb567943..3e66949b690 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1134,7 +1134,9 @@ See `set-process-sentinel' for more info on sentinels. */) | |||
| 1134 | 1134 | ||
| 1135 | DEFUN ("set-process-window-size", Fset_process_window_size, | 1135 | DEFUN ("set-process-window-size", Fset_process_window_size, |
| 1136 | Sset_process_window_size, 3, 3, 0, | 1136 | Sset_process_window_size, 3, 3, 0, |
| 1137 | doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */) | 1137 | doc: /* Tell PROCESS that it has logical window size WIDTH by HEIGHT. |
| 1138 | Value is t if PROCESS was successfully told about the window size, | ||
| 1139 | nil otherwise. */) | ||
| 1138 | (Lisp_Object process, Lisp_Object height, Lisp_Object width) | 1140 | (Lisp_Object process, Lisp_Object height, Lisp_Object width) |
| 1139 | { | 1141 | { |
| 1140 | CHECK_PROCESS (process); | 1142 | CHECK_PROCESS (process); |