From 4cec316bbc464c936639d198b73b1588f036c3bf Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 15 Apr 2003 15:14:15 +0000 Subject: * misc/ruby-mode.el (ruby-special-char-p): should test at the point if no argument. fixed by Michael Scholz . git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3686 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- misc/ruby-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'misc') diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el index ebb47c9e85..3b03e0ffc1 100644 --- a/misc/ruby-mode.el +++ b/misc/ruby-mode.el @@ -282,7 +282,7 @@ The variable ruby-indent-level controls the amount of indentation. (move-to-column (+ x shift)))))) (defun ruby-special-char-p (&optional pnt) - (let ((c (char-before pnt))) + (let ((c (char-before (or pnt (point))))) (cond ((or (eq c ??) (eq c ?$))) ((eq c ?\\) (eq (char-before (1- (or pnt (point)))) ??))))) -- cgit v1.2.3