aboutsummaryrefslogtreecommitdiff
path: root/lexxer.l
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2023-06-17 23:39:53 +0300
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-06-17 22:57:43 +0200
commitd9a36da6d785844139d291b37f80fbe087b2b59e (patch)
tree20fc3b30db07875601708204edeeb64008c11790 /lexxer.l
parentf519e6e262b4f0f3cf7f2ffd8f9634c9f05d6ed4 (diff)
downloadmig-d9a36da6d785844139d291b37f80fbe087b2b59e.tar.gz
mig-d9a36da6d785844139d291b37f80fbe087b2b59e.tar.bz2
mig-d9a36da6d785844139d291b37f80fbe087b2b59e.zip
Remove error procedure directives
Back in the wonderful old days of Mach 2, when there were no send-once rights, dead names, or port reference counts, MIG used to have more kinds of operations: there were functions, procedures, simpleprocedures, routines, and simpleroutines. Routines returned an error code as their C function return value, functions had real return values, procedures and simpleprocedures returned void. Functions, procedures, and simpleprocedures signalled errors by invoking a global function. By default, a function named MsgError was invoked, but a subsystem could specify a different function using the 'error' directive: error CustomErrorHandler; In Mach 3, functions, procedures, and simpleprocedures are gone. Routines and simpleroutines are the only remaining kinds of operations. Some 26 years later, most of the code for generating functions, procedures, and simpleprocedures was removed from GNU MIG in commit 7f10b4ed6a557b7a1fd1083939156a3dcf8b377e. Error directives remained, seemingly due to an oversight. So remove them too. Found while trying to use the word 'error' as an identifier and receiving a cryptic syntax error from MIG. Message-Id: <20230617203953.622120-1-bugaevc@gmail.com>
Diffstat (limited to 'lexxer.l')
-rw-r--r--lexxer.l1
1 files changed, 0 insertions, 1 deletions
diff --git a/lexxer.l b/lexxer.l
index 508603a..6e2234e 100644
--- a/lexxer.l
+++ b/lexxer.l
@@ -130,7 +130,6 @@ static void doSharp(const char *body); /* process body of # directives */
<Normal>(?i:sreplyport) RETURN(sySReplyPort);
<Normal>(?i:array) RETURN(syArray);
<Normal>(?i:of) RETURN(syOf);
-<Normal>(?i:error) RETURN(syErrorProc);
<Normal>(?i:serverprefix) RETURN(syServerPrefix);
<Normal>(?i:userprefix) RETURN(syUserPrefix);
<Normal>(?i:serverdemux) RETURN(syServerDemux);