aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Aspinall2010-08-24 18:05:18 +0000
committerDavid Aspinall2010-08-24 18:05:18 +0000
commitd523be174ab8713c499f832d2d9a3932547fb316 (patch)
tree249e89cbfe3081a37ceebbde0e8738fa93a4fc60 /lib
parenta2bf5fee3251df49be21cad70a8d9bcb4c85403b (diff)
unicode-tokens-delete-backward-1: backward-delete-char -> delete-char to fix Emacs 24 compile warning
Diffstat (limited to 'lib')
-rw-r--r--lib/unicode-tokens.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicode-tokens.el b/lib/unicode-tokens.el
index c1844e70..00044724 100644
--- a/lib/unicode-tokens.el
+++ b/lib/unicode-tokens.el
@@ -786,7 +786,7 @@ but multiple characters in the underlying buffer."
;(message "End is: %d and point is: %d" tokend (point))
(if (and tokst (= (point) tokend))
(delete-region tokst tokend)
- (delete-backward-char 1))))
+ (delete-char -1))))
(defun unicode-tokens-delete-1 ()
"Delete the following visually presented character.