aboutsummaryrefslogtreecommitdiffhomepage
path: root/generic/pg-pgip.el
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2010-08-08 13:42:31 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2010-08-08 13:42:31 +0000
commit95d8a7f7364fde5af433ffa0e6c9f5bf664c5ebc (patch)
tree9be997d4d9af9c12882d53434d8dbbcb49cbdcb6 /generic/pg-pgip.el
parent0877b91645ec1a824eba51cf0ad46eb4d76a138f (diff)
Checkdoc cleanups
Diffstat (limited to 'generic/pg-pgip.el')
-rw-r--r--generic/pg-pgip.el17
1 files changed, 9 insertions, 8 deletions
diff --git a/generic/pg-pgip.el b/generic/pg-pgip.el
index 7ceb0d66..98b51136 100644
--- a/generic/pg-pgip.el
+++ b/generic/pg-pgip.el
@@ -1,6 +1,6 @@
;; pg-pgip.el --- PGIP manipulation for Proof General
;;
-;; Copyright (C) 2000-2002, 2009 LFCS Edinburgh.
+;; Copyright (C) 2000-2002, 2010 LFCS Edinburgh.
;; Author: David Aspinall <David.Aspinall@ed.ac.uk>
;; License: GPL (GNU GENERAL PUBLIC LICENSE)
;;
@@ -58,16 +58,16 @@ The list PGIPS may contain one or more PGIP packets, whose contents are processe
(defun pg-pgip-process-pgip (pgip)
"Process the commands in the PGIP XML-node PGIP."
- ;; FIXME: appearances of 'notreallyoptional below should be removed,
- ;; but they are needed for compatibility with Isabelle 2004 whose
- ;; PGIP messages are incomplete.
+ ;; NB: appearances of 'notreallyoptional below should be removed,
+ ;; but they are needed for compatibility with Isabelle at the moment,
+ ;; whose PGIP follows an older schema.
(let* ((name (xml-node-name pgip))
(tag (pg-xml-get-attr 'tag pgip 'optional))
(id (pg-xml-get-attr 'id pgip 'optional))
- (class (pg-xml-get-attr 'messageclass pgip 'notreallyoptional))
+ (class (pg-xml-get-attr 'messageclass pgip 'notreallyoptional))
(refseq (pg-xml-get-attr 'refseq pgip 'optional))
(refid (pg-xml-get-attr 'refid pgip 'optional))
- (seq (pg-xml-get-attr 'seq pgip 'notreallyoptional)))
+ (seq (pg-xml-get-attr 'seq pgip 'notreallyoptional)))
(setq pg-pgip-last-seen-id id)
(setq pg-pgip-last-seen-seq seq)
(if (eq name 'pgip)
@@ -91,7 +91,7 @@ Return a symbol representing the PGIP command processed, or nil."
(defvar pg-pgip-post-process-functions
'((hasprefs . proof-assistant-menu-update)
- (oldhaspref . proof-assistant-menu-update) ;; FIXME: for Isabelle2004 backward compat
+ (oldhaspref . proof-assistant-menu-update) ;; NB: Isabelle compatibility
(menuadd . proof-assistant-menu-update)
(menudel . proof-assistant-menu-update)
(idtable . pg-pgip-update-idtables) ;; TODO: not yet implemented
@@ -104,7 +104,8 @@ Return a symbol representing the PGIP command processed, or nil."
(let ((ppfn (cdr-safe (assoc cmdname pg-pgip-post-process-functions))))
(if (fboundp ppfn)
(progn
- (pg-pgip-debug "Post-processing for PGIP message type `%s' with function `%s'" cmdname ppfn)
+ (pg-pgip-debug
+ "Post-processing for PGIP message type `%s' with function `%s'" cmdname ppfn)
(funcall ppfn))
(pg-pgip-debug "[No post-processing defined for PGIP message type `%s']" cmdname))))