diff options
author | Arun Isaac | 2020-12-31 23:47:25 +0530 |
---|---|---|
committer | Arun Isaac | 2022-10-01 01:11:34 +0530 |
commit | d8ccb20c577c691ccb505331925746e0ae7762a1 (patch) | |
tree | 3b20b91bdfb2555f8344e00cd6bc7e7ce5455c64 | |
parent | 6014a6770fcd966fa58f6b9e96c306f5a1f477ee (diff) | |
download | ksh-reports-d8ccb20c577c691ccb505331925746e0ae7762a1.tar.gz ksh-reports-d8ccb20c577c691ccb505331925746e0ae7762a1.tar.lz ksh-reports-d8ccb20c577c691ccb505331925746e0ae7762a1.zip |
Change quote to quasiquote.
* ksh-scan2.el, ksh-scan3.el (form-to-org): Change quote to
quasiquote.
-rw-r--r-- | ksh-scan2.el | 2 | ||||
-rw-r--r-- | ksh-scan3.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ksh-scan2.el b/ksh-scan2.el index 9bc34f9..6a5dc74 100644 --- a/ksh-scan2.el +++ b/ksh-scan2.el @@ -171,4 +171,4 @@ ("Liquor" . ,survey-liquor) ("Estimated fetal weight according to BPD, HC, AC, FL" . ,biometry-fetal-weight))) (text-if-non-blank (get-field impression-notes)) - (multi-line-org-entry '("Sonologist" . ,sonologist))))) + (multi-line-org-entry `("Sonologist" . ,sonologist))))) diff --git a/ksh-scan3.el b/ksh-scan3.el index 537386e..e607a2d 100644 --- a/ksh-scan3.el +++ b/ksh-scan3.el @@ -125,4 +125,4 @@ ("Liquor" . ,survey-liquor) ("Estimated fetal weight according to BPD, HC, AC, FL" . ,biometry-fetal-weight))) (text-if-non-blank (get-field impression-notes)) - (multi-line-org-entry '("Sonologist" . ,sonologist))))) + (multi-line-org-entry `("Sonologist" . ,sonologist))))) |