Skip to content
This repository has been archived by the owner on Feb 17, 2018. It is now read-only.

Commit

Permalink
version test in erbutils-describe-variable was the wrong way round
Browse files Browse the repository at this point in the history
  • Loading branch information
fledermaus committed Sep 26, 2009
1 parent 1d31725 commit 56bf09f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erbutils.el
Expand Up @@ -233,7 +233,7 @@ as many times as it returns a...
(save-excursion
(re-search-backward
(concat "\\(" customize-label "\\)") nil t)
(if (< 22 emacs-major-version)
(if (> 22 emacs-major-version)
(help-xref-button 1 (lambda (v)
(if help-xref-stack
(pop help-xref-stack))
Expand All @@ -253,7 +253,7 @@ as many times as it returns a...
(with-current-buffer "*Help*"
(save-excursion
(re-search-backward "`\\([^`']+\\)'" nil t)
(if (< 22 emacs-major-version)
(if (> 22 emacs-major-version)
(help-xref-button
1 (lambda (arg)
(let ((location
Expand Down

0 comments on commit 56bf09f

Please sign in to comment.