]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove old commented out XEmacs compat code from syntax.el (Bug#37524)
authorStefan Kangas <stefankangas@gmail.com>
Sat, 14 Sep 2019 13:44:54 +0000 (15:44 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Tue, 1 Oct 2019 18:25:11 +0000 (20:25 +0200)
* lisp/emacs-lisp/syntax.el: Remove ancient commented out XEmacs
compat code.  This code has been commented out since 2001.

lisp/emacs-lisp/syntax.el

index 6464e2a52db607559980832f0e29726cc8e41b61..3861b160cc92e649cb686fb80e4c421b2f1c3f0f 100644 (file)
@@ -638,21 +638,6 @@ running the hook."
       (setq pt (car x)))
     min-diffs))
 
-;; XEmacs compatibility functions
-
-;; (defun buffer-syntactic-context (&optional buffer)
-;;   "Syntactic context at point in BUFFER.
-;; Either of `string', `comment' or nil.
-;; This is an XEmacs compatibility function."
-;;   (with-current-buffer (or buffer (current-buffer))
-;;     (syntax-ppss-context (syntax-ppss))))
-
-;; (defun buffer-syntactic-context-depth (&optional buffer)
-;;   "Syntactic parenthesis depth at point in BUFFER.
-;; This is an XEmacs compatibility function."
-;;   (with-current-buffer (or buffer (current-buffer))
-;;     (syntax-ppss-depth (syntax-ppss))))
-
 (provide 'syntax)
 
 ;;; syntax.el ends here