Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3b734e12
Commit
3b734e12
authored
Feb 01, 2016
by
Kyle Meyer
Committed by
Stefan Monnier
Feb 01, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* org/org-compat.el (org-font-lock-ensure): Fix bogus test (bug#22399)
parent
43cb9f8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/org/org-compat.el
lisp/org/org-compat.el
+2
-2
No files found.
lisp/org/org-compat.el
View file @
3b734e12
...
...
@@ -479,9 +479,9 @@ LIMIT."
(
not
(
null
pos
)))))
(
defalias
'org-font-lock-ensure
(
if
(
fboundp
'
org-
font-lock-ensure
)
(
if
(
fboundp
'font-lock-ensure
)
#'
font-lock-ensure
(
lambda
(
_beg
_end
)
(
font-lock-fontify-buffer
))))
(
lambda
(
&optional
_beg
_end
)
(
font-lock-fontify-buffer
))))
(
defun
org-floor*
(
x
&optional
y
)
"Return a list of the floor of X and the fractional part of X.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment