aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/org.el2
-rw-r--r--lisp/org/ox-publish.el6
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/org/org.el b/lisp/org/org.el
index e45bc55b244..21d9cd8785d 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -10058,7 +10058,7 @@ Note: this function also decodes single byte encodings like
10058 (cons 6 128)))) 10058 (cons 6 128))))
10059 (when (>= val 192) (setq eat (car shift-xor))) 10059 (when (>= val 192) (setq eat (car shift-xor)))
10060 (setq val (logxor val (cdr shift-xor))) 10060 (setq val (logxor val (cdr shift-xor)))
10061 (setq sum (+ (lsh sum (car shift-xor)) val)) 10061 (setq sum (+ (ash sum (car shift-xor)) val))
10062 (when (> eat 0) (setq eat (- eat 1))) 10062 (when (> eat 0) (setq eat (- eat 1)))
10063 (cond 10063 (cond
10064 ((= 0 eat) ;multi byte 10064 ((= 0 eat) ;multi byte
diff --git a/lisp/org/ox-publish.el b/lisp/org/ox-publish.el
index 8901dba34cf..ba5a0232e42 100644
--- a/lisp/org/ox-publish.el
+++ b/lisp/org/ox-publish.el
@@ -794,8 +794,8 @@ Default for SITEMAP-FILENAME is `sitemap.org'."
794 ((or `anti-chronologically `chronologically) 794 ((or `anti-chronologically `chronologically)
795 (let* ((adate (org-publish-find-date a project)) 795 (let* ((adate (org-publish-find-date a project))
796 (bdate (org-publish-find-date b project)) 796 (bdate (org-publish-find-date b project))
797 (A (+ (lsh (car adate) 16) (cadr adate))) 797 (A (+ (ash (car adate) 16) (cadr adate)))
798 (B (+ (lsh (car bdate) 16) (cadr bdate)))) 798 (B (+ (ash (car bdate) 16) (cadr bdate))))
799 (setq retval 799 (setq retval
800 (if (eq sort-files 'chronologically) 800 (if (eq sort-files 'chronologically)
801 (<= A B) 801 (<= A B)
@@ -1348,7 +1348,7 @@ does not exist."
1348 (expand-file-name (or (file-symlink-p file) file) 1348 (expand-file-name (or (file-symlink-p file) file)
1349 (file-name-directory file))))) 1349 (file-name-directory file)))))
1350 (if (not attr) (error "No such file: \"%s\"" file) 1350 (if (not attr) (error "No such file: \"%s\"" file)
1351 (+ (lsh (car (nth 5 attr)) 16) 1351 (+ (ash (car (nth 5 attr)) 16)
1352 (cadr (nth 5 attr)))))) 1352 (cadr (nth 5 attr))))))
1353 1353
1354 1354