summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2004-02-22 11:11:17 +0000
committerNeil Jerram <neil@ossau.uklinux.net>2004-02-22 11:11:17 +0000
commit9de7b7abb4abafc7b3ff21c2dd32bfc60650a7fd (patch)
treeb7bcbc35b6ff0f98dfc260a776290fe95e118be2 /emacs
parent9593c679b94e7af874eef2d25cf22b85aeeaaa50 (diff)
* gds-tutorial.txt, gds-problems.txt: New files.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/ChangeLog6
-rw-r--r--emacs/Makefile.am2
-rw-r--r--emacs/gds-problems.txt20
-rw-r--r--emacs/gds-tutorial.txt0
4 files changed, 27 insertions, 1 deletions
diff --git a/emacs/ChangeLog b/emacs/ChangeLog
index b649bd434..4e3f8c79b 100644
--- a/emacs/ChangeLog
+++ b/emacs/ChangeLog
@@ -1,3 +1,9 @@
+2004-02-22 Neil Jerram <neil@ossau.uklinux.net>
+
+ * Makefile.am (EXTRA_DIST): Distribute new files.
+
+ * gds-tutorial.txt, gds-problems.txt: New files.
+
2004-02-21 Neil Jerram <neil@ossau.uklinux.net>
* gds.el: Add requirements: cl, comint, info.
diff --git a/emacs/Makefile.am b/emacs/Makefile.am
index c85ad1ca5..bef23935c 100644
--- a/emacs/Makefile.am
+++ b/emacs/Makefile.am
@@ -35,4 +35,4 @@ info_TEXINFOS = gds.texi
TEXINFO_TEX = ../doc/ref/texinfo.tex
TAGS_FILES = $(subpkgdata_DATA) $(lisp_LISP)
-EXTRA_DIST = $(subpkgdata_DATA) $(lisp_LISP)
+EXTRA_DIST = $(subpkgdata_DATA) $(lisp_LISP) gds-tutorial.txt gds-problems.txt
diff --git a/emacs/gds-problems.txt b/emacs/gds-problems.txt
new file mode 100644
index 000000000..a3d2423c3
--- /dev/null
+++ b/emacs/gds-problems.txt
@@ -0,0 +1,20 @@
+ -*- outline -*-
+Known GDS problems
+
+* gds-load-file (C-c C-l) doesn't work
+
+This is because it isn't yet implemented in gds-client.scm.
+
+* Incomplete expressions aren't reported nicely
+
+In code sent for evaluation, that is. Currently this is reported as a
+GDS Internal Error. It should be reported like error-in-evaluation
+and, in cases where the code evaluated contained multiple expressions,
+should correctly show the results of evaluating the expressions that
+were read before the read error was noticed..
+
+* In the debugger, `e' (gds-evaluate) isn't easy to use
+
+Because it doesn't pop up the result! (You can see the result with `v
+m', but these extra keys shouldn't be needed.)
+
diff --git a/emacs/gds-tutorial.txt b/emacs/gds-tutorial.txt
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/emacs/gds-tutorial.txt