Fix org-at-TBLFM-p
* lisp/org.el (org-at-TBLFM-p): Make sure match is case-insensitive. Improve speed in the general case.
This commit is contained in:
parent
84d5986cdf
commit
57883f7957
|
@ -4570,8 +4570,8 @@ is nil, return nil unconditionally."
|
|||
(save-excursion
|
||||
(goto-char (or pos (point)))
|
||||
(beginning-of-line)
|
||||
(and (eq (org-element-type (org-element-at-point)) 'table)
|
||||
(looking-at org-TBLFM-regexp))))
|
||||
(and (let ((case-fold-search t)) (looking-at org-TBLFM-regexp))
|
||||
(eq (org-element-type (org-element-at-point)) 'table))))
|
||||
|
||||
(defvar org-clock-start-time)
|
||||
(defvar org-clock-marker (make-marker)
|
||||
|
|
Loading…
Reference in New Issue