@@ -187,7 +187,7 @@ partial match for LaTeX completion, or `nil' when not applicable."
187
187
(group " '" ) ; start single quote of character constant
188
188
(or ; two alternatives
189
189
(not (any " \\ " )) ; one character, not backslash
190
- (seq " \\ " ; sequence of a backslash followed by ...
190
+ (seq " \\ " ; sequence of a backslash followed by ...
191
191
(or ; five alternatives
192
192
(any " \\ '\" abfnrtv" ) ; single character escape
193
193
(repeat 1 3 (any " 0-7" )) ; octal escape
@@ -485,8 +485,8 @@ As a result, it is true inside \"foo\", \\=`foo\\=` and \\='f\\='."
485
485
KW-LIST is a list of strings. The word at point is not considered
486
486
a keyword if used as a field name, X.word, or quoted, :word."
487
487
(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 )) ?: ))))
490
490
(not (looking-at " (" )) ; handle "function(" when on (
491
491
(member (current-word t ) kw-list)
492
492
; ; 'end' is not a keyword when used for indexing, e.g. foo[end-2]
@@ -553,9 +553,9 @@ Do not move back beyond MIN."
553
553
(setq min (max min (point-min )))
554
554
(let ((pos (julia-last-open-block-pos min )))
555
555
(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))))))
559
559
560
560
(defun julia-block-open-indentation ()
561
561
" 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."
884
884
; ; "\^(", "\1/", and "\^=)" are valid.
885
885
(member (char-syntax (char-before )) '(?\s ?< ?> ?\\ ))))
886
886
(backward-char ))
887
- (when (= ?\\ (char-before ))
887
+ (when (and ( not ( bobp )) ( = ?\\ (char-before ) ))
888
888
(- (point ) 1 ))))
889
889
890
890
; ; Sometimes you want to complete a symbol `point' is in middle of
0 commit comments