diff options
| author | Glenn Morris | 2014-06-13 15:40:42 -0400 |
|---|---|---|
| committer | Glenn Morris | 2014-06-13 15:40:42 -0400 |
| commit | d736dd563056e3cac9f006d186ca018525f8b36a (patch) | |
| tree | 462ccffefecac433703a12e0a17d0ccb575f228c | |
| parent | 49576d0e2ccd3d8a9ada85429714e55a167bb8f2 (diff) | |
| download | emacs-d736dd563056e3cac9f006d186ca018525f8b36a.tar.gz emacs-d736dd563056e3cac9f006d186ca018525f8b36a.zip | |
* lisp/eshell/eshell.el: Remove old comment.
| -rw-r--r-- | lisp/eshell/eshell.el | 51 |
1 files changed, 1 insertions, 50 deletions
diff --git a/lisp/eshell/eshell.el b/lisp/eshell/eshell.el index 5590483a54b..af67266e67b 100644 --- a/lisp/eshell/eshell.el +++ b/lisp/eshell/eshell.el | |||
| @@ -170,56 +170,7 @@ | |||
| 170 | ;; @ 4nt | 170 | ;; @ 4nt |
| 171 | ;; @ csh | 171 | ;; @ csh |
| 172 | 172 | ||
| 173 | ;;;_* Speeding up load time | 173 | ;;; Code: |
| 174 | ;; | ||
| 175 | ;; If you find that Eshell loads too slowly, there is something you | ||
| 176 | ;; can do to speed it up. | ||
| 177 | ;; | ||
| 178 | ;; Create a file, named /tmp/elc, containing this filelist: | ||
| 179 | ;; | ||
| 180 | ;; esh-util.elc | ||
| 181 | ;; eshell.elc | ||
| 182 | ;; esh-module.elc | ||
| 183 | ;; esh-var.elc | ||
| 184 | ;; esh-proc.elc | ||
| 185 | ;; esh-arg.elc | ||
| 186 | ;; esh-io.elc | ||
| 187 | ;; esh-ext.elc | ||
| 188 | ;; esh-cmd.elc | ||
| 189 | ;; esh-mode.elc | ||
| 190 | ;; esh-opt.elc | ||
| 191 | ;; em-alias.elc | ||
| 192 | ;; em-banner.elc | ||
| 193 | ;; em-basic.elc | ||
| 194 | ;; em-cmpl.elc | ||
| 195 | ;; em-dirs.elc | ||
| 196 | ;; em-pred.elc | ||
| 197 | ;; em-glob.elc | ||
| 198 | ;; em-hist.elc | ||
| 199 | ;; em-ls.elc | ||
| 200 | ;; em-prompt.elc | ||
| 201 | ;; em-rebind.elc | ||
| 202 | ;; em-script.elc | ||
| 203 | ;; em-smart.elc | ||
| 204 | ;; em-term.elc | ||
| 205 | ;; em-unix.elc | ||
| 206 | ;; em-xtra.elc | ||
| 207 | ;; | ||
| 208 | ;; The order is very important. Remove from the filelist any features | ||
| 209 | ;; you don't use. These all begin with "em-". If you don't use | ||
| 210 | ;; Eshell's key rebinding module, you can remove "em-rebind.elc" from | ||
| 211 | ;; the filelist. The modules you are currently using are listed in | ||
| 212 | ;; `eshell-modules-list'. | ||
| 213 | ;; | ||
| 214 | ;; Now, concatenating all of the above mentioned .elc files, in that | ||
| 215 | ;; order, to another file. Here is how to do this on UNIX: | ||
| 216 | ;; | ||
| 217 | ;; cat `cat /tmp/elc` > tmp.elc ; mv tmp.elc eshell.elc | ||
| 218 | ;; | ||
| 219 | ;; Now your eshell.elc file contains all of the .elc files that make | ||
| 220 | ;; up Eshell, in the right load order. When you next load Eshell, it | ||
| 221 | ;; will only have to read in this one file, which will greatly speed | ||
| 222 | ;; things up. | ||
| 223 | 174 | ||
| 224 | (eval-when-compile | 175 | (eval-when-compile |
| 225 | (require 'cl-lib)) | 176 | (require 'cl-lib)) |