aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorMattias EngdegÄrd2022-08-18 12:08:24 +0200
committerMattias EngdegÄrd2022-08-18 17:10:46 +0200
commitf33a429a53ea2647199804f12e16c65768d526d5 (patch)
tree14bb7d259c719135775d6b4d3aa692e0789545a2 /src/process.c
parente75822fba6ee5f1cced6b87305fc0f444803feb7 (diff)
downloademacs-f33a429a53ea2647199804f12e16c65768d526d5.tar.gz
emacs-f33a429a53ea2647199804f12e16c65768d526d5.zip
Copy-edit doc strings and comments wrt bignum and fixnum
Don't say that a value is a fixnum if small enough and a bignum otherwise, because that is now how Lisp integers always work, and we generally don't expose the fixnum/bignum difference to the user unless really necessary. * src/charset.c (Fencode_char): * src/editfns.c (Fuser_uid, Fuser_real_uid, Fgroup_gid) (Fgroup_real_gid, Femacs_pid): * src/font.c (Ffont_variation_glyphs): * src/process.c (Fprocess_id): Edit doc strings. * src/pgtkselect.c: * src/xselect.c: Edit comments.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c
index 23479c06194..697249a461b 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1209,8 +1209,8 @@ If PROCESS has not yet exited or died, return 0. */)
1209 1209
1210DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0, 1210DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0,
1211 doc: /* Return the process id of PROCESS. 1211 doc: /* Return the process id of PROCESS.
1212This is the pid of the external process which PROCESS uses or talks to. 1212This is the pid of the external process which PROCESS uses or talks to,
1213It is a fixnum if the value is small enough, otherwise a bignum. 1213an integer.
1214For a network, serial, and pipe connections, this value is nil. */) 1214For a network, serial, and pipe connections, this value is nil. */)
1215 (register Lisp_Object process) 1215 (register Lisp_Object process)
1216{ 1216{