emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/syntax.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/syntax.el
Date: Mon, 09 Sep 2002 19:14:13 -0400

Index: emacs/lisp/emacs-lisp/syntax.el
diff -c emacs/lisp/emacs-lisp/syntax.el:1.5 emacs/lisp/emacs-lisp/syntax.el:1.6
*** emacs/lisp/emacs-lisp/syntax.el:1.5 Thu May  2 01:30:01 2002
--- emacs/lisp/emacs-lisp/syntax.el     Mon Sep  9 19:14:13 2002
***************
*** 282,294 ****
  ;;   (with-current-buffer (or buffer (current-buffer))
  ;;     (syntax-ppss-depth (syntax-ppss))))
  
- (defun syntax-after (pos)
-   "Return the syntax of the char after POS."
-   (unless (or (< pos (point-min)) (>= pos (point-max)))
-     (let ((st (if parse-sexp-lookup-properties
-                 (get-char-property pos 'syntax-table))))
-       (if (consp st) st
-       (aref (or st (syntax-table)) (char-after pos))))))
- 
  (provide 'syntax)
  ;;; syntax.el ends here
--- 282,286 ----




reply via email to

[Prev in Thread] Current Thread [Next in Thread]