Skip to content
Snippets Groups Projects
Commit b1928070 authored by Per Hedbor's avatar Per Hedbor
Browse files

Renamed local to loc

Rev: lib/modules/Languages.pmod/PLIS.pmod:1.5
parent 5d0a3598
No related branches found
No related tags found
No related merge requests found
...@@ -551,12 +551,12 @@ class Parser ...@@ -551,12 +551,12 @@ class Parser
{ {
case ')': return Lempty; case ')': return Lempty;
case '.': case '.':
object final = _read(); object fin = _read();
if (intp(final) || (_read() != ')')) if (intp(fin) || (_read() != ')'))
{ {
return 0; return 0;
} }
return final; return fin;
default: default:
throw( ({ "lisp->parser: internal error\n", throw( ({ "lisp->parser: internal error\n",
backtrace() }) ); backtrace() }) );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment