aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2005-03-15 07:45:21 +0000
committerYAMAMOTO Mitsuharu2005-03-15 07:45:21 +0000
commit267e1dbee4309e9fc8551ba7d45481a737a3e261 (patch)
tree00bfc2b9c58954472cc32263550546bc39448607
parent0ec31faf3097fc024e6886bcf825ccecd4fe9a0d (diff)
downloademacs-267e1dbee4309e9fc8551ba7d45481a737a3e261.tar.gz
emacs-267e1dbee4309e9fc8551ba7d45481a737a3e261.zip
(normal-erase-is-backspace): Set default to t if running on Mac.
-rw-r--r--lisp/simple.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 9062d39e1c1..28b62a27098 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -5069,6 +5069,7 @@ the front of the list of recently selected ones."
5069(defcustom normal-erase-is-backspace 5069(defcustom normal-erase-is-backspace
5070 (and (not noninteractive) 5070 (and (not noninteractive)
5071 (or (memq system-type '(ms-dos windows-nt)) 5071 (or (memq system-type '(ms-dos windows-nt))
5072 (eq window-system 'mac)
5072 (and (memq window-system '(x)) 5073 (and (memq window-system '(x))
5073 (fboundp 'x-backspace-delete-keys-p) 5074 (fboundp 'x-backspace-delete-keys-p)
5074 (x-backspace-delete-keys-p)) 5075 (x-backspace-delete-keys-p))