home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 September
/
Simtel20_Sept92.cdr
/
msdos
/
editor
/
me_cd.arc
/
EMACS.MUT
< prev
next >
Wrap
Lisp/Scheme
|
1988-09-07
|
395b
|
23 lines
;; emacs.mut
;; A few routines I don't put in init.mut that make ME more EMACS like.
;; C Durland
(defun set-fill-column
{
(int col)
(col (if (arg-flag) (arg-prefix) (current-column)))
(if (< col 10)
(msg "Fill column too small.")
(msg "Fill column set to " (word-wrap col))
)
})
(defun
MAIN
{
(bind-to-key "set-fill-column" "C-Xf")
}
)