aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--generic/pg-pgip.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/pg-pgip.el b/generic/pg-pgip.el
index 98b51136..6c736fae 100644
--- a/generic/pg-pgip.el
+++ b/generic/pg-pgip.el
@@ -83,7 +83,8 @@ Return a symbol representing the PGIP command processed, or nil."
(if (fboundp fname)
(progn
(pg-pgip-debug "Processing PGIP message seq %s, type %s"
- (pg-xml-get-attr 'seq pgipmsg 'notreallyoptional) name)
+ (or (pg-xml-get-attr 'seq pgipmsg 'notreallyoptional) "<missing>")
+ name)
(funcall fname pgipmsg)
name)
(pg-internal-warning "!!! unrecognized/unimplemented PGIP message element `%s'" name)