[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Yes. You can get it from GNU mirrors. Look for "emacs-manual-*.tar.gz".
Elisp introduction is available at http://www.cs.indiana.edu/usr/local/www/elisp/elisp-intro.html.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
C-c means holding down the Control key while pressing "a". M-x means holding down the Meta key while pressing "x". Meadow binds Alt key as Meta by default. You can accomplish M-x by pressing ESC, releasing ESC, and then pressing "x".
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Evaluate
(Meadow-version) |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
There are a number of ways to evaluate an Emacs Lisp form: (from Emacs FAQ)
These functions are also used for evaluating Lisp forms: load-library, eval-region, eval-current-buffer, require, autoload.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The variable buffer-file-coding-system
is buffer specific. Use
setq-default
instead of setq
when you want to apply to all
the buffers.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
`customize' is a package for visualized configuration of Meadow. To use it, type M-x customize.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type C-h f or M-x describe-function to read documentations of functions. Type C-h v or M-x describe-variable to read documentations of variables.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type C-h k or M-x describe-key.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type C-h w or M-x where-is.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Changes are not reflected if the patched files are dumped into the `Meadow(95|NT).exe' executable object file. Dump the executable again with `dump95.bat' or `dumpNT.bat'.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
It means the translation of emacs lisp source files to binary files.
Meadow (Emacs) can execute byte compiled binary files faster than source
files. The name of elisp source files ends with ".el", while byte
compiled ones ends with ".elc". Use byte-compile-file
to
byte-compile one source file. Use emacs-lisp-byte-compile
to
byte-compile current buffer. With byte-recompile-directory
you
can byte-compile all source files at once.
[ << ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |