comparison lisp/eshell/esh-io.el @ 98564:f79ec7c34dc5

Sven Joachim <svenjoac at gmx.de> For clarity, explicitly require cl.
author Glenn Morris <rgm@gnu.org>
date Wed, 08 Oct 2008 07:42:43 +0000
parents 45dbb3c749a6
children a9dc0e7c3f2b
comparison
equal deleted inserted replaced
98563:19783ad0415a 98564:f79ec7c34dc5
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 (provide 'esh-io) 58 (provide 'esh-io)
59 59
60 (eval-when-compile (require 'eshell)) 60 (eval-when-compile
61 (require 'cl)
62 (require 'eshell))
61 63
62 (defgroup eshell-io nil 64 (defgroup eshell-io nil
63 "Eshell's I/O management code provides a scheme for treating many 65 "Eshell's I/O management code provides a scheme for treating many
64 different kinds of objects -- symbols, files, buffers, etc. -- as 66 different kinds of objects -- symbols, files, buffers, etc. -- as
65 though they were files." 67 though they were files."