Marius Hofert <[email protected]> writes: > I already set this, but was wondering if there is even a faster > way.
Sure. (defun yes-or-no-p (&rest ignored) t) (defun y-or-n-p (&rest ignored) t) Or for even more fun. (defun yes-or-no-p (&rest ignored) (oddp (random))) (defun y-or-n-p (&rest ignored) (oddp (random))) ;-) > Maybe it's good to have this question since it may also be an > indicator of an error. Yes! Bye, Tassilo _______________________________________________ auctex mailing list [email protected] https://lists.gnu.org/mailman/listinfo/auctex
