Revert "alien.c-types: Implement present on pointers for help-lint."

This reverts commit f865273e4d.
locals-and-roots
John Benediktsson 2016-04-07 07:22:52 -07:00
parent 48f57fee4f
commit 65eb9a1d31
1 changed files with 4 additions and 7 deletions

View File

@ -1,9 +1,9 @@
! Copyright (C) 2004, 2010 Slava Pestov. ! Copyright (C) 2004, 2010 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: accessors alien alien.accessors arrays classes USING: accessors alien alien.accessors arrays byte-arrays
combinators compiler.units cpu.architecture delegate fry kernel classes combinators compiler.units cpu.architecture delegate
layouts macros math math.order present quotations sequences fry kernel layouts locals macros math math.order quotations
summary system words words.symbol ; sequences system words words.symbol summary ;
IN: alien.c-types IN: alien.c-types
SYMBOLS: SYMBOLS:
@ -50,9 +50,6 @@ PREDICATE: c-type-word < word
TUPLE: pointer { to initial: void read-only } ; TUPLE: pointer { to initial: void read-only } ;
C: <pointer> pointer C: <pointer> pointer
M: pointer present
to>> present "pointer: " prepend ;
UNION: c-type-name UNION: c-type-name
c-type-word pointer ; c-type-word pointer ;