[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] emacs/lisp ChangeLog proced.el
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] emacs/lisp ChangeLog proced.el |
Date: |
Sat, 12 Sep 2009 02:42:25 +0000 |
CVSROOT: /sources/emacs
Module name: emacs
Changes by: Glenn Morris <gm> 09/09/12 02:42:25
Modified files:
lisp : ChangeLog proced.el
Log message:
(proced-mark-alt): Remove alias.
(proced-mode-map): Remove proced-mark-alt.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16142&r2=1.16143
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/proced.el?cvsroot=emacs&r1=1.40&r2=1.41
Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16142
retrieving revision 1.16143
diff -u -b -r1.16142 -r1.16143
--- ChangeLog 12 Sep 2009 01:40:11 -0000 1.16142
+++ ChangeLog 12 Sep 2009 02:42:22 -0000 1.16143
@@ -1,3 +1,25 @@
+2009-09-12 Glenn Morris <address@hidden>
+
+ * proced.el (proced-mark-alt): Remove alias.
+ (proced-mode-map): Remove proced-mark-alt.
+
+ * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
+ Elint file and directory. Remove initialization entry.
+
+ * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
+ commands.
+ (elint-current-buffer): Set mode-line-process.
+ (elint-init-env): Handle define-derived-mode.
+ Fix declare-function with unspecified arglist. Guard against odd
+ defalias statements (eg iso-insert's 8859-1-map).
+ (elint-add-required-env): Use a temp buffer.
+ (elint-form): Just print the function/macro name, not the whole form.
+ Return env unchanged if we fail to parse a macro.
+ (elint-forms): Guard against parse errors.
+ (elint-output): New function, to handle batch mode.
+ (elint-log-message): Add optional argument. Use elint-output.
+ (elint-set-mode-line): New function.
+
2009-09-12 Andreas Politz <address@hidden> (tiny change)
* emacs-lisp/elp.el (elp-not-profilable): Add more
Index: proced.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/proced.el,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -b -r1.40 -r1.41
--- proced.el 11 Sep 2009 18:54:57 -0000 1.40
+++ proced.el 12 Sep 2009 02:42:25 -0000 1.41
@@ -459,7 +459,7 @@
(define-key km [down] 'next-line)
(define-key km [up] 'previous-line)
;; marking
- (define-key km "d" 'proced-mark-alt) ; Dired compatibility ("delete")
+ (define-key km "d" 'proced-mark) ; Dired compatibility ("delete")
(define-key km "m" 'proced-mark)
(put 'proced-mark :advertised-binding "m")
(define-key km "u" 'proced-unmark)
@@ -717,10 +717,6 @@
(interactive "p")
(proced-do-mark t count))
-;; So we can preferentially advertise the "m" binding in the mode help,
-;; rather than the "d" one.
-(defalias 'proced-mark-alt 'proced-mark)
-
(defun proced-unmark (&optional count)
"Unmark the current (or next COUNT) processes."
(interactive "p")