aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-01-22 06:33:06 +0000
committerGlenn Morris2009-01-22 06:33:06 +0000
commit8c7309fe0ba9b866e4ff929a59d08a6dfd39ceba (patch)
tree6a3f8e12f7ed68565d6b31cf0b59b585e1a9d7a1
parent08f17840b4482cc052ab783d6c0060c70732c0ed (diff)
downloademacs-8c7309fe0ba9b866e4ff929a59d08a6dfd39ceba.tar.gz
emacs-8c7309fe0ba9b866e4ff929a59d08a6dfd39ceba.zip
Comment (header format fix).
-rw-r--r--lisp/eshell/esh-ext.el4
-rw-r--r--lisp/eshell/esh-io.el4
-rw-r--r--lisp/eshell/esh-mode.el4
-rw-r--r--lisp/eshell/esh-opt.el4
-rw-r--r--lisp/eshell/esh-proc.el4
-rw-r--r--lisp/eshell/esh-var.el4
6 files changed, 12 insertions, 12 deletions
diff --git a/lisp/eshell/esh-ext.el b/lisp/eshell/esh-ext.el
index 70dfa719c9d..719bb308a6c 100644
--- a/lisp/eshell/esh-ext.el
+++ b/lisp/eshell/esh-ext.el
@@ -30,6 +30,8 @@
30;; /bin/grep ; will definitely invoke /bin/grep 30;; /bin/grep ; will definitely invoke /bin/grep
31;; *grep ; will also invoke /bin/grep 31;; *grep ; will also invoke /bin/grep
32 32
33;;; Code:
34
33(provide 'esh-ext) 35(provide 'esh-ext)
34 36
35(eval-when-compile 37(eval-when-compile
@@ -315,7 +317,5 @@ line of the form #!<interp>."
315 (cdr interp))))) 317 (cdr interp)))))
316 (or interp (list fullname))))))) 318 (or interp (list fullname)))))))
317 319
318;;; Code:
319
320;; arch-tag: 178d4064-7e60-4745-b81f-bab5d8d7c40f 320;; arch-tag: 178d4064-7e60-4745-b81f-bab5d8d7c40f
321;;; esh-ext.el ends here 321;;; esh-ext.el ends here
diff --git a/lisp/eshell/esh-io.el b/lisp/eshell/esh-io.el
index 7d4a41bb2ef..a9b7225a3ed 100644
--- a/lisp/eshell/esh-io.el
+++ b/lisp/eshell/esh-io.el
@@ -55,6 +55,8 @@
55;; (+ 1 2) > a > b > c ; prints number to all three files 55;; (+ 1 2) > a > b > c ; prints number to all three files
56;; (+ 1 2) > a | wc ; prints to 'a', and pipes to 'wc' 56;; (+ 1 2) > a | wc ; prints to 'a', and pipes to 'wc'
57 57
58;;; Code:
59
58(provide 'esh-io) 60(provide 'esh-io)
59 61
60(eval-when-compile 62(eval-when-compile
@@ -513,7 +515,5 @@ Returns what was actually sent, or nil if nothing was sent."
513 (eshell-output-object-to-target object (car target)) 515 (eshell-output-object-to-target object (car target))
514 (setq target (cdr target)))))) 516 (setq target (cdr target))))))
515 517
516;;; Code:
517
518;; arch-tag: 9ca2080f-d5e0-4b26-aa0b-d59194a905a2 518;; arch-tag: 9ca2080f-d5e0-4b26-aa0b-d59194a905a2
519;;; esh-io.el ends here 519;;; esh-io.el ends here
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el
index db876d49bf8..bdb5fd3179c 100644
--- a/lisp/eshell/esh-mode.el
+++ b/lisp/eshell/esh-mode.el
@@ -57,6 +57,8 @@
57;; 57;;
58;; @ <C-c C-b> will move backward a complete shell argument. 58;; @ <C-c C-b> will move backward a complete shell argument.
59 59
60;;; Code:
61
60(provide 'esh-mode) 62(provide 'esh-mode)
61 63
62(eval-when-compile (require 'esh-util)) 64(eval-when-compile (require 'esh-util))
@@ -1080,7 +1082,5 @@ This function could be in the list `eshell-output-filter-functions'."
1080(custom-add-option 'eshell-output-filter-functions 1082(custom-add-option 'eshell-output-filter-functions
1081 'eshell-handle-ansi-color) 1083 'eshell-handle-ansi-color)
1082 1084
1083;;; Code:
1084
1085;; arch-tag: ec65bc2b-da14-4547-81d3-a32af3a4dc57 1085;; arch-tag: ec65bc2b-da14-4547-81d3-a32af3a4dc57
1086;;; esh-mode.el ends here 1086;;; esh-mode.el ends here
diff --git a/lisp/eshell/esh-opt.el b/lisp/eshell/esh-opt.el
index 2bb5e352135..2ffb09165f4 100644
--- a/lisp/eshell/esh-opt.el
+++ b/lisp/eshell/esh-opt.el
@@ -22,6 +22,8 @@
22 22
23;;; Commentary: 23;;; Commentary:
24 24
25;;; Code:
26
25(provide 'esh-opt) 27(provide 'esh-opt)
26 28
27(eval-when-compile (require 'esh-ext)) 29(eval-when-compile (require 'esh-ext))
@@ -222,7 +224,5 @@ This assumes that symbols have been intern'd by `eshell-with-options'."
222 (setq index (1+ index))))))))) 224 (setq index (1+ index)))))))))
223 args) 225 args)
224 226
225;;; Code:
226
227;; arch-tag: 45c6c2d0-8091-46a1-a205-2f4bafd8230c 227;; arch-tag: 45c6c2d0-8091-46a1-a205-2f4bafd8230c
228;;; esh-opt.el ends here 228;;; esh-opt.el ends here
diff --git a/lisp/eshell/esh-proc.el b/lisp/eshell/esh-proc.el
index 54689516fba..0aa7d44190c 100644
--- a/lisp/eshell/esh-proc.el
+++ b/lisp/eshell/esh-proc.el
@@ -22,6 +22,8 @@
22 22
23;;; Commentary: 23;;; Commentary:
24 24
25;;; Code:
26
25(provide 'esh-proc) 27(provide 'esh-proc)
26 28
27(eval-when-compile 29(eval-when-compile
@@ -524,7 +526,5 @@ See the variable `eshell-kill-processes-on-exit'."
524 (eshell-send-input nil nil t) 526 (eshell-send-input nil nil t)
525 (eshell-process-interact 'process-send-eof)) 527 (eshell-process-interact 'process-send-eof))
526 528
527;;; Code:
528
529;; arch-tag: ac477a3e-ee4d-4b44-8ec6-212010e607bb 529;; arch-tag: ac477a3e-ee4d-4b44-8ec6-212010e607bb
530;;; esh-proc.el ends here 530;;; esh-proc.el ends here
diff --git a/lisp/eshell/esh-var.el b/lisp/eshell/esh-var.el
index 4e3fda73afb..22aa0ca4a64 100644
--- a/lisp/eshell/esh-var.el
+++ b/lisp/eshell/esh-var.el
@@ -104,6 +104,8 @@
104;; contains the exit code of the last command (0 or 1 for Lisp 104;; contains the exit code of the last command (0 or 1 for Lisp
105;; functions, based on successful completion). 105;; functions, based on successful completion).
106 106
107;;; Code:
108
107(provide 'esh-var) 109(provide 'esh-var)
108 110
109(eval-when-compile 111(eval-when-compile
@@ -651,7 +653,5 @@ For example, to retrieve the second element of a user's record in
651 (setq pcomplete-stub (substring arg pos)) 653 (setq pcomplete-stub (substring arg pos))
652 (throw 'pcomplete-completions (pcomplete-entries))))) 654 (throw 'pcomplete-completions (pcomplete-entries)))))
653 655
654;;; Code:
655
656;; arch-tag: 393654fe-bdad-4f27-9a10-b1472ded14cf 656;; arch-tag: 393654fe-bdad-4f27-9a10-b1472ded14cf
657;;; esh-var.el ends here 657;;; esh-var.el ends here