emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog proced.el


From: Juanma Barranquero
Subject: [Emacs-diffs] emacs/lisp ChangeLog proced.el
Date: Fri, 19 Dec 2008 21:53:29 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      08/12/19 21:53:29

Modified files:
        lisp           : ChangeLog proced.el 

Log message:
        * proced.el (proced-grammar-alist): Doc fix.
          (proced-marker-char, proced-mark, proced-help-string, proced-mode-map)
          (proced-filter-parents, proced-sort-header, proced-update, 
proced-help)
          (proced-undo): Fix typos in docstrings.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.14971&r2=1.14972
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/proced.el?cvsroot=emacs&r1=1.26&r2=1.27

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.14971
retrieving revision 1.14972
diff -u -b -r1.14971 -r1.14972
--- ChangeLog   19 Dec 2008 21:45:22 -0000      1.14971
+++ ChangeLog   19 Dec 2008 21:53:25 -0000      1.14972
@@ -1,3 +1,10 @@
+2008-12-19  Juanma Barranquero  <address@hidden>
+
+       * proced.el (proced-grammar-alist): Doc fix.
+       (proced-marker-char, proced-mark, proced-help-string, proced-mode-map)
+       (proced-filter-parents, proced-sort-header, proced-update, proced-help)
+       (proced-undo): Fix typos in docstrings.
+
 2008-12-19  Glenn Morris  <address@hidden>
 
        * emacs-lisp/authors.el (authors-aliases): Add some more aliases.

Index: proced.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/proced.el,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -b -r1.26 -r1.27
--- proced.el   14 Dec 2008 23:14:38 -0000      1.26
+++ proced.el   19 Dec 2008 21:53:28 -0000      1.27
@@ -148,9 +148,9 @@
 
 String NAME appears in the header line.
 
-FORMAT specifies the format for displaying the attribute values.
-It can be a string passed to `format'.  It can be a function called
-with one argument, the value of the attribute.  Nil means take as is.
+FORMAT specifies the format for displaying the attribute values.  It can
+be a string passed to `format'.  It can be a function called with one
+argument, the value of the attribute.  The value nil means take as is.
 
 If JUSTIFY is an integer, its modulus gives the width of the attribute
 values formatted with FORMAT.  If JUSTIFY is positive, NAME appears
@@ -359,7 +359,7 @@
 It is a list of lists (KEY PREDICATE REVERSE).")
 
 (defvar proced-marker-char ?*          ; the answer is 42
-  "In proced, the current mark character.")
+  "In Proced, the current mark character.")
 
 ;; Faces and font-lock code taken from dired,
 ;; but face variables are deprecated for new code.
@@ -370,7 +370,7 @@
 
 (defface proced-mark
   '((t (:inherit font-lock-constant-face)))
-  "Face used for proced marks."
+  "Face used for Proced marks."
   :group 'proced-faces)
 
 (defface proced-marked
@@ -402,7 +402,7 @@
 
 (defconst proced-help-string
   "(n)ext, (p)revious, (m)ark, (u)nmark, (k)ill, (q)uit (type ? for more help)"
-  "Help string for proced.")
+  "Help string for Proced.")
 
 (defconst proced-header-help-echo
   "mouse-1, mouse-2: sort by attribute %s%s (%s)"
@@ -470,7 +470,7 @@
     (define-key km [remap undo] 'proced-undo)
     (define-key km [remap advertised-undo] 'proced-undo)
     km)
-  "Keymap for proced commands.")
+  "Keymap for Proced commands.")
 
 (easy-menu-define
   proced-menu proced-mode-map "Proced Menu"
@@ -913,7 +913,7 @@
 
 (defun proced-filter-parents (process-alist pid &optional omit-pid)
   "For PROCESS-ALIST return list of parent processes of PID.
-This list includes CPID unless OMIT-CPID is non-nil."
+This list includes PID unless OMIT-PID is non-nil."
   (let ((parent-list (unless omit-pid (list (assq pid process-alist)))))
     (while (setq pid (cdr (assq 'ppid (cdr (assq pid process-alist)))))
       (push (assq pid process-alist) parent-list))
@@ -1145,7 +1145,7 @@
 (defun proced-sort-header (event &optional arg)
   "Sort Proced listing based on an attribute.
 EVENT is a mouse event with starting position in the header line.
-It is converted in the corresponding attribute key.
+It is converted to the corresponding attribute key.
 This command updates the variable `proced-sort'.
 Prefix ARG controls sort order, see `proced-sort-interactive'."
   (interactive (list last-input-event (or last-prefix-arg 'no-arg)))
@@ -1380,7 +1380,7 @@
           (push (cons pid attributes) process-alist))))))
 
 (defun proced-update (&optional revert quiet)
-  "Update the `proced' process information.  Preserves point and marks.
+  "Update the Proced process information.  Preserves point and marks.
 With prefix REVERT non-nil, revert listing.
 Suppress status information if QUIET is nil."
   ;; This is the main function that generates and updates the process listing.
@@ -1670,7 +1670,7 @@
   (proced-log t signal))
 
 (defun proced-help ()
-  "Provide help for the `proced' user."
+  "Provide help for the Proced user."
   (interactive)
   (proced-why)
   (if (eq last-command 'proced-help)
@@ -1678,8 +1678,8 @@
     (message proced-help-string)))
 
 (defun proced-undo ()
-  "Undo in a proced buffer.
-This doesn't recover killed processes, it just undoes changes in the proced
+  "Undo in a Proced buffer.
+This doesn't recover killed processes, it just undoes changes in the Proced
 buffer.  You can use it to recover marks."
   (interactive)
   (let (buffer-read-only)




reply via email to

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