diff options
| author | John Paul Wallington | 2003-03-14 22:38:46 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2003-03-14 22:38:46 +0000 |
| commit | 194600a8fa08104045698f0a9be6d6c3fe8b8f7e (patch) | |
| tree | aed412ffafd6b5ab2dd811244bcd3684cf48d12b /lisp/arc-mode.el | |
| parent | f412245b470c1d52dda54f285a0eacb29d5b7a2a (diff) | |
| download | emacs-194600a8fa08104045698f0a9be6d6c3fe8b8f7e.tar.gz emacs-194600a8fa08104045698f0a9be6d6c3fe8b8f7e.zip | |
* files.el (recover-session): Error if there are no previous
sessions to recover.
* subr.el (posn-col-row): Simplify.
* arc-mode.el (archive-subtype, archive-file-list-start)
(archive-file-list-end, archive-proper-file-start)
(archive-read-only, archive-local-name, archive-mode-map)
(archive-file-name-indent, archive-remote)
(archive-alternate-display, archive-superior-buffer)
(archive-subfile-mode): Doc fixes.
Diffstat (limited to 'lisp/arc-mode.el')
| -rw-r--r-- | lisp/arc-mode.el | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/lisp/arc-mode.el b/lisp/arc-mode.el index 76eaef21c56..2c2569bb970 100644 --- a/lisp/arc-mode.el +++ b/lisp/arc-mode.el | |||
| @@ -324,16 +324,16 @@ Archive and member name will be added." | |||
| 324 | ;; ------------------------------------------------------------------------- | 324 | ;; ------------------------------------------------------------------------- |
| 325 | ;; Section: Variables | 325 | ;; Section: Variables |
| 326 | 326 | ||
| 327 | (defvar archive-subtype nil "*Symbol describing archive type.") | 327 | (defvar archive-subtype nil "Symbol describing archive type.") |
| 328 | (defvar archive-file-list-start nil "*Position of first contents line.") | 328 | (defvar archive-file-list-start nil "Position of first contents line.") |
| 329 | (defvar archive-file-list-end nil "*Position just after last contents line.") | 329 | (defvar archive-file-list-end nil "Position just after last contents line.") |
| 330 | (defvar archive-proper-file-start nil "*Position of real archive's start.") | 330 | (defvar archive-proper-file-start nil "Position of real archive's start.") |
| 331 | (defvar archive-read-only nil "*Non-nil if the archive is read-only on disk.") | 331 | (defvar archive-read-only nil "Non-nil if the archive is read-only on disk.") |
| 332 | (defvar archive-local-name nil "*Name of local copy of remote archive.") | 332 | (defvar archive-local-name nil "Name of local copy of remote archive.") |
| 333 | (defvar archive-mode-map nil "*Local keymap for archive mode listings.") | 333 | (defvar archive-mode-map nil "Local keymap for archive mode listings.") |
| 334 | (defvar archive-file-name-indent nil "*Column where file names start.") | 334 | (defvar archive-file-name-indent nil "Column where file names start.") |
| 335 | 335 | ||
| 336 | (defvar archive-remote nil "*Non-nil if the archive is outside file system.") | 336 | (defvar archive-remote nil "Non-nil if the archive is outside file system.") |
| 337 | (make-variable-buffer-local 'archive-remote) | 337 | (make-variable-buffer-local 'archive-remote) |
| 338 | (put 'archive-remote 'permanent-local t) | 338 | (put 'archive-remote 'permanent-local t) |
| 339 | 339 | ||
| @@ -341,14 +341,14 @@ Archive and member name will be added." | |||
| 341 | (make-variable-buffer-local 'archive-member-coding-system) | 341 | (make-variable-buffer-local 'archive-member-coding-system) |
| 342 | 342 | ||
| 343 | (defvar archive-alternate-display nil | 343 | (defvar archive-alternate-display nil |
| 344 | "*Non-nil when alternate information is shown.") | 344 | "Non-nil when alternate information is shown.") |
| 345 | (make-variable-buffer-local 'archive-alternate-display) | 345 | (make-variable-buffer-local 'archive-alternate-display) |
| 346 | (put 'archive-alternate-display 'permanent-local t) | 346 | (put 'archive-alternate-display 'permanent-local t) |
| 347 | 347 | ||
| 348 | (defvar archive-superior-buffer nil "*In archive members, points to archive.") | 348 | (defvar archive-superior-buffer nil "In archive members, points to archive.") |
| 349 | (put 'archive-superior-buffer 'permanent-local t) | 349 | (put 'archive-superior-buffer 'permanent-local t) |
| 350 | 350 | ||
| 351 | (defvar archive-subfile-mode nil "*Non-nil in archive member buffers.") | 351 | (defvar archive-subfile-mode nil "Non-nil in archive member buffers.") |
| 352 | (make-variable-buffer-local 'archive-subfile-mode) | 352 | (make-variable-buffer-local 'archive-subfile-mode) |
| 353 | (put 'archive-subfile-mode 'permanent-local t) | 353 | (put 'archive-subfile-mode 'permanent-local t) |
| 354 | 354 | ||