[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/arc-mode.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/arc-mode.el |
Date: |
Wed, 20 Jul 2005 07:19:10 -0400 |
Index: emacs/lisp/arc-mode.el
diff -c emacs/lisp/arc-mode.el:1.65 emacs/lisp/arc-mode.el:1.66
*** emacs/lisp/arc-mode.el:1.65 Mon Jul 4 23:08:52 2005
--- emacs/lisp/arc-mode.el Wed Jul 20 11:19:10 2005
***************
*** 131,137 ****
(make-temp-name
(expand-file-name (if (eq system-type 'ms-dos) "ar" "archive.tmp")
temporary-file-directory))
! "Directory for temporary files made by arc-mode.el."
:type 'directory
:group 'archive)
--- 131,137 ----
(make-temp-name
(expand-file-name (if (eq system-type 'ms-dos) "ar" "archive.tmp")
temporary-file-directory))
! "Directory for temporary files made by `arc-mode.el'."
:type 'directory
:group 'archive)
***************
*** 465,473 ****
(intern (concat "archive-" (symbol-name archive-subtype) "-" suffix)))
(defun archive-l-e (str &optional len)
! "Convert little endian string/vector to integer.
! Alternatively, first argument may be a buffer position in the current buffer
! in which case a second argument, length, should be supplied."
(if (stringp str)
(setq len (length str))
(setq str (buffer-substring str (+ str len))))
--- 465,473 ----
(intern (concat "archive-" (symbol-name archive-subtype) "-" suffix)))
(defun archive-l-e (str &optional len)
! "Convert little endian string/vector STR to integer.
! Alternatively, STR may be a buffer position in the current buffer
! in which case a second argument, length LEN, should be supplied."
(if (stringp str)
(setq len (length str))
(setq str (buffer-substring str (+ str len))))
***************
*** 567,573 ****
(format "%02d:%02d:%02d" hour minute second)))
(defun archive-unixdate (low high)
! "Stringify unix (LOW HIGH) date."
(let ((str (current-time-string (cons high low))))
(format "%s-%s-%s"
(substring str 8 10)
--- 567,573 ----
(format "%02d:%02d:%02d" hour minute second)))
(defun archive-unixdate (low high)
! "Stringify Unix (LOW HIGH) date."
(let ((str (current-time-string (cons high low))))
(format "%s-%s-%s"
(substring str 8 10)
***************
*** 575,581 ****
(substring str 20 24))))
(defun archive-unixtime (low high)
! "Stringify unix (LOW HIGH) time."
(let ((str (current-time-string (cons high low))))
(substring str 11 19)))
--- 575,581 ----
(substring str 20 24))))
(defun archive-unixtime (low high)
! "Stringify Unix (LOW HIGH) time."
(let ((str (current-time-string (cons high low))))
(substring str 11 19)))
***************
*** 587,593 ****
(defun archive-get-descr (&optional noerror)
"Return the descriptor vector for file at point.
! Does not signal an error if optional second argument NOERROR is non-nil."
(let ((no (archive-get-lineno)))
(if (and (>= (point) archive-file-list-start)
(< no (length archive-files)))
--- 587,593 ----
(defun archive-get-descr (&optional noerror)
"Return the descriptor vector for file at point.
! Does not signal an error if optional argument NOERROR is non-nil."
(let ((no (archive-get-lineno)))
(if (and (>= (point) archive-file-list-start)
(< no (length archive-files)))
***************
*** 761,767 ****
(defun archive-alternate-display ()
"Toggle alternative display.
! To avoid very long lines some archive mode don't show all information.
This function changes the set of information shown for each files."
(interactive)
(setq archive-alternate-display (not archive-alternate-display))
--- 761,767 ----
(defun archive-alternate-display ()
"Toggle alternative display.
! To avoid very long lines archive mode does not show all information.
This function changes the set of information shown for each files."
(interactive)
(setq archive-alternate-display (not archive-alternate-display))
***************
*** 1159,1171 ****
"In archive mode, un-mark this member if it is marked to be deleted.
With a prefix argument, un-mark that many files forward."
(interactive "p")
! (archive-flag-deleted p ? ))
(defun archive-unflag-backwards (p)
"In archive mode, un-mark this member if it is marked to be deleted.
With a prefix argument, un-mark that many members backward."
(interactive "p")
! (archive-flag-deleted (- p) ? ))
(defun archive-unmark-all-files ()
"Remove all marks."
--- 1159,1171 ----
"In archive mode, un-mark this member if it is marked to be deleted.
With a prefix argument, un-mark that many files forward."
(interactive "p")
! (archive-flag-deleted p ?\s))
(defun archive-unflag-backwards (p)
"In archive mode, un-mark this member if it is marked to be deleted.
With a prefix argument, un-mark that many members backward."
(interactive "p")
! (archive-flag-deleted (- p) ?\s))
(defun archive-unmark-all-files ()
"Remove all marks."
***************
*** 1175,1182 ****
(save-excursion
(goto-char archive-file-list-start)
(while (< (point) archive-file-list-end)
! (or (= (following-char) ? )
! (progn (delete-char 1) (insert ? )))
(forward-line 1)))
(restore-buffer-modified-p modified)))
--- 1175,1182 ----
(save-excursion
(goto-char archive-file-list-start)
(while (< (point) archive-file-list-end)
! (or (= (following-char) ?\s)
! (progn (delete-char 1) (insert ?\s)))
(forward-line 1)))
(restore-buffer-modified-p modified)))
***************
*** 1214,1220 ****
(defun archive-chmod-entry (new-mode)
"Change the protection bits associated with all marked or this member.
The new protection bits can either be specified as an octal number or
! as a relative change like \"g+rw\" as for chmod(2)"
(interactive "sNew mode (octal or relative): ")
(if archive-read-only (error "Archive is read-only"))
(let ((func (archive-name "chmod-entry")))
--- 1214,1220 ----
(defun archive-chmod-entry (new-mode)
"Change the protection bits associated with all marked or this member.
The new protection bits can either be specified as an octal number or
! as a relative change like \"g+rw\" as for chmod(2)."
(interactive "sNew mode (octal or relative): ")
(if archive-read-only (error "Archive is read-only"))
(let ((func (archive-name "chmod-entry")))