projects
/
pspp-builds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e960014
)
Add README explaining not to use msg() here.
author
Ben Pfaff
<blp@gnu.org>
Tue, 25 Apr 2006 20:27:17 +0000
(20:27 +0000)
committer
Ben Pfaff
<blp@gnu.org>
Tue, 25 Apr 2006 20:27:17 +0000
(20:27 +0000)
src/output/README
[new file with mode: 0644]
patch
|
blob
diff --git a/src/output/README
b/src/output/README
new file mode 100644
(file)
index 0000000..
ad68d53
--- /dev/null
+++ b/
src/output/README
@@ -0,0
+1,5
@@
+The source code in this directory must not call msg() to report
+errors. This can lead to reentrance in the output driver, because
+msg() may report error messages using the output driver. Instead,
+this code should report errors with error(), which will never call
+into the output drivers.