Skip to content
Snippets Groups Projects
Commit 44b58db6 authored by rswindell's avatar rswindell
Browse files

Added new/missing P_mode flag defines:

- P_NOERROR
- P_PETSCII
- P_WRAP
parent 0e0c4b6c
No related branches found
No related tags found
No related merge requests found
......@@ -222,6 +222,10 @@ var P_NOCRLF =(1<<6); /* Don't prepend a CRLF in printfile() */
var P_WORDWRAP =(1<<7); /* Word-wrap long lines for user's terminal */
var P_CPM_EOF =(1<<8); /* Treat Ctrl-Z as End-of-file */
var P_TRUNCATE =(1<<9); /* Truncate (don't display) long lines */
var P_NOERROR =(1<<10); /* Don't report error if file doesn't exist */
var P_PETSCII =(1<<11); /* Message is native PETSCII */
var P_WRAP =(1<<12); /* Wrap/split long-lines, ungracefully */
/********************************************/
/********************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment