diff options
-rw-r--r-- | lib.c | 2 | ||||
-rw-r--r-- | txr.1 | 6 |
2 files changed, 8 insertions, 0 deletions
@@ -9924,6 +9924,8 @@ val copy(val seq) return copy_vec(seq); case BUF: return copy_buf(seq); + case FUN: + return copy_fun(seq); case COBJ: if (seq->co.cls == hash_s) return copy_hash(seq); @@ -26268,6 +26268,12 @@ is a structure, it returns .cble If .meta object +is a function, it returns +.cblk +.meti (copy-fun << object ). +.cble +If +.meta object is a buffer, it returns .cblk .meti (copy-buf << object ). |