summaryrefslogtreecommitdiffstats
path: root/src/macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/macros.h')
-rw-r--r--src/macros.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/macros.h b/src/macros.h
index 51e4dd423e..7fc5df0ce4 100644
--- a/src/macros.h
+++ b/src/macros.h
@@ -227,21 +227,6 @@
# endif
#endif
-/*
- * Encryption macros. Mohsin Ahmed, mosh@sasi.com 98-09-24
- * Based on zip/crypt sources.
- */
-
-#ifdef FEAT_CRYPT
-
-/* encode byte c, using temp t. Warning: c must not have side effects. */
-# define ZENCODE(c, t) (t = decrypt_byte(), update_keys(c), t^(c))
-
-/* decode byte c in place */
-# define ZDECODE(c) update_keys(c ^= decrypt_byte())
-
-#endif
-
#ifdef STARTUPTIME
# define TIME_MSG(s) { if (time_fd != NULL) time_msg(s, NULL); }
#else