Преглед на файлове

Reverse the adding of the intangible property - this seems to be an
Emacs bug

Carsten Dominik преди 16 години
родител
ревизия
5e41fee577
променени са 1 файла, в които са добавени 1 реда и са изтрити 2 реда
  1. 1 2
      lisp/org-macs.el

+ 1 - 2
lisp/org-macs.el

@@ -85,8 +85,7 @@ In Emacs 22, this is not necessary.  The intangible text property has
 led to problems with flyspell.  These problems are fixed in flyspell.el,
 but we still avoid setting the property in Emacs 22 and later.
 We use a macro so that the test can happen at compilation time."
-;  (if (< emacs-major-version 22)
-  (if (not (= emacs-major-version 22))
+  (if (< emacs-major-version 22)
       `(append '(intangible t) ,props)
     props))