diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-09-09 23:14:13 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-09-09 23:14:13 +0000 |
commit | c17e2545b98cab1b19125c0b3ef43829d82cc299 (patch) | |
tree | 63a38efe6fb88f0a37236788c05f6deb684754e5 /lisp/emacs-lisp/syntax.el | |
parent | e9f13a9580e6bd5f71ed9ad684b586c4d445ec17 (diff) | |
download | emacs-c17e2545b98cab1b19125c0b3ef43829d82cc299.tar.gz |
(syntax-after): Delete. Moved to subr.el.
Diffstat (limited to 'lisp/emacs-lisp/syntax.el')
-rw-r--r-- | lisp/emacs-lisp/syntax.el | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lisp/emacs-lisp/syntax.el b/lisp/emacs-lisp/syntax.el index 717ea756b56..89660e48d77 100644 --- a/lisp/emacs-lisp/syntax.el +++ b/lisp/emacs-lisp/syntax.el @@ -282,13 +282,5 @@ Point is at POS when this function returns." ;; (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 |