Used for `completion-at-point' candidates in cases such as:
foo :- \\='$bar-!-baz\\='("
- (let* ((end (or (sweeprolog--end-of-quote (line-end-position))
+ (let* ((end (or (sweeprolog--end-of-quote (pos-eol))
(point))))
(sweeprolog--atom-or-functor-completion-at-point beg end)))
"." "/" ":" "<" "=" ">"
"?" "@" "\\" "^" "~")
"." (or white "\n"))
- (line-beginning-position))))
+ (pos-bol))))
(not (eobp)))
(while (and (nth 8 (syntax-ppss)) (not (eobp)))
(forward-char))
(if target-position
(save-excursion
(goto-char target-position)
- (let ((pos (- (point-max) (line-end-position))))
+ (let ((pos (- (point-max) (pos-eol))))
(combine-after-change-calls
(if exported-operator
(progn
four columns, which accommodates the convetional alignment for
if-then-else constructs and other common layouts in SWI-Prolog."
(interactive "" sweeprolog-mode)
- (let ((bol (line-beginning-position)))
+ (let ((bol (pos-bol)))
(if (nth 4 (syntax-ppss))
(combine-after-change-calls
(delete-horizontal-space)
This function is added to ‘post-self-insert-hook’ by
`sweeprolog-electric-layout-mode'."
(if (nth 8 (syntax-ppss))
- (when (member (buffer-substring-no-properties (line-beginning-position)
+ (when (member (buffer-substring-no-properties (pos-bol)
(point))
'("%%" "%!"))
(insert " "))
(unless offset
(save-excursion
(goto-char beg)
- (let ((prefix (buffer-substring (line-beginning-position)
+ (let ((prefix (buffer-substring (pos-bol)
(point))))
(save-match-data
(cond
(goto-char fbeg)
(sweeprolog-backward-term (1- pre))
(let ((go t)
- (line-beg (line-beginning-position)))
+ (line-beg (pos-bol)))
(while go
(pcase (sweeprolog-last-token-boundaries)
((or `(operator ,lbeg ,lend)
(= (char-syntax (char-before)) ?_)))
(when (save-excursion
(forward-char)
- (skip-syntax-forward " " (line-end-position))
+ (skip-syntax-forward " " (pos-eol))
(eolp))
(skip-syntax-backward "w_")))
(current-column))
(line (cdr entry)))
(goto-char (point-min))
(forward-line (1- line))
- (cons car (line-beginning-position))))
+ (cons car (pos-bol))))
(sweeprolog--query-once "sweep" "sweep_imenu_index"
(buffer-file-name))))