branch: externals/mathsheet
commit 69ccb93e88024bf61eeda8d5e8ee59cdf0a5b9ed
Author: Ian Martins <ia...@jhu.edu>
Commit: Ian Martins <ia...@jhu.edu>

    Fixed dependencies
---
 README.md     | 6 +++---
 mathsheet.el  | 4 ++--
 mathsheet.org | 6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index 6f9439ca82..71657b868c 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ parent, or any parent.
 
 Here are some example worksheets generated by this tool, along with
 the templates from which they were built. Template syntax is described
-in greater in the [Problem Templates](#org60d67dd) section below.
+in greater in the "Problem Templates" section below.
 
 1.  [arithmetic](examples/add-sub-1.pdf)
     made from these templates:
@@ -216,8 +216,7 @@ format.
     ;; Homepage: https://gitlab.com/ianxm/mathsheet
     ;; Version: 1.1
     ;; Package-Requires: ((peg "1.0")
-    ;;                    (emacs "28.1")
-    ;;                    calc)
+    ;;                    (emacs "28.1"))
     
     ;; This file is not part of GNU Emacs.
     
@@ -253,6 +252,7 @@ included in Emacs but we need to make sure they have been 
loaded.
     (require 'calc)
     
     (declare-function math-read-expr "calc-ext")
+    (declare-function calc-set-language "calc-lang")
 
 
 ### Variables
diff --git a/mathsheet.el b/mathsheet.el
index ad04d0ea7f..7b7554150e 100644
--- a/mathsheet.el
+++ b/mathsheet.el
@@ -7,8 +7,7 @@
 ;; Homepage: https://gitlab.com/ianxm/mathsheet
 ;; Version: 1.1
 ;; Package-Requires: ((peg "1.0")
-;;                    (emacs "28.1")
-;;                    calc)
+;;                    (emacs "28.1"))
 
 ;; This file is not part of GNU Emacs.
 
@@ -38,6 +37,7 @@
 (require 'calc)
 
 (declare-function math-read-expr "calc-ext")
+(declare-function calc-set-language "calc-lang")
 
 (defgroup mathsheet nil
   "Options for customizing Mathsheet."
diff --git a/mathsheet.org b/mathsheet.org
index 53cc302020..d38e45193a 100644
--- a/mathsheet.org
+++ b/mathsheet.org
@@ -15,7 +15,7 @@ parent, or any parent.
 ** Examples
 Here are some example worksheets generated by this tool, along with
 the templates from which they were built. Template syntax is described
-in greater in the [[*Problem Templates][Problem Templates]] section below.
+in greater in the "Problem Templates" section below.
 
 1. [[file:examples/add-sub-1.pdf][arithmetic]]
    made from these templates:
@@ -206,8 +206,7 @@ format.
   ;; Homepage: https://gitlab.com/ianxm/mathsheet
   ;; Version: 1.1
   ;; Package-Requires: ((peg "1.0")
-  ;;                    (emacs "28.1")
-  ;;                    calc)
+  ;;                    (emacs "28.1"))
 
   <<license>>
 
@@ -230,6 +229,7 @@ included in Emacs but we need to make sure they have been 
loaded.
   (require 'calc)
 
   (declare-function math-read-expr "calc-ext")
+  (declare-function calc-set-language "calc-lang")
 #+end_src
 
 *** Variables

Reply via email to