mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Make point-at-eol and point-at-bol obsolete
* lisp/subr.el (point-at-eol, point-at-bol): Make XEmacs compat aliases obsolete in favor of `pos-bol'/'line-beginning-position' or 'pos-eol'/'line-end-position'. Update callers. Ref: https://lists.gnu.org/r/emacs-devel/2022-08/msg00853.html
This commit is contained in:
parent
e425b7d231
commit
b7e867b841
134 changed files with 586 additions and 550 deletions
|
|
@ -1147,7 +1147,7 @@ delimiter."
|
|||
(setq re (regexp-quote (or (match-string 4) (match-string 2))))
|
||||
(if (match-beginning 1) (setq re (concat "\\s *" re)))
|
||||
(let* ((id-end (goto-char (match-end 0)))
|
||||
(line-end-position (point-at-eol))
|
||||
(line-end-position (line-end-position))
|
||||
(state (list in-string nest depth pcol indent)))
|
||||
;; parse the rest of the line
|
||||
(while (and (> line-end-position (point))
|
||||
|
|
@ -1924,7 +1924,7 @@ It will be properly highlighted even when the call omits parens.")
|
|||
(save-excursion
|
||||
(forward-char -1)
|
||||
(looking-back ruby-syntax-before-regexp-re
|
||||
(point-at-bol))))
|
||||
(line-beginning-position))))
|
||||
;; End of regexp. We don't match the whole
|
||||
;; regexp at once because it can have
|
||||
;; string interpolation inside, or span
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue