Skip to content
Merged
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
3 changes: 2 additions & 1 deletion src/gmt_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -13404,7 +13404,8 @@ GMT_LOCAL bool gmtinit_is_region_geographic (struct GMT_CTRL *GMT, struct GMT_OP
if (!strncmp (module, "pscoupe", 7U)) return true;
if (!strncmp (module, "psmeca", 6U)) return true;
if (!strncmp (module, "pspolar", 7U)) return true;
if (!strncmp (module, "pssac", 5U)) return true;
/* pssac: Cartesion by default, unless -S option is used */
if (!strncmp (module, "pssac", 5U) && (opt = GMT_Find_Option (GMT->parent, 'S', options)) != NULL) return true;
if (!strncmp (module, "psvelo", 6U)) return true;
if (!strncmp (module, "mgd77track", 10U)) return true;
if (!strncmp (module, "grdpmodeler", 11U)) return true;
Expand Down