aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/callproc.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/callproc.c b/src/callproc.c
index dc37dfdc01f..082c65c4f14 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -2216,6 +2216,17 @@ the system. */);
2216 Vebrowse_program_name = build_pure_c_string ("libebrowse.so"); 2216 Vebrowse_program_name = build_pure_c_string ("libebrowse.so");
2217#endif 2217#endif
2218 2218
2219 DEFVAR_LISP ("rcs2log-program-name", Vrcs2log_program_name,
2220 doc: /* Name of the `rcs2log' program distributed with Emacs.
2221Use this instead of calling `rcs2log' directly, as `rcs2log'
2222may have been renamed to comply with executable naming restrictions on
2223the system. */);
2224#if !defined HAVE_ANDROID || defined ANDROID_STUBIFY
2225 Vrcs2log_program_name = build_pure_c_string ("rcs2log");
2226#else /* HAVE_ANDROID && !ANDROID_STUBIFY */
2227 Vrcs2log_program_name = build_pure_c_string ("librcs2log.so");
2228#endif /* !HAVE_ANDROID || ANDROID_STUBIFY */
2229
2219 defsubr (&Scall_process); 2230 defsubr (&Scall_process);
2220 defsubr (&Sgetenv_internal); 2231 defsubr (&Sgetenv_internal);
2221 defsubr (&Scall_process_region); 2232 defsubr (&Scall_process_region);