From: Glenn Morris Date: Wed, 25 Apr 2018 18:41:41 +0000 (-0400) Subject: * lisp/progmodes/sql.el (comint-line-beginning-position): X-Git-Tag: emacs-27.0.90~5095 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bb902bf6a5629df9d54a5caf3d9ce2153f1a84c5;p=emacs.git * lisp/progmodes/sql.el (comint-line-beginning-position): Remove pre-21 fallback definition. --- diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index 4d291c3bde8..64651aff114 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el @@ -2715,17 +2715,6 @@ adds a fontification pattern to fontify identifiers ending in (sql-highlight-product)) -;;; Compatibility functions - -(if (not (fboundp 'comint-line-beginning-position)) - ;; comint-line-beginning-position is defined in Emacs 21 - (defun comint-line-beginning-position () - "Return the buffer position of the beginning of the line, after any prompt. -The prompt is assumed to be any text at the beginning of the line -matching the regular expression `comint-prompt-regexp', a buffer -local variable." - (save-excursion (comint-bol nil) (point)))) - ;;; SMIE support ;; Needs a lot more love than I can provide. --Stef