aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-13 15:28:14 -0700
committerPaul Eggert2011-04-13 15:28:14 -0700
commitf44bd759cb8b78ee8759f4681643807fe6c572ff (patch)
treedfbb91c803cc2d8c0ac1932958ced573affbf6a8 /src/editfns.c
parentb532497da492ad9fef912bdf41d7f57c6f5bd833 (diff)
downloademacs-f44bd759cb8b78ee8759f4681643807fe6c572ff.tar.gz
emacs-f44bd759cb8b78ee8759f4681643807fe6c572ff.zip
* editfns.c: Move a (normally-unused) function to its only use.
* editfns.c, lisp.h (get_operating_system_release): Remove. * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not worth the hassle of breaking this out.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/editfns.c b/src/editfns.c
index afb1e8ebc18..ce77d10cb2f 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1403,15 +1403,6 @@ get_system_name (void)
1403 return ""; 1403 return "";
1404} 1404}
1405 1405
1406const char *
1407get_operating_system_release (void)
1408{
1409 if (STRINGP (Voperating_system_release))
1410 return SSDATA (Voperating_system_release);
1411 else
1412 return "";
1413}
1414
1415DEFUN ("emacs-pid", Femacs_pid, Semacs_pid, 0, 0, 0, 1406DEFUN ("emacs-pid", Femacs_pid, Semacs_pid, 0, 0, 0,
1416 doc: /* Return the process ID of Emacs, as an integer. */) 1407 doc: /* Return the process ID of Emacs, as an integer. */)
1417 (void) 1408 (void)