Skip to content
Snippets Groups Projects
Commit 90429a1c authored by Fredrik Noring's avatar Fredrik Noring
Browse files

Indentation fix.

Rev: bin/install.pike:1.70
Rev: lib/modules/Stdio.pmod/Readline.pike:1.35
parent 3f363be4
No related branches found
No related tags found
No related merge requests found
...@@ -63,6 +63,10 @@ void status1(string fmt, mixed ... args) ...@@ -63,6 +63,10 @@ void status1(string fmt, mixed ... args)
} }
#endif #endif
// Ugly thing, but status_clear does not indent in non-tty mode...
if(!istty())
write(" ");
write("%s\n",sprintf(fmt,@args)); write("%s\n",sprintf(fmt,@args));
} }
......
// $Id: Readline.pike,v 1.34 2000/08/29 14:00:18 noring Exp $ // $Id: Readline.pike,v 1.35 2000/09/04 09:48:56 noring Exp $
class OutputController class OutputController
{ {
...@@ -1405,7 +1405,7 @@ string edit(string data, string|void local_prompt, array(string)|void attrs) ...@@ -1405,7 +1405,7 @@ string edit(string data, string|void local_prompt, array(string)|void attrs)
{ {
if(data && strlen(data) && input_controller->dumb) if(data && strlen(data) && input_controller->dumb)
{ {
string ret=edit("", (local_prompt || get_prompt()) +" ["+data+"] ", attrs); string ret=edit("", (local_prompt || get_prompt()) +"["+data+"] ", attrs);
return (!ret || !strlen(ret))?data:ret; return (!ret || !strlen(ret))?data:ret;
} }
string old_prompt; string old_prompt;
......
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