Skip to content

Commit dfcadae

Browse files
author
Rik
committed
maint: merge stable to default
2 parents 319034b + 39ec64a commit dfcadae

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

doc/interpreter/doccheck/mk_undocumented_list

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ exit(1);
115115
################################################################################
116116
# Exception list of functions not requiring a DOCSTRING
117117
################################################################################
118+
# desktop : Remove when terminal widget is no longer experimental
119+
# bytecode : Remove when VM is no longer experimental
120+
################################################################################
118121
__DATA__
119122
angle
120123
bessel
@@ -123,9 +126,11 @@ besseli
123126
besselk
124127
bessely
125128
bug_report
129+
bytecode
126130
chdir
127131
dbnext
128132
debug
133+
desktop
129134
end
130135
exit
131136
F_DUPFD
@@ -150,7 +155,6 @@ isfinite
150155
J
151156
j
152157
java2mat
153-
lower
154158
lstat
155159
metaclass
156160
nan
@@ -170,7 +174,8 @@ rticks
170174
setenv
171175
slash
172176
thetaticks
173-
upper
177+
tolower
178+
toupper
174179
ylabel
175180
ylim
176181
ytickangle

doc/interpreter/module.mk

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,16 @@ octetc_DATA += \
475475
rm -f $@-t $@
476476
-cd $(srcdir)/%reldir%; $(PERL) ./doccheck/mk_undocumented_list > $(@F)-t
477477
mv $@-t $@
478+
[ -s $@ ] || rm -f $@
479+
@cd $(srcdir)/%reldir% ; \
480+
if ls undocumented_list >/dev/null 2>&1 ; then \
481+
echo "Undocumented function check failed"; \
482+
echo "Review doc/interpreter/undocumented_list"; \
483+
exit 1 ; \
484+
else \
485+
echo "Undocumented function check passed"; \
486+
fi
487+
478488
.PHONY: %reldir%/undocumented_list
479489

480490
SPELLCHECK_FILES = $(MUNGED_TEXI_SRC:.texi=.scheck)

0 commit comments

Comments
 (0)