diff options
author | jao <jao@gnu.org> | 2021-02-25 22:18:08 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-02-25 22:18:08 +0000 |
commit | 3cb0608f65d659cebfdc86f531142f26980c1e8a (patch) | |
tree | 3dceec5260d3c6f2702c2b66b4448bd7a6feff9b | |
parent | c658f9b8c6327276c5713fc25b0d0ff0630b87b4 (diff) | |
download | elibs-3cb0608f65d659cebfdc86f531142f26980c1e8a.tar.gz elibs-3cb0608f65d659cebfdc86f531142f26980c1e8a.tar.bz2 |
new use-short-answers flag
-rw-r--r-- | init.org | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -164,7 +164,9 @@ *** yes/no, bell, startup message #+BEGIN_SRC emacs-lisp ;;; change yes/no for y/n - (fset 'yes-or-no-p 'y-or-n-p) + (if (version< emacs-version "28") + (fset 'yes-or-no-p 'y-or-n-p) + (setq use-short-answers t)) (setq inhibit-startup-message t) (setq visible-bell t) #+END_SRC |