emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp/eshell esh-ext.el esh-io.el esh-mode...


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp/eshell esh-ext.el esh-io.el esh-mode...
Date: Thu, 22 Jan 2009 06:33:07 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/01/22 06:33:07

Modified files:
        lisp/eshell    : esh-ext.el esh-io.el esh-mode.el esh-opt.el 
                         esh-proc.el esh-var.el 

Log message:
        Comment (header format fix).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/eshell/esh-ext.el?cvsroot=emacs&r1=1.31&r2=1.32
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/eshell/esh-io.el?cvsroot=emacs&r1=1.25&r2=1.26
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/eshell/esh-mode.el?cvsroot=emacs&r1=1.42&r2=1.43
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/eshell/esh-opt.el?cvsroot=emacs&r1=1.20&r2=1.21
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/eshell/esh-proc.el?cvsroot=emacs&r1=1.25&r2=1.26
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/eshell/esh-var.el?cvsroot=emacs&r1=1.28&r2=1.29

Patches:
Index: esh-ext.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/eshell/esh-ext.el,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -b -r1.31 -r1.32
--- esh-ext.el  5 Jan 2009 03:21:46 -0000       1.31
+++ esh-ext.el  22 Jan 2009 06:33:06 -0000      1.32
@@ -30,6 +30,8 @@
 ;;   /bin/grep   ; will definitely invoke /bin/grep
 ;;   *grep        ; will also invoke /bin/grep
 
+;;; Code:
+
 (provide 'esh-ext)
 
 (eval-when-compile
@@ -315,7 +317,5 @@
                            (cdr interp)))))
          (or interp (list fullname)))))))
 
-;;; Code:
-
 ;; arch-tag: 178d4064-7e60-4745-b81f-bab5d8d7c40f
 ;;; esh-ext.el ends here

Index: esh-io.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/eshell/esh-io.el,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -b -r1.25 -r1.26
--- esh-io.el   5 Jan 2009 03:21:46 -0000       1.25
+++ esh-io.el   22 Jan 2009 06:33:06 -0000      1.26
@@ -55,6 +55,8 @@
 ;;   (+ 1 2) > a > b > c   ; prints number to all three files
 ;;   (+ 1 2) > a | wc      ; prints to 'a', and pipes to 'wc'
 
+;;; Code:
+
 (provide 'esh-io)
 
 (eval-when-compile
@@ -513,7 +515,5 @@
        (eshell-output-object-to-target object (car target))
        (setq target (cdr target))))))
 
-;;; Code:
-
 ;; arch-tag: 9ca2080f-d5e0-4b26-aa0b-d59194a905a2
 ;;; esh-io.el ends here

Index: esh-mode.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/eshell/esh-mode.el,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -b -r1.42 -r1.43
--- esh-mode.el 22 Jan 2009 01:11:49 -0000      1.42
+++ esh-mode.el 22 Jan 2009 06:33:07 -0000      1.43
@@ -57,6 +57,8 @@
 ;;
 ;; @ <C-c C-b> will move backward a complete shell argument.
 
+;;; Code:
+
 (provide 'esh-mode)
 
 (eval-when-compile (require 'esh-util))
@@ -1080,7 +1082,5 @@
 (custom-add-option 'eshell-output-filter-functions
                   'eshell-handle-ansi-color)
 
-;;; Code:
-
 ;; arch-tag: ec65bc2b-da14-4547-81d3-a32af3a4dc57
 ;;; esh-mode.el ends here

Index: esh-opt.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/eshell/esh-opt.el,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- esh-opt.el  5 Jan 2009 03:21:47 -0000       1.20
+++ esh-opt.el  22 Jan 2009 06:33:07 -0000      1.21
@@ -22,6 +22,8 @@
 
 ;;; Commentary:
 
+;;; Code:
+
 (provide 'esh-opt)
 
 (eval-when-compile (require 'esh-ext))
@@ -222,7 +224,5 @@
                (setq index (1+ index)))))))))
   args)
 
-;;; Code:
-
 ;; arch-tag: 45c6c2d0-8091-46a1-a205-2f4bafd8230c
 ;;; esh-opt.el ends here

Index: esh-proc.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/eshell/esh-proc.el,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -b -r1.25 -r1.26
--- esh-proc.el 5 Jan 2009 03:21:48 -0000       1.25
+++ esh-proc.el 22 Jan 2009 06:33:07 -0000      1.26
@@ -22,6 +22,8 @@
 
 ;;; Commentary:
 
+;;; Code:
+
 (provide 'esh-proc)
 
 (eval-when-compile
@@ -524,7 +526,5 @@
   (eshell-send-input nil nil t)
   (eshell-process-interact 'process-send-eof))
 
-;;; Code:
-
 ;; arch-tag: ac477a3e-ee4d-4b44-8ec6-212010e607bb
 ;;; esh-proc.el ends here

Index: esh-var.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/eshell/esh-var.el,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -b -r1.28 -r1.29
--- esh-var.el  5 Jan 2009 03:21:48 -0000       1.28
+++ esh-var.el  22 Jan 2009 06:33:07 -0000      1.29
@@ -104,6 +104,8 @@
 ;; contains the exit code of the last command (0 or 1 for Lisp
 ;; functions, based on successful completion).
 
+;;; Code:
+
 (provide 'esh-var)
 
 (eval-when-compile
@@ -651,7 +653,5 @@
       (setq pcomplete-stub (substring arg pos))
       (throw 'pcomplete-completions (pcomplete-entries)))))
 
-;;; Code:
-
 ;; arch-tag: 393654fe-bdad-4f27-9a10-b1472ded14cf
 ;;; esh-var.el ends here




reply via email to

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