aboutsummaryrefslogtreecommitdiffhomepage
path: root/common.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-18 18:54:36 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-18 18:54:36 -0800
commit14b3a5be56a99281f2a4c75f7097fd842f922242 (patch)
tree60bf04d82fa9ac9df285c1cd3dd9c3938b4526d2 /common.cpp
parented89df7e9d9ac21e84417f744f1b8759bdaba7e5 (diff)
Changes to make autosuggestion even smarter by specially recognizing the cd command.
Diffstat (limited to 'common.cpp')
-rw-r--r--common.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/common.cpp b/common.cpp
index 3f22c0b9..eb3bd582 100644
--- a/common.cpp
+++ b/common.cpp
@@ -1826,12 +1826,14 @@ int create_directory( const wcstring &d )
return ok?0:-1;
}
+__attribute__((noinline))
void bugreport()
{
debug( 1,
- _( L"This is a bug. "
+ _( L"This is a bug. Break on bugreport to debug."
L"If you can reproduce it, please send a bug report to %s." ),
PACKAGE_BUGREPORT );
+ while (1) sleep(10000);
}