From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 751 invoked from network); 23 Nov 1999 01:54:51 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 23 Nov 1999 01:54:51 -0000 Received: (qmail 4900 invoked by alias); 23 Nov 1999 01:54:43 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 8741 Received: (qmail 4893 invoked from network); 23 Nov 1999 01:54:43 -0000 Date: Tue, 23 Nov 1999 01:54:41 +0000 From: Adam Spiers To: zsh workers mailing list Subject: PATCH: more remnants of comp1 Message-ID: <19991123015441.B989@thelonious.new.ox.ac.uk> Reply-To: Adam Spiers Mail-Followup-To: zsh workers mailing list Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i X-URL: http://www.new.ox.ac.uk/~adam/ X-OS: Linux 2.2.12 i686 I notice that Src/init.c still has a #ifdef LINKED_XMOD_comp1 in it. Presumably this can be removed? Also, the INSTALL file still mentions comp1. I'll leave this to someone more appropriate to fix (hi Sven, you're not busy anyway are you? ;-) Index: Src/init.c =================================================================== RCS file: /projects/zsh/zsh/Src/init.c,v retrieving revision 1.1.1.23 diff -u -r1.1.1.23 init.c --- Src/init.c 1999/10/17 17:02:03 1.1.1.23 +++ Src/init.c 1999/11/23 01:51:27 @@ -1021,13 +1021,6 @@ /* compctl entry point pointers. Similar to the ZLE ones. */ -#ifdef LINKED_XMOD_comp1 - -/**/ -CompctlReadFn compctlreadptr; - -#else /* !LINKED_XMOD_comp1 */ - CompctlReadFn compctlreadptr = fallback_compctlread; /**/ @@ -1038,5 +1031,3 @@ NULL, 0); return 1; } - -#endif /* !LINKED_XMOD_comp1 */