Mercurial > hg > xemacs-beta
comparison lisp/packages/auto-save.el @ 149:538048ae2ab8 r20-3b1
Import from CVS: tag r20-3b1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:36:16 +0200 |
parents | 34a5b81f86ba |
children | a2f645c6b9f8 |
comparison
equal
deleted
inserted
replaced
148:f659db2a1f73 | 149:538048ae2ab8 |
---|---|
1 ;; -*- Emacs-Lisp -*- | 1 ;; -*- Emacs-Lisp -*- |
2 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 2 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
3 ;; | 3 ;; |
4 ;; File: auto-save.el | 4 ;; File: auto-save.el |
5 ;; Version: $Revision: 1.4 $ | 5 ;; Version: $Revision: 1.5 $ |
6 ;; RCS: | 6 ;; RCS: |
7 ;; Description: Safer autosaving with support for efs and /tmp. | 7 ;; Description: Safer autosaving with support for efs and /tmp. |
8 ;; This version of auto-save is designed to work with efs, | 8 ;; This version of auto-save is designed to work with efs, |
9 ;; instead of ange-ftp. | 9 ;; instead of ange-ftp. |
10 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>, | 10 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>, |
11 ;; | 11 ;; |
12 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 12 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
13 | 13 |
14 (defconst auto-save-version (substring "$Revision: 1.4 $" 11 -2) | 14 (defconst auto-save-version (substring "$Revision: 1.5 $" 11 -2) |
15 "Version number of auto-save.") | 15 "Version number of auto-save.") |
16 | 16 |
17 ;;; Copyright (C) 1992 by Sebastian Kremer <sk@thp.uni-koeln.de> | 17 ;;; Copyright (C) 1992 by Sebastian Kremer <sk@thp.uni-koeln.de> |
18 | 18 |
19 ;;; This program is free software; you can redistribute it and/or modify | 19 ;;; This program is free software; you can redistribute it and/or modify |
82 | 82 |
83 | 83 |
84 ;;;; ACKNOWLEDGEMENT =================================================== | 84 ;;;; ACKNOWLEDGEMENT =================================================== |
85 | 85 |
86 ;;; This code is loosely derived from autosave-in-tmp.el by Jamie | 86 ;;; This code is loosely derived from autosave-in-tmp.el by Jamie |
87 ;;; Zawinski <jwz@lucid.com> (the version I had was last modified 22 | 87 ;;; Zawinski <jwz@netscape.com> (the version I had was last modified 22 |
88 ;;; dec 90 jwz) and code submitted to ange-ftp-lovers on Sun, 5 Apr | 88 ;;; dec 90 jwz) and code submitted to ange-ftp-lovers on Sun, 5 Apr |
89 ;;; 92 23:20:47 EDT by drw@BOURBAKI.MIT.EDU (Dale R. Worley). | 89 ;;; 92 23:20:47 EDT by drw@BOURBAKI.MIT.EDU (Dale R. Worley). |
90 ;;; auto-save.el tries to cover the functionality of those two | 90 ;;; auto-save.el tries to cover the functionality of those two |
91 ;;; packages. | 91 ;;; packages. |
92 | 92 |