Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1ba1f458
Commit
1ba1f458
authored
Nov 18, 2008
by
Carsten Dominik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* org.el ("speedbar"): Only show context if the file really is an
org-mode buffer.
parent
0dade8aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lisp/org/org.el
lisp/org/org.el
+1
-1
No files found.
lisp/org/org.el
View file @
1ba1f458
...
...
@@ -14407,7 +14407,7 @@ To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
(define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
(define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
(add-hook 'speedbar-visiting-tag-hook
(lambda () (org-show-context 'org-goto)))))
(lambda ()
(and (org-mode-p)
(org-show-context 'org-goto)))))
)
;;; Fixes and Hacks for problems with other packages
...
...
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