to account for non-ASCII characters.
+2002-08-16 Dave Love <fx@gnu.org>
+
+ * emacs-lisp/edebug.el (edebug-read-syntax-table): Use a char
+ table to account for non-ASCII characters.
+
2002-08-15 Richard M. Stallman <rms@gnu.org>
* loadup.el: Load international/ucs-tables.elc.
(defconst edebug-read-syntax-table
;; Lookup table for significant characters indicating the class of the
;; token that follows. This is not a \"real\" syntax table.
- (let ((table (make-vector 256 'symbol))
+ (let ((table (make-char-table 'syntax-table 'symbol))
(i 0))
(while (< i ?!)
(aset table i 'space)