|
@@ -8542,10 +8542,12 @@ ACTION can be `set', `up', `down', or a character."
|
|
|
have t)
|
|
|
(setq current org-default-priority))
|
|
|
(cond
|
|
|
- ((or (eq action 'set) (integerp action))
|
|
|
- (if (integerp action)
|
|
|
+ ((or (eq action 'set)
|
|
|
+ (if (featurep 'xemacs) (characterp action) (integerp action)))
|
|
|
+ (if (not (eq action 'set))
|
|
|
(setq new action)
|
|
|
- (message "Priority %c-%c, SPC to remove: " org-highest-priority org-lowest-priority)
|
|
|
+ (message "Priority %c-%c, SPC to remove: "
|
|
|
+ org-highest-priority org-lowest-priority)
|
|
|
(setq new (read-char-exclusive)))
|
|
|
(if (and (= (upcase org-highest-priority) org-highest-priority)
|
|
|
(= (upcase org-lowest-priority) org-lowest-priority))
|
|
@@ -11557,7 +11559,9 @@ The images can be removed again with \\[org-ctrl-c-ctrl-c]."
|
|
|
(texfile (concat texfilebase ".tex"))
|
|
|
(dvifile (concat texfilebase ".dvi"))
|
|
|
(pngfile (concat texfilebase ".png"))
|
|
|
- (fnh (face-attribute 'default :height nil))
|
|
|
+ (fnh (if (featurep 'xemacs)
|
|
|
+ (font-height (get-face-font 'default))
|
|
|
+ (face-attribute 'default :height nil)))
|
|
|
(scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
|
|
|
(dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
|
|
|
(fg (or (plist-get options (if buffer :foreground :html-foreground))
|