1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Lots of doc corrections.

Josh Kupershmidt
This commit is contained in:
Robert Haas
2012-04-23 22:43:09 -04:00
parent 7ab9b2f3b7
commit 5d4b60f2f2
71 changed files with 81 additions and 81 deletions

View File

@ -2471,10 +2471,10 @@ do_shell(const char *command)
sys = pg_malloc(strlen(shellName) + 16);
#ifndef WIN32
sprintf(sys,
/* See EDITOR handling comment for an explaination */
/* See EDITOR handling comment for an explanation */
"exec %s", shellName);
#else
/* See EDITOR handling comment for an explaination */
/* See EDITOR handling comment for an explanation */
sprintf(sys, SYSTEMQUOTE "\"%s\"" SYSTEMQUOTE, shellName);
#endif
result = system(sys);