aboutsummaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorDan Nicolaescu2008-07-10 15:26:15 +0000
committerDan Nicolaescu2008-07-10 15:26:15 +0000
commitc5e7567d3b4aa6caeebcd7e43171f3a84b1a3e8f (patch)
tree6e786d883a8a5d64a420bb707248daf4fa810835 /src/fileio.c
parent176fe5fc8db729697828350a5ba288a5477ff092 (diff)
downloademacs-c5e7567d3b4aa6caeebcd7e43171f3a84b1a3e8f.tar.gz
emacs-c5e7567d3b4aa6caeebcd7e43171f3a84b1a3e8f.zip
* src/fileio.c:
* src/sysdep.c * src/systty.h: * src/m/ibmrs6000.h: * src/m/iris4d.h: * src/s/aix4-2.h: * src/s/freebsd.h: * src/s/gnu-linux.h: * src/s/hpux10-20.h: * src/s/hpux11.h: * src/s/netbsd.h: * src/s/sol2-3.h: * src/s/sol2-4.h: * src/s/sol2.h: * src/s/usg5-4.h: * src/s/vms.h: Remove references to unused variables.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/fileio.c b/src/fileio.c
index abe77e2e9ef..2544bd50e40 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2987,26 +2987,6 @@ If STRING is nil or a null string, the logical name NAME is deleted. */)
2987} 2987}
2988#endif /* VMS */ 2988#endif /* VMS */
2989 2989
2990#ifdef HPUX_NET
2991
2992DEFUN ("sysnetunam", Fsysnetunam, Ssysnetunam, 2, 2, 0,
2993 doc: /* Open a network connection to PATH using LOGIN as the login string. */)
2994 (path, login)
2995 Lisp_Object path, login;
2996{
2997 int netresult;
2998
2999 CHECK_STRING (path);
3000 CHECK_STRING (login);
3001
3002 netresult = netunam (SDATA (path), SDATA (login));
3003
3004 if (netresult == -1)
3005 return Qnil;
3006 else
3007 return Qt;
3008}
3009#endif /* HPUX_NET */
3010 2990
3011DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p, 2991DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
3012 1, 1, 0, 2992 1, 1, 0,
@@ -6398,9 +6378,6 @@ When non-nil, the function `move-file-to-trash' will be used by
6398#ifdef VMS 6378#ifdef VMS
6399 defsubr (&Sdefine_logical_name); 6379 defsubr (&Sdefine_logical_name);
6400#endif /* VMS */ 6380#endif /* VMS */
6401#ifdef HPUX_NET
6402 defsubr (&Ssysnetunam);
6403#endif /* HPUX_NET */
6404 defsubr (&Sfile_name_absolute_p); 6381 defsubr (&Sfile_name_absolute_p);
6405 defsubr (&Sfile_exists_p); 6382 defsubr (&Sfile_exists_p);
6406 defsubr (&Sfile_executable_p); 6383 defsubr (&Sfile_executable_p);