diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-05-09 10:59:29 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-05-09 10:59:29 -0700 |
commit | c8b7a6abd90aab76185202def7049a0ea981d335 (patch) | |
tree | abd2edd93ad2fdd4e31e25a0e0ce1c24adde62ff /src | |
parent | 9418ab39bf970dd82b5d6f2e7b40a5d8cd134a43 (diff) | |
parent | 3b478989df59cc33886d260137c433da5cfe4863 (diff) | |
download | emacs-c8b7a6abd90aab76185202def7049a0ea981d335.tar.gz |
Merge from origin/emacs-25
3b47898 Fix doc string in `insert'
b479dea * doc/misc/emacs-mime.texi (time-date): Document now-builtins...
cd27f73 Say 'All results processed' at the end
4ffec91 Document automatic adjustment of process' logical window dime...
dc66271 ; Fix typos and stylistic glitches in NEWS
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) DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0, doc: /* Insert the arguments, either strings or characters, at point. -Point and before-insertion markers move forward to end up +Point and after-insertion markers move forward to end up after the inserted text. Any other markers at the point of insertion remain before the text. @@ -2559,7 +2559,7 @@ usage: (insert &rest ARGS) */) DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit, 0, MANY, 0, doc: /* Insert the arguments at point, inheriting properties from adjoining text. -Point and before-insertion markers move forward to end up +Point and after-insertion markers move forward to end up after the inserted text. Any other markers at the point of insertion remain before the text. 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. */) DEFUN ("set-process-window-size", Fset_process_window_size, Sset_process_window_size, 3, 3, 0, - doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */) + doc: /* Tell PROCESS that it has logical window size WIDTH by HEIGHT. +Value is t if PROCESS was successfully told about the window size, +nil otherwise. */) (Lisp_Object process, Lisp_Object height, Lisp_Object width) { CHECK_PROCESS (process); |