(char-next-index): Fixed.
authormorioka <morioka>
Fri, 17 Apr 1998 02:20:49 +0000 (02:20 +0000)
committermorioka <morioka>
Fri, 17 Apr 1998 02:20:49 +0000 (02:20 +0000)
emu-e20_2.el
emu-e20_3.el
emu-latin1.el
emu-mule.el
emu-x20.el

index 65bd360..d713712 100644 (file)
@@ -45,7 +45,7 @@ but the contents viewed as characters do change."
 
 (defmacro char-next-index (char index)
   "Return index of character succeeding CHAR whose index is INDEX."
-  `(+ index (char-bytes char)))
+  `(+ ,index (char-bytes char)))
 
 
 ;;; @ string
index 3d658f3..6362a0f 100644 (file)
@@ -37,7 +37,7 @@
 
 (defmacro char-next-index (char index)
   "Return index of character succeeding CHAR whose index is INDEX."
-  `(1+ index))
+  `(1+ ,index))
 
 
 ;;; @ string
index 99034a2..3091507 100644 (file)
@@ -245,7 +245,7 @@ find-file-hooks, etc.
 
 (defmacro char-next-index (char index)
   "Return index of character succeeding CHAR whose index is INDEX."
-  (` (1+ index)))
+  (` (1+ (, index))))
 
 
 ;;; @ string
index 63987b1..63be74e 100644 (file)
@@ -319,7 +319,7 @@ It must be symbol.")
 
 (defmacro char-next-index (char index)
   "Return index of character succeeding CHAR whose index is INDEX."
-  (` (+ index (char-bytes char))))
+  (` (+ (, index) (char-bytes (, char)))))
 
 ;;; @@ obsoleted aliases
 ;;;
index 8790697..42930a0 100644 (file)
@@ -146,7 +146,7 @@ find-file-hooks, etc.
 
 (defmacro char-next-index (char index)
   "Return index of character succeeding CHAR whose index is INDEX."
-  `(1+ index))
+  `(1+ ,index))
 
 ;;; @@ Mule emulating aliases
 ;;;