mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-17 18:16:22 -05:00
8fc7449839
ansi.c:255:6: warning: symbol 'ansihello' was not declared. Should it be static? epath.h:11:6: warning: symbol 'pathname' was not declared. Should it be static? display.c:36:7: warning: symbol 'vscreen' was not declared. Should it be static? display.c:38:7: warning: symbol 'pscreen' was not declared. Should it be static? display.c:927:5: warning: symbol 'updateline' was not declared. Should it be static? evar.h:20:6: warning: symbol 'uv' was not declared. Should it be static? evar.h:24:6: warning: symbol 'envars' was not declared. Should it be static? evar.h:128:7: warning: symbol 'funcs' was not declared. Should it be static? fileio.c:14:6: warning: symbol 'ffp' was not declared. Should it be static? fileio.c:15:5: warning: symbol 'eofflag' was not declared. Should it be static? ibmpc.c:505:6: warning: symbol 'ibmhello' was not declared. Should it be static? isearch.c:36:5: warning: symbol 'saved_get_char' was not declared. Should it be static? isearch.c:37:5: warning: symbol 'eaten_char' was not declared. Should it be static? isearch.c:41:5: warning: symbol 'cmd_buff' was not declared. Should it be static? isearch.c:42:5: warning: symbol 'cmd_offset' was not declared. Should it be static? isearch.c:43:5: warning: symbol 'cmd_reexecute' was not declared. Should it be static? line.c:21:6: warning: symbol 'ykbuf' was not declared. Should it be static? line.c:22:5: warning: symbol 'ykboff' was not declared. Should it be static? lock.c:17:6: warning: symbol 'lname' was not declared. Should it be static? lock.c:18:5: warning: symbol 'numlocks' was not declared. Should it be static? vmsvt.c:521:6: warning: symbol 'hellovms' was not declared. Should it be static? vt52.c:181:6: warning: symbol 'vt52hello' was not declared. Should it be static? Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
43 lines
715 B
C
43 lines
715 B
C
/* EPATH.H
|
|
*
|
|
* This file contains certain info needed to locate the
|
|
* initialization (etc) files on a system dependent basis
|
|
*
|
|
* modified by Petri Kutvonen
|
|
*/
|
|
|
|
/* possible names and paths of help files under different OSs */
|
|
|
|
static char *pathname[] =
|
|
#if MSDOS
|
|
{
|
|
"emacs.rc",
|
|
"emacs.hlp",
|
|
"\\sys\\public\\",
|
|
"\\usr\\bin\\",
|
|
"\\bin\\",
|
|
"\\",
|
|
""
|
|
};
|
|
#endif
|
|
|
|
#if V7 | BSD | USG
|
|
{
|
|
".emacsrc", "emacs.hlp",
|
|
#if PKCODE
|
|
"/usr/global/lib/", "/usr/local/bin/", "/usr/local/lib/",
|
|
#endif
|
|
"/usr/local/", "/usr/lib/", ""};
|
|
#endif
|
|
|
|
#if VMS
|
|
{
|
|
"emacs.rc", "emacs.hlp", "",
|
|
#if PKCODE
|
|
"sys$login:", "emacs_dir:",
|
|
#endif
|
|
"sys$sysdevice:[vmstools]"};
|
|
#endif
|
|
|
|
#define NPNAMES (sizeof(pathname)/sizeof(char *))
|