]> git.eshelyaron.com Git - emacs.git/commitdiff
Add `backward-delete-char-untabify' to the list of bindings to remap when
authorNoah Friedman <friedman@splode.com>
Tue, 13 Nov 2007 18:52:00 +0000 (18:52 +0000)
committerNoah Friedman <friedman@splode.com>
Tue, 13 Nov 2007 18:52:00 +0000 (18:52 +0000)
`calc-scan-for-dels' is non-nil.

lisp/ChangeLog
lisp/calc/calc.el

index cf233cfadb8193dd00a92cc40d298165b5d7c256..dae31a218d353dfc77782c1cf793ace0eb9730ff 100644 (file)
@@ -1,3 +1,8 @@
+2007-11-13  Noah Friedman  <friedman@splode.com>
+
+       * calc/calc.el: Add `backward-delete-char-untabify' to the list of
+       bindings to remap when `calc-scan-for-dels' is non-nil.
+
 2007-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
index 5cfccb4f8dbfc2ce5e95a3253c3651daea8c1d23..946a1eab06b23f30f1c67d76b62946f98d78930d 100644 (file)
@@ -1009,6 +1009,7 @@ If nil, selections displayed but ignored.")
       (if calc-scan-for-dels
          (append (where-is-internal 'delete-backward-char global-map)
                  (where-is-internal 'backward-delete-char global-map)
+                 (where-is-internal 'backward-delete-char-untabify global-map)
                  '("\C-d"))
        '("\177" "\C-d")))