From: tomo Date: Tue, 15 Jun 1999 03:43:24 +0000 (+0000) Subject: This commit was manufactured by cvs2svn to create tag 'r21-2-15-buf-utf8-1'. X-Git-Tag: r21-2-15-buf-utf8-1 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=da4a3ef98e28d15b87714fa2975f590386aaf3a5;p=chise%2Fxemacs-chise.git.1 This commit was manufactured by cvs2svn to create tag 'r21-2-15-buf-utf8-1'. --- diff --git a/modules/example/Makefile.in b/modules/example/Makefile.in deleted file mode 100644 index 4cb432f..0000000 --- a/modules/example/Makefile.in +++ /dev/null @@ -1,35 +0,0 @@ -# NOTE!! -# The use of BLDDIR here is _BOGUS_. -# What really needs to happen is that we should install config.h into -# the architecture dependent directory when we really hash all this -# out. - -blddir=@blddir@ -dll_cflags=@dll_cflags@ -dll_oflags=@dll_oflags@ -dll_lflags=@dll_lflags@ -dll_ld=@dll_ld@ -INCLUDES=-I$(blddir)/src -CFLAGS=@CFLAGS@ $(INCLUDES) -CC=@CC@ -RM=@RM@ - -TARGET=purified -all: $(TARGET).ell - -.PHONY: clean mostlyclean distclean realclean install - -$(TARGET).ell: $(TARGET).o - $(dll_ld) $(dll_oflags) $@ $(dll_lflags) $^ - -install: - echo "Don't know how to install yet" - -clean mostlyclean: - $(RM) *.o $(TARGET).ell - -distclean: clean - $(RM) Makefile - -realclean extraclean: distclean - $(RM) *~ \#* diff --git a/modules/example/purified.c b/modules/example/purified.c deleted file mode 100644 index d66ad6c..0000000 --- a/modules/example/purified.c +++ /dev/null @@ -1,16 +0,0 @@ -#include -#include "lisp.h" -#include "emacsfns.h" - -DEFUN ("purifiedp", Fpurifiedp, 1, 1, 0, /* -*/ - (obj)) -{ - return purified(obj) ? Qt : Qnil; -} - -void -syms_of() -{ - DEFSUBR(Fpurifiedp); -}