• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisión8bb38eb15ddc1deadb4930a8b42b936e20da71e2 (tree)
Tiempo2019-11-11 18:49:29
AutorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

I fixed the problem with a free variable mentioned here https://kutt.it/16rMFa

Cambiar Resumen

Diferencia incremental

diff -r e828469aa3e3 -r 8bb38eb15ddc emacs_files/sr-speedbar.el
--- a/emacs_files/sr-speedbar.el Mon Nov 11 10:25:02 2019 +0100
+++ b/emacs_files/sr-speedbar.el Mon Nov 11 10:49:29 2019 +0100
@@ -7,12 +7,12 @@
77 ;; Copyright (C) 2008, 2009, Andy Stewart, all rights reserved.
88 ;; Copyright (C) 2009, Peter Lunicks, all rights reversed.
99 ;; Created: 2008
10-;; Version: 20161025
10+;; Version: 20140914.2339
1111 ;; X-Original-Version: 0.1.10
12-;; Last-Updated: 2016-10-25
12+;; Last-Updated: 2014-08-03 11:30:00
1313 ;; URL: http://www.emacswiki.org/emacs/download/sr-speedbar.el
1414 ;; Keywords: speedbar, sr-speedbar.el
15-;; Compatibility: GNU Emacs 22 ~ GNU Emacs 25
15+;; Compatibility: GNU Emacs 22 ~ GNU Emacs 24
1616 ;;
1717 ;; Features required by this library:
1818 ;;
@@ -78,13 +78,6 @@
7878 ;; M-x customize-group RET sr-speedbar RET
7979
8080 ;;; Change log:
81-;; * 25 Oct 2016:
82-;; * Hong Xu <hong@topbug.net>
83-;; * Fix compilation warning when `helm-alive-p' is not defined.
84-;;
85-;; * 04 Aug 2015:
86-;; * Tamas Levai <levait@tmit.bme.hu>:
87-;; * fix compilation warnings
8881 ;;
8982 ;; * 15 Sep 2014:
9083 ;; * Tu, Do Hoang <tuhdo1710@gmail.com>
@@ -263,9 +256,7 @@
263256 ;;; Require
264257 (require 'speedbar)
265258 (require 'advice)
266-(require 'cl-lib)
267-(eval-when-compile
268- (require 'cl))
259+(require 'cl)
269260
270261 ;;; Code:
271262
@@ -368,11 +359,6 @@
368359 (defvar sr-speedbar-last-refresh-dictionary nil
369360 "The last refresh dictionary record of 'sr-speedbar-refresh'.")
370361
371-(eval-when-compile
372- (defvar ecb-activated-window-configuration nil)
373- (defun ecb-activate ())
374- (defun ecb-deactivate ()))
375-
376362 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Interactive functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
377363 ;;;###autoload
378364 (defun sr-speedbar-toggle ()
@@ -631,7 +617,10 @@
631617 (sr-speedbar-window-dedicated-only-one-p) ;just have one `non-dedicated' window
632618 (sr-speedbar-window-exist-p sr-speedbar-window)
633619 (not (sr-speedbar-window-p)) ;not in `sr-speedbar' window
634- (not (bound-and-true-p helm-alive-p)))
620+;; (if (featurep 'helm)
621+;; (not helm-alive-p)
622+;; t))
623+ (not (bound-and-true-p helm-alive-p)))
635624 (split-window-vertically)
636625 (windmove-down)))
637626
@@ -648,4 +637,4 @@
648637
649638 (provide 'sr-speedbar)
650639
651-;;; sr-speedbar.el ends here
640+;;; sr-speedbar.el ends here
\ No newline at end of file