diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-05-13 23:44:12 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-05-14 15:55:20 +0200 |
commit | 253374f81a13109b73afc8e319ca1fea72f68c72 (patch) | |
tree | a0c4ad27d4e7c1c3cc72bec4ca423e679f06b6df /lisp/org | |
parent | 8d1aa370d33f51e15ca038d2a083502329c64119 (diff) | |
download | emacs-253374f81a13109b73afc8e319ca1fea72f68c72.tar.gz emacs-253374f81a13109b73afc8e319ca1fea72f68c72.tar.bz2 emacs-253374f81a13109b73afc8e319ca1fea72f68c72.zip |
Remove some XEmacs compat code from org-mode
* lisp/org/org-clock.el (org-clock-select-task): Remove XEmacs
compat code.
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/org-clock.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/org/org-clock.el b/lisp/org/org-clock.el index 73956691096..67cda1b7464 100644 --- a/lisp/org/org-clock.el +++ b/lisp/org/org-clock.el @@ -658,7 +658,6 @@ there is no recent clock to choose from." (if (< i 10) (+ i ?0) (+ i (- ?A 10))) m)) - (if (fboundp 'int-to-char) (setf (car s) (int-to-char (car s)))) (push s sel-list))) (run-hooks 'org-clock-before-select-task-hook) (goto-char (point-min)) |