@@ -212,41 +212,41 @@ static HTAB *shared_cast_hash = NULL;
212212{ \
213213if (estate->exitlabel == NULL) \
214214{ \
215- /*unlabelled EXIT terminates this loop */ \
215+ /*unlabeled EXIT terminates this loop */ \
216216rc = PLPGSQL_RC_OK; \
217217exit_action; \
218218} \
219219else if ((looplabel) != NULL && \
220220 strcmp(looplabel, estate->exitlabel) == 0) \
221221{ \
222- /*labelled EXIT matching this loop, so terminate loop */ \
222+ /*labeled EXIT matching this loop, so terminate loop */ \
223223estate -> exitlabel = NULL ; \
224224rc = PLPGSQL_RC_OK ; \
225225exit_action ; \
226226} \
227227else \
228228{ \
229- /* non-matchinglabelled EXIT, propagate RC_EXIT out */ \
229+ /* non-matchinglabeled EXIT, propagate RC_EXIT out */ \
230230exit_action ; \
231231} \
232232} \
233233else if (rc == PLPGSQL_RC_CONTINUE ) \
234234{ \
235235if (estate -> exitlabel == NULL ) \
236236{ \
237- /*unlabelled CONTINUE matches this loop, so continue in loop */ \
237+ /*unlabeled CONTINUE matches this loop, so continue in loop */ \
238238rc = PLPGSQL_RC_OK ; \
239239} \
240240else if ((looplabel )!= NULL && \
241241strcmp (looplabel ,estate -> exitlabel )== 0 ) \
242242{ \
243- /*labelled CONTINUE matching this loop, so continue in loop */ \
243+ /*labeled CONTINUE matching this loop, so continue in loop */ \
244244estate -> exitlabel = NULL ; \
245245rc = PLPGSQL_RC_OK ; \
246246} \
247247else \
248248{ \
249- /* non-matchinglabelled CONTINUE, propagate RC_CONTINUE out */ \
249+ /* non-matchinglabeled CONTINUE, propagate RC_CONTINUE out */ \
250250exit_action ; \
251251} \
252252} \