home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / src / fileio.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  123KB  |  4,377 lines

  1. /* File IO for GNU Emacs.
  2.    Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #include <config.h>
  21.  
  22. #include <sys/types.h>
  23. #include <sys/stat.h>
  24.  
  25. #ifdef HAVE_UNISTD_H
  26. #include <unistd.h>
  27. #endif
  28.  
  29. #if !defined (S_ISLNK) && defined (S_IFLNK)
  30. #  define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  31. #endif
  32.  
  33. #if !defined (S_ISREG) && defined (S_IFREG)
  34. #  define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  35. #endif
  36.  
  37. #ifdef VMS
  38. #include "vms-pwd.h"
  39. #else
  40. #include <pwd.h>
  41. #endif
  42.  
  43. #ifdef MSDOS
  44. #include "msdos.h"
  45. #include <sys/param.h>
  46. #endif
  47.  
  48. #include <ctype.h>
  49.  
  50. #ifdef VMS
  51. #include "vmsdir.h"
  52. #include <perror.h>
  53. #include <stddef.h>
  54. #include <string.h>
  55. #endif
  56.  
  57. #include <errno.h>
  58.  
  59. #ifndef vax11c
  60. extern int errno;
  61. #endif
  62.  
  63. extern char *strerror ();
  64.  
  65. #ifdef APOLLO
  66. #include <sys/time.h>
  67. #endif
  68.  
  69. #ifndef USG
  70. #ifndef VMS
  71. #ifndef BSD4_1
  72. #define HAVE_FSYNC
  73. #endif
  74. #endif
  75. #endif
  76.  
  77. #include "lisp.h"
  78. #include "intervals.h"
  79. #include "buffer.h"
  80. #include "window.h"
  81.  
  82. #ifdef VMS
  83. #include <file.h>
  84. #include <rmsdef.h>
  85. #include <fab.h>
  86. #include <nam.h>
  87. #endif
  88.  
  89. #include "systime.h"
  90.  
  91. #ifdef HPUX
  92. #include <netio.h>
  93. #ifndef HPUX8
  94. #ifndef HPUX9
  95. #include <errnet.h>
  96. #endif
  97. #endif
  98. #endif
  99.  
  100. #ifndef O_WRONLY
  101. #define O_WRONLY 1
  102. #endif
  103.  
  104. #ifndef O_RDONLY
  105. #define O_RDONLY 0
  106. #endif
  107.  
  108. #define min(a, b) ((a) < (b) ? (a) : (b))
  109. #define max(a, b) ((a) > (b) ? (a) : (b))
  110.  
  111. /* Nonzero during writing of auto-save files */
  112. int auto_saving;
  113.  
  114. /* Set by auto_save_1 to mode of original file so Fwrite_region will create
  115.    a new file with the same mode as the original */
  116. int auto_save_mode_bits;
  117.  
  118. /* Alist of elements (REGEXP . HANDLER) for file names 
  119.    whose I/O is done with a special handler.  */
  120. Lisp_Object Vfile_name_handler_alist;
  121.  
  122. /* Functions to be called to process text properties in inserted file.  */
  123. Lisp_Object Vafter_insert_file_functions;
  124.  
  125. /* Functions to be called to create text property annotations for file.  */
  126. Lisp_Object Vwrite_region_annotate_functions;
  127.  
  128. /* During build_annotations, each time an annotation function is called,
  129.    this holds the annotations made by the previous functions.  */
  130. Lisp_Object Vwrite_region_annotations_so_far;
  131.  
  132. /* File name in which we write a list of all our auto save files.  */
  133. Lisp_Object Vauto_save_list_file_name;
  134.  
  135. /* Nonzero means, when reading a filename in the minibuffer,
  136.  start out by inserting the default directory into the minibuffer. */
  137. int insert_default_directory;
  138.  
  139. /* On VMS, nonzero means write new files with record format stmlf.
  140.    Zero means use var format.  */
  141. int vms_stmlf_recfm;
  142.  
  143. /* These variables describe handlers that have "already" had a chance
  144.    to handle the current operation.
  145.  
  146.    Vinhibit_file_name_handlers is a list of file name handlers.
  147.    Vinhibit_file_name_operation is the operation being handled.
  148.    If we try to handle that operation, we ignore those handlers.  */
  149.  
  150. static Lisp_Object Vinhibit_file_name_handlers;
  151. static Lisp_Object Vinhibit_file_name_operation;
  152.  
  153. Lisp_Object Qfile_error, Qfile_already_exists;
  154.  
  155. Lisp_Object Qfile_name_history;
  156.  
  157. Lisp_Object Qcar_less_than_car;
  158.  
  159. report_file_error (string, data)
  160.      char *string;
  161.      Lisp_Object data;
  162. {
  163.   Lisp_Object errstring;
  164.  
  165.   errstring = build_string (strerror (errno));
  166.  
  167.   /* System error messages are capitalized.  Downcase the initial
  168.      unless it is followed by a slash.  */
  169.   if (XSTRING (errstring)->data[1] != '/')
  170.     XSTRING (errstring)->data[0] = DOWNCASE (XSTRING (errstring)->data[0]);
  171.  
  172.   while (1)
  173.     Fsignal (Qfile_error,
  174.          Fcons (build_string (string), Fcons (errstring, data)));
  175. }
  176.  
  177. close_file_unwind (fd)
  178.      Lisp_Object fd;
  179. {
  180.   close (XFASTINT (fd));
  181. }
  182.  
  183. /* Restore point, having saved it as a marker.  */
  184.  
  185. restore_point_unwind (location)
  186.      Lisp_Object location; 
  187. {
  188.   SET_PT (marker_position (location));
  189.   Fset_marker (location, Qnil, Qnil);
  190. }
  191.  
  192. Lisp_Object Qexpand_file_name;
  193. Lisp_Object Qdirectory_file_name;
  194. Lisp_Object Qfile_name_directory;
  195. Lisp_Object Qfile_name_nondirectory;
  196. Lisp_Object Qunhandled_file_name_directory;
  197. Lisp_Object Qfile_name_as_directory;
  198. Lisp_Object Qcopy_file;
  199. Lisp_Object Qmake_directory_internal;
  200. Lisp_Object Qdelete_directory;
  201. Lisp_Object Qdelete_file;
  202. Lisp_Object Qrename_file;
  203. Lisp_Object Qadd_name_to_file;
  204. Lisp_Object Qmake_symbolic_link;
  205. Lisp_Object Qfile_exists_p;
  206. Lisp_Object Qfile_executable_p;
  207. Lisp_Object Qfile_readable_p;
  208. Lisp_Object Qfile_symlink_p;
  209. Lisp_Object Qfile_writable_p;
  210. Lisp_Object Qfile_directory_p;
  211. Lisp_Object Qfile_accessible_directory_p;
  212. Lisp_Object Qfile_modes;
  213. Lisp_Object Qset_file_modes;
  214. Lisp_Object Qfile_newer_than_file_p;
  215. Lisp_Object Qinsert_file_contents;
  216. Lisp_Object Qwrite_region;
  217. Lisp_Object Qverify_visited_file_modtime;
  218. Lisp_Object Qset_visited_file_modtime;
  219.  
  220. DEFUN ("find-file-name-handler", Ffind_file_name_handler, Sfind_file_name_handler, 2, 2, 0,
  221.   "Return FILENAME's handler function for OPERATION, if it has one.\n\
  222. Otherwise, return nil.\n\
  223. A file name is handled if one of the regular expressions in\n\
  224. `file-name-handler-alist' matches it.\n\n\
  225. If OPERATION equals `inhibit-file-name-operation', then we ignore\n\
  226. any handlers that are members of `inhibit-file-name-handlers',\n\
  227. but we still do run any other handlers.  This lets handlers\n\
  228. use the standard functions without calling themselves recursively.")
  229.   (filename, operation)
  230.     Lisp_Object filename, operation;
  231. {
  232.   /* This function must not munge the match data.  */
  233.   Lisp_Object chain, inhibited_handlers;
  234.  
  235.   CHECK_STRING (filename, 0);
  236.  
  237.   if (EQ (operation, Vinhibit_file_name_operation))
  238.     inhibited_handlers = Vinhibit_file_name_handlers;
  239.   else
  240.     inhibited_handlers = Qnil;
  241.  
  242.   for (chain = Vfile_name_handler_alist; XTYPE (chain) == Lisp_Cons;
  243.        chain = XCONS (chain)->cdr)
  244.     {
  245.       Lisp_Object elt;
  246.       elt = XCONS (chain)->car;
  247.       if (XTYPE (elt) == Lisp_Cons)
  248.     {
  249.       Lisp_Object string;
  250.       string = XCONS (elt)->car;
  251.       if (XTYPE (string) == Lisp_String
  252.           && fast_string_match (string, filename) >= 0)
  253.         {
  254.           Lisp_Object handler, tem;
  255.  
  256.           handler = XCONS (elt)->cdr;
  257.           tem = Fmemq (handler, inhibited_handlers);
  258.           if (NILP (tem))
  259.         return handler;
  260.         }
  261.     }
  262.  
  263.       QUIT;
  264.     }
  265.   return Qnil;
  266. }
  267.  
  268. DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
  269.   1, 1, 0,
  270.   "Return the directory component in file name NAME.\n\
  271. Return nil if NAME does not include a directory.\n\
  272. Otherwise return a directory spec.\n\
  273. Given a Unix syntax file name, returns a string ending in slash;\n\
  274. on VMS, perhaps instead a string ending in `:', `]' or `>'.")
  275.   (file)
  276.      Lisp_Object file;
  277. {
  278.   register unsigned char *beg;
  279.   register unsigned char *p;
  280.   Lisp_Object handler;
  281.  
  282.   CHECK_STRING (file, 0);
  283.  
  284.   /* If the file name has special constructs in it,
  285.      call the corresponding file handler.  */
  286.   handler = Ffind_file_name_handler (file, Qfile_name_directory);
  287.   if (!NILP (handler))
  288.     return call2 (handler, Qfile_name_directory, file);
  289.  
  290. #ifdef FILE_SYSTEM_CASE
  291.   file = FILE_SYSTEM_CASE (file);
  292. #endif
  293.   beg = XSTRING (file)->data;
  294.   p = beg + XSTRING (file)->size;
  295.  
  296.   while (p != beg && p[-1] != '/'
  297. #ifdef    AMIGA
  298.           && p[-1] != ':' /* CHFIXME: replace this call with AmigaOS function? */
  299. #endif    /* AMIGA */
  300. #ifdef VMS
  301.      && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
  302. #endif /* VMS */
  303. #ifdef MSDOS
  304.      && p[-1] != ':' && p[-1] != '\\'
  305. #endif
  306.      ) p--;
  307.  
  308.   if (p == beg)
  309.     return Qnil;
  310. #ifdef MSDOS
  311.   /* Expansion of "c:" to drive and default directory.  */
  312.   if (p == beg + 2 && beg[1] == ':')
  313.     {
  314.       int drive = (*beg) - 'a';
  315.       /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir.  */
  316.       unsigned char *res = alloca (MAXPATHLEN + 5);
  317.       if (getdefdir (drive + 1, res + 2)) 
  318.     {
  319.       res[0] = drive + 'a';
  320.       res[1] = ':';
  321.       if (res[strlen (res) - 1] != '/')
  322.         strcat (res, "/");
  323.       beg = res;
  324.       p = beg + strlen (beg);
  325.     }
  326.     }
  327. #endif
  328.   return make_string (beg, p - beg);
  329. }
  330.  
  331. DEFUN ("file-name-nondirectory", Ffile_name_nondirectory, Sfile_name_nondirectory,
  332.   1, 1, 0,
  333.   "Return file name NAME sans its directory.\n\
  334. For example, in a Unix-syntax file name,\n\
  335. this is everything after the last slash,\n\
  336. or the entire name if it contains no slash.")
  337.   (file)
  338.      Lisp_Object file;
  339. {
  340.   register unsigned char *beg, *p, *end;
  341.   Lisp_Object handler;
  342.  
  343.   CHECK_STRING (file, 0);
  344.  
  345.   /* If the file name has special constructs in it,
  346.      call the corresponding file handler.  */
  347.   handler = Ffind_file_name_handler (file, Qfile_name_nondirectory);
  348.   if (!NILP (handler))
  349.     return call2 (handler, Qfile_name_nondirectory, file);
  350.  
  351.   beg = XSTRING (file)->data;
  352.   end = p = beg + XSTRING (file)->size;
  353.  
  354.   while (p != beg && p[-1] != '/'
  355. #ifdef    AMIGA
  356.          && p[-1] != ':' /* CHFIXME: dos.library call, also check this function and above */
  357. #endif    /* AMIGA */
  358. #ifdef VMS
  359.      && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
  360. #endif /* VMS */
  361. #ifdef MSDOS
  362.      && p[-1] != ':' && p[-1] != '\\'
  363. #endif
  364.      ) p--;
  365.  
  366.   return make_string (p, end - p);
  367. }
  368.  
  369. DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory, Sunhandled_file_name_directory, 1, 1, 0,
  370.   "Return a directly usable directory name somehow associated with FILENAME.\n\
  371. A `directly usable' directory name is one that may be used without the\n\
  372. intervention of any file handler.\n\
  373. If FILENAME is a directly usable file itself, return\n\
  374. (file-name-directory FILENAME).\n\
  375. The `call-process' and `start-process' functions use this function to\n\
  376. get a current directory to run processes in.")
  377.   (filename)
  378.     Lisp_Object filename;
  379. {
  380.   Lisp_Object handler;
  381.  
  382.   /* If the file name has special constructs in it,
  383.      call the corresponding file handler.  */
  384.   handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
  385.   if (!NILP (handler))
  386.     return call2 (handler, Qunhandled_file_name_directory, filename);
  387.  
  388.   return Ffile_name_directory (filename);
  389. }
  390.  
  391.  
  392. char *
  393. file_name_as_directory (out, in)
  394.      char *out, *in;
  395. {
  396.   int size = strlen (in) - 1;
  397.  
  398.   strcpy (out, in);
  399.  
  400. #ifdef VMS
  401.   /* Is it already a directory string? */
  402.   if (in[size] == ':' || in[size] == ']' || in[size] == '>')
  403.     return out;
  404.   /* Is it a VMS directory file name?  If so, hack VMS syntax.  */
  405.   else if (! index (in, '/')
  406.        && ((size > 3 && ! strcmp (&in[size - 3], ".DIR"))
  407.            || (size > 3 && ! strcmp (&in[size - 3], ".dir"))
  408.            || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4)
  409.                 || ! strncmp (&in[size - 5], ".dir", 4))
  410.            && (in[size - 1] == '.' || in[size - 1] == ';')
  411.            && in[size] == '1')))
  412.     {
  413.       register char *p, *dot;
  414.       char brack;
  415.  
  416.       /* x.dir -> [.x]
  417.      dir:x.dir --> dir:[x]
  418.      dir:[x]y.dir --> dir:[x.y] */
  419.       p = in + size;
  420.       while (p != in && *p != ':' && *p != '>' && *p != ']') p--;
  421.       if (p != in)
  422.     {
  423.       strncpy (out, in, p - in);
  424.       out[p - in] = '\0';
  425.       if (*p == ':')
  426.         {
  427.           brack = ']';
  428.           strcat (out, ":[");
  429.         }
  430.       else
  431.         {
  432.           brack = *p;
  433.           strcat (out, ".");
  434.         }
  435.       p++;
  436.     }
  437.       else
  438.     {
  439.       brack = ']';
  440.       strcpy (out, "[.");
  441.     }
  442.       dot = index (p, '.');
  443.       if (dot)
  444.     {
  445.       /* blindly remove any extension */
  446.       size = strlen (out) + (dot - p);
  447.       strncat (out, p, dot - p);
  448.     }
  449.       else
  450.     {
  451.       strcat (out, p);
  452.       size = strlen (out);
  453.     }
  454.       out[size++] = brack;
  455.       out[size] = '\0';
  456.     }
  457. #else /* not VMS */
  458. #ifdef    AMIGA /* CHFIXME: check */
  459.   /* AmigaOS syntax, append slash if the last char isn't a ':' or '/' */
  460.   if (out[size] != '/' && out[size] != ':' && size != 0)
  461.     strcat (out, "/");
  462. #else    /* not AMIGA */
  463.   /* For Unix syntax, Append a slash if necessary */
  464. #ifdef MSDOS
  465.   if (out[size] != ':' && out[size] != '/' && out[size] != '\\')
  466. #else
  467.   if (out[size] != '/')
  468. #endif
  469.     strcat (out, "/");
  470. #endif /* not AMIGA */
  471. #endif /* not VMS */
  472.   return out;
  473. }
  474.  
  475. DEFUN ("file-name-as-directory", Ffile_name_as_directory,
  476.        Sfile_name_as_directory, 1, 1, 0,
  477.   "Return a string representing file FILENAME interpreted as a directory.\n\
  478. This operation exists because a directory is also a file, but its name as\n\
  479. a directory is different from its name as a file.\n\
  480. The result can be used as the value of `default-directory'\n\
  481. or passed as second argument to `expand-file-name'.\n\
  482. For a Unix-syntax file name, just appends a slash.\n\
  483. On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc.")
  484.   (file)
  485.      Lisp_Object file;
  486. {
  487.   char *buf;
  488.   Lisp_Object handler;
  489.  
  490.   CHECK_STRING (file, 0);
  491.   if (NILP (file))
  492.     return Qnil;
  493.  
  494.   /* If the file name has special constructs in it,
  495.      call the corresponding file handler.  */
  496.   handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
  497.   if (!NILP (handler))
  498.     return call2 (handler, Qfile_name_as_directory, file);
  499.  
  500.   buf = (char *) alloca (XSTRING (file)->size + 10);
  501.   return build_string (file_name_as_directory (buf, XSTRING (file)->data));
  502. }
  503.  
  504. /*
  505.  * Convert from directory name to filename.
  506.  * On VMS:
  507.  *       xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1
  508.  *       xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1
  509.  * On UNIX, it's simple: just make sure there is a terminating /
  510.  
  511.  * Value is nonzero if the string output is different from the input.
  512.  */
  513.  
  514. directory_file_name (src, dst)
  515.      char *src, *dst;
  516. {
  517.   long slen;
  518. #ifdef VMS
  519.   long rlen;
  520.   char * ptr, * rptr;
  521.   char bracket;
  522.   struct FAB fab = cc$rms_fab;
  523.   struct NAM nam = cc$rms_nam;
  524.   char esa[NAM$C_MAXRSS];
  525. #endif /* VMS */
  526.  
  527.   slen = strlen (src);
  528. #ifdef VMS
  529.   if (! index (src, '/')
  530.       && (src[slen - 1] == ']'
  531.       || src[slen - 1] == ':'
  532.       || src[slen - 1] == '>'))
  533.     {
  534.       /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */
  535.       fab.fab$l_fna = src;
  536.       fab.fab$b_fns = slen;
  537.       fab.fab$l_nam = &nam;
  538.       fab.fab$l_fop = FAB$M_NAM;
  539.  
  540.       nam.nam$l_esa = esa;
  541.       nam.nam$b_ess = sizeof esa;
  542.       nam.nam$b_nop |= NAM$M_SYNCHK;
  543.  
  544.       /* We call SYS$PARSE to handle such things as [--] for us. */
  545.       if (SYS$PARSE(&fab, 0, 0) == RMS$_NORMAL)
  546.     {
  547.       slen = nam.nam$b_esl;
  548.       if (esa[slen - 1] == ';' && esa[slen - 2] == '.')
  549.         slen -= 2;
  550.       esa[slen] = '\0';
  551.       src = esa;
  552.     }
  553.       if (src[slen - 1] != ']' && src[slen - 1] != '>')
  554.     {
  555.       /* what about when we have logical_name:???? */
  556.       if (src[slen - 1] == ':')
  557.         {            /* Xlate logical name and see what we get */
  558.           ptr = strcpy (dst, src); /* upper case for getenv */
  559.           while (*ptr)
  560.         {
  561.           if ('a' <= *ptr && *ptr <= 'z')
  562.             *ptr -= 040;
  563.           ptr++;
  564.         }
  565.           dst[slen - 1] = 0;    /* remove colon */
  566.           if (!(src = egetenv (dst)))
  567.         return 0;
  568.           /* should we jump to the beginning of this procedure?
  569.          Good points: allows us to use logical names that xlate
  570.          to Unix names,
  571.          Bad points: can be a problem if we just translated to a device
  572.          name...
  573.          For now, I'll punt and always expect VMS names, and hope for
  574.          the best! */
  575.           slen = strlen (src);
  576.           if (src[slen - 1] != ']' && src[slen - 1] != '>')
  577.         { /* no recursion here! */
  578.           strcpy (dst, src);
  579.           return 0;
  580.         }
  581.         }
  582.       else
  583.         {        /* not a directory spec */
  584.           strcpy (dst, src);
  585.           return 0;
  586.         }
  587.     }
  588.       bracket = src[slen - 1];
  589.  
  590.       /* If bracket is ']' or '>', bracket - 2 is the corresponding
  591.      opening bracket.  */
  592.       ptr = index (src, bracket - 2);
  593.       if (ptr == 0)
  594.     { /* no opening bracket */
  595.       strcpy (dst, src);
  596.       return 0;
  597.     }
  598.       if (!(rptr = rindex (src, '.')))
  599.     rptr = ptr;
  600.       slen = rptr - src;
  601.       strncpy (dst, src, slen);
  602.       dst[slen] = '\0';
  603.       if (*rptr == '.')
  604.     {
  605.       dst[slen++] = bracket;
  606.       dst[slen] = '\0';
  607.     }
  608.       else
  609.     {
  610.       /* If we have the top-level of a rooted directory (i.e. xx:[000000]),
  611.          then translate the device and recurse. */
  612.       if (dst[slen - 1] == ':'
  613.           && dst[slen - 2] != ':'    /* skip decnet nodes */
  614.           && strcmp(src + slen, "[000000]") == 0)
  615.         {
  616.           dst[slen - 1] = '\0';
  617.           if ((ptr = egetenv (dst))
  618.           && (rlen = strlen (ptr) - 1) > 0
  619.           && (ptr[rlen] == ']' || ptr[rlen] == '>')
  620.           && ptr[rlen - 1] == '.')
  621.         {
  622.           char * buf = (char *) alloca (strlen (ptr) + 1);
  623.           strcpy (buf, ptr);
  624.           buf[rlen - 1] = ']';
  625.           buf[rlen] = '\0';
  626.           return directory_file_name (buf, dst);
  627.         }
  628.           else
  629.         dst[slen - 1] = ':';
  630.         }
  631.       strcat (dst, "[000000]");
  632.       slen += 8;
  633.     }
  634.       rptr++;
  635.       rlen = strlen (rptr) - 1;
  636.       strncat (dst, rptr, rlen);
  637.       dst[slen + rlen] = '\0';
  638.       strcat (dst, ".DIR.1");
  639.       return 1;
  640.     }
  641. #endif /* VMS */
  642.   /* Process as Unix format: just remove any final slash.
  643.      But leave "/" unchanged; do not change it to "".  */
  644.   strcpy (dst, src);
  645.   if (slen > 1 
  646. #if defined(MSDOS) || defined(AMIGA)
  647.       && (dst[slen - 1] == '/' || dst[slen - 1] == '/')
  648.       && dst[slen - 2] != ':'
  649. #else
  650.       && dst[slen - 1] == '/'
  651. #endif
  652.       )
  653.     dst[slen - 1] = 0;
  654.   return 1;
  655. }
  656.  
  657. DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
  658.   1, 1, 0,
  659.   "Returns the file name of the directory named DIR.\n\
  660. This is the name of the file that holds the data for the directory DIR.\n\
  661. This operation exists because a directory is also a file, but its name as\n\
  662. a directory is different from its name as a file.\n\
  663. In Unix-syntax, this function just removes the final slash.\n\
  664. On VMS, given a VMS-syntax directory name such as \"[X.Y]\",\n\
  665. it returns a file name such as \"[X]Y.DIR.1\".")
  666.   (directory)
  667.      Lisp_Object directory;
  668. {
  669.   char *buf;
  670.   Lisp_Object handler;
  671.  
  672.   CHECK_STRING (directory, 0);
  673.  
  674.   if (NILP (directory))
  675.     return Qnil;
  676.  
  677.   /* If the file name has special constructs in it,
  678.      call the corresponding file handler.  */
  679.   handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
  680.   if (!NILP (handler))
  681.     return call2 (handler, Qdirectory_file_name, directory);
  682.  
  683. #ifdef VMS
  684.   /* 20 extra chars is insufficient for VMS, since we might perform a
  685.      logical name translation. an equivalence string can be up to 255
  686.      chars long, so grab that much extra space...  - sss */
  687.   buf = (char *) alloca (XSTRING (directory)->size + 20 + 255);
  688. #else
  689.   buf = (char *) alloca (XSTRING (directory)->size + 20);
  690. #endif
  691.   directory_file_name (XSTRING (directory)->data, buf);
  692.   return build_string (buf);
  693. }
  694.  
  695. DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
  696.   "Generate temporary file name (string) starting with PREFIX (a string).\n\
  697. The Emacs process number forms part of the result,\n\
  698. so there is no danger of generating a name being used by another process.")
  699.   (prefix)
  700.      Lisp_Object prefix;
  701. {
  702.   Lisp_Object val;
  703.   val = concat2 (prefix, build_string ("XXXXXX"));
  704.   mktemp (XSTRING (val)->data);
  705.   return val;
  706. }
  707.  
  708. DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
  709.   "Convert FILENAME to absolute, and canonicalize it.\n\
  710. Second arg DEFAULT is directory to start with if FILENAME is relative\n\
  711.  (does not start with slash); if DEFAULT is nil or missing,\n\
  712. the current buffer's value of default-directory is used.\n\
  713. Path components that are `.' are removed, and \n\
  714. path components followed by `..' are removed, along with the `..' itself;\n\
  715. note that these simplifications are done without checking the resulting\n\
  716. paths in the file system.\n\
  717. An initial `~/' expands to your home directory.\n\
  718. An initial `~USER/' expands to USER's home directory.\n\
  719. See also the function `substitute-in-file-name'.")
  720.      (name, defalt)
  721.      Lisp_Object name, defalt;
  722. {
  723. #ifdef AMIGA
  724.   unsigned char *nm, *tilde, *newdir, *colon, *t_pos, *target;
  725.  
  726.   CHECK_STRING (name, 0);
  727.  
  728.   nm = XSTRING (name)->data;
  729.   /* Find base directory */
  730.   if (NILP (defalt))
  731.       defalt = current_buffer->directory;
  732.   CHECK_STRING (defalt, 1);
  733.   newdir = XSTRING (defalt)->data;
  734.  
  735.   /* Concat newdir w/ nm and canonicalize */
  736.   /* newdir always contains at least the device name.
  737.      It is assumed canonical */
  738.   target = (unsigned char *)alloca(strlen(nm) + strlen(newdir) + 2);
  739.   file_name_as_directory (target, newdir);
  740.   t_pos = target + strlen(target);
  741.  
  742.   while (*nm)
  743.   {
  744.       unsigned char *comp_end = nm;
  745.       int comp_len;
  746.  
  747.       /* Find next component of path (everything upto the next /) */
  748.       do comp_end++; while (comp_end[0] && comp_end[-1] != '/' && comp_end[-1] != ':');
  749.       comp_len = comp_end - nm;
  750.  
  751.       if (comp_len == 1 && nm[0] == '/' ||
  752.       nm[0] == '.' && nm[1] == '.' &&
  753.       (comp_len == 2 || comp_len == 3 && nm[2] == '/'))
  754.       {
  755.       /* Previous directory */
  756.       if (t_pos > target && t_pos[-1] != ':')
  757.       {
  758.           t_pos--; /* Back up over / */
  759.           while (t_pos > target &&
  760.              t_pos[-1] != ':' && t_pos[-1] != '/') t_pos--;
  761.       }
  762.       }
  763.       else if (comp_len == 2 && nm[0] == '.' && nm[1] == '/' ||
  764.            comp_len == 1 && nm[0] == '.') ; /* Ignore . */
  765.       else if (nm[0] == ':') /* Just keep disk name */
  766.       {
  767.       char *new_pos;
  768.  
  769.       *t_pos = 0; /* Limit search for : */
  770.       t_pos = index(target, ':');
  771.       if (t_pos) t_pos++;
  772.       else t_pos = target;
  773.       }
  774.       else if (nm[0] == '~' || index(nm, ':'))
  775.       {
  776.       char *exp_name;
  777.  
  778.       if (nm[0] == '~')
  779.           if (nm[1] == '/' || nm[1] == 0) /* Home directory */
  780.           {
  781.           newdir = (unsigned char *) egetenv ("HOME");
  782.           if (!newdir) newdir = (unsigned char *) "s:";
  783.           }
  784.           else
  785.           {
  786.           /* Handle ~ followed by user name.  */
  787.           char lastc = nm[comp_len - 1];
  788.           int len = comp_len - 1;
  789.  
  790.           if (lastc == ':' || lastc == '/') len--;
  791.  
  792.           /* ~name becomes name: */
  793.           newdir = (unsigned char *) alloca (len + 2);
  794.           bcopy((char *) nm + 1, newdir, len);
  795.           newdir[len] = ':';
  796.           newdir[len + 1] = 0;
  797.           }
  798.       else /* we have name: */
  799.       {
  800.           newdir = (char *)alloca(comp_len + 1);
  801.           bcopy(nm, newdir, comp_len);
  802.           newdir[comp_len] = 0;
  803.       }
  804.       exp_name = (char *)alloca(1024);
  805.       if (expand_path(newdir, exp_name, 1024))
  806.       {
  807.           char *colon = strchr(exp_name, ':');
  808.  
  809.           /* Detect paths with multiple colons (eg from PATH:) and
  810.          leave them alone. They create confusion. */
  811.           if (!(colon && strchr(colon + 1, ':'))) newdir = exp_name;
  812.       }
  813.       target = (unsigned char *)alloca(strlen(nm) + strlen(newdir) + 2);
  814.       file_name_as_directory (target, newdir);
  815.       t_pos = target + strlen(target);
  816.       }
  817.       else /* Copy component */
  818.       {
  819.       bcopy(nm, t_pos, comp_len);
  820.        t_pos += comp_len;
  821.       }
  822.  
  823.       nm = comp_end;
  824.   }
  825.   return make_string (target, t_pos - target);
  826. #else /* not AMIGA */
  827.   unsigned char *nm;
  828.   
  829.   register unsigned char *newdir, *p, *o;
  830.   int tlen;
  831.   unsigned char *target;
  832.   struct passwd *pw;
  833. #ifdef VMS
  834.   unsigned char * colon = 0;
  835.   unsigned char * close = 0;
  836.   unsigned char * slash = 0;
  837.   unsigned char * brack = 0;
  838.   int lbrack = 0, rbrack = 0;
  839.   int dots = 0;
  840. #endif /* VMS */
  841. #ifdef MSDOS    /* Demacs 1.1.2 91/10/20 Manabu Higashida */
  842.   int drive = -1;
  843.   int relpath = 0;
  844.   unsigned char *tmp, *defdir;
  845. #endif
  846.   Lisp_Object handler;
  847.   
  848.   CHECK_STRING (name, 0);
  849.  
  850.   /* If the file name has special constructs in it,
  851.      call the corresponding file handler.  */
  852.   handler = Ffind_file_name_handler (name, Qexpand_file_name);
  853.   if (!NILP (handler))
  854.     return call3 (handler, Qexpand_file_name, name, defalt);
  855.  
  856.   /* Use the buffer's default-directory if DEFALT is omitted.  */
  857.   if (NILP (defalt))
  858.     defalt = current_buffer->directory;
  859.   CHECK_STRING (defalt, 1);
  860.  
  861.   /* Make sure DEFALT is properly expanded.
  862.      It would be better to do this down below where we actually use
  863.      defalt.  Unfortunately, calling Fexpand_file_name recursively
  864.      could invoke GC, and the strings might be relocated.  This would
  865.      be annoying because we have pointers into strings lying around
  866.      that would need adjusting, and people would add new pointers to
  867.      the code and forget to adjust them, resulting in intermittent bugs.
  868.      Putting this call here avoids all that crud.
  869.  
  870.      The EQ test avoids infinite recursion.  */
  871.   if (! NILP (defalt) && !EQ (defalt, name)
  872.       /* This saves time in a common case.  */
  873.       && XSTRING (defalt)->data[0] != '/')
  874.     {
  875.       struct gcpro gcpro1;
  876.  
  877.       GCPRO1 (name);
  878.       defalt = Fexpand_file_name (defalt, Qnil);
  879.       UNGCPRO;
  880.     }
  881.  
  882. #ifdef VMS
  883.   /* Filenames on VMS are always upper case.  */
  884.   name = Fupcase (name);
  885. #endif
  886. #ifdef FILE_SYSTEM_CASE
  887.   name = FILE_SYSTEM_CASE (name);
  888. #endif
  889.  
  890.   nm = XSTRING (name)->data;
  891.   
  892. #ifdef MSDOS
  893.   /* First map all backslashes to slashes.  */
  894.   dostounix_filename (nm = strcpy (alloca (strlen (nm) + 1), nm));
  895.  
  896.   /* Now strip drive name. */
  897.   {
  898.     unsigned char *colon = rindex (nm, ':');
  899.     if (colon)
  900.       if (nm == colon)
  901.     nm++;
  902.       else
  903.     {
  904.       drive = tolower (colon[-1]) - 'a';
  905.       nm = colon + 1;
  906.       if (*nm != '/')
  907.         {
  908.           defdir = alloca (MAXPATHLEN + 1);
  909.           relpath = getdefdir (drive + 1, defdir);
  910.         }
  911.     }    
  912.   }
  913. #endif
  914.  
  915.   /* If nm is absolute, flush ...// and detect /./ and /../.
  916.      If no /./ or /../ we can return right away. */
  917.   if (
  918.       nm[0] == '/'
  919. #ifdef VMS
  920.       || index (nm, ':')
  921. #endif /* VMS */
  922.       )
  923.     {
  924.       /* If it turns out that the filename we want to return is just a
  925.      suffix of FILENAME, we don't need to go through and edit
  926.      things; we just need to construct a new string using data
  927.      starting at the middle of FILENAME.  If we set lose to a
  928.      non-zero value, that means we've discovered that we can't do
  929.      that cool trick.  */
  930.       int lose = 0;
  931.  
  932.       p = nm;
  933.       while (*p)
  934.     {
  935.       /* Since we know the path is absolute, we can assume that each
  936.          element starts with a "/".  */
  937.  
  938.       /* "//" anywhere isn't necessarily hairy; we just start afresh
  939.          with the second slash.  */
  940.       if (p[0] == '/' && p[1] == '/'
  941. #ifdef APOLLO
  942.           /* // at start of filename is meaningful on Apollo system */
  943.           && nm != p
  944. #endif /* APOLLO */
  945.           )
  946.         nm = p + 1;
  947.  
  948.       /* "~" is hairy as the start of any path element.  */
  949.       if (p[0] == '/' && p[1] == '~')
  950.         nm = p + 1, lose = 1;
  951.  
  952.       /* "." and ".." are hairy.  */
  953.       if (p[0] == '/'
  954.           && p[1] == '.'
  955.           && (p[2] == '/'
  956.           || p[2] == 0
  957.           || (p[2] == '.' && (p[3] == '/'
  958.                       || p[3] == 0))))
  959.         lose = 1;
  960. #ifdef VMS
  961.       if (p[0] == '\\')
  962.         lose = 1;
  963.       if (p[0] == '/') {
  964.         /* if dev:[dir]/, move nm to / */
  965.         if (!slash && p > nm && (brack || colon)) {
  966.           nm = (brack ? brack + 1 : colon + 1);
  967.           lbrack = rbrack = 0;
  968.           brack = 0;
  969.           colon = 0;
  970.         }
  971.         slash = p;
  972.       }
  973.       if (p[0] == '-')
  974. #ifndef VMS4_4
  975.         /* VMS pre V4.4,convert '-'s in filenames. */
  976.         if (lbrack == rbrack)
  977.           {
  978.         if (dots < 2)    /* this is to allow negative version numbers */
  979.           p[0] = '_';
  980.           }
  981.         else
  982. #endif /* VMS4_4 */
  983.           if (lbrack > rbrack &&
  984.           ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') &&
  985.            (p[1] == '.' || p[1] == ']' || p[1] == '>')))
  986.         lose = 1;
  987. #ifndef VMS4_4
  988.           else
  989.         p[0] = '_';
  990. #endif /* VMS4_4 */
  991.       /* count open brackets, reset close bracket pointer */
  992.       if (p[0] == '[' || p[0] == '<')
  993.         lbrack++, brack = 0;
  994.       /* count close brackets, set close bracket pointer */
  995.       if (p[0] == ']' || p[0] == '>')
  996.         rbrack++, brack = p;
  997.       /* detect ][ or >< */
  998.       if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<'))
  999.         lose = 1;
  1000.       if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~')
  1001.         nm = p + 1, lose = 1;
  1002.       if (p[0] == ':' && (colon || slash))
  1003.         /* if dev1:[dir]dev2:, move nm to dev2: */
  1004.         if (brack)
  1005.           {
  1006.         nm = brack + 1;
  1007.         brack = 0;
  1008.           }
  1009.         /* if /pathname/dev:, move nm to dev: */
  1010.         else if (slash)
  1011.           nm = slash + 1;
  1012.         /* if node::dev:, move colon following dev */
  1013.         else if (colon && colon[-1] == ':')
  1014.           colon = p;
  1015.         /* if dev1:dev2:, move nm to dev2: */
  1016.         else if (colon && colon[-1] != ':')
  1017.           {
  1018.         nm = colon + 1;
  1019.         colon = 0;
  1020.           }
  1021.       if (p[0] == ':' && !colon)
  1022.         {
  1023.           if (p[1] == ':')
  1024.         p++;
  1025.           colon = p;
  1026.         }
  1027.       if (lbrack == rbrack)
  1028.         if (p[0] == ';')
  1029.           dots = 2;
  1030.         else if (p[0] == '.')
  1031.           dots++;
  1032. #endif /* VMS */
  1033.       p++;
  1034.     }
  1035.       if (!lose)
  1036.     {
  1037. #ifdef VMS
  1038.       if (index (nm, '/'))
  1039.         return build_string (sys_translate_unix (nm));
  1040. #endif /* VMS */
  1041. #ifndef MSDOS
  1042.       if (nm == XSTRING (name)->data)
  1043.         return name;
  1044.       return build_string (nm);
  1045. #endif
  1046.     }
  1047.     }
  1048.  
  1049.   /* Now determine directory to start with and put it in newdir */
  1050.  
  1051.   newdir = 0;
  1052.  
  1053.   if (nm[0] == '~')        /* prefix ~ */
  1054.     {
  1055.       if (nm[1] == '/'
  1056. #ifdef VMS
  1057.       || nm[1] == ':'
  1058. #endif                /* VMS */
  1059.       || nm[1] == 0)    /* ~ by itself */
  1060.     {
  1061.       if (!(newdir = (unsigned char *) egetenv ("HOME")))
  1062.         newdir = (unsigned char *) "";
  1063. #ifdef MSDOS
  1064.       dostounix_filename (newdir);
  1065. #endif
  1066.       nm++;
  1067. #ifdef VMS
  1068.       nm++;            /* Don't leave the slash in nm.  */
  1069. #endif                /* VMS */
  1070.     }
  1071.       else            /* ~user/filename */
  1072.     {
  1073.       for (p = nm; *p && (*p != '/'
  1074. #ifdef VMS
  1075.                   && *p != ':'
  1076. #endif                /* VMS */
  1077.                   ); p++);
  1078.       o = (unsigned char *) alloca (p - nm + 1);
  1079.       bcopy ((char *) nm, o, p - nm);
  1080.       o [p - nm] = 0;
  1081.  
  1082.       pw = (struct passwd *) getpwnam (o + 1);
  1083.       if (pw)
  1084.         {
  1085.           newdir = (unsigned char *) pw -> pw_dir;
  1086. #ifdef VMS
  1087.           nm = p + 1;    /* skip the terminator */
  1088. #else
  1089.           nm = p;
  1090. #endif                /* VMS */
  1091.         }
  1092.  
  1093.       /* If we don't find a user of that name, leave the name
  1094.          unchanged; don't move nm forward to p.  */
  1095.     }
  1096.     }
  1097.  
  1098.   if (nm[0] != '/'
  1099. #ifdef VMS
  1100.       && !index (nm, ':')
  1101. #endif /* not VMS */
  1102. #ifdef MSDOS
  1103.       && drive == -1
  1104. #endif
  1105.       && !newdir)
  1106.     {
  1107.       newdir = XSTRING (defalt)->data;
  1108.     }
  1109.  
  1110. #ifdef MSDOS
  1111.   if (newdir == 0 && relpath)
  1112.     newdir = defdir; 
  1113. #endif
  1114.   if (newdir != 0)
  1115.     {
  1116.       /* Get rid of any slash at the end of newdir.  */
  1117.       int length = strlen (newdir);
  1118.       /* Adding `length > 1 &&' makes ~ expand into / when homedir
  1119.      is the root dir.  People disagree about whether that is right.
  1120.      Anyway, we can't take the risk of this change now.  */
  1121. #ifdef MSDOS
  1122.       if (newdir[1] != ':' && length > 1)
  1123. #endif
  1124.       if (newdir[length - 1] == '/')
  1125.     {
  1126.       unsigned char *temp = (unsigned char *) alloca (length);
  1127.       bcopy (newdir, temp, length - 1);
  1128.       temp[length - 1] = 0;
  1129.       newdir = temp;
  1130.     }
  1131.       tlen = length + 1;
  1132.     }
  1133.   else
  1134.     tlen = 0;
  1135.  
  1136.   /* Now concatenate the directory and name to new space in the stack frame */
  1137.   tlen += strlen (nm) + 1;
  1138. #ifdef MSDOS
  1139.   /* Add reserved space for drive name.  */
  1140.   target = (unsigned char *) alloca (tlen + 2) + 2;
  1141. #else
  1142.   target = (unsigned char *) alloca (tlen);
  1143. #endif
  1144.   *target = 0;
  1145.  
  1146.   if (newdir)
  1147.     {
  1148. #ifndef VMS
  1149.       if (nm[0] == 0 || nm[0] == '/')
  1150.     strcpy (target, newdir);
  1151.       else
  1152. #endif
  1153.     file_name_as_directory (target, newdir);
  1154.     }
  1155.  
  1156.   strcat (target, nm);
  1157. #ifdef VMS
  1158.   if (index (target, '/'))
  1159.     strcpy (target, sys_translate_unix (target));
  1160. #endif /* VMS */
  1161.  
  1162.   /* Now canonicalize by removing /. and /foo/.. if they appear.  */
  1163.  
  1164.   p = target;
  1165.   o = target;
  1166.  
  1167.   while (*p)
  1168.     {
  1169. #ifdef VMS
  1170.       if (*p != ']' && *p != '>' && *p != '-')
  1171.     {
  1172.       if (*p == '\\')
  1173.         p++;
  1174.       *o++ = *p++;
  1175.     }
  1176.       else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2)
  1177.     /* brackets are offset from each other by 2 */
  1178.     {
  1179.       p += 2;
  1180.       if (*p != '.' && *p != '-' && o[-1] != '.')
  1181.         /* convert [foo][bar] to [bar] */
  1182.         while (o[-1] != '[' && o[-1] != '<')
  1183.           o--;
  1184.       else if (*p == '-' && *o != '.')
  1185.         *--p = '.';
  1186.     }
  1187.       else if (p[0] == '-' && o[-1] == '.' &&
  1188.            (p[1] == '.' || p[1] == ']' || p[1] == '>'))
  1189.     /* flush .foo.- ; leave - if stopped by '[' or '<' */
  1190.     {
  1191.       do
  1192.         o--;
  1193.       while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<');
  1194.       if (p[1] == '.')    /* foo.-.bar ==> bar*/
  1195.         p += 2;
  1196.       else if (o[-1] == '.') /* '.foo.-]' ==> ']' */
  1197.         p++, o--;
  1198.       /* else [foo.-] ==> [-] */
  1199.     }
  1200.       else
  1201.     {
  1202. #ifndef VMS4_4
  1203.       if (*p == '-' &&
  1204.           o[-1] != '[' && o[-1] != '<' && o[-1] != '.' &&
  1205.           p[1] != ']' && p[1] != '>' && p[1] != '.')
  1206.         *p = '_';
  1207. #endif /* VMS4_4 */
  1208.       *o++ = *p++;
  1209.     }
  1210. #else /* not VMS */
  1211.       if (*p != '/')
  1212.      {
  1213.       *o++ = *p++;
  1214.     }
  1215.       else if (!strncmp (p, "//", 2)
  1216. #ifdef APOLLO
  1217.            /* // at start of filename is meaningful in Apollo system */
  1218.            && o != target
  1219. #endif /* APOLLO */
  1220.            )
  1221.     {
  1222.       o = target;
  1223.       p++;
  1224.     }
  1225.       else if (p[0] == '/'
  1226.            && p[1] == '.'
  1227.            && (p[2] == '/'
  1228.            || p[2] == 0))
  1229.     {
  1230.       /* If "/." is the entire filename, keep the "/".  Otherwise,
  1231.          just delete the whole "/.".  */
  1232.       if (o == target && p[2] == '\0')
  1233.         *o++ = *p;
  1234.       p += 2;
  1235.     }
  1236.       else if (!strncmp (p, "/..", 3)
  1237.            /* `/../' is the "superroot" on certain file systems.  */
  1238.            && o != target
  1239.            && (p[3] == '/' || p[3] == 0))
  1240.     {
  1241.       while (o != target && *--o != '/')
  1242.         ;
  1243. #ifdef APOLLO
  1244.       if (o == target + 1 && o[-1] == '/' && o[0] == '/')
  1245.         ++o;
  1246.       else
  1247. #endif /* APOLLO */
  1248.       if (o == target && *o == '/')
  1249.         ++o;
  1250.       p += 3;
  1251.     }
  1252.       else
  1253.      {
  1254.       *o++ = *p++;
  1255.     }
  1256. #endif /* not VMS */
  1257.     }
  1258.  
  1259. #ifdef MSDOS
  1260.   /* at last, set drive name. */
  1261.   if (target[1] != ':')
  1262.     {
  1263.       target -= 2;
  1264.       target[0] = (drive < 0 ? getdisk () : drive) + 'a';
  1265.       target[1] = ':';
  1266.     }
  1267. #endif
  1268.  
  1269.   return make_string (target, o - target);
  1270. #endif /* not AMIGA */
  1271. }
  1272. #if 0
  1273. /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'.
  1274. DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
  1275.   "Convert FILENAME to absolute, and canonicalize it.\n\
  1276. Second arg DEFAULT is directory to start with if FILENAME is relative\n\
  1277.  (does not start with slash); if DEFAULT is nil or missing,\n\
  1278. the current buffer's value of default-directory is used.\n\
  1279. Filenames containing `.' or `..' as components are simplified;\n\
  1280. initial `~/' expands to your home directory.\n\
  1281. See also the function `substitute-in-file-name'.")
  1282.      (name, defalt)
  1283.      Lisp_Object name, defalt;
  1284. {
  1285.   unsigned char *nm;
  1286.   
  1287.   register unsigned char *newdir, *p, *o;
  1288.   int tlen;
  1289.   unsigned char *target;
  1290.   struct passwd *pw;
  1291.   int lose;
  1292. #ifdef VMS
  1293.   unsigned char * colon = 0;
  1294.   unsigned char * close = 0;
  1295.   unsigned char * slash = 0;
  1296.   unsigned char * brack = 0;
  1297.   int lbrack = 0, rbrack = 0;
  1298.   int dots = 0;
  1299. #endif /* VMS */
  1300.   
  1301.   CHECK_STRING (name, 0);
  1302.  
  1303. #ifdef VMS
  1304.   /* Filenames on VMS are always upper case.  */
  1305.   name = Fupcase (name);
  1306. #endif
  1307.  
  1308.   nm = XSTRING (name)->data;
  1309.   
  1310.   /* If nm is absolute, flush ...// and detect /./ and /../.
  1311.      If no /./ or /../ we can return right away. */
  1312.   if (
  1313.       nm[0] == '/'
  1314. #ifdef VMS
  1315.       || index (nm, ':')
  1316. #endif /* VMS */
  1317.       )
  1318.     {
  1319.       p = nm;
  1320.       lose = 0;
  1321.       while (*p)
  1322.     {
  1323.       if (p[0] == '/' && p[1] == '/'
  1324. #ifdef APOLLO
  1325.           /* // at start of filename is meaningful on Apollo system */
  1326.           && nm != p
  1327. #endif /* APOLLO */
  1328.           )
  1329.         nm = p + 1;
  1330.       if (p[0] == '/' && p[1] == '~')
  1331.         nm = p + 1, lose = 1;
  1332.       if (p[0] == '/' && p[1] == '.'
  1333.           && (p[2] == '/' || p[2] == 0
  1334.           || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
  1335.         lose = 1;
  1336. #ifdef VMS
  1337.       if (p[0] == '\\')
  1338.         lose = 1;
  1339.       if (p[0] == '/') {
  1340.         /* if dev:[dir]/, move nm to / */
  1341.         if (!slash && p > nm && (brack || colon)) {
  1342.           nm = (brack ? brack + 1 : colon + 1);
  1343.           lbrack = rbrack = 0;
  1344.           brack = 0;
  1345.           colon = 0;
  1346.         }
  1347.         slash = p;
  1348.       }
  1349.       if (p[0] == '-')
  1350. #ifndef VMS4_4
  1351.         /* VMS pre V4.4,convert '-'s in filenames. */
  1352.         if (lbrack == rbrack)
  1353.           {
  1354.         if (dots < 2)    /* this is to allow negative version numbers */
  1355.           p[0] = '_';
  1356.           }
  1357.         else
  1358. #endif /* VMS4_4 */
  1359.           if (lbrack > rbrack &&
  1360.           ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') &&
  1361.            (p[1] == '.' || p[1] == ']' || p[1] == '>')))
  1362.         lose = 1;
  1363. #ifndef VMS4_4
  1364.           else
  1365.         p[0] = '_';
  1366. #endif /* VMS4_4 */
  1367.       /* count open brackets, reset close bracket pointer */
  1368.       if (p[0] == '[' || p[0] == '<')
  1369.         lbrack++, brack = 0;
  1370.       /* count close brackets, set close bracket pointer */
  1371.       if (p[0] == ']' || p[0] == '>')
  1372.         rbrack++, brack = p;
  1373.       /* detect ][ or >< */
  1374.       if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<'))
  1375.         lose = 1;
  1376.       if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~')
  1377.         nm = p + 1, lose = 1;
  1378.       if (p[0] == ':' && (colon || slash))
  1379.         /* if dev1:[dir]dev2:, move nm to dev2: */
  1380.         if (brack)
  1381.           {
  1382.         nm = brack + 1;
  1383.         brack = 0;
  1384.           }
  1385.         /* if /pathname/dev:, move nm to dev: */
  1386.         else if (slash)
  1387.           nm = slash + 1;
  1388.         /* if node::dev:, move colon following dev */
  1389.         else if (colon && colon[-1] == ':')
  1390.           colon = p;
  1391.         /* if dev1:dev2:, move nm to dev2: */
  1392.         else if (colon && colon[-1] != ':')
  1393.           {
  1394.         nm = colon + 1;
  1395.         colon = 0;
  1396.           }
  1397.       if (p[0] == ':' && !colon)
  1398.         {
  1399.           if (p[1] == ':')
  1400.         p++;
  1401.           colon = p;
  1402.         }
  1403.       if (lbrack == rbrack)
  1404.         if (p[0] == ';')
  1405.           dots = 2;
  1406.         else if (p[0] == '.')
  1407.           dots++;
  1408. #endif /* VMS */
  1409.       p++;
  1410.     }
  1411.       if (!lose)
  1412.     {
  1413. #ifdef VMS
  1414.       if (index (nm, '/'))
  1415.         return build_string (sys_translate_unix (nm));
  1416. #endif /* VMS */
  1417.       if (nm == XSTRING (name)->data)
  1418.         return name;
  1419.       return build_string (nm);
  1420.     }
  1421.     }
  1422.  
  1423.   /* Now determine directory to start with and put it in NEWDIR */
  1424.  
  1425.   newdir = 0;
  1426.  
  1427.   if (nm[0] == '~')        /* prefix ~ */
  1428.     if (nm[1] == '/'
  1429. #ifdef VMS
  1430.     || nm[1] == ':'
  1431. #endif /* VMS */
  1432.     || nm[1] == 0)/* ~/filename */
  1433.       {
  1434.     if (!(newdir = (unsigned char *) egetenv ("HOME")))
  1435.       newdir = (unsigned char *) "";
  1436.     nm++;
  1437. #ifdef VMS
  1438.     nm++;            /* Don't leave the slash in nm.  */
  1439. #endif /* VMS */
  1440.       }
  1441.     else  /* ~user/filename */
  1442.       {
  1443.     /* Get past ~ to user */
  1444.     unsigned char *user = nm + 1;
  1445.     /* Find end of name. */
  1446.     unsigned char *ptr = (unsigned char *) index (user, '/');
  1447.     int len = ptr ? ptr - user : strlen (user);
  1448. #ifdef VMS
  1449.     unsigned char *ptr1 = index (user, ':');
  1450.     if (ptr1 != 0 && ptr1 - user < len)
  1451.       len = ptr1 - user;
  1452. #endif                /* VMS */
  1453.     /* Copy the user name into temp storage. */
  1454.     o = (unsigned char *) alloca (len + 1);
  1455.     bcopy ((char *) user, o, len);
  1456.     o[len] = 0;
  1457.  
  1458.     /* Look up the user name. */
  1459.     pw = (struct passwd *) getpwnam (o + 1);
  1460.     if (!pw)
  1461.       error ("\"%s\" isn't a registered user", o + 1);
  1462.  
  1463.     newdir = (unsigned char *) pw->pw_dir;
  1464.  
  1465.     /* Discard the user name from NM.  */
  1466.     nm += len;
  1467.       }
  1468.  
  1469.   if (nm[0] != '/'
  1470. #ifdef VMS
  1471.       && !index (nm, ':')
  1472. #endif /* not VMS */
  1473.       && !newdir)
  1474.     {
  1475.       if (NILP (defalt))
  1476.     defalt = current_buffer->directory;
  1477.       CHECK_STRING (defalt, 1);
  1478.       newdir = XSTRING (defalt)->data;
  1479.     }
  1480.  
  1481.   /* Now concatenate the directory and name to new space in the stack frame */
  1482.  
  1483.   tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1;
  1484.   target = (unsigned char *) alloca (tlen);
  1485.   *target = 0;
  1486.  
  1487.   if (newdir)
  1488.     {
  1489. #ifndef VMS
  1490.       if (nm[0] == 0 || nm[0] == '/')
  1491.     strcpy (target, newdir);
  1492.       else
  1493. #endif
  1494.       file_name_as_directory (target, newdir);
  1495.     }
  1496.  
  1497.   strcat (target, nm);
  1498. #ifdef VMS
  1499.   if (index (target, '/'))
  1500.     strcpy (target, sys_translate_unix (target));
  1501. #endif /* VMS */
  1502.  
  1503.   /* Now canonicalize by removing /. and /foo/.. if they appear */
  1504.  
  1505.   p = target;
  1506.   o = target;
  1507.  
  1508.   while (*p)
  1509.     {
  1510. #ifdef VMS
  1511.       if (*p != ']' && *p != '>' && *p != '-')
  1512.     {
  1513.       if (*p == '\\')
  1514.         p++;
  1515.       *o++ = *p++;
  1516.     }
  1517.       else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2)
  1518.     /* brackets are offset from each other by 2 */
  1519.     {
  1520.       p += 2;
  1521.       if (*p != '.' && *p != '-' && o[-1] != '.')
  1522.         /* convert [foo][bar] to [bar] */
  1523.         while (o[-1] != '[' && o[-1] != '<')
  1524.           o--;
  1525.       else if (*p == '-' && *o != '.')
  1526.         *--p = '.';
  1527.     }
  1528.       else if (p[0] == '-' && o[-1] == '.' &&
  1529.            (p[1] == '.' || p[1] == ']' || p[1] == '>'))
  1530.     /* flush .foo.- ; leave - if stopped by '[' or '<' */
  1531.     {
  1532.       do
  1533.         o--;
  1534.       while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<');
  1535.       if (p[1] == '.')    /* foo.-.bar ==> bar*/
  1536.         p += 2;
  1537.       else if (o[-1] == '.') /* '.foo.-]' ==> ']' */
  1538.         p++, o--;
  1539.       /* else [foo.-] ==> [-] */
  1540.     }
  1541.       else
  1542.     {
  1543. #ifndef VMS4_4
  1544.       if (*p == '-' &&
  1545.           o[-1] != '[' && o[-1] != '<' && o[-1] != '.' &&
  1546.           p[1] != ']' && p[1] != '>' && p[1] != '.')
  1547.         *p = '_';
  1548. #endif /* VMS4_4 */
  1549.       *o++ = *p++;
  1550.     }
  1551. #else /* not VMS */
  1552.       if (*p != '/')
  1553.      {
  1554.       *o++ = *p++;
  1555.     }
  1556.       else if (!strncmp (p, "//", 2)
  1557. #ifdef APOLLO
  1558.            /* // at start of filename is meaningful in Apollo system */
  1559.            && o != target
  1560. #endif /* APOLLO */
  1561.            )
  1562.     {
  1563.       o = target;
  1564.       p++;
  1565.     }
  1566.       else if (p[0] == '/' && p[1] == '.' &&
  1567.            (p[2] == '/' || p[2] == 0))
  1568.     p += 2;
  1569.       else if (!strncmp (p, "/..", 3)
  1570.            /* `/../' is the "superroot" on certain file systems.  */
  1571.            && o != target
  1572.            && (p[3] == '/' || p[3] == 0))
  1573.     {
  1574.       while (o != target && *--o != '/')
  1575.         ;
  1576. #ifdef APOLLO
  1577.       if (o == target + 1 && o[-1] == '/' && o[0] == '/')
  1578.         ++o;
  1579.       else
  1580. #endif /* APOLLO */
  1581.       if (o == target && *o == '/')
  1582.         ++o;
  1583.       p += 3;
  1584.     }
  1585.       else
  1586.      {
  1587.       *o++ = *p++;
  1588.     }
  1589. #endif /* not VMS */
  1590.     }
  1591.  
  1592.   return make_string (target, o - target);
  1593. }
  1594. #endif
  1595.  
  1596. DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
  1597.   Ssubstitute_in_file_name, 1, 1, 0,
  1598.   "Substitute environment variables referred to in FILENAME.\n\
  1599. `$FOO' where FOO is an environment variable name means to substitute\n\
  1600. the value of that variable.  The variable name should be terminated\n\
  1601. with a character not a letter, digit or underscore; otherwise, enclose\n\
  1602. the entire variable name in braces.\n\
  1603. If `/~' appears, all of FILENAME through that `/' is discarded.\n\n\
  1604. On VMS, `$' substitution is not done; this function does little and only\n\
  1605. duplicates what `expand-file-name' does.")
  1606.   (string)
  1607.      Lisp_Object string;
  1608. {
  1609.   unsigned char *nm;
  1610.  
  1611.   register unsigned char *s, *p, *o, *x, *endp;
  1612.   unsigned char *target;
  1613.   int total = 0;
  1614.   int substituted = 0;
  1615.   unsigned char *xnm;
  1616.  
  1617.   CHECK_STRING (string, 0);
  1618.  
  1619.   nm = XSTRING (string)->data;
  1620. #ifdef MSDOS
  1621.   dostounix_filename (nm = strcpy (alloca (strlen (nm) + 1), nm));
  1622.   substituted = !strcmp (nm, XSTRING (string)->data);
  1623. #endif
  1624.   endp = nm + XSTRING (string)->size;
  1625.  
  1626.   /* If /~ or // appears, discard everything through first slash. */
  1627.  
  1628.   for (p = nm; p != endp; p++)
  1629.     {
  1630. #ifdef AMIGA /* CHFIXME: check */
  1631.       if (p[0] == '~' && p != nm && p[-1] == '/')
  1632.     {
  1633.         nm = p;
  1634.         substituted = 1;
  1635.     }
  1636.       else if (p[0] == ':')
  1637.     {
  1638.           char *p2 = p;
  1639.       while (p2 > nm && p2[-1] != ':' && p2[-1] != '/') p2--;
  1640.       if (p2 != nm)
  1641.         {
  1642.           nm = p2;
  1643.           substituted = 1;
  1644.         }
  1645.     }
  1646. #else /* not AMIGA */
  1647.       if ((p[0] == '~' ||
  1648. #ifdef APOLLO
  1649.        /* // at start of file name is meaningful in Apollo system */
  1650.        (p[0] == '/' && p - 1 != nm)
  1651. #else /* not APOLLO */
  1652.        p[0] == '/'
  1653. #endif /* not APOLLO */
  1654.        )
  1655.       && p != nm &&
  1656. #ifdef VMS
  1657.       (p[-1] == ':' || p[-1] == ']' || p[-1] == '>' ||
  1658. #endif /* VMS */
  1659.       p[-1] == '/')
  1660. #ifdef VMS
  1661.       )
  1662. #endif /* VMS */
  1663.     {
  1664.       nm = p;
  1665.       substituted = 1;
  1666.     }
  1667. #ifdef MSDOS
  1668.       if (p[0] && p[1] == ':')
  1669.     {
  1670.       nm = p;
  1671.       substituted = 1;
  1672.     }
  1673. #endif /* MSDOS */
  1674. #endif /* not AMIGA */
  1675.     }
  1676.  
  1677. #ifdef VMS
  1678.   return build_string (nm);
  1679. #else
  1680.  
  1681.   /* See if any variables are substituted into the string
  1682.      and find the total length of their values in `total' */
  1683.  
  1684.   for (p = nm; p != endp;)
  1685.     if (*p != '$')
  1686.       p++;
  1687.     else
  1688.       {
  1689.     p++;
  1690.     if (p == endp)
  1691.       goto badsubst;
  1692.     else if (*p == '$')
  1693.       {
  1694.         /* "$$" means a single "$" */
  1695.         p++;
  1696.         total -= 1;
  1697.         substituted = 1;
  1698.         continue;
  1699.       }
  1700.     else if (*p == '{')
  1701.       {
  1702.         o = ++p;
  1703.         while (p != endp && *p != '}') p++;
  1704.         if (*p != '}') goto missingclose;
  1705.         s = p;
  1706.       }
  1707.     else
  1708.       {
  1709.         o = p;
  1710.         while (p != endp && (isalnum (*p) || *p == '_')) p++;
  1711.         s = p;
  1712.       }
  1713.  
  1714.     /* Copy out the variable name */
  1715.     target = (unsigned char *) alloca (s - o + 1);
  1716.     strncpy (target, o, s - o);
  1717.     target[s - o] = 0;
  1718. #ifdef MSDOS
  1719.     strupr (target); /* $home == $HOME etc.  */
  1720. #endif
  1721.  
  1722.     /* Get variable value */
  1723.     o = (unsigned char *) egetenv (target);
  1724.     if (!o) goto badvar;
  1725.     total += strlen (o);
  1726.     substituted = 1;
  1727.       }
  1728.  
  1729.   if (!substituted)
  1730.     return string;
  1731.  
  1732.   /* If substitution required, recopy the string and do it */
  1733.   /* Make space in stack frame for the new copy */
  1734.   xnm = (unsigned char *) alloca (XSTRING (string)->size + total + 1);
  1735.   x = xnm;
  1736.  
  1737.   /* Copy the rest of the name through, replacing $ constructs with values */
  1738.   for (p = nm; *p;)
  1739.     if (*p != '$')
  1740.       *x++ = *p++;
  1741.     else
  1742.       {
  1743.     p++;
  1744.     if (p == endp)
  1745.       goto badsubst;
  1746.     else if (*p == '$')
  1747.       {
  1748.         *x++ = *p++;
  1749.         continue;
  1750.       }
  1751.     else if (*p == '{')
  1752.       {
  1753.         o = ++p;
  1754.         while (p != endp && *p != '}') p++;
  1755.         if (*p != '}') goto missingclose;
  1756.         s = p++;
  1757.       }
  1758.     else
  1759.       {
  1760.         o = p;
  1761.         while (p != endp && (isalnum (*p) || *p == '_')) p++;
  1762.         s = p;
  1763.       }
  1764.  
  1765.     /* Copy out the variable name */
  1766.     target = (unsigned char *) alloca (s - o + 1);
  1767.     strncpy (target, o, s - o);
  1768.     target[s - o] = 0;
  1769. #ifdef MSDOS
  1770.     strupr (target); /* $home == $HOME etc.  */
  1771. #endif
  1772.  
  1773.     /* Get variable value */
  1774.     o = (unsigned char *) egetenv (target);
  1775.     if (!o)
  1776.       goto badvar;
  1777.  
  1778.     strcpy (x, o);
  1779.     x += strlen (o);
  1780.       }
  1781.  
  1782.   *x = 0;
  1783.  
  1784.   /* If /~ or // appears, discard everything through first slash. */
  1785.  
  1786.   for (p = xnm; p != x; p++)
  1787.     if ((p[0] == '~' ||
  1788. #ifdef APOLLO
  1789.      /* // at start of file name is meaningful in Apollo system */
  1790.      (p[0] == '/' && p - 1 != xnm)
  1791. #else /* not APOLLO */
  1792.      p[0] == '/'
  1793. #endif /* not APOLLO */
  1794.      )
  1795.     && p != nm && p[-1] == '/')
  1796.       xnm = p;
  1797. #ifdef MSDOS
  1798.     else if (p[0] && p[1] == ':')
  1799.     xnm = p;
  1800. #endif
  1801.  
  1802.   return make_string (xnm, x - xnm);
  1803.  
  1804.  badsubst:
  1805.   error ("Bad format environment-variable substitution");
  1806.  missingclose:
  1807.   error ("Missing \"}\" in environment-variable substitution");
  1808.  badvar:
  1809.   error ("Substituting nonexistent environment variable \"%s\"", target);
  1810.  
  1811.   /* NOTREACHED */
  1812. #endif /* not VMS */
  1813. }
  1814.  
  1815. /* A slightly faster and more convenient way to get
  1816.    (directory-file-name (expand-file-name FOO)).  */
  1817.  
  1818. Lisp_Object
  1819. expand_and_dir_to_file (filename, defdir)
  1820.      Lisp_Object filename, defdir;
  1821. {
  1822.   register Lisp_Object abspath;
  1823.  
  1824.   abspath = Fexpand_file_name (filename, defdir);
  1825. #ifdef VMS
  1826.   {
  1827.     register int c = XSTRING (abspath)->data[XSTRING (abspath)->size - 1];
  1828.     if (c == ':' || c == ']' || c == '>')
  1829.       abspath = Fdirectory_file_name (abspath);
  1830.   }
  1831. #else
  1832.   /* Remove final slash, if any (unless path is root).
  1833.      stat behaves differently depending!  */
  1834.   if (XSTRING (abspath)->size > 1
  1835.       && XSTRING (abspath)->data[XSTRING (abspath)->size - 1] == '/')
  1836.     /* We cannot take shortcuts; they might be wrong for magic file names.  */
  1837.     abspath = Fdirectory_file_name (abspath);
  1838. #endif
  1839.   return abspath;
  1840. }
  1841.  
  1842. barf_or_query_if_file_exists (absname, querystring, interactive)
  1843.      Lisp_Object absname;
  1844.      unsigned char *querystring;
  1845.      int interactive;
  1846. {
  1847.   register Lisp_Object tem;
  1848.   struct stat statbuf;
  1849.   struct gcpro gcpro1;
  1850.  
  1851.   /* stat is a good way to tell whether the file exists,
  1852.      regardless of what access permissions it has.  */
  1853.   if (stat (XSTRING (absname)->data, &statbuf) >= 0)
  1854.     {
  1855.       if (! interactive)
  1856.     Fsignal (Qfile_already_exists,
  1857.          Fcons (build_string ("File already exists"),
  1858.             Fcons (absname, Qnil)));
  1859.       GCPRO1 (absname);
  1860.       tem = do_yes_or_no_p (format1 ("File %s already exists; %s anyway? ",
  1861.                      XSTRING (absname)->data, querystring));
  1862.       UNGCPRO;
  1863.       if (NILP (tem))
  1864.     Fsignal (Qfile_already_exists,
  1865.          Fcons (build_string ("File already exists"),
  1866.             Fcons (absname, Qnil)));
  1867.     }
  1868.   return;
  1869. }
  1870.  
  1871. DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 4,
  1872.   "fCopy file: \nFCopy %s to file: \np\nP",
  1873.   "Copy FILE to NEWNAME.  Both args must be strings.\n\
  1874. Signals a `file-already-exists' error if file NEWNAME already exists,\n\
  1875. unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.\n\
  1876. A number as third arg means request confirmation if NEWNAME already exists.\n\
  1877. This is what happens in interactive use with M-x.\n\
  1878. Fourth arg KEEP-TIME non-nil means give the new file the same\n\
  1879. last-modified time as the old one.  (This works on only some systems.)\n\
  1880. A prefix arg makes KEEP-TIME non-nil.")
  1881.   (filename, newname, ok_if_already_exists, keep_date)
  1882.      Lisp_Object filename, newname, ok_if_already_exists, keep_date;
  1883. {
  1884.   int ifd, ofd, n;
  1885.   char buf[16 * 1024];
  1886.   struct stat st;
  1887.   Lisp_Object handler;
  1888.   struct gcpro gcpro1, gcpro2;
  1889.   int count = specpdl_ptr - specpdl;
  1890.   int input_file_statable_p;
  1891.  
  1892.   GCPRO2 (filename, newname);
  1893.   CHECK_STRING (filename, 0);
  1894.   CHECK_STRING (newname, 1);
  1895.   filename = Fexpand_file_name (filename, Qnil);
  1896.   newname = Fexpand_file_name (newname, Qnil);
  1897.  
  1898.   /* If the input file name has special constructs in it,
  1899.      call the corresponding file handler.  */
  1900.   handler = Ffind_file_name_handler (filename, Qcopy_file);
  1901.   /* Likewise for output file name.  */
  1902.   if (NILP (handler))
  1903.     handler = Ffind_file_name_handler (newname, Qcopy_file);
  1904.   if (!NILP (handler))
  1905.     RETURN_UNGCPRO (call5 (handler, Qcopy_file, filename, newname,
  1906.                ok_if_already_exists, keep_date));
  1907.  
  1908.   if (NILP (ok_if_already_exists)
  1909.       || XTYPE (ok_if_already_exists) == Lisp_Int)
  1910.     barf_or_query_if_file_exists (newname, "copy to it",
  1911.                   XTYPE (ok_if_already_exists) == Lisp_Int);
  1912.  
  1913.   ifd = open (XSTRING (filename)->data, O_RDONLY);
  1914.   if (ifd < 0)
  1915.     report_file_error ("Opening input file", Fcons (filename, Qnil));
  1916.  
  1917.   record_unwind_protect (close_file_unwind, make_number (ifd));
  1918.  
  1919.   /* We can only copy regular files and symbolic links.  Other files are not
  1920.      copyable by us. */
  1921.   input_file_statable_p = (fstat (ifd, &st) >= 0);
  1922.  
  1923. #if defined (S_ISREG) && defined (S_ISLNK)
  1924.   if (input_file_statable_p)
  1925.     {
  1926.       if (!(S_ISREG (st.st_mode)) && !(S_ISLNK (st.st_mode)))
  1927.     {
  1928. #if defined (EISDIR)
  1929.       /* Get a better looking error message. */
  1930.       errno = EISDIR;
  1931. #endif /* EISDIR */
  1932.     report_file_error ("Non-regular file", Fcons (filename, Qnil));
  1933.     }
  1934.     }
  1935. #endif /* S_ISREG && S_ISLNK */
  1936.  
  1937. #ifdef VMS
  1938.   /* Create the copy file with the same record format as the input file */
  1939.   ofd = sys_creat (XSTRING (newname)->data, 0666, ifd);
  1940. #else
  1941. #ifdef MSDOS
  1942.   /* System's default file type was set to binary by _fmode in emacs.c.  */
  1943.   ofd = creat (XSTRING (newname)->data, S_IREAD | S_IWRITE);
  1944. #else /* not MSDOS */
  1945.   ofd = creat (XSTRING (newname)->data, 0666);
  1946. #endif /* not MSDOS */
  1947. #endif /* VMS */
  1948.   if (ofd < 0)
  1949.       report_file_error ("Opening output file", Fcons (newname, Qnil));
  1950.  
  1951.   record_unwind_protect (close_file_unwind, make_number (ofd));
  1952.  
  1953.   immediate_quit = 1;
  1954.   QUIT;
  1955.   while ((n = read (ifd, buf, sizeof buf)) > 0)
  1956.     if (write (ofd, buf, n) != n)
  1957.     report_file_error ("I/O error", Fcons (newname, Qnil));
  1958.   immediate_quit = 0;
  1959.  
  1960.   /* Closing the output clobbers the file times on some systems.  */
  1961.   if (close (ofd) < 0)
  1962.     report_file_error ("I/O error", Fcons (newname, Qnil));
  1963.  
  1964.   if (input_file_statable_p)
  1965.     {
  1966.       if (!NILP (keep_date))
  1967.     {
  1968.       EMACS_TIME atime, mtime;
  1969.       EMACS_SET_SECS_USECS (atime, st.st_atime, 0);
  1970.       EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0);
  1971.       EMACS_SET_UTIMES (XSTRING (newname)->data, atime, mtime);
  1972.     }
  1973. #ifdef APOLLO
  1974.       if (!egetenv ("USE_DOMAIN_ACLS"))
  1975. #endif
  1976.     chmod (XSTRING (newname)->data, st.st_mode & 07777);
  1977.     }
  1978.  
  1979.   close (ifd);
  1980.  
  1981.   /* Discard the unwind protects.  */
  1982.   specpdl_ptr = specpdl + count;
  1983.  
  1984.   UNGCPRO;
  1985.   return Qnil;
  1986. }
  1987.  
  1988. DEFUN ("make-directory-internal", Fmake_directory_internal,
  1989.        Smake_directory_internal, 1, 1, 0,
  1990.   "Create a directory.  One argument, a file name string.")
  1991.   (dirname)
  1992.      Lisp_Object dirname;
  1993. {
  1994.   unsigned char *dir;
  1995.   Lisp_Object handler;
  1996.  
  1997.   CHECK_STRING (dirname, 0);
  1998.   dirname = Fexpand_file_name (dirname, Qnil);
  1999.  
  2000.   handler = Ffind_file_name_handler (dirname, Qmake_directory_internal);
  2001.   if (!NILP (handler))
  2002.     return call2 (handler, Qmake_directory_internal, dirname);
  2003.  
  2004.   dir = XSTRING (dirname)->data;
  2005.  
  2006.   if (mkdir (dir, 0777) != 0)
  2007.     report_file_error ("Creating directory", Flist (1, &dirname));
  2008.  
  2009.   return Qnil;
  2010. }
  2011.  
  2012. DEFUN ("delete-directory", Fdelete_directory, Sdelete_directory, 1, 1, "FDelete directory: ",
  2013.   "Delete a directory.  One argument, a file name or directory name string.")
  2014.   (dirname)
  2015.      Lisp_Object dirname;
  2016. {
  2017.   unsigned char *dir;
  2018.   Lisp_Object handler;
  2019.  
  2020.   CHECK_STRING (dirname, 0);
  2021.   dirname = Fdirectory_file_name (Fexpand_file_name (dirname, Qnil));
  2022.   dir = XSTRING (dirname)->data;
  2023.  
  2024.   handler = Ffind_file_name_handler (dirname, Qdelete_directory);
  2025.   if (!NILP (handler))
  2026.     return call2 (handler, Qdelete_directory, dirname);
  2027.  
  2028.   if (rmdir (dir) != 0)
  2029.     report_file_error ("Removing directory", Flist (1, &dirname));
  2030.  
  2031.   return Qnil;
  2032. }
  2033.  
  2034. DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ",
  2035.   "Delete specified file.  One argument, a file name string.\n\
  2036. If file has multiple names, it continues to exist with the other names.")
  2037.   (filename)
  2038.      Lisp_Object filename;
  2039. {
  2040.   Lisp_Object handler;
  2041.   CHECK_STRING (filename, 0);
  2042.   filename = Fexpand_file_name (filename, Qnil);
  2043.  
  2044.   handler = Ffind_file_name_handler (filename, Qdelete_file);
  2045.   if (!NILP (handler))
  2046.     return call2 (handler, Qdelete_file, filename);
  2047.  
  2048.   if (0 > unlink (XSTRING (filename)->data))
  2049.     report_file_error ("Removing old name", Flist (1, &filename));
  2050.   return Qnil;
  2051. }
  2052.  
  2053. DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
  2054.   "fRename file: \nFRename %s to file: \np",
  2055.   "Rename FILE as NEWNAME.  Both args strings.\n\
  2056. If file has names other than FILE, it continues to have those names.\n\
  2057. Signals a `file-already-exists' error if a file NEWNAME already exists\n\
  2058. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
  2059. A number as third arg means request confirmation if NEWNAME already exists.\n\
  2060. This is what happens in interactive use with M-x.")
  2061.   (filename, newname, ok_if_already_exists)
  2062.      Lisp_Object filename, newname, ok_if_already_exists;
  2063. {
  2064. #ifdef NO_ARG_ARRAY
  2065.   Lisp_Object args[2];
  2066. #endif
  2067.   Lisp_Object handler;
  2068.   struct gcpro gcpro1, gcpro2;
  2069.  
  2070.   GCPRO2 (filename, newname);
  2071.   CHECK_STRING (filename, 0);
  2072.   CHECK_STRING (newname, 1);
  2073.   filename = Fexpand_file_name (filename, Qnil);
  2074.   newname = Fexpand_file_name (newname, Qnil);
  2075.  
  2076.   /* If the file name has special constructs in it,
  2077.      call the corresponding file handler.  */
  2078.   handler = Ffind_file_name_handler (filename, Qrename_file);
  2079.   if (NILP (handler))
  2080.     handler = Ffind_file_name_handler (newname, Qrename_file);
  2081.   if (!NILP (handler))
  2082.     RETURN_UNGCPRO (call4 (handler, Qrename_file,
  2083.                filename, newname, ok_if_already_exists));
  2084.  
  2085.   if (NILP (ok_if_already_exists)
  2086.       || XTYPE (ok_if_already_exists) == Lisp_Int)
  2087.     barf_or_query_if_file_exists (newname, "rename to it",
  2088.                   XTYPE (ok_if_already_exists) == Lisp_Int);
  2089. #ifndef BSD4_1
  2090.   if (0 > rename (XSTRING (filename)->data, XSTRING (newname)->data))
  2091. #else
  2092.   if (0 > link (XSTRING (filename)->data, XSTRING (newname)->data)
  2093.       || 0 > unlink (XSTRING (filename)->data))
  2094. #endif
  2095.     {
  2096.       if (errno == EXDEV)
  2097.     {
  2098.       Fcopy_file (filename, newname,
  2099.               /* We have already prompted if it was an integer,
  2100.              so don't have copy-file prompt again.  */
  2101.               NILP (ok_if_already_exists) ? Qnil : Qt, Qt);
  2102.       Fdelete_file (filename);
  2103.     }
  2104.       else
  2105. #ifdef NO_ARG_ARRAY
  2106.     {
  2107.       args[0] = filename;
  2108.       args[1] = newname;
  2109.       report_file_error ("Renaming", Flist (2, args));
  2110.     }
  2111. #else
  2112.     report_file_error ("Renaming", Flist (2, &filename));
  2113. #endif
  2114.     }
  2115.   UNGCPRO;
  2116.   return Qnil;
  2117. }
  2118.  
  2119. DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
  2120.   "fAdd name to file: \nFName to add to %s: \np",
  2121.   "Give FILE additional name NEWNAME.  Both args strings.\n\
  2122. Signals a `file-already-exists' error if a file NEWNAME already exists\n\
  2123. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
  2124. A number as third arg means request confirmation if NEWNAME already exists.\n\
  2125. This is what happens in interactive use with M-x.")
  2126.   (filename, newname, ok_if_already_exists)
  2127.      Lisp_Object filename, newname, ok_if_already_exists;
  2128. {
  2129. #ifdef NO_ARG_ARRAY
  2130.   Lisp_Object args[2];
  2131. #endif
  2132.   Lisp_Object handler;
  2133.   struct gcpro gcpro1, gcpro2;
  2134.  
  2135.   GCPRO2 (filename, newname);
  2136.   CHECK_STRING (filename, 0);
  2137.   CHECK_STRING (newname, 1);
  2138.   filename = Fexpand_file_name (filename, Qnil);
  2139.   newname = Fexpand_file_name (newname, Qnil);
  2140.  
  2141.   /* If the file name has special constructs in it,
  2142.      call the corresponding file handler.  */
  2143.   handler = Ffind_file_name_handler (filename, Qadd_name_to_file);
  2144.   if (!NILP (handler))
  2145.     RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, filename,
  2146.                newname, ok_if_already_exists));
  2147.  
  2148.   if (NILP (ok_if_already_exists)
  2149.       || XTYPE (ok_if_already_exists) == Lisp_Int)
  2150.     barf_or_query_if_file_exists (newname, "make it a new name",
  2151.                   XTYPE (ok_if_already_exists) == Lisp_Int);
  2152.   unlink (XSTRING (newname)->data);
  2153.   if (0 > link (XSTRING (filename)->data, XSTRING (newname)->data))
  2154.     {
  2155. #ifdef NO_ARG_ARRAY
  2156.       args[0] = filename;
  2157.       args[1] = newname;
  2158.       report_file_error ("Adding new name", Flist (2, args));
  2159. #else
  2160.       report_file_error ("Adding new name", Flist (2, &filename));
  2161. #endif
  2162.     }
  2163.  
  2164.   UNGCPRO;
  2165.   return Qnil;
  2166. }
  2167.  
  2168. #ifdef S_IFLNK
  2169. DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
  2170.   "FMake symbolic link to file: \nFMake symbolic link to file %s: \np",
  2171.   "Make a symbolic link to FILENAME, named LINKNAME.  Both args strings.\n\
  2172. Signals a `file-already-exists' error if a file NEWNAME already exists\n\
  2173. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
  2174. A number as third arg means request confirmation if NEWNAME already exists.\n\
  2175. This happens for interactive use with M-x.")
  2176.   (filename, linkname, ok_if_already_exists)
  2177.      Lisp_Object filename, linkname, ok_if_already_exists;
  2178. {
  2179. #ifdef NO_ARG_ARRAY
  2180.   Lisp_Object args[2];
  2181. #endif
  2182.   Lisp_Object handler;
  2183.   struct gcpro gcpro1, gcpro2;
  2184.  
  2185.   GCPRO2 (filename, linkname);
  2186.   CHECK_STRING (filename, 0);
  2187.   CHECK_STRING (linkname, 1);
  2188.   /* If the link target has a ~, we must expand it to get
  2189.      a truly valid file name.  Otherwise, do not expand;
  2190.      we want to permit links to relative file names.  */
  2191.   if (XSTRING (filename)->data[0] == '~')
  2192.     filename = Fexpand_file_name (filename, Qnil);
  2193.   linkname = Fexpand_file_name (linkname, Qnil);
  2194.  
  2195.   /* If the file name has special constructs in it,
  2196.      call the corresponding file handler.  */
  2197.   handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
  2198.   if (!NILP (handler))
  2199.     RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
  2200.                linkname, ok_if_already_exists));
  2201.  
  2202.   if (NILP (ok_if_already_exists)
  2203.       || XTYPE (ok_if_already_exists) == Lisp_Int)
  2204.     barf_or_query_if_file_exists (linkname, "make it a link",
  2205.                   XTYPE (ok_if_already_exists) == Lisp_Int);
  2206.   if (0 > symlink (XSTRING (filename)->data, XSTRING (linkname)->data))
  2207.     {
  2208.       /* If we didn't complain already, silently delete existing file.  */
  2209.       if (errno == EEXIST)
  2210.     {
  2211.       unlink (XSTRING (linkname)->data);
  2212.       if (0 <= symlink (XSTRING (filename)->data, XSTRING (linkname)->data))
  2213.         {
  2214.           UNGCPRO;
  2215.           return Qnil;
  2216.         }
  2217.     }
  2218.  
  2219. #ifdef NO_ARG_ARRAY
  2220.       args[0] = filename;
  2221.       args[1] = linkname;
  2222.       report_file_error ("Making symbolic link", Flist (2, args));
  2223. #else
  2224.       report_file_error ("Making symbolic link", Flist (2, &filename));
  2225. #endif
  2226.     }
  2227.   UNGCPRO;
  2228.   return Qnil;
  2229. }
  2230. #endif /* S_IFLNK */
  2231.  
  2232. #ifdef VMS
  2233.  
  2234. DEFUN ("define-logical-name", Fdefine_logical_name, Sdefine_logical_name,
  2235.        2, 2, "sDefine logical name: \nsDefine logical name %s as: ",
  2236.   "Define the job-wide logical name NAME to have the value STRING.\n\
  2237. If STRING is nil or a null string, the logical name NAME is deleted.")
  2238.   (varname, string)
  2239.      Lisp_Object varname;
  2240.      Lisp_Object string;
  2241. {
  2242.   CHECK_STRING (varname, 0);
  2243.   if (NILP (string))
  2244.     delete_logical_name (XSTRING (varname)->data);
  2245.   else
  2246.     {
  2247.       CHECK_STRING (string, 1);
  2248.  
  2249.       if (XSTRING (string)->size == 0)
  2250.         delete_logical_name (XSTRING (varname)->data);
  2251.       else
  2252.         define_logical_name (XSTRING (varname)->data, XSTRING (string)->data);
  2253.     }
  2254.  
  2255.   return string;
  2256. }
  2257. #endif /* VMS */
  2258.  
  2259. #ifdef HPUX_NET
  2260.  
  2261. DEFUN ("sysnetunam", Fsysnetunam, Ssysnetunam, 2, 2, 0,
  2262.        "Open a network connection to PATH using LOGIN as the login string.")
  2263.      (path, login)
  2264.      Lisp_Object path, login;
  2265. {
  2266.   int netresult;
  2267.   
  2268.   CHECK_STRING (path, 0);
  2269.   CHECK_STRING (login, 0);  
  2270.   
  2271.   netresult = netunam (XSTRING (path)->data, XSTRING (login)->data);
  2272.  
  2273.   if (netresult == -1)
  2274.     return Qnil;
  2275.   else
  2276.     return Qt;
  2277. }
  2278. #endif /* HPUX_NET */
  2279.  
  2280. DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
  2281.        1, 1, 0,
  2282.        "Return t if file FILENAME specifies an absolute path name.\n\
  2283. On Unix, this is a name starting with a `/' or a `~'.")
  2284.      (filename)
  2285.      Lisp_Object filename;
  2286. {
  2287.   unsigned char *ptr;
  2288.  
  2289.   CHECK_STRING (filename, 0);
  2290.   ptr = XSTRING (filename)->data;
  2291. #ifdef    AMIGA
  2292.   /* An absolute filename has a non-leading ':' in it */
  2293.   if (*ptr != ':')
  2294.       while (*ptr)
  2295.       if (*ptr++ == ':') return Qt;
  2296.   return Qnil;
  2297. #else    /* not AMIGA */
  2298.   if (*ptr == '/' || *ptr == '~'
  2299. #ifdef VMS
  2300. /* ??? This criterion is probably wrong for '<'.  */
  2301.       || index (ptr, ':') || index (ptr, '<')
  2302.       || (*ptr == '[' && (ptr[1] != '-' || (ptr[2] != '.' && ptr[2] != ']'))
  2303.       && ptr[1] != '.')
  2304. #endif /* VMS */
  2305. #ifdef MSDOS
  2306.       || (*ptr != 0 && ptr[1] == ':' && (ptr[2] == '/' || ptr[2] == '\\'))
  2307. #endif
  2308.       )
  2309.     return Qt;
  2310.   else
  2311.     return Qnil;
  2312. #endif /* not AMIGA */
  2313. }
  2314.  
  2315. DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
  2316.   "Return t if file FILENAME exists.  (This does not mean you can read it.)\n\
  2317. See also `file-readable-p' and `file-attributes'.")
  2318.   (filename)
  2319.      Lisp_Object filename;
  2320. {
  2321.   Lisp_Object abspath;
  2322.   Lisp_Object handler;
  2323.   struct stat statbuf;
  2324.  
  2325.   CHECK_STRING (filename, 0);
  2326.   abspath = Fexpand_file_name (filename, Qnil);
  2327.  
  2328.   /* If the file name has special constructs in it,
  2329.      call the corresponding file handler.  */
  2330.   handler = Ffind_file_name_handler (abspath, Qfile_exists_p);
  2331.   if (!NILP (handler))
  2332.     return call2 (handler, Qfile_exists_p, abspath);
  2333.  
  2334.   return (stat (XSTRING (abspath)->data, &statbuf) >= 0) ? Qt : Qnil;
  2335. }
  2336.  
  2337. DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
  2338.   "Return t if FILENAME can be executed by you.\n\
  2339. For a directory, this means you can access files in that directory.")
  2340.   (filename)
  2341.     Lisp_Object filename;
  2342.  
  2343. {
  2344.   Lisp_Object abspath;
  2345.   Lisp_Object handler;
  2346.  
  2347.   CHECK_STRING (filename, 0);
  2348.   abspath = Fexpand_file_name (filename, Qnil);
  2349.  
  2350.   /* If the file name has special constructs in it,
  2351.      call the corresponding file handler.  */
  2352.   handler = Ffind_file_name_handler (abspath, Qfile_executable_p);
  2353.   if (!NILP (handler))
  2354.     return call2 (handler, Qfile_executable_p, abspath);
  2355.  
  2356.   return (access (XSTRING (abspath)->data, 1) >= 0) ? Qt : Qnil;
  2357. }
  2358.  
  2359. DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
  2360.   "Return t if file FILENAME exists and you can read it.\n\
  2361. See also `file-exists-p' and `file-attributes'.")
  2362.   (filename)
  2363.      Lisp_Object filename;
  2364. {
  2365.   Lisp_Object abspath;
  2366.   Lisp_Object handler;
  2367.   int desc;
  2368.  
  2369.   CHECK_STRING (filename, 0);
  2370.   abspath = Fexpand_file_name (filename, Qnil);
  2371.  
  2372.   /* If the file name has special constructs in it,
  2373.      call the corresponding file handler.  */
  2374.   handler = Ffind_file_name_handler (abspath, Qfile_readable_p);
  2375.   if (!NILP (handler))
  2376.     return call2 (handler, Qfile_readable_p, abspath);
  2377.  
  2378.   desc = open (XSTRING (abspath)->data, O_RDONLY);
  2379.   if (desc < 0)
  2380.     return Qnil;
  2381.   close (desc);
  2382.   return Qt;
  2383. }
  2384.  
  2385. DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
  2386.   "Return non-nil if file FILENAME is the name of a symbolic link.\n\
  2387. The value is the name of the file to which it is linked.\n\
  2388. Otherwise returns nil.")
  2389.   (filename)
  2390.      Lisp_Object filename;
  2391. {
  2392. #ifdef S_IFLNK
  2393.   char *buf;
  2394.   int bufsize;
  2395.   int valsize;
  2396.   Lisp_Object val;
  2397.   Lisp_Object handler;
  2398.  
  2399.   CHECK_STRING (filename, 0);
  2400.   filename = Fexpand_file_name (filename, Qnil);
  2401.  
  2402.   /* If the file name has special constructs in it,
  2403.      call the corresponding file handler.  */
  2404.   handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
  2405.   if (!NILP (handler))
  2406.     return call2 (handler, Qfile_symlink_p, filename);
  2407.  
  2408.   bufsize = 100;
  2409.   while (1)
  2410.     {
  2411.       buf = (char *) xmalloc (bufsize);
  2412.       bzero (buf, bufsize);
  2413.       valsize = readlink (XSTRING (filename)->data, buf, bufsize);
  2414.       if (valsize < bufsize) break;
  2415.       /* Buffer was not long enough */
  2416.       xfree (buf);
  2417.       bufsize *= 2;
  2418.     }
  2419.   /* OK.  This is required on the Amiga, but I suspect that it makes
  2420.    * sense to not accept a NULL link.  This should probably be merged in,
  2421.    * but that is someone else's decision.
  2422.    */
  2423. #ifndef AMIGA
  2424.   if (valsize == -1)
  2425. #else
  2426.   if (valsize <= 0)
  2427. #endif
  2428.     {
  2429.       xfree (buf);
  2430.       return Qnil;
  2431.     }
  2432.   val = make_string (buf, valsize);
  2433.   xfree (buf);
  2434.   return val;
  2435. #else /* not S_IFLNK */
  2436.   return Qnil;
  2437. #endif /* not S_IFLNK */
  2438. }
  2439.  
  2440. #ifdef SOLARIS_BROKEN_ACCESS
  2441. /* In Solaris 2.1, the readonly-ness of the filesystem is not
  2442.    considered by the access system call.  This is Sun's bug, but we
  2443.    still have to make Emacs work.  */
  2444.  
  2445. #include <sys/statvfs.h>
  2446.  
  2447. static int
  2448. ro_fsys (path)
  2449.     char *path;
  2450. {
  2451.     struct statvfs statvfsb;
  2452.  
  2453.     if (statvfs(path, &statvfsb))
  2454.       return 1;  /* error from statvfs, be conservative and say not wrtable */
  2455.     else
  2456.       /* Otherwise, fsys is ro if bit is set.  */
  2457.       return statvfsb.f_flag & ST_RDONLY;
  2458. }
  2459. #else
  2460. /* But on every other os, access has already done the right thing.  */
  2461. #define ro_fsys(path) 0
  2462. #endif
  2463.  
  2464. /* Having this before file-symlink-p mysteriously caused it to be forgotten
  2465.    on the RT/PC.  */
  2466. DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
  2467.   "Return t if file FILENAME can be written or created by you.")
  2468.   (filename)
  2469.      Lisp_Object filename;
  2470. {
  2471.   Lisp_Object abspath, dir;
  2472.   Lisp_Object handler;
  2473.  
  2474.   CHECK_STRING (filename, 0);
  2475.   abspath = Fexpand_file_name (filename, Qnil);
  2476.  
  2477.   /* If the file name has special constructs in it,
  2478.      call the corresponding file handler.  */
  2479.   handler = Ffind_file_name_handler (abspath, Qfile_writable_p);
  2480.   if (!NILP (handler))
  2481.     return call2 (handler, Qfile_writable_p, abspath);
  2482.  
  2483.   if (access (XSTRING (abspath)->data, 0) >= 0)
  2484.     return ((access (XSTRING (abspath)->data, 2) >= 0
  2485.          && ! ro_fsys ((char *) XSTRING (abspath)->data))
  2486.         ? Qt : Qnil);
  2487.   dir = Ffile_name_directory (abspath);
  2488. #ifdef VMS
  2489.   if (!NILP (dir))
  2490.     dir = Fdirectory_file_name (dir);
  2491. #endif /* VMS */
  2492. #ifdef MSDOS
  2493.   if (!NILP (dir))
  2494.     dir = Fdirectory_file_name (dir);
  2495. #endif /* MSDOS */
  2496.   return ((access (!NILP (dir) ? (char *) XSTRING (dir)->data : "", 2) >= 0
  2497.        && ! ro_fsys ((char *) XSTRING (dir)->data))
  2498.       ? Qt : Qnil);
  2499. }
  2500.  
  2501. DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
  2502.   "Return t if file FILENAME is the name of a directory as a file.\n\
  2503. A directory name spec may be given instead; then the value is t\n\
  2504. if the directory so specified exists and really is a directory.")
  2505.   (filename)
  2506.      Lisp_Object filename;
  2507. {
  2508.   register Lisp_Object abspath;
  2509.   struct stat st;
  2510.   Lisp_Object handler;
  2511.  
  2512.   abspath = expand_and_dir_to_file (filename, current_buffer->directory);
  2513.  
  2514.   /* If the file name has special constructs in it,
  2515.      call the corresponding file handler.  */
  2516.   handler = Ffind_file_name_handler (abspath, Qfile_directory_p);
  2517.   if (!NILP (handler))
  2518.     return call2 (handler, Qfile_directory_p, abspath);
  2519.  
  2520.   if (stat (XSTRING (abspath)->data, &st) < 0)
  2521.     return Qnil;
  2522.   return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil;
  2523. }
  2524.  
  2525. DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, Sfile_accessible_directory_p, 1, 1, 0,
  2526.   "Return t if file FILENAME is the name of a directory as a file,\n\
  2527. and files in that directory can be opened by you.  In order to use a\n\
  2528. directory as a buffer's current directory, this predicate must return true.\n\
  2529. A directory name spec may be given instead; then the value is t\n\
  2530. if the directory so specified exists and really is a readable and\n\
  2531. searchable directory.")
  2532.   (filename)
  2533.      Lisp_Object filename;
  2534. {
  2535.   Lisp_Object handler;
  2536.   int tem;
  2537.   struct gcpro gcpro1;
  2538.  
  2539.   /* If the file name has special constructs in it,
  2540.      call the corresponding file handler.  */
  2541.   handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p);
  2542.   if (!NILP (handler))
  2543.     return call2 (handler, Qfile_accessible_directory_p, filename);
  2544.  
  2545.   /* It's an unlikely combination, but yes we really do need to gcpro:
  2546.      Suppose that file-accessible-directory-p has no handler, but
  2547.      file-directory-p does have a handler; this handler causes a GC which
  2548.      relocates the string in `filename'; and finally file-directory-p
  2549.      returns non-nil.  Then we would end up passing a garbaged string
  2550.      to file-executable-p.  */
  2551.   GCPRO1 (filename);
  2552.   tem = (NILP (Ffile_directory_p (filename))
  2553.      || NILP (Ffile_executable_p (filename)));
  2554.   UNGCPRO;
  2555.   return tem ? Qnil : Qt;
  2556. }
  2557.  
  2558. DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
  2559.   "Return mode bits of FILE, as an integer.")
  2560.   (filename)
  2561.      Lisp_Object filename;
  2562. {
  2563.   Lisp_Object abspath;
  2564.   struct stat st;
  2565.   Lisp_Object handler;
  2566.  
  2567.   abspath = expand_and_dir_to_file (filename, current_buffer->directory);
  2568.  
  2569.   /* If the file name has special constructs in it,
  2570.      call the corresponding file handler.  */
  2571.   handler = Ffind_file_name_handler (abspath, Qfile_modes);
  2572.   if (!NILP (handler))
  2573.     return call2 (handler, Qfile_modes, abspath);
  2574.  
  2575.   if (stat (XSTRING (abspath)->data, &st) < 0)
  2576.     return Qnil;
  2577. #ifdef MSDOS
  2578.   {
  2579.     int len;
  2580.     char *suffix;
  2581.     if (S_ISREG (st.st_mode)
  2582.     && (len = XSTRING (abspath)->size) >= 5
  2583.     && (stricmp ((suffix = XSTRING (abspath)->data + len-4), ".com") == 0
  2584.         || stricmp (suffix, ".exe") == 0
  2585.         || stricmp (suffix, ".bat") == 0))
  2586.       st.st_mode |= S_IEXEC;
  2587.   }
  2588. #endif /* MSDOS */
  2589.  
  2590.   return make_number (st.st_mode & 07777);
  2591. }
  2592.  
  2593. DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2, 0,
  2594.   "Set mode bits of FILE to MODE (an integer).\n\
  2595. Only the 12 low bits of MODE are used.")
  2596.   (filename, mode)
  2597.      Lisp_Object filename, mode;
  2598. {
  2599.   Lisp_Object abspath;
  2600.   Lisp_Object handler;
  2601.  
  2602.   abspath = Fexpand_file_name (filename, current_buffer->directory);
  2603.   CHECK_NUMBER (mode, 1);
  2604.  
  2605.   /* If the file name has special constructs in it,
  2606.      call the corresponding file handler.  */
  2607.   handler = Ffind_file_name_handler (abspath, Qset_file_modes);
  2608.   if (!NILP (handler))
  2609.     return call3 (handler, Qset_file_modes, abspath, mode);
  2610.  
  2611. #ifndef APOLLO
  2612.   if (chmod (XSTRING (abspath)->data, XINT (mode)) < 0)
  2613.     report_file_error ("Doing chmod", Fcons (abspath, Qnil));
  2614. #else /* APOLLO */
  2615.   if (!egetenv ("USE_DOMAIN_ACLS"))
  2616.     {
  2617.       struct stat st;
  2618.       struct timeval tvp[2];
  2619.  
  2620.       /* chmod on apollo also change the file's modtime; need to save the
  2621.      modtime and then restore it. */
  2622.       if (stat (XSTRING (abspath)->data, &st) < 0)
  2623.     {
  2624.       report_file_error ("Doing chmod", Fcons (abspath, Qnil));
  2625.       return (Qnil);
  2626.     }
  2627.  
  2628.       if (chmod (XSTRING (abspath)->data, XINT (mode)) < 0)
  2629.      report_file_error ("Doing chmod", Fcons (abspath, Qnil));
  2630.  
  2631.       /* reset the old accessed and modified times.  */
  2632.       tvp[0].tv_sec = st.st_atime + 1; /* +1 due to an Apollo roundoff bug */
  2633.       tvp[0].tv_usec = 0;
  2634.       tvp[1].tv_sec = st.st_mtime + 1; /* +1 due to an Apollo roundoff bug */
  2635.       tvp[1].tv_usec = 0;
  2636.  
  2637.       if (utimes (XSTRING (abspath)->data, tvp) < 0)
  2638.      report_file_error ("Doing utimes", Fcons (abspath, Qnil));
  2639.     }
  2640. #endif /* APOLLO */
  2641.  
  2642.   return Qnil;
  2643. }
  2644.  
  2645. DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0,
  2646.     "Set the file permission bits for newly created files.\n\
  2647. The argument MODE should be an integer; only the low 9 bits are used.\n\
  2648. This setting is inherited by subprocesses.")
  2649.   (mode)
  2650.      Lisp_Object mode;
  2651. {
  2652.   CHECK_NUMBER (mode, 0);
  2653.   
  2654.   umask ((~ XINT (mode)) & 0777);
  2655.  
  2656.   return Qnil;
  2657. }
  2658.  
  2659. DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0,
  2660.     "Return the default file protection for created files.\n\
  2661. The value is an integer.")
  2662.   ()
  2663. {
  2664.   int realmask;
  2665.   Lisp_Object value;
  2666.  
  2667.   realmask = umask (0);
  2668.   umask (realmask);
  2669.  
  2670.   XSET (value, Lisp_Int, (~ realmask) & 0777);
  2671.   return value;
  2672. }
  2673.  
  2674. #ifdef unix
  2675.  
  2676. DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
  2677.   "Tell Unix to finish all pending disk updates.")
  2678.   ()
  2679. {
  2680.   sync ();
  2681.   return Qnil;
  2682. }
  2683.  
  2684. #endif /* unix */
  2685.  
  2686. DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
  2687.   "Return t if file FILE1 is newer than file FILE2.\n\
  2688. If FILE1 does not exist, the answer is nil;\n\
  2689. otherwise, if FILE2 does not exist, the answer is t.")
  2690.   (file1, file2)
  2691.      Lisp_Object file1, file2;
  2692. {
  2693.   Lisp_Object abspath1, abspath2;
  2694.   struct stat st;
  2695.   int mtime1;
  2696.   Lisp_Object handler;
  2697.   struct gcpro gcpro1, gcpro2;
  2698.  
  2699.   CHECK_STRING (file1, 0);
  2700.   CHECK_STRING (file2, 0);
  2701.  
  2702.   abspath1 = Qnil;
  2703.   GCPRO2 (abspath1, file2);
  2704.   abspath1 = expand_and_dir_to_file (file1, current_buffer->directory);
  2705.   abspath2 = expand_and_dir_to_file (file2, current_buffer->directory);
  2706.   UNGCPRO;
  2707.  
  2708.   /* If the file name has special constructs in it,
  2709.      call the corresponding file handler.  */
  2710.   handler = Ffind_file_name_handler (abspath1, Qfile_newer_than_file_p);
  2711.   if (NILP (handler))
  2712.     handler = Ffind_file_name_handler (abspath2, Qfile_newer_than_file_p);
  2713.   if (!NILP (handler))
  2714.     return call3 (handler, Qfile_newer_than_file_p, abspath1, abspath2);
  2715.  
  2716.   if (stat (XSTRING (abspath1)->data, &st) < 0)
  2717.     return Qnil;
  2718.  
  2719.   mtime1 = st.st_mtime;
  2720.  
  2721.   if (stat (XSTRING (abspath2)->data, &st) < 0)
  2722.     return Qt;
  2723.  
  2724.   return (mtime1 > st.st_mtime) ? Qt : Qnil;
  2725. }
  2726.  
  2727. #ifdef MSDOS
  2728. Lisp_Object Qfind_buffer_file_type;
  2729. #endif
  2730.  
  2731. DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
  2732.   1, 5, 0,
  2733.   "Insert contents of file FILENAME after point.\n\
  2734. Returns list of absolute file name and length of data inserted.\n\
  2735. If second argument VISIT is non-nil, the buffer's visited filename\n\
  2736. and last save file modtime are set, and it is marked unmodified.\n\
  2737. If visiting and the file does not exist, visiting is completed\n\
  2738. before the error is signaled.\n\n\
  2739. The optional third and fourth arguments BEG and END\n\
  2740. specify what portion of the file to insert.\n\
  2741. If VISIT is non-nil, BEG and END must be nil.\n\
  2742. If optional fifth argument REPLACE is non-nil,\n\
  2743. it means replace the current buffer contents (in the accessible portion)\n\
  2744. with the file contents.  This is better than simply deleting and inserting\n\
  2745. the whole thing because (1) it preserves some marker positions\n\
  2746. and (2) it puts less data in the undo list.")
  2747.   (filename, visit, beg, end, replace)
  2748.      Lisp_Object filename, visit, beg, end, replace;
  2749. {
  2750.   struct stat st;
  2751.   register int fd;
  2752.   register int inserted = 0;
  2753.   register int how_much;
  2754.   int count = specpdl_ptr - specpdl;
  2755.   struct gcpro gcpro1, gcpro2, gcpro3;
  2756.   Lisp_Object handler, val, insval;
  2757.   Lisp_Object p;
  2758.   int total;
  2759.  
  2760.   val = Qnil;
  2761.   p = Qnil;
  2762.  
  2763.   GCPRO3 (filename, val, p);
  2764.   if (!NILP (current_buffer->read_only))
  2765.     Fbarf_if_buffer_read_only();
  2766.  
  2767.   CHECK_STRING (filename, 0);
  2768.   filename = Fexpand_file_name (filename, Qnil);
  2769.  
  2770.   /* If the file name has special constructs in it,
  2771.      call the corresponding file handler.  */
  2772.   handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
  2773.   if (!NILP (handler))
  2774.     {
  2775.       val = call6 (handler, Qinsert_file_contents, filename,
  2776.            visit, beg, end, replace);
  2777.       goto handled;
  2778.     }
  2779.  
  2780.   fd = -1;
  2781.  
  2782. #ifndef APOLLO
  2783.   if (stat (XSTRING (filename)->data, &st) < 0)
  2784. #else
  2785.   if ((fd = open (XSTRING (filename)->data, O_RDONLY)) < 0
  2786.       || fstat (fd, &st) < 0)
  2787. #endif /* not APOLLO */
  2788.     {
  2789.       if (fd >= 0) close (fd);
  2790.     badopen:
  2791.       if (NILP (visit))
  2792.     report_file_error ("Opening input file", Fcons (filename, Qnil));
  2793.       st.st_mtime = -1;
  2794.       how_much = 0;
  2795.       goto notfound;
  2796.     }
  2797.  
  2798. #ifdef S_IFREG
  2799.   /* This code will need to be changed in order to work on named
  2800.      pipes, and it's probably just not worth it.  So we should at
  2801.      least signal an error.  */
  2802.   if (!S_ISREG (st.st_mode))
  2803.     Fsignal (Qfile_error,
  2804.          Fcons (build_string ("not a regular file"),
  2805.             Fcons (filename, Qnil)));
  2806. #endif
  2807.  
  2808.   if (fd < 0)
  2809.     if ((fd = open (XSTRING (filename)->data, O_RDONLY)) < 0)
  2810.       goto badopen;
  2811.  
  2812.   /* Replacement should preserve point as it preserves markers.  */
  2813.   if (!NILP (replace))
  2814.     record_unwind_protect (restore_point_unwind, Fpoint_marker ());
  2815.  
  2816.   record_unwind_protect (close_file_unwind, make_number (fd));
  2817.  
  2818.   /* Supposedly happens on VMS.  */
  2819.   if (st.st_size < 0)
  2820.     error ("File size is negative");
  2821.  
  2822.   if (!NILP (beg) || !NILP (end))
  2823.     if (!NILP (visit))
  2824.       error ("Attempt to visit less than an entire file");
  2825.  
  2826.   if (!NILP (beg))
  2827.     CHECK_NUMBER (beg, 0);
  2828.   else
  2829.     XFASTINT (beg) = 0;
  2830.  
  2831.   if (!NILP (end))
  2832.     CHECK_NUMBER (end, 0);
  2833.   else
  2834.     {
  2835.       XSETINT (end, st.st_size);
  2836.       if (XINT (end) != st.st_size)
  2837.     error ("maximum buffer size exceeded");
  2838.     }
  2839.  
  2840.   /* If requested, replace the accessible part of the buffer
  2841.      with the file contents.  Avoid replacing text at the
  2842.      beginning or end of the buffer that matches the file contents;
  2843.      that preserves markers pointing to the unchanged parts.  */
  2844. #ifdef MSDOS
  2845.   /* On MSDOS, replace mode doesn't really work, except for binary files,
  2846.      and it's not worth supporting just for them.  */
  2847.   if (!NILP (replace))
  2848.     {
  2849.       replace = Qnil;
  2850.       XFASTINT (beg) = 0;
  2851.       XFASTINT (end) = st.st_size;
  2852.       del_range_1 (BEGV, ZV, 0);
  2853.     }
  2854. #else /* MSDOS */
  2855.   if (!NILP (replace))
  2856.     {
  2857.       unsigned char buffer[1 << 14];
  2858.       int same_at_start = BEGV;
  2859.       int same_at_end = ZV;
  2860.       int overlap;
  2861.  
  2862.       immediate_quit = 1;
  2863.       QUIT;
  2864.       /* Count how many chars at the start of the file
  2865.      match the text at the beginning of the buffer.  */
  2866.       while (1)
  2867.     {
  2868.       int nread, bufpos;
  2869.  
  2870.       nread = read (fd, buffer, sizeof buffer);
  2871.       if (nread < 0)
  2872.         error ("IO error reading %s: %s",
  2873.            XSTRING (filename)->data, strerror (errno));
  2874.       else if (nread == 0)
  2875.         break;
  2876.       bufpos = 0;
  2877.       while (bufpos < nread && same_at_start < ZV
  2878.          && FETCH_CHAR (same_at_start) == buffer[bufpos])
  2879.         same_at_start++, bufpos++;
  2880.       /* If we found a discrepancy, stop the scan.
  2881.          Otherwise loop around and scan the next bufferfull.  */
  2882.       if (bufpos != nread)
  2883.         break;
  2884.     }
  2885.       immediate_quit = 0;
  2886.       /* If the file matches the buffer completely,
  2887.      there's no need to replace anything.  */
  2888.       if (same_at_start - BEGV == st.st_size)
  2889.     {
  2890.       close (fd);
  2891.       specpdl_ptr--;
  2892.       /* Truncate the buffer to the size of the file.  */
  2893.       del_range_1 (same_at_start, same_at_end, 0);
  2894.       goto handled;
  2895.     }
  2896.       immediate_quit = 1;
  2897.       QUIT;
  2898.       /* Count how many chars at the end of the file
  2899.      match the text at the end of the buffer.  */
  2900.       while (1)
  2901.     {
  2902.       int total_read, nread, bufpos, curpos, trial;
  2903.  
  2904.       /* At what file position are we now scanning?  */
  2905.       curpos = st.st_size - (ZV - same_at_end);
  2906.       /* If the entire file matches the buffer tail, stop the scan.  */
  2907.       if (curpos == 0)
  2908.         break;
  2909.       /* How much can we scan in the next step?  */
  2910.       trial = min (curpos, sizeof buffer);
  2911.       if (lseek (fd, curpos - trial, 0) < 0)
  2912.         report_file_error ("Setting file position",
  2913.                    Fcons (filename, Qnil));
  2914.  
  2915.       total_read = 0;
  2916.       while (total_read < trial)
  2917.         {
  2918.           nread = read (fd, buffer + total_read, trial - total_read);
  2919.           if (nread <= 0)
  2920.         error ("IO error reading %s: %s",
  2921.                XSTRING (filename)->data, strerror (errno));
  2922.           total_read += nread;
  2923.         }
  2924.       /* Scan this bufferfull from the end, comparing with
  2925.          the Emacs buffer.  */
  2926.       bufpos = total_read;
  2927.       /* Compare with same_at_start to avoid counting some buffer text
  2928.          as matching both at the file's beginning and at the end.  */
  2929.       while (bufpos > 0 && same_at_end > same_at_start
  2930.          && FETCH_CHAR (same_at_end - 1) == buffer[bufpos - 1])
  2931.         same_at_end--, bufpos--;
  2932.       /* If we found a discrepancy, stop the scan.
  2933.          Otherwise loop around and scan the preceding bufferfull.  */
  2934.       if (bufpos != 0)
  2935.         break;
  2936.     }
  2937.       immediate_quit = 0;
  2938.  
  2939.       /* Don't try to reuse the same piece of text twice.  */
  2940.       overlap = same_at_start - BEGV - (same_at_end + st.st_size - ZV);
  2941.       if (overlap > 0)
  2942.     same_at_end += overlap;
  2943.  
  2944.       /* Arrange to read only the nonmatching middle part of the file.  */
  2945.       XFASTINT (beg) = same_at_start - BEGV;
  2946.       XFASTINT (end) = st.st_size - (ZV - same_at_end);
  2947.  
  2948.       del_range_1 (same_at_start, same_at_end, 0);
  2949.       /* Insert from the file at the proper position.  */
  2950.       SET_PT (same_at_start);
  2951.     }
  2952. #endif /* MSDOS */
  2953.  
  2954.   total = XINT (end) - XINT (beg);
  2955.  
  2956.   {
  2957.     register Lisp_Object temp;
  2958.  
  2959.     /* Make sure point-max won't overflow after this insertion.  */
  2960.     XSET (temp, Lisp_Int, total);
  2961.     if (total != XINT (temp))
  2962.       error ("maximum buffer size exceeded");
  2963.   }
  2964.  
  2965.   if (NILP (visit) && total > 0)
  2966.     prepare_to_modify_buffer (point, point);
  2967.  
  2968.   move_gap (point);
  2969.   if (GAP_SIZE < total)
  2970.     make_gap (total - GAP_SIZE);
  2971.  
  2972.   if (XINT (beg) != 0 || !NILP (replace))
  2973.     {
  2974.       if (lseek (fd, XINT (beg), 0) < 0)
  2975.     report_file_error ("Setting file position", Fcons (filename, Qnil));
  2976.     }
  2977.  
  2978.   how_much = 0;
  2979.   while (inserted < total)
  2980.     {
  2981.       int try = min (total - inserted, 64 << 10);
  2982.       int this;
  2983.  
  2984.       /* Allow quitting out of the actual I/O.  */
  2985.       immediate_quit = 1;
  2986.       QUIT;
  2987.       this = read (fd, &FETCH_CHAR (point + inserted - 1) + 1, try);
  2988.       immediate_quit = 0;
  2989.  
  2990.       if (this <= 0)
  2991.     {
  2992.       how_much = this;
  2993.       break;
  2994.     }
  2995.  
  2996.       GPT += this;
  2997.       GAP_SIZE -= this;
  2998.       ZV += this;
  2999.       Z += this;
  3000.       inserted += this;
  3001.     }
  3002.  
  3003. #ifdef MSDOS
  3004.   /* Demacs 1.1.1 91/10/16 HIRANO Satoshi, MW July 1993 */
  3005.   /* Determine file type from name and remove LFs from CR-LFs if the file
  3006.      is deemed to be a text file.  */
  3007.   {
  3008.     struct gcpro gcpro1;
  3009.     Lisp_Object code;
  3010.     code = Qnil;
  3011.     GCPRO1 (filename);
  3012.     current_buffer->buffer_file_type
  3013.       = call1 (Qfind_buffer_file_type, filename);
  3014.     UNGCPRO;
  3015.     if (NILP (current_buffer->buffer_file_type))
  3016.       {
  3017.     int reduced_size
  3018.       = inserted - crlf_to_lf (inserted, &FETCH_CHAR (point - 1) + 1);
  3019.     ZV -= reduced_size;
  3020.     Z -= reduced_size;
  3021.     GPT -= reduced_size;
  3022.     GAP_SIZE += reduced_size;
  3023.     inserted -= reduced_size;
  3024.       }
  3025.   }
  3026. #endif
  3027.  
  3028.   if (inserted > 0)
  3029.     {
  3030.       record_insert (point, inserted);
  3031.  
  3032.       /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
  3033.       offset_intervals (current_buffer, point, inserted);
  3034.       MODIFF++;
  3035.     }
  3036.  
  3037.   close (fd);
  3038.  
  3039.   /* Discard the unwind protect for closing the file.  */
  3040.   specpdl_ptr--;
  3041.  
  3042.   if (how_much < 0)
  3043.     error ("IO error reading %s: %s",
  3044.        XSTRING (filename)->data, strerror (errno));
  3045.  
  3046.  notfound:
  3047.  handled:
  3048.  
  3049.   if (!NILP (visit))
  3050.     {
  3051.       if (!EQ (current_buffer->undo_list, Qt))
  3052.     current_buffer->undo_list = Qnil;
  3053. #ifdef APOLLO
  3054.       stat (XSTRING (filename)->data, &st);
  3055. #endif
  3056.  
  3057.       if (NILP (handler))
  3058.     {
  3059.       current_buffer->modtime = st.st_mtime;
  3060.       current_buffer->filename = filename;
  3061.     }
  3062.  
  3063.       current_buffer->save_modified = MODIFF;
  3064.       current_buffer->auto_save_modified = MODIFF;
  3065.       XFASTINT (current_buffer->save_length) = Z - BEG;
  3066. #ifdef CLASH_DETECTION
  3067.       if (NILP (handler))
  3068.     {
  3069.       if (!NILP (current_buffer->filename))
  3070.         unlock_file (current_buffer->filename);
  3071.       unlock_file (filename);
  3072.     }
  3073. #endif /* CLASH_DETECTION */
  3074.       /* If visiting nonexistent file, return nil.  */
  3075.       if (current_buffer->modtime == -1)
  3076.     report_file_error ("Opening input file", Fcons (filename, Qnil));
  3077.     }
  3078.  
  3079.   if (inserted > 0 && NILP (visit) && total > 0)
  3080.     signal_after_change (point, 0, inserted);
  3081.   
  3082.   if (inserted > 0)
  3083.     {
  3084.       p = Vafter_insert_file_functions;
  3085.       while (!NILP (p))
  3086.     {
  3087.       insval = call1 (Fcar (p), make_number (inserted));
  3088.       if (!NILP (insval))
  3089.         {
  3090.           CHECK_NUMBER (insval, 0);
  3091.           inserted = XFASTINT (insval);
  3092.         }
  3093.       QUIT;
  3094.       p = Fcdr (p);
  3095.     }
  3096.     }
  3097.  
  3098.   if (NILP (val))
  3099.     val = Fcons (filename,
  3100.          Fcons (make_number (inserted),
  3101.             Qnil));
  3102.  
  3103.   RETURN_UNGCPRO (unbind_to (count, val));
  3104. }
  3105.  
  3106. static Lisp_Object build_annotations ();
  3107.  
  3108. /* If build_annotations switched buffers, switch back to BUF.
  3109.    Kill the temporary buffer that was selected in the meantime.  */
  3110.  
  3111. static Lisp_Object 
  3112. build_annotations_unwind (buf)
  3113.      Lisp_Object buf;
  3114. {
  3115.   Lisp_Object tembuf;
  3116.  
  3117.   if (XBUFFER (buf) == current_buffer)
  3118.     return Qnil;
  3119.   tembuf = Fcurrent_buffer ();
  3120.   Fset_buffer (buf);
  3121.   Fkill_buffer (tembuf);
  3122.   return Qnil;
  3123. }
  3124.  
  3125. DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 5,
  3126.   "r\nFWrite region to file: ",
  3127.   "Write current region into specified file.\n\
  3128. When called from a program, takes three arguments:\n\
  3129. START, END and FILENAME.  START and END are buffer positions.\n\
  3130. Optional fourth argument APPEND if non-nil means\n\
  3131.   append to existing file contents (if any).\n\
  3132. Optional fifth argument VISIT if t means\n\
  3133.   set the last-save-file-modtime of buffer to this file's modtime\n\
  3134.   and mark buffer not modified.\n\
  3135. If VISIT is a string, it is a second file name;\n\
  3136.   the output goes to FILENAME, but the buffer is marked as visiting VISIT.\n\
  3137.   VISIT is also the file name to lock and unlock for clash detection.\n\
  3138. If VISIT is neither t nor nil nor a string,\n\
  3139.   that means do not print the \"Wrote file\" message.\n\
  3140. Kludgy feature: if START is a string, then that string is written\n\
  3141. to the file, instead of any buffer contents, and END is ignored.")
  3142.   (start, end, filename, append, visit)
  3143.      Lisp_Object start, end, filename, append, visit;
  3144. {
  3145.   register int desc;
  3146.   int failure;
  3147.   int save_errno;
  3148.   unsigned char *fn;
  3149.   struct stat st;
  3150.   int tem;
  3151.   int count = specpdl_ptr - specpdl;
  3152.   int count1;
  3153. #ifdef VMS
  3154.   unsigned char *fname = 0;    /* If non-0, original filename (must rename) */
  3155. #endif /* VMS */
  3156.   Lisp_Object handler;
  3157.   Lisp_Object visit_file;
  3158.   Lisp_Object annotations;
  3159.   int visiting, quietly;
  3160.   struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
  3161.   struct buffer *given_buffer;
  3162. #ifdef MSDOS
  3163.   int buffer_file_type
  3164.     = NILP (current_buffer->buffer_file_type) ? O_TEXT : O_BINARY;
  3165. #endif
  3166.  
  3167.   if (!NILP (start) && !STRINGP (start))
  3168.     validate_region (&start, &end);
  3169.  
  3170.   GCPRO2 (filename, visit);
  3171.   filename = Fexpand_file_name (filename, Qnil);
  3172.   if (STRINGP (visit))
  3173.     visit_file = Fexpand_file_name (visit, Qnil);
  3174.   else
  3175.     visit_file = filename;
  3176.   UNGCPRO;
  3177.  
  3178.   visiting = (EQ (visit, Qt) || STRINGP (visit));
  3179.   quietly = !NILP (visit);
  3180.  
  3181.   annotations = Qnil;
  3182.  
  3183.   GCPRO4 (start, filename, annotations, visit_file);
  3184.  
  3185.   /* If the file name has special constructs in it,
  3186.      call the corresponding file handler.  */
  3187.   handler = Ffind_file_name_handler (filename, Qwrite_region);
  3188.   /* If FILENAME has no handler, see if VISIT has one.  */
  3189.   if (NILP (handler) && XTYPE (visit) == Lisp_String)
  3190.     handler = Ffind_file_name_handler (visit, Qwrite_region);    
  3191.  
  3192.   if (!NILP (handler))
  3193.     {
  3194.       Lisp_Object val;
  3195.       val = call6 (handler, Qwrite_region, start, end,
  3196.            filename, append, visit);
  3197.  
  3198.       if (visiting)
  3199.     {
  3200.       current_buffer->save_modified = MODIFF;
  3201.       XFASTINT (current_buffer->save_length) = Z - BEG;
  3202.       current_buffer->filename = visit_file;
  3203.     }
  3204.       UNGCPRO;
  3205.       return val;
  3206.     }
  3207.  
  3208.   /* Special kludge to simplify auto-saving.  */
  3209.   if (NILP (start))
  3210.     {
  3211.       XFASTINT (start) = BEG;
  3212.       XFASTINT (end) = Z;
  3213.     }
  3214.  
  3215.   record_unwind_protect (build_annotations_unwind, Fcurrent_buffer ());
  3216.   count1 = specpdl_ptr - specpdl;
  3217.  
  3218.   given_buffer = current_buffer;
  3219.   annotations = build_annotations (start, end);
  3220.   if (current_buffer != given_buffer)
  3221.     {
  3222.       start = BEGV;
  3223.       end = ZV;
  3224.     }
  3225.  
  3226. #ifdef CLASH_DETECTION
  3227.   if (!auto_saving)
  3228.     lock_file (visit_file);
  3229. #endif /* CLASH_DETECTION */
  3230.  
  3231.   fn = XSTRING (filename)->data;
  3232.   desc = -1;
  3233.   if (!NILP (append))
  3234. #ifdef MSDOS
  3235.     desc = open (fn, O_WRONLY | buffer_file_type);
  3236. #else
  3237.     desc = open (fn, O_WRONLY);
  3238. #endif
  3239.  
  3240.   if (desc < 0)
  3241. #ifdef VMS
  3242.     if (auto_saving)    /* Overwrite any previous version of autosave file */
  3243.       {
  3244.     vms_truncate (fn);    /* if fn exists, truncate to zero length */
  3245.     desc = open (fn, O_RDWR);
  3246.     if (desc < 0)
  3247.       desc = creat_copy_attrs (STRINGP (current_buffer->filename)
  3248.                    ? XSTRING (current_buffer->filename)->data : 0,
  3249.                    fn);
  3250.       }
  3251.     else        /* Write to temporary name and rename if no errors */
  3252.       {
  3253.     Lisp_Object temp_name;
  3254.     temp_name = Ffile_name_directory (filename);
  3255.  
  3256.     if (!NILP (temp_name))
  3257.       {
  3258.         temp_name = Fmake_temp_name (concat2 (temp_name,
  3259.                           build_string ("$$SAVE$$")));
  3260.         fname = XSTRING (filename)->data;
  3261.         fn = XSTRING (temp_name)->data;
  3262.         desc = creat_copy_attrs (fname, fn);
  3263.         if (desc < 0)
  3264.           {
  3265.         /* If we can't open the temporary file, try creating a new
  3266.            version of the original file.  VMS "creat" creates a
  3267.            new version rather than truncating an existing file. */
  3268.         fn = fname;
  3269.         fname = 0;
  3270.         desc = creat (fn, 0666);
  3271. #if 0 /* This can clobber an existing file and fail to replace it,
  3272.      if the user runs out of space.  */
  3273.         if (desc < 0)
  3274.           {
  3275.             /* We can't make a new version;
  3276.                try to truncate and rewrite existing version if any.  */
  3277.             vms_truncate (fn);
  3278.             desc = open (fn, O_RDWR);
  3279.           }
  3280. #endif
  3281.           }
  3282.       }
  3283.     else
  3284.       desc = creat (fn, 0666);
  3285.       }
  3286. #else /* not VMS */
  3287. #ifdef MSDOS
  3288.   desc = open (fn, 
  3289.            O_WRONLY | O_TRUNC | O_CREAT | buffer_file_type, 
  3290.            S_IREAD | S_IWRITE);
  3291. #else /* not MSDOS */
  3292.   desc = creat (fn, auto_saving ? auto_save_mode_bits : 0666);
  3293. #endif /* not MSDOS */
  3294. #endif /* not VMS */
  3295.  
  3296.   UNGCPRO;
  3297.  
  3298.   if (desc < 0)
  3299.     {
  3300. #ifdef CLASH_DETECTION
  3301.       save_errno = errno;
  3302.       if (!auto_saving) unlock_file (visit_file);
  3303.       errno = save_errno;
  3304. #endif /* CLASH_DETECTION */
  3305.       report_file_error ("Opening output file", Fcons (filename, Qnil));
  3306.     }
  3307.  
  3308.   record_unwind_protect (close_file_unwind, make_number (desc));
  3309.  
  3310.   if (!NILP (append))
  3311.     if (lseek (desc, 0, 2) < 0)
  3312.       {
  3313. #ifdef CLASH_DETECTION
  3314.     if (!auto_saving) unlock_file (visit_file);
  3315. #endif /* CLASH_DETECTION */
  3316.     report_file_error ("Lseek error", Fcons (filename, Qnil));
  3317.       }
  3318.  
  3319. #ifdef VMS
  3320. /*
  3321.  * Kludge Warning: The VMS C RTL likes to insert carriage returns
  3322.  * if we do writes that don't end with a carriage return. Furthermore
  3323.  * it cannot handle writes of more then 16K. The modified
  3324.  * version of "sys_write" in SYSDEP.C (see comment there) copes with
  3325.  * this EXCEPT for the last record (iff it doesn't end with a carriage
  3326.  * return). This implies that if your buffer doesn't end with a carriage
  3327.  * return, you get one free... tough. However it also means that if
  3328.  * we make two calls to sys_write (a la the following code) you can
  3329.  * get one at the gap as well. The easiest way to fix this (honest)
  3330.  * is to move the gap to the next newline (or the end of the buffer).
  3331.  * Thus this change.
  3332.  *
  3333.  * Yech!
  3334.  */
  3335.   if (GPT > BEG && GPT_ADDR[-1] != '\n')
  3336.     move_gap (find_next_newline (GPT, 1));
  3337. #endif
  3338.  
  3339.   failure = 0;
  3340.   immediate_quit = 1;
  3341.  
  3342.   if (STRINGP (start))
  3343.     {
  3344.       failure = 0 > a_write (desc, XSTRING (start)->data,
  3345.                  XSTRING (start)->size, 0, &annotations);
  3346.       save_errno = errno;
  3347.     }
  3348.   else if (XINT (start) != XINT (end))
  3349.     {
  3350.       int nwritten = 0;
  3351.       if (XINT (start) < GPT)
  3352.     {
  3353.       register int end1 = XINT (end);
  3354.       tem = XINT (start);
  3355.       failure = 0 > a_write (desc, &FETCH_CHAR (tem),
  3356.                  min (GPT, end1) - tem, tem, &annotations);
  3357.       nwritten += min (GPT, end1) - tem;
  3358.       save_errno = errno;
  3359.     }
  3360.  
  3361.       if (XINT (end) > GPT && !failure)
  3362.     {
  3363.       tem = XINT (start);
  3364.       tem = max (tem, GPT);
  3365.       failure = 0 > a_write (desc, &FETCH_CHAR (tem), XINT (end) - tem,
  3366.                  tem, &annotations);
  3367.       nwritten += XINT (end) - tem;
  3368.       save_errno = errno;
  3369.     }
  3370.  
  3371.       if (nwritten == 0)
  3372.     {
  3373.       /* If file was empty, still need to write the annotations */
  3374.       failure = 0 > a_write (desc, "", 0, XINT (start), &annotations);
  3375.       save_errno = errno;
  3376.     }
  3377.     }
  3378.  
  3379.   immediate_quit = 0;
  3380.  
  3381. #ifdef HAVE_FSYNC
  3382.   /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
  3383.      Disk full in NFS may be reported here.  */
  3384.   /* mib says that closing the file will try to write as fast as NFS can do
  3385.      it, and that means the fsync here is not crucial for autosave files.  */
  3386.   if (!auto_saving && fsync (desc) < 0)
  3387.     failure = 1, save_errno = errno;
  3388. #endif
  3389.  
  3390.   /* Spurious "file has changed on disk" warnings have been 
  3391.      observed on Suns as well.
  3392.      It seems that `close' can change the modtime, under nfs.
  3393.  
  3394.      (This has supposedly been fixed in Sunos 4,
  3395.      but who knows about all the other machines with NFS?)  */
  3396. #if 0
  3397.  
  3398.   /* On VMS and APOLLO, must do the stat after the close
  3399.      since closing changes the modtime.  */
  3400. #ifndef VMS
  3401. #ifndef APOLLO
  3402.   /* Recall that #if defined does not work on VMS.  */
  3403. #define FOO
  3404.   fstat (desc, &st);
  3405. #endif
  3406. #endif
  3407. #endif
  3408.  
  3409.   /* NFS can report a write failure now.  */
  3410.   if (close (desc) < 0)
  3411.     failure = 1, save_errno = errno;
  3412.  
  3413. #ifdef VMS
  3414.   /* If we wrote to a temporary name and had no errors, rename to real name. */
  3415.   if (fname)
  3416.     {
  3417.       if (!failure)
  3418.     failure = (rename (fn, fname) != 0), save_errno = errno;
  3419.       fn = fname;
  3420.     }
  3421. #endif /* VMS */
  3422.  
  3423. #ifndef FOO
  3424.   stat (fn, &st);
  3425. #endif
  3426.   /* Discard the unwind protect for close_file_unwind.  */
  3427.   specpdl_ptr = specpdl + count1;
  3428.   /* Restore the original current buffer.  */
  3429.   visit_file = unbind_to (count, visit_file);
  3430.  
  3431. #ifdef CLASH_DETECTION
  3432.   if (!auto_saving)
  3433.     unlock_file (visit_file);
  3434. #endif /* CLASH_DETECTION */
  3435.  
  3436.   /* Do this before reporting IO error
  3437.      to avoid a "file has changed on disk" warning on
  3438.      next attempt to save.  */
  3439.   if (visiting)
  3440.     current_buffer->modtime = st.st_mtime;
  3441.  
  3442.   if (failure)
  3443.     error ("IO error writing %s: %s", fn, strerror (save_errno));
  3444.  
  3445.   if (visiting)
  3446.     {
  3447.       current_buffer->save_modified = MODIFF;
  3448.       XFASTINT (current_buffer->save_length) = Z - BEG;
  3449.       current_buffer->filename = visit_file;
  3450.       update_mode_lines++;
  3451.     }
  3452.   else if (quietly)
  3453.     return Qnil;
  3454.  
  3455.   if (!auto_saving)
  3456.     message ("Wrote %s", XSTRING (visit_file)->data);
  3457.  
  3458.   return Qnil;
  3459. }
  3460.  
  3461. Lisp_Object merge ();
  3462.  
  3463. DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
  3464.   "Return t if (car A) is numerically less than (car B).")
  3465.   (a, b)
  3466.      Lisp_Object a, b;
  3467. {
  3468.   return Flss (Fcar (a), Fcar (b));
  3469. }
  3470.  
  3471. /* Build the complete list of annotations appropriate for writing out
  3472.    the text between START and END, by calling all the functions in
  3473.    write-region-annotate-functions and merging the lists they return.
  3474.    If one of these functions switches to a different buffer, we assume
  3475.    that buffer contains altered text.  Therefore, the caller must
  3476.    make sure to restore the current buffer in all cases,
  3477.    as save-excursion would do.  */
  3478.  
  3479. static Lisp_Object
  3480. build_annotations (start, end)
  3481.      Lisp_Object start, end;
  3482. {
  3483.   Lisp_Object annotations;
  3484.   Lisp_Object p, res;
  3485.   struct gcpro gcpro1, gcpro2;
  3486.  
  3487.   annotations = Qnil;
  3488.   p = Vwrite_region_annotate_functions;
  3489.   GCPRO2 (annotations, p);
  3490.   while (!NILP (p))
  3491.     {
  3492.       struct buffer *given_buffer = current_buffer;
  3493.       Vwrite_region_annotations_so_far = annotations;
  3494.       res = call2 (Fcar (p), start, end);
  3495.       /* If the function makes a different buffer current,
  3496.      assume that means this buffer contains altered text to be output.
  3497.      Reset START and END from the buffer bounds
  3498.      and discard all previous annotations because they should have
  3499.      been dealt with by this function.  */
  3500.       if (current_buffer != given_buffer)
  3501.     {
  3502.       start = BEGV;
  3503.       end = ZV;
  3504.       annotations = Qnil;
  3505.     }
  3506.       Flength (res);   /* Check basic validity of return value */
  3507.       annotations = merge (annotations, res, Qcar_less_than_car);
  3508.       p = Fcdr (p);
  3509.     }
  3510.   UNGCPRO;
  3511.   return annotations;
  3512. }
  3513.  
  3514. /* Write to descriptor DESC the LEN characters starting at ADDR,
  3515.    assuming they start at position POS in the buffer.
  3516.    Intersperse with them the annotations from *ANNOT
  3517.    (those which fall within the range of positions POS to POS + LEN),
  3518.    each at its appropriate position.
  3519.  
  3520.    Modify *ANNOT by discarding elements as we output them.
  3521.    The return value is negative in case of system call failure.  */
  3522.  
  3523. int
  3524. a_write (desc, addr, len, pos, annot)
  3525.      int desc;
  3526.      register char *addr;
  3527.      register int len;
  3528.      int pos;
  3529.      Lisp_Object *annot;
  3530. {
  3531.   Lisp_Object tem;
  3532.   int nextpos;
  3533.   int lastpos = pos + len;
  3534.  
  3535.   while (NILP (*annot) || CONSP (*annot))
  3536.     {
  3537.       tem = Fcar_safe (Fcar (*annot));
  3538.       if (INTEGERP (tem) && XINT (tem) >= pos && XFASTINT (tem) <= lastpos)
  3539.     nextpos = XFASTINT (tem);
  3540.       else
  3541.     return e_write (desc, addr, lastpos - pos);
  3542.       if (nextpos > pos)
  3543.     {
  3544.       if (0 > e_write (desc, addr, nextpos - pos))
  3545.         return -1;
  3546.       addr += nextpos - pos;
  3547.       pos = nextpos;
  3548.     }
  3549.       tem = Fcdr (Fcar (*annot));
  3550.       if (STRINGP (tem))
  3551.     {
  3552.       if (0 > e_write (desc, XSTRING (tem)->data, XSTRING (tem)->size))
  3553.         return -1;
  3554.     }
  3555.       *annot = Fcdr (*annot);
  3556.     }
  3557. }
  3558.  
  3559. int
  3560. e_write (desc, addr, len)
  3561.      int desc;
  3562.      register char *addr;
  3563.      register int len;
  3564. {
  3565.   char buf[16 * 1024];
  3566.   register char *p, *end;
  3567.  
  3568.   if (!EQ (current_buffer->selective_display, Qt))
  3569.     return write (desc, addr, len) - len;
  3570.   else
  3571.     {
  3572.       p = buf;
  3573.       end = p + sizeof buf;
  3574.       while (len--)
  3575.     {
  3576.       if (p == end)
  3577.         {
  3578.           if (write (desc, buf, sizeof buf) != sizeof buf)
  3579.         return -1;
  3580.           p = buf;
  3581.         }
  3582.       *p = *addr++;
  3583.       if (*p++ == '\015')
  3584.         p[-1] = '\n';
  3585.     }
  3586.       if (p != buf)
  3587.     if (write (desc, buf, p - buf) != p - buf)
  3588.       return -1;
  3589.     }
  3590.   return 0;
  3591. }
  3592.  
  3593. DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
  3594.   Sverify_visited_file_modtime, 1, 1, 0,
  3595.   "Return t if last mod time of BUF's visited file matches what BUF records.\n\
  3596. This means that the file has not been changed since it was visited or saved.")
  3597.   (buf)
  3598.      Lisp_Object buf;
  3599. {
  3600.   struct buffer *b;
  3601.   struct stat st;
  3602.   Lisp_Object handler;
  3603.  
  3604.   CHECK_BUFFER (buf, 0);
  3605.   b = XBUFFER (buf);
  3606.  
  3607.   if (XTYPE (b->filename) != Lisp_String) return Qt;
  3608.   if (b->modtime == 0) return Qt;
  3609.  
  3610.   /* If the file name has special constructs in it,
  3611.      call the corresponding file handler.  */
  3612.   handler = Ffind_file_name_handler (b->filename,
  3613.                      Qverify_visited_file_modtime);
  3614.   if (!NILP (handler))
  3615.     return call2 (handler, Qverify_visited_file_modtime, buf);
  3616.  
  3617.   if (stat (XSTRING (b->filename)->data, &st) < 0)
  3618.     {
  3619.       /* If the file doesn't exist now and didn't exist before,
  3620.      we say that it isn't modified, provided the error is a tame one.  */
  3621.       if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
  3622.     st.st_mtime = -1;
  3623.       else
  3624.     st.st_mtime = 0;
  3625.     }
  3626.   if (st.st_mtime == b->modtime
  3627.       /* If both are positive, accept them if they are off by one second.  */
  3628.       || (st.st_mtime > 0 && b->modtime > 0
  3629.       && (st.st_mtime == b->modtime + 1
  3630.           || st.st_mtime == b->modtime - 1)))
  3631.     return Qt;
  3632.   return Qnil;
  3633. }
  3634.  
  3635. DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
  3636.   Sclear_visited_file_modtime, 0, 0, 0,
  3637.   "Clear out records of last mod time of visited file.\n\
  3638. Next attempt to save will certainly not complain of a discrepancy.")
  3639.   ()
  3640. {
  3641.   current_buffer->modtime = 0;
  3642.   return Qnil;
  3643. }
  3644.  
  3645. DEFUN ("visited-file-modtime", Fvisited_file_modtime,
  3646.   Svisited_file_modtime, 0, 0, 0,
  3647.   "Return the current buffer's recorded visited file modification time.\n\
  3648. The value is a list of the form (HIGH . LOW), like the time values\n\
  3649. that `file-attributes' returns.")
  3650.   ()
  3651. {
  3652.   return long_to_cons (current_buffer->modtime);
  3653. }
  3654.  
  3655. DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
  3656.   Sset_visited_file_modtime, 0, 1, 0,
  3657.   "Update buffer's recorded modification time from the visited file's time.\n\
  3658. Useful if the buffer was not read from the file normally\n\
  3659. or if the file itself has been changed for some known benign reason.\n\
  3660. An argument specifies the modification time value to use\n\
  3661. \(instead of that of the visited file), in the form of a list\n\
  3662. \(HIGH . LOW) or (HIGH LOW).")
  3663.   (time_list)
  3664.      Lisp_Object time_list;
  3665. {
  3666.   if (!NILP (time_list))
  3667.     current_buffer->modtime = cons_to_long (time_list);
  3668.   else
  3669.     {
  3670.       register Lisp_Object filename;
  3671.       struct stat st;
  3672.       Lisp_Object handler;
  3673.  
  3674.       filename = Fexpand_file_name (current_buffer->filename, Qnil);
  3675.  
  3676.       /* If the file name has special constructs in it,
  3677.      call the corresponding file handler.  */
  3678.       handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
  3679.       if (!NILP (handler))
  3680.     /* The handler can find the file name the same way we did.  */
  3681.     return call2 (handler, Qset_visited_file_modtime, Qnil);
  3682.       else if (stat (XSTRING (filename)->data, &st) >= 0)
  3683.     current_buffer->modtime = st.st_mtime;
  3684.     }
  3685.  
  3686.   return Qnil;
  3687. }
  3688.  
  3689. Lisp_Object
  3690. auto_save_error ()
  3691. {
  3692.   ring_bell ();
  3693.   message ("Autosaving...error for %s", XSTRING (current_buffer->name)->data);
  3694.   Fsleep_for (make_number (1), Qnil);
  3695.   message ("Autosaving...error!for %s", XSTRING (current_buffer->name)->data);
  3696.   Fsleep_for (make_number (1), Qnil);
  3697.   message ("Autosaving...error for %s", XSTRING (current_buffer->name)->data);
  3698.   Fsleep_for (make_number (1), Qnil);
  3699.   return Qnil;
  3700. }
  3701.  
  3702. Lisp_Object
  3703. auto_save_1 ()
  3704. {
  3705.   unsigned char *fn;
  3706.   struct stat st;
  3707.  
  3708.   /* Get visited file's mode to become the auto save file's mode.  */
  3709.   if (stat (XSTRING (current_buffer->filename)->data, &st) >= 0)
  3710.     /* But make sure we can overwrite it later!  */
  3711.     auto_save_mode_bits = st.st_mode | 0600;
  3712.   else
  3713.     auto_save_mode_bits = 0666;
  3714.  
  3715.   return
  3716.     Fwrite_region (Qnil, Qnil,
  3717.            current_buffer->auto_save_file_name,
  3718.            Qnil, Qlambda);
  3719. }
  3720.  
  3721. static Lisp_Object
  3722. do_auto_save_unwind (desc)  /* used as unwind-protect function */
  3723.      Lisp_Object desc;
  3724. {
  3725.   close (XINT (desc));
  3726.   return Qnil;
  3727. }
  3728.  
  3729. DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
  3730.   "Auto-save all buffers that need it.\n\
  3731. This is all buffers that have auto-saving enabled\n\
  3732. and are changed since last auto-saved.\n\
  3733. Auto-saving writes the buffer into a file\n\
  3734. so that your editing is not lost if the system crashes.\n\
  3735. This file is not the file you visited; that changes only when you save.\n\
  3736. Normally we run the normal hook `auto-save-hook' before saving.\n\n\
  3737. Non-nil first argument means do not print any message if successful.\n\
  3738. Non-nil second argument means save only current buffer.")
  3739.   (no_message, current_only)
  3740.      Lisp_Object no_message, current_only;
  3741. {
  3742.   struct buffer *old = current_buffer, *b;
  3743.   Lisp_Object tail, buf;
  3744.   int auto_saved = 0;
  3745.   char *omessage = echo_area_glyphs;
  3746.   int omessage_length = echo_area_glyphs_length;
  3747.   extern int minibuf_level;
  3748.   int do_handled_files;
  3749.   Lisp_Object oquit;
  3750.   int listdesc;
  3751.   int count = specpdl_ptr - specpdl;
  3752.   int *ptr;
  3753.  
  3754.   /* Ordinarily don't quit within this function,
  3755.      but don't make it impossible to quit (in case we get hung in I/O).  */
  3756.   oquit = Vquit_flag;
  3757.   Vquit_flag = Qnil;
  3758.  
  3759.   /* No GCPRO needed, because (when it matters) all Lisp_Object variables
  3760.      point to non-strings reached from Vbuffer_alist.  */
  3761.  
  3762.   auto_saving = 1;
  3763.   if (minibuf_level)
  3764.     no_message = Qt;
  3765.  
  3766.   if (!NILP (Vrun_hooks))
  3767.     call1 (Vrun_hooks, intern ("auto-save-hook"));
  3768.  
  3769.   if (STRINGP (Vauto_save_list_file_name))
  3770.     {
  3771. #ifdef MSDOS
  3772.       listdesc = open (XSTRING (Vauto_save_list_file_name)->data, 
  3773.                O_WRONLY | O_TRUNC | O_CREAT | O_TEXT,
  3774.                S_IREAD | S_IWRITE);
  3775. #else /* not MSDOS */
  3776.       listdesc = creat (XSTRING (Vauto_save_list_file_name)->data, 0666);
  3777. #endif /* not MSDOS */
  3778.     }
  3779.   else
  3780.     listdesc = -1;
  3781.   
  3782.   /* Arrange to close that file whether or not we get an error.  */
  3783.   if (listdesc >= 0)
  3784.     record_unwind_protect (do_auto_save_unwind, make_number (listdesc));
  3785.  
  3786.   /* First, save all files which don't have handlers.  If Emacs is
  3787.      crashing, the handlers may tweak what is causing Emacs to crash
  3788.      in the first place, and it would be a shame if Emacs failed to
  3789.      autosave perfectly ordinary files because it couldn't handle some
  3790.      ange-ftp'd file.  */
  3791.   for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
  3792.     for (tail = Vbuffer_alist; XGCTYPE (tail) == Lisp_Cons;
  3793.      tail = XCONS (tail)->cdr)
  3794.       {
  3795.     buf = XCONS (XCONS (tail)->car)->cdr;
  3796.     b = XBUFFER (buf);
  3797.       
  3798.     /* Record all the buffers that have auto save mode
  3799.        in the special file that lists them.  */
  3800.     if (XTYPE (b->auto_save_file_name) == Lisp_String
  3801.         && listdesc >= 0 && do_handled_files == 0)
  3802.       {
  3803.         write (listdesc, XSTRING (b->auto_save_file_name)->data,
  3804.            XSTRING (b->auto_save_file_name)->size);
  3805.         write (listdesc, "\n", 1);
  3806.       }
  3807.  
  3808.     if (!NILP (current_only)
  3809.         && b != current_buffer)
  3810.       continue;
  3811.  
  3812.     /* Check for auto save enabled
  3813.        and file changed since last auto save
  3814.        and file changed since last real save.  */
  3815.     if (XTYPE (b->auto_save_file_name) == Lisp_String
  3816.         && b->save_modified < BUF_MODIFF (b)
  3817.         && b->auto_save_modified < BUF_MODIFF (b)
  3818.         /* -1 means we've turned off autosaving for a while--see below.  */
  3819.         && XINT (b->save_length) >= 0
  3820.         && (do_handled_files
  3821.         || NILP (Ffind_file_name_handler (b->auto_save_file_name,
  3822.                           Qwrite_region))))
  3823.       {
  3824.         EMACS_TIME before_time, after_time;
  3825.  
  3826.         EMACS_GET_TIME (before_time);
  3827.  
  3828.         /* If we had a failure, don't try again for 20 minutes.  */
  3829.         if (b->auto_save_failure_time >= 0
  3830.         && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
  3831.           continue;
  3832.  
  3833.         if ((XFASTINT (b->save_length) * 10
  3834.          > (BUF_Z (b) - BUF_BEG (b)) * 13)
  3835.         /* A short file is likely to change a large fraction;
  3836.            spare the user annoying messages.  */
  3837.         && XFASTINT (b->save_length) > 5000
  3838.         /* These messages are frequent and annoying for `*mail*'.  */
  3839.         && !EQ (b->filename, Qnil)
  3840.         && NILP (no_message))
  3841.           {
  3842.         /* It has shrunk too much; turn off auto-saving here.  */
  3843.         message ("Buffer %s has shrunk a lot; auto save turned off there",
  3844.              XSTRING (b->name)->data);
  3845.         /* Turn off auto-saving until there's a real save,
  3846.            and prevent any more warnings.  */
  3847.         XSET (b->save_length, Lisp_Int, -1);
  3848.         Fsleep_for (make_number (1), Qnil);
  3849.         continue;
  3850.           }
  3851.         set_buffer_internal (b);
  3852.         if (!auto_saved && NILP (no_message))
  3853.           message1 ("Auto-saving...");
  3854.         internal_condition_case (auto_save_1, Qt, auto_save_error);
  3855.         auto_saved++;
  3856.         b->auto_save_modified = BUF_MODIFF (b);
  3857.         XFASTINT (current_buffer->save_length) = Z - BEG;
  3858.         set_buffer_internal (old);
  3859.  
  3860.         EMACS_GET_TIME (after_time);
  3861.  
  3862.         /* If auto-save took more than 60 seconds,
  3863.            assume it was an NFS failure that got a timeout.  */
  3864.         if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
  3865.           b->auto_save_failure_time = EMACS_SECS (after_time);
  3866.       }
  3867.       }
  3868.  
  3869.   /* Prevent another auto save till enough input events come in.  */
  3870.   record_auto_save ();
  3871.  
  3872.   if (auto_saved && NILP (no_message))
  3873.     {
  3874.       if (omessage)
  3875.     message2 (omessage, omessage_length);
  3876.       else
  3877.     message1 ("Auto-saving...done");
  3878.     }
  3879.  
  3880.   Vquit_flag = oquit;
  3881.  
  3882.   auto_saving = 0;
  3883.   unbind_to (count, Qnil);
  3884.   return Qnil;
  3885. }
  3886.  
  3887. DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
  3888.   Sset_buffer_auto_saved, 0, 0, 0,
  3889.   "Mark current buffer as auto-saved with its current text.\n\
  3890. No auto-save file will be written until the buffer changes again.")
  3891.   ()
  3892. {
  3893.   current_buffer->auto_save_modified = MODIFF;
  3894.   XFASTINT (current_buffer->save_length) = Z - BEG;
  3895.   current_buffer->auto_save_failure_time = -1;
  3896.   return Qnil;
  3897. }
  3898.  
  3899. DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
  3900.   Sclear_buffer_auto_save_failure, 0, 0, 0,
  3901.   "Clear any record of a recent auto-save failure in the current buffer.")
  3902.   ()
  3903. {
  3904.   current_buffer->auto_save_failure_time = -1;
  3905.   return Qnil;
  3906. }
  3907.  
  3908. DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
  3909.   0, 0, 0,
  3910.   "Return t if buffer has been auto-saved since last read in or saved.")
  3911.   ()
  3912. {
  3913.   return (current_buffer->save_modified < current_buffer->auto_save_modified) ? Qt : Qnil;
  3914. }
  3915.  
  3916. /* Reading and completing file names */
  3917. extern Lisp_Object Ffile_name_completion (), Ffile_name_all_completions ();
  3918.  
  3919. /* In the string VAL, change each $ to $$ and return the result.  */
  3920.  
  3921. static Lisp_Object
  3922. double_dollars (val)
  3923.      Lisp_Object val;
  3924. {
  3925.   register unsigned char *old, *new;
  3926.   register int n;
  3927.   int osize, count;
  3928.  
  3929.   osize = XSTRING (val)->size;
  3930.   /* Quote "$" as "$$" to get it past substitute-in-file-name */
  3931.   for (n = osize, count = 0, old = XSTRING (val)->data; n > 0; n--)
  3932.     if (*old++ == '$') count++;
  3933.   if (count > 0)
  3934.     {
  3935.       old = XSTRING (val)->data;
  3936.       val = Fmake_string (make_number (osize + count), make_number (0));
  3937.       new = XSTRING (val)->data;
  3938.       for (n = osize; n > 0; n--)
  3939.     if (*old != '$')
  3940.       *new++ = *old++;
  3941.     else
  3942.       {
  3943.         *new++ = '$';
  3944.         *new++ = '$';
  3945.         old++;
  3946.       }
  3947.     }
  3948.   return val;
  3949. }
  3950.  
  3951. DEFUN ("read-file-name-internal", Fread_file_name_internal, Sread_file_name_internal,
  3952.   3, 3, 0,
  3953.   "Internal subroutine for read-file-name.  Do not call this.")
  3954.   (string, dir, action)
  3955.      Lisp_Object string, dir, action;
  3956.   /* action is nil for complete, t for return list of completions,
  3957.      lambda for verify final value */
  3958. {
  3959.   Lisp_Object name, specdir, realdir, val, orig_string;
  3960.   int changed;
  3961.   struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
  3962.  
  3963.   realdir = dir;
  3964.   name = string;
  3965.   orig_string = Qnil;
  3966.   specdir = Qnil;
  3967.   changed = 0;
  3968.   /* No need to protect ACTION--we only compare it with t and nil.  */
  3969.   GCPRO4 (string, realdir, name, specdir);
  3970.  
  3971.   if (XSTRING (string)->size == 0)
  3972.     {
  3973.       if (EQ (action, Qlambda))
  3974.     {
  3975.       UNGCPRO;
  3976.       return Qnil;
  3977.     }
  3978.     }
  3979.   else
  3980.     {
  3981.       orig_string = string;
  3982.       string = Fsubstitute_in_file_name (string);
  3983.       changed = NILP (Fstring_equal (string, orig_string));
  3984.       name = Ffile_name_nondirectory (string);
  3985.       val = Ffile_name_directory (string);
  3986.       if (! NILP (val))
  3987.     realdir = Fexpand_file_name (val, realdir);
  3988.     }
  3989.  
  3990.   if (NILP (action))
  3991.     {
  3992.       specdir = Ffile_name_directory (string);
  3993.       val = Ffile_name_completion (name, realdir);
  3994.       UNGCPRO;
  3995.       if (XTYPE (val) != Lisp_String)
  3996.     {
  3997.       if (changed)
  3998.         return double_dollars (string);
  3999.       return val;
  4000.     }
  4001.  
  4002.       if (!NILP (specdir))
  4003.     val = concat2 (specdir, val);
  4004. #ifndef VMS
  4005.       return double_dollars (val);
  4006. #else /* not VMS */
  4007.       return val;
  4008. #endif /* not VMS */
  4009.     }
  4010.   UNGCPRO;
  4011.  
  4012.   if (EQ (action, Qt))
  4013.     return Ffile_name_all_completions (name, realdir);
  4014.   /* Only other case actually used is ACTION = lambda */
  4015. #ifdef VMS
  4016.   /* Supposedly this helps commands such as `cd' that read directory names,
  4017.      but can someone explain how it helps them? -- RMS */
  4018.   if (XSTRING (name)->size == 0)
  4019.     return Qt;
  4020. #endif /* VMS */
  4021.   return Ffile_exists_p (string);
  4022. }
  4023.  
  4024. DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0,
  4025.   "Read file name, prompting with PROMPT and completing in directory DIR.\n\
  4026. Value is not expanded---you must call `expand-file-name' yourself.\n\
  4027. Default name to DEFAULT if user enters a null string.\n\
  4028.  (If DEFAULT is omitted, the visited file name is used.)\n\
  4029. Fourth arg MUSTMATCH non-nil means require existing file's name.\n\
  4030.  Non-nil and non-t means also require confirmation after completion.\n\
  4031. Fifth arg INITIAL specifies text to start with.\n\
  4032. DIR defaults to current buffer's directory default.")
  4033.   (prompt, dir, defalt, mustmatch, initial)
  4034.      Lisp_Object prompt, dir, defalt, mustmatch, initial;
  4035. {
  4036.   Lisp_Object val, insdef, insdef1, tem;
  4037.   struct gcpro gcpro1, gcpro2;
  4038.   register char *homedir;
  4039.   int count;
  4040.  
  4041.   if (NILP (dir))
  4042.     dir = current_buffer->directory;
  4043.   if (NILP (defalt))
  4044.     defalt = current_buffer->filename;
  4045.  
  4046.   /* If dir starts with user's homedir, change that to ~. */
  4047.   homedir = (char *) egetenv ("HOME");
  4048.   if (homedir != 0
  4049.       && XTYPE (dir) == Lisp_String
  4050.       && !strncmp (homedir, XSTRING (dir)->data, strlen (homedir))
  4051.       && XSTRING (dir)->data[strlen (homedir)] == '/')
  4052.     {
  4053.       dir = make_string (XSTRING (dir)->data + strlen (homedir) - 1,
  4054.              XSTRING (dir)->size - strlen (homedir) + 1);
  4055.       XSTRING (dir)->data[0] = '~';
  4056.     }
  4057.  
  4058.   if (insert_default_directory)
  4059.     {
  4060.       insdef = dir;
  4061.       if (!NILP (initial))
  4062.     {
  4063.       Lisp_Object args[2], pos;
  4064.  
  4065.       args[0] = insdef;
  4066.       args[1] = initial;
  4067.       insdef = Fconcat (2, args);
  4068.       pos = make_number (XSTRING (double_dollars (dir))->size);
  4069.       insdef1 = Fcons (double_dollars (insdef), pos);
  4070.     }
  4071.       else
  4072.     insdef1 = double_dollars (insdef);
  4073.     }
  4074.   else if (!NILP (initial))
  4075.     {
  4076.       insdef = initial;
  4077.       insdef1 = Fcons (double_dollars (insdef), 0);
  4078.     }
  4079.   else
  4080.     insdef = Qnil, insdef1 = Qnil;
  4081.  
  4082. #ifdef VMS
  4083.   count = specpdl_ptr - specpdl;
  4084.   specbind (intern ("completion-ignore-case"), Qt);
  4085. #endif
  4086.  
  4087.   GCPRO2 (insdef, defalt);
  4088.   val = Fcompleting_read (prompt, intern ("read-file-name-internal"),
  4089.               dir, mustmatch, insdef1,
  4090.               Qfile_name_history);
  4091.  
  4092. #ifdef VMS
  4093.   unbind_to (count, Qnil);
  4094. #endif
  4095.  
  4096.   UNGCPRO;
  4097.   if (NILP (val))
  4098.     error ("No file name specified");
  4099.   tem = Fstring_equal (val, insdef);
  4100.   if (!NILP (tem) && !NILP (defalt))
  4101.     return defalt;
  4102.   if (XSTRING (val)->size == 0 && NILP (insdef))
  4103.     {
  4104.       if (!NILP (defalt))
  4105.     return defalt;
  4106.       else
  4107.     error ("No default file name");
  4108.     }
  4109.   return Fsubstitute_in_file_name (val);
  4110. }
  4111.  
  4112. #if 0                /* Old version */
  4113. DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0,
  4114.   /* Don't confuse make-docfile by having two doc strings for this function.
  4115.      make-docfile does not pay attention to #if, for good reason!  */
  4116.   0)
  4117.   (prompt, dir, defalt, mustmatch, initial)
  4118.      Lisp_Object prompt, dir, defalt, mustmatch, initial;
  4119. {
  4120.   Lisp_Object val, insdef, tem;
  4121.   struct gcpro gcpro1, gcpro2;
  4122.   register char *homedir;
  4123.   int count;
  4124.  
  4125.   if (NILP (dir))
  4126.     dir = current_buffer->directory;
  4127.   if (NILP (defalt))
  4128.     defalt = current_buffer->filename;
  4129.  
  4130.   /* If dir starts with user's homedir, change that to ~. */
  4131.   homedir = (char *) egetenv ("HOME");
  4132.   if (homedir != 0
  4133.       && XTYPE (dir) == Lisp_String
  4134.       && !strncmp (homedir, XSTRING (dir)->data, strlen (homedir))
  4135.       && XSTRING (dir)->data[strlen (homedir)] == '/')
  4136.     {
  4137.       dir = make_string (XSTRING (dir)->data + strlen (homedir) - 1,
  4138.              XSTRING (dir)->size - strlen (homedir) + 1);
  4139.       XSTRING (dir)->data[0] = '~';
  4140.     }
  4141.  
  4142.   if (!NILP (initial))
  4143.     insdef = initial;
  4144.   else if (insert_default_directory)
  4145.     insdef = dir;
  4146.   else
  4147.     insdef = build_string ("");
  4148.  
  4149. #ifdef VMS
  4150.   count = specpdl_ptr - specpdl;
  4151.   specbind (intern ("completion-ignore-case"), Qt);
  4152. #endif
  4153.  
  4154.   GCPRO2 (insdef, defalt);
  4155.   val = Fcompleting_read (prompt, intern ("read-file-name-internal"),
  4156.               dir, mustmatch,
  4157.               insert_default_directory ? insdef : Qnil,
  4158.               Qfile_name_history);
  4159.  
  4160. #ifdef VMS
  4161.   unbind_to (count, Qnil);
  4162. #endif
  4163.  
  4164.   UNGCPRO;
  4165.   if (NILP (val))
  4166.     error ("No file name specified");
  4167.   tem = Fstring_equal (val, insdef);
  4168.   if (!NILP (tem) && !NILP (defalt))
  4169.     return defalt;
  4170.   return Fsubstitute_in_file_name (val);
  4171. }
  4172. #endif /* Old version */
  4173.  
  4174. syms_of_fileio ()
  4175. {
  4176.   Qexpand_file_name = intern ("expand-file-name");
  4177.   Qdirectory_file_name = intern ("directory-file-name");
  4178.   Qfile_name_directory = intern ("file-name-directory");
  4179.   Qfile_name_nondirectory = intern ("file-name-nondirectory");
  4180.   Qunhandled_file_name_directory = intern ("unhandled-file-name-directory");
  4181.   Qfile_name_as_directory = intern ("file-name-as-directory");
  4182.   Qcopy_file = intern ("copy-file");
  4183.   Qmake_directory_internal = intern ("make-directory-internal");
  4184.   Qdelete_directory = intern ("delete-directory");
  4185.   Qdelete_file = intern ("delete-file");
  4186.   Qrename_file = intern ("rename-file");
  4187.   Qadd_name_to_file = intern ("add-name-to-file");
  4188.   Qmake_symbolic_link = intern ("make-symbolic-link");
  4189.   Qfile_exists_p = intern ("file-exists-p");
  4190.   Qfile_executable_p = intern ("file-executable-p");
  4191.   Qfile_readable_p = intern ("file-readable-p");
  4192.   Qfile_symlink_p = intern ("file-symlink-p");
  4193.   Qfile_writable_p = intern ("file-writable-p");
  4194.   Qfile_directory_p = intern ("file-directory-p");
  4195.   Qfile_accessible_directory_p = intern ("file-accessible-directory-p");
  4196.   Qfile_modes = intern ("file-modes");
  4197.   Qset_file_modes = intern ("set-file-modes");
  4198.   Qfile_newer_than_file_p = intern ("file-newer-than-file-p");
  4199.   Qinsert_file_contents = intern ("insert-file-contents");
  4200.   Qwrite_region = intern ("write-region");
  4201.   Qverify_visited_file_modtime = intern ("verify-visited-file-modtime");
  4202.   Qset_visited_file_modtime = intern ("set-visited-file-modtime");
  4203.  
  4204.   staticpro (&Qexpand_file_name);
  4205.   staticpro (&Qdirectory_file_name);
  4206.   staticpro (&Qfile_name_directory);
  4207.   staticpro (&Qfile_name_nondirectory);
  4208.   staticpro (&Qunhandled_file_name_directory);
  4209.   staticpro (&Qfile_name_as_directory);
  4210.   staticpro (&Qcopy_file);
  4211.   staticpro (&Qmake_directory_internal);
  4212.   staticpro (&Qdelete_directory);
  4213.   staticpro (&Qdelete_file);
  4214.   staticpro (&Qrename_file);
  4215.   staticpro (&Qadd_name_to_file);
  4216.   staticpro (&Qmake_symbolic_link);
  4217.   staticpro (&Qfile_exists_p);
  4218.   staticpro (&Qfile_executable_p);
  4219.   staticpro (&Qfile_readable_p);
  4220.   staticpro (&Qfile_symlink_p);
  4221.   staticpro (&Qfile_writable_p);
  4222.   staticpro (&Qfile_directory_p);
  4223.   staticpro (&Qfile_accessible_directory_p);
  4224.   staticpro (&Qfile_modes);
  4225.   staticpro (&Qset_file_modes);
  4226.   staticpro (&Qfile_newer_than_file_p);
  4227.   staticpro (&Qinsert_file_contents);
  4228.   staticpro (&Qwrite_region);
  4229.   staticpro (&Qverify_visited_file_modtime);
  4230.  
  4231.   Qfile_name_history = intern ("file-name-history");
  4232.   Fset (Qfile_name_history, Qnil);
  4233.   staticpro (&Qfile_name_history);
  4234.  
  4235.   Qfile_error = intern ("file-error");
  4236.   staticpro (&Qfile_error);
  4237.   Qfile_already_exists = intern("file-already-exists");
  4238.   staticpro (&Qfile_already_exists);
  4239.  
  4240. #ifdef MSDOS
  4241.   Qfind_buffer_file_type = intern ("find-buffer-file-type");
  4242.   staticpro (&Qfind_buffer_file_type);
  4243. #endif
  4244.  
  4245.   Qcar_less_than_car = intern ("car-less-than-car");
  4246.   staticpro (&Qcar_less_than_car);
  4247.  
  4248.   Fput (Qfile_error, Qerror_conditions,
  4249.     Fcons (Qfile_error, Fcons (Qerror, Qnil)));
  4250.   Fput (Qfile_error, Qerror_message,
  4251.     build_string ("File error"));
  4252.  
  4253.   Fput (Qfile_already_exists, Qerror_conditions,
  4254.     Fcons (Qfile_already_exists,
  4255.            Fcons (Qfile_error, Fcons (Qerror, Qnil))));
  4256.   Fput (Qfile_already_exists, Qerror_message,
  4257.     build_string ("File already exists"));
  4258.  
  4259.   DEFVAR_BOOL ("insert-default-directory", &insert_default_directory,
  4260.     "*Non-nil means when reading a filename start with default dir in minibuffer.");
  4261.   insert_default_directory = 1;
  4262.  
  4263.   DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm,
  4264.     "*Non-nil means write new files with record format `stmlf'.\n\
  4265. nil means use format `var'.  This variable is meaningful only on VMS.");
  4266.   vms_stmlf_recfm = 0;
  4267.  
  4268.   DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist,
  4269.     "*Alist of elements (REGEXP . HANDLER) for file names handled specially.\n\
  4270. If a file name matches REGEXP, then all I/O on that file is done by calling\n\
  4271. HANDLER.\n\
  4272. \n\
  4273. The first argument given to HANDLER is the name of the I/O primitive\n\
  4274. to be handled; the remaining arguments are the arguments that were\n\
  4275. passed to that primitive.  For example, if you do\n\
  4276.     (file-exists-p FILENAME)\n\
  4277. and FILENAME is handled by HANDLER, then HANDLER is called like this:\n\
  4278.     (funcall HANDLER 'file-exists-p FILENAME)\n\
  4279. The function `find-file-name-handler' checks this list for a handler\n\
  4280. for its argument.");
  4281.   Vfile_name_handler_alist = Qnil;
  4282.  
  4283.   DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions,
  4284.     "A list of functions to be called at the end of `insert-file-contents'.\n\
  4285. Each is passed one argument, the number of bytes inserted.  It should return\n\
  4286. the new byte count, and leave point the same.  If `insert-file-contents' is\n\
  4287. intercepted by a handler from `file-name-handler-alist', that handler is\n\
  4288. responsible for calling the after-insert-file-functions if appropriate.");
  4289.   Vafter_insert_file_functions = Qnil;
  4290.  
  4291.   DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions,
  4292.     "A list of functions to be called at the start of `write-region'.\n\
  4293. Each is passed two arguments, START and END as for `write-region'.  It should\n\
  4294. return a list of pairs (POSITION . STRING) of strings to be effectively\n\
  4295. inserted at the specified positions of the file being written (1 means to\n\
  4296. insert before the first byte written).  The POSITIONs must be sorted into\n\
  4297. increasing order.  If there are several functions in the list, the several\n\
  4298. lists are merged destructively.");
  4299.   Vwrite_region_annotate_functions = Qnil;
  4300.  
  4301.   DEFVAR_LISP ("write-region-annotations-so-far",
  4302.            &Vwrite_region_annotations_so_far,
  4303.     "When an annotation function is called, this holds the previous annotations.\n\
  4304. These are the annotations made by other annotation functions\n\
  4305. that were already called.  See also `write-region-annotate-functions'.");
  4306.   Vwrite_region_annotations_so_far = Qnil;
  4307.  
  4308.   DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers,
  4309.     "A list of file name handlers that temporarily should not be used.\n\
  4310. This applies only to the operation `inhibit-file-name-operation'.");
  4311.   Vinhibit_file_name_handlers = Qnil;
  4312.  
  4313.   DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation,
  4314.     "The operation for which `inhibit-file-name-handlers' is applicable.");
  4315.   Vinhibit_file_name_operation = Qnil;
  4316.  
  4317.   DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name,
  4318.     "File name in which we write a list of all auto save file names.");
  4319.   Vauto_save_list_file_name = Qnil;
  4320.  
  4321.   defsubr (&Sfind_file_name_handler);
  4322.   defsubr (&Sfile_name_directory);
  4323.   defsubr (&Sfile_name_nondirectory);
  4324.   defsubr (&Sunhandled_file_name_directory);
  4325.   defsubr (&Sfile_name_as_directory);
  4326.   defsubr (&Sdirectory_file_name);
  4327.   defsubr (&Smake_temp_name);
  4328.   defsubr (&Sexpand_file_name);
  4329.   defsubr (&Ssubstitute_in_file_name);
  4330.   defsubr (&Scopy_file);
  4331.   defsubr (&Smake_directory_internal);
  4332.   defsubr (&Sdelete_directory);
  4333.   defsubr (&Sdelete_file);
  4334.   defsubr (&Srename_file);
  4335.   defsubr (&Sadd_name_to_file);
  4336. #ifdef S_IFLNK
  4337.   defsubr (&Smake_symbolic_link);
  4338. #endif /* S_IFLNK */
  4339. #ifdef VMS
  4340.   defsubr (&Sdefine_logical_name);
  4341. #endif /* VMS */
  4342. #ifdef HPUX_NET
  4343.   defsubr (&Ssysnetunam);
  4344. #endif /* HPUX_NET */
  4345.   defsubr (&Sfile_name_absolute_p);
  4346.   defsubr (&Sfile_exists_p);
  4347.   defsubr (&Sfile_executable_p);
  4348.   defsubr (&Sfile_readable_p);
  4349.   defsubr (&Sfile_writable_p);
  4350.   defsubr (&Sfile_symlink_p);
  4351.   defsubr (&Sfile_directory_p);
  4352.   defsubr (&Sfile_accessible_directory_p);
  4353.   defsubr (&Sfile_modes);
  4354.   defsubr (&Sset_file_modes);
  4355.   defsubr (&Sset_default_file_modes);
  4356.   defsubr (&Sdefault_file_modes);
  4357.   defsubr (&Sfile_newer_than_file_p);
  4358.   defsubr (&Sinsert_file_contents);
  4359.   defsubr (&Swrite_region);
  4360.   defsubr (&Scar_less_than_car);
  4361.   defsubr (&Sverify_visited_file_modtime);
  4362.   defsubr (&Sclear_visited_file_modtime);
  4363.   defsubr (&Svisited_file_modtime);
  4364.   defsubr (&Sset_visited_file_modtime);
  4365.   defsubr (&Sdo_auto_save);
  4366.   defsubr (&Sset_buffer_auto_saved);
  4367.   defsubr (&Sclear_buffer_auto_save_failure);
  4368.   defsubr (&Srecent_auto_save_p);
  4369.  
  4370.   defsubr (&Sread_file_name_internal);
  4371.   defsubr (&Sread_file_name);
  4372.  
  4373. #ifdef unix
  4374.   defsubr (&Sunix_sync);
  4375. #endif
  4376. }
  4377.