Skip to content

Commit c6a1c17

Browse files
committed
Fix error when trying to expand latex symbol at beginning of buffer
With company-mode, the following error is thrown when typing (anything but a latex sequence) at the start of the buffer: ``` Debugger entered--Lisp error: (wrong-type-argument number-or-marker-p nil) =(92 nil) (if (= 92 (char-before)) (progn (- (point) 1))) (save-excursion (while (not (or (bobp) (= 92 (char-before)) (member (char-syntax (char-before)) '(32 60 62 92)))) (backward-char)) (if (= 92 (char-before)) (progn (- (point) 1)))) julia--latexsub-start-symbol() julia-mode-latexsub-completion-at-point-around() completion--capf-wrapper(julia-mode-latexsub-completion-at-point-around optimist) company--capf-wrapper(julia-mode-latexsub-completion-at-point-around optimist) ``` This change fixes that.
1 parent 0f4d74f commit c6a1c17

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

julia-mode.el

+7-7
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ partial match for LaTeX completion, or `nil' when not applicable."
187187
(group "'") ; start single quote of character constant
188188
(or ; two alternatives
189189
(not (any "\\")) ; one character, not backslash
190-
(seq "\\" ; sequence of a backslash followed by ...
190+
(seq "\\" ; sequence of a backslash followed by ...
191191
(or ; five alternatives
192192
(any "\\'\"abfnrtv") ; single character escape
193193
(repeat 1 3 (any "0-7")) ; octal escape
@@ -485,8 +485,8 @@ As a result, it is true inside \"foo\", \\=`foo\\=` and \\='f\\='."
485485
KW-LIST is a list of strings. The word at point is not considered
486486
a keyword if used as a field name, X.word, or quoted, :word."
487487
(and (or (bobp)
488-
(and (not (equal (char-before (point)) ?.))
489-
(not (equal (char-before (point)) ?:))))
488+
(and (not (equal (char-before (point)) ?.))
489+
(not (equal (char-before (point)) ?:))))
490490
(not (looking-at "(")) ; handle "function(" when on (
491491
(member (current-word t) kw-list)
492492
;; 'end' is not a keyword when used for indexing, e.g. foo[end-2]
@@ -553,9 +553,9 @@ Do not move back beyond MIN."
553553
(setq min (max min (point-min)))
554554
(let ((pos (julia-last-open-block-pos min)))
555555
(and pos
556-
(progn
557-
(goto-char pos)
558-
(+ julia-indent-offset (julia-block-open-indentation))))))
556+
(progn
557+
(goto-char pos)
558+
(+ julia-indent-offset (julia-block-open-indentation))))))
559559

560560
(defun julia-block-open-indentation ()
561561
"Get the current indentation or the start of a parenthetical block."
@@ -884,7 +884,7 @@ If there is not a LaTeX-like symbol at point, return nil."
884884
;; "\^(", "\1/", and "\^=)" are valid.
885885
(member (char-syntax (char-before)) '(?\s ?< ?> ?\\))))
886886
(backward-char))
887-
(when (= ?\\ (char-before))
887+
(when (and (not (bobp)) (= ?\\ (char-before)))
888888
(- (point) 1))))
889889

890890
;; Sometimes you want to complete a symbol `point' is in middle of

0 commit comments

Comments
 (0)