Update to Org 9.5.2-3-geb9f34
This commit is contained in:
parent
89a82182cb
commit
d4e2850b32
5 changed files with 21 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
||||||
% Reference Card for Org Mode
|
% Reference Card for Org Mode
|
||||||
\def\orgversionnumber{9.5.1}
|
\def\orgversionnumber{9.5.2}
|
||||||
\def\versionyear{2021} % latest update
|
\def\versionyear{2021} % latest update
|
||||||
\input emacsver.tex
|
\input emacsver.tex
|
||||||
|
|
||||||
|
|
|
@ -284,14 +284,25 @@ then create one. Return the initialized session. The current
|
||||||
(defun org-babel-gnuplot-table-to-data (table data-file params)
|
(defun org-babel-gnuplot-table-to-data (table data-file params)
|
||||||
"Export TABLE to DATA-FILE in a format readable by gnuplot.
|
"Export TABLE to DATA-FILE in a format readable by gnuplot.
|
||||||
Pass PARAMS through to `orgtbl-to-generic' when exporting TABLE."
|
Pass PARAMS through to `orgtbl-to-generic' when exporting TABLE."
|
||||||
|
(require 'ox-org)
|
||||||
(with-temp-file data-file
|
(with-temp-file data-file
|
||||||
(insert (let ((org-babel-gnuplot-timestamp-fmt
|
(insert (let ((org-babel-gnuplot-timestamp-fmt
|
||||||
(or (plist-get params :timefmt) "%Y-%m-%d-%H:%M:%S")))
|
(or (plist-get params :timefmt) "%Y-%m-%d-%H:%M:%S")))
|
||||||
(orgtbl-to-generic
|
(replace-regexp-in-string
|
||||||
table
|
;; org export backend adds "|" at the beginning/end of
|
||||||
(org-combine-plists
|
;; the table lines. Strip those.
|
||||||
'(:sep "\t" :fmt org-babel-gnuplot-quote-tsv-field :raw t :backend ascii)
|
"^|\\(.+\\)|$"
|
||||||
params)))))
|
"\\1"
|
||||||
|
(orgtbl-to-generic
|
||||||
|
table
|
||||||
|
(org-combine-plists
|
||||||
|
'( :sep "\t" :fmt org-babel-gnuplot-quote-tsv-field
|
||||||
|
;; Two setting below are needed to make :fmt work.
|
||||||
|
:raw t
|
||||||
|
;; Use `org', not `ascii' because `ascii' may
|
||||||
|
;; sometimes mishandle quoted strings.
|
||||||
|
:backend org)
|
||||||
|
params))))))
|
||||||
data-file)
|
data-file)
|
||||||
|
|
||||||
(provide 'ob-gnuplot)
|
(provide 'ob-gnuplot)
|
||||||
|
|
|
@ -1747,7 +1747,7 @@ Optional argument N tells to change by that many units."
|
||||||
(org-clock-timestamps-change 'up n))
|
(org-clock-timestamps-change 'up n))
|
||||||
|
|
||||||
(defun org-clock-timestamps-down (&optional n)
|
(defun org-clock-timestamps-down (&optional n)
|
||||||
"Increase CLOCK timestamps at cursor.
|
"Decrease CLOCK timestamps at cursor.
|
||||||
Optional argument N tells to change by that many units."
|
Optional argument N tells to change by that many units."
|
||||||
(interactive "P")
|
(interactive "P")
|
||||||
(org-clock-timestamps-change 'down n))
|
(org-clock-timestamps-change 'down n))
|
||||||
|
|
|
@ -5,13 +5,13 @@
|
||||||
(defun org-release ()
|
(defun org-release ()
|
||||||
"The release version of Org.
|
"The release version of Org.
|
||||||
Inserted by installing Org mode or when a release is made."
|
Inserted by installing Org mode or when a release is made."
|
||||||
(let ((org-release "9.5.1"))
|
(let ((org-release "9.5.2"))
|
||||||
org-release))
|
org-release))
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun org-git-version ()
|
(defun org-git-version ()
|
||||||
"The Git version of Org mode.
|
"The Git version of Org mode.
|
||||||
Inserted by installing Org or when a release is made."
|
Inserted by installing Org or when a release is made."
|
||||||
(let ((org-git-version "release_9.5.1-31-ga18849"))
|
(let ((org-git-version "release_9.5.2-3-geb9f34"))
|
||||||
org-git-version))
|
org-git-version))
|
||||||
|
|
||||||
(provide 'org-version)
|
(provide 'org-version)
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
;; Homepage: https://orgmode.org
|
;; Homepage: https://orgmode.org
|
||||||
;; Package-Requires: ((emacs "25.1"))
|
;; Package-Requires: ((emacs "25.1"))
|
||||||
|
|
||||||
;; Version: 9.5.1
|
;; Version: 9.5.2
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
;;
|
;;
|
||||||
|
@ -5114,7 +5114,6 @@ stacked delimiters is N. Escaping delimiters is not possible."
|
||||||
'(invisible t))
|
'(invisible t))
|
||||||
(add-text-properties (match-beginning 3) (match-end 3)
|
(add-text-properties (match-beginning 3) (match-end 3)
|
||||||
'(invisible t)))
|
'(invisible t)))
|
||||||
(goto-char (match-end 0))
|
|
||||||
(throw :exit t))))))))
|
(throw :exit t))))))))
|
||||||
|
|
||||||
(defun org-emphasize (&optional char)
|
(defun org-emphasize (&optional char)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue