diff options
author | Stephen Eglen <stephen@gnu.org> | 1998-02-01 17:46:32 +0000 |
---|---|---|
committer | Stephen Eglen <stephen@gnu.org> | 1998-02-01 17:46:32 +0000 |
commit | b4dd2e66b004353e82b1acaca3c331d49b4bde1d (patch) | |
tree | 81068c0195415de639a8fd873c7c4165722de781 | |
parent | 3fb11d36e30a2bf842f164a2c08337718483e3c8 (diff) | |
download | emacs-b4dd2e66b004353e82b1acaca3c331d49b4bde1d.tar.gz |
Customized.
-rw-r--r-- | lisp/tar-mode.el | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index 613dbdb723e..a050f51fa07 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el @@ -93,27 +93,38 @@ ;;; Code: -(defvar tar-anal-blocksize 20 +(defgroup tar nil + "Simple editing of tar files." + :prefix "tar-" + :group 'data) + +(defcustom tar-anal-blocksize 20 "*The blocksize of tar files written by Emacs, or nil, meaning don't care. The blocksize of a tar file is not really the size of the blocks; rather, it is the number of blocks written with one system call. When tarring to a tape, this is the size of the *tape* blocks, but when writing to a file, it doesn't matter much. The only noticeable difference is that if a tar file does not have a blocksize of 20, tar will tell you that; all this really controls is -how many null padding bytes go on the end of the tar file.") +how many null padding bytes go on the end of the tar file." + :type '(choice integer (const nil)) + :group 'tar) -(defvar tar-update-datestamp nil +(defcustom tar-update-datestamp nil "*Non-nil means tar-mode should play fast and loose with sub-file datestamps. If this is true, then editing and saving a tar file entry back into its tar file will update its datestamp. If false, the datestamp is unchanged. You may or may not want this - it is good in that you can tell when a file in a tar archive has been changed, but it is bad for the same reason that editing a file in the tar archive at all is bad - the changed version of -the file never exists on disk.") +the file never exists on disk." + :type 'boolean + :group 'tar) -(defvar tar-mode-show-date nil +(defcustom tar-mode-show-date nil "*Non-nil means Tar mode should show the date/time of each subfile. -This information is useful, but it takes screen space away from file names.") +This information is useful, but it takes screen space away from file names." + :type 'boolean + :group 'tar) (defvar tar-parse-info nil) (defvar tar-header-offset nil) |