* David Kastrup (2007-03-05) writes: > Ralf Angeli <[EMAIL PROTECTED]> writes: > >> * David Kastrup (2007-03-05) writes: >> >>> Couldn't we just start with >>> >>> (setq TeX-search-syntax-table (make-char-table 'syntax-table nil)) >>> >>> ? >> >> Does that return a valid syntax table? I thought one had to feed the >> return value of `make-char-table' to `make-syntax-table' to be >> usable. (The second argument defaults to nil anyway, BTW.) > > Well, it is what make-syntax-table actually does (apart from the > inheritance thingy).
Ugh, I got it backwards. In tex.el we currently have basically (make-syntax-table (make-char-table 'syntax-table)) In order to prevent `make-syntax-table' from inheriting from the standard syntax table the output of `make-char-table' (initialized with nil values) is used as parameter. -- Ralf _______________________________________________ bug-auctex mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-auctex
