branch: externals/phps-mode commit efa297af9ffc180500c5f8fb67c311a95b349ff8 Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
More work on renaming --- phps-mode-functions.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phps-mode-functions.el b/phps-mode-functions.el index b80d2dc..bf4e77a 100644 --- a/phps-mode-functions.el +++ b/phps-mode-functions.el @@ -195,7 +195,7 @@ (defun phps-mode-functions-get-point-data () "Return information about point in tokens." ;; (message "Point: %s in %s" (point) phps-mode/lexer-tokens) - (when (boundp 'phps-mode/lexer-tokens) + (when (boundp 'phps-mode-lexer-tokens) (save-excursion (beginning-of-line) (let ((line-beginning (point)) @@ -215,7 +215,7 @@ (line-in-doc-comment nil) (found-line-tokens nil)) (catch 'stop-iteration - (dolist (item phps-mode/lexer-tokens) + (dolist (item phps-mode-lexer-tokens) (let ((token (car item)) (token-start (car (cdr item))) (token-end (cdr (cdr item))))