Thomas Mittelstaedt writes:
Opening a csv file, I always get the following warning.
> (1) (file-mode-spec/warning) Error in File mode specification:
Symbol's function definition is void: turn-off-auto-fill
in src/xemacs/lisp/simple.el, there only is a turn-on-auto-fill, but
no turn-off-auto-fill.
Thank you for your report. I think this is a won't-fix. The
`turn-on-foo' / `turn-off-foo' idiom was very inconsistently used in
XEmacs, and now I believe GNU have deprecated it and it will be
systematically removed from GNU Emacs 23.
If you can suggest a good place to document this, that would be
helpful.
For a workaround, define one in your init file:
(defun turn-off-auto-fill () (interactive) (auto-fill-mode 0))
Better, fix the invocation of turn-off-auto-fill (probably local
variables in the .csv file, use the `eval' pseudo-variable with value
`(auto-fill-mode 0)').
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta