diff options
| author | David Aspinall | 2010-08-24 18:05:18 +0000 |
|---|---|---|
| committer | David Aspinall | 2010-08-24 18:05:18 +0000 |
| commit | d523be174ab8713c499f832d2d9a3932547fb316 (patch) | |
| tree | 249e89cbfe3081a37ceebbde0e8738fa93a4fc60 /lib | |
| parent | a2bf5fee3251df49be21cad70a8d9bcb4c85403b (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.el | 2 |
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. |
