Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Functions.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# XMITMSGX Functions

The central function in the library is `xmmake()`.
Other functions are derivatives for convenience and standarization.
Other functions are derivatives for convenience and standardization.

## Routines in the Native Library

Expand Down
4 changes: 2 additions & 2 deletions src/xmitmsgx.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#define MSGFLAG_NOLOG 0x02 /* used by xmprint() and xmwrite() to skip logging */
#define MSGFLAG_NOCODE 0x04 /* means message text only, good for decorations */
#define MSGFLAG_NOPRINT 0x08 /* implies log only */
/* what about time stamp? logging automtically has time stamping */
/* what about time stamp? logging automatically has time stamping */

#define MSGERR_NOLIB 813
#define MSGERR_NOMSG 814
Expand All @@ -48,7 +48,7 @@ typedef struct MSGSTRUCT

int msgfmt; /* message format number (for future use) */
int msgline; /* message line number (for future use, zero means all lines) */
int msglevel; /* message level/serverity (zero means use the letter in the file) */
int msglevel; /* message level/severity (zero means use the letter in the file) */
int msgopts; /* set by xmopen(), sometimes overridden for xmmake() */

/* the following are probably not for external use */
Expand Down
4 changes: 2 additions & 2 deletions src/xmmrexx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ if [ -z "$DYLD_LIBRARY_PATH" ] ; then DYLD_LIBRARY_PATH="$E/lib"
if [ -z "$SHLIB_PATH" ] ; then SHLIB_PATH="$E/lib"
else SHLIB_PATH="$E/lib:SHLIB_PATH" ; fi
# the rationale here is that we set all known library search variables
# rather than attemp OS detection - more than one way to skin that cat
# rather than attempt OS detection - more than one way to skin that cat

#
# conditionally add Regina Rexx lodable libraries to the search
# conditionally add Regina Rexx loadable libraries to the search
for LD in /usr/opt/regina/lib /usr/opt/regina/lib64 \
/usr/opt/oorexx/lib /usr/opt/oorexx/lib64 ; do
if [ -d $LD ] ; then
Expand Down