소스 검색

Fix condition for with-silent-modification

* org-macs.el (with-silent-modifications): Fix condition for
with-silent-modification.
David Maus 14 년 전
부모
커밋
6e3f1e1175
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/org-macs.el

+ 1 - 1
lisp/org-macs.el

@@ -49,7 +49,7 @@
 	 (with-no-warnings (called-interactively-p ,kind)) ;; defined with no argument in <=23.1
 	 (with-no-warnings (called-interactively-p ,kind)) ;; defined with no argument in <=23.1
        (interactive-p))))
        (interactive-p))))
 
 
-(if (or (<= emacs-major-version 23)
+(if (or (< emacs-major-version 23)
 	(and (<= emacs-major-version 23)
 	(and (<= emacs-major-version 23)
 	     (< emacs-minor-version 2)))
 	     (< emacs-minor-version 2)))
     (defmacro with-silent-modifications
     (defmacro with-silent-modifications