Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1095518a
Commit
1095518a
authored
Aug 24, 1998
by
Eric M. Ludlam
Browse files
(speedbar-temp-buffer-show-function): For emacs don't call hook
with arguments.
parent
2d0327e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
lisp/speedbar.el
lisp/speedbar.el
+5
-3
No files found.
lisp/speedbar.el
View file @
1095518a
...
...
@@ -5,7 +5,7 @@
;; Author: Eric M. Ludlam <zappo@gnu.org>
;; Version: 0.7.2a
;; Keywords: file, tags, tools
;; X-RCS: $Id: speedbar.el,v 1.1
0
1998/08/
19 21:43:56 done
Exp zappo $
;; X-RCS: $Id: speedbar.el,v 1.1
1
1998/08/
24 00:37:22 zappo
Exp zappo $
;; This file is part of GNU Emacs.
...
...
@@ -1237,8 +1237,10 @@ redirected into a window on the attached frame."
(
if
speedbar-attached-frame
(
select-frame
speedbar-attached-frame
))
(
pop-to-buffer
buffer
nil
)
(
other-window
-1
)
;; Fix for using this hook: Bob Weiner
(
cond
((
fboundp
'run-hook-with-args
)
;; Fix for using this hook on some platforms: Bob Weiner
(
cond
((
not
speedbar-xemacsp
)
(
run-hooks
'temp-buffer-show-hook
))
((
fboundp
'run-hook-with-args
)
(
run-hook-with-args
'temp-buffer-show-hook
buffer
))
((
and
(
boundp
'temp-buffer-show-hook
)
(
listp
temp-buffer-show-hook
))
...
...
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