emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/fileio.c [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/fileio.c [lexbind]
Date: Wed, 15 Sep 2004 20:33:15 -0400

Index: emacs/src/fileio.c
diff -c emacs/src/fileio.c:1.449.2.17 emacs/src/fileio.c:1.449.2.18
*** emacs/src/fileio.c:1.449.2.17       Sat Sep  4 09:28:15 2004
--- emacs/src/fileio.c  Thu Sep 16 00:12:25 2004
***************
*** 173,181 ****
     whose I/O is done with a special handler.  */
  Lisp_Object Vfile_name_handler_alist;
  
- /* Format for auto-save files */
- Lisp_Object Vauto_save_file_format;
- 
  /* Lisp functions for translating file formats */
  Lisp_Object Qformat_decode, Qformat_annotate_function;
  
--- 173,178 ----
***************
*** 5372,5379 ****
      }
  
    /* Now do the same for annotation functions implied by the file-format */
!   if (auto_saving && (!EQ (Vauto_save_file_format, Qt)))
!     p = Vauto_save_file_format;
    else
      p = current_buffer->file_format;
    for (i = 0; CONSP (p); p = XCDR (p), ++i)
--- 5369,5376 ----
      }
  
    /* Now do the same for annotation functions implied by the file-format */
!   if (auto_saving && (!EQ (current_buffer->auto_save_file_format, Qt)))
!     p = current_buffer->auto_save_file_format;
    else
      p = current_buffer->file_format;
    for (i = 0; CONSP (p); p = XCDR (p), ++i)
***************
*** 6491,6503 ****
  of file names regardless of the current language environment.  */);
    Vdefault_file_name_coding_system = Qnil;
  
-   DEFVAR_LISP ("auto-save-file-format", &Vauto_save_file_format,
-     doc: /* *Format in which to write auto-save files.
- Should be a list of symbols naming formats that are defined in `format-alist'.
- If it is t, which is the default, auto-save files are written in the
- same format as a regular save would use.  */);
-   Vauto_save_file_format = Qt;
- 
    Qformat_decode = intern ("format-decode");
    staticpro (&Qformat_decode);
    Qformat_annotate_function = intern ("format-annotate-function");
--- 6488,6493 ----




reply via email to

[Prev in Thread] Current Thread [Next in Thread]