* language.h (default_word_break_characters): Add prototype.
[deliverable/binutils-gdb.git] / gdb / language.c
index 28cdd27a24d7384240022e2d4e2db404d98f4f15..6cb2c383616c9a4f77c8ed317e5c0d479099c0f1 100644 (file)
@@ -1176,6 +1176,15 @@ language_demangle (const struct language_defn *current_language,
   return NULL;
 }
 
+/* Return the default string containing the list of characters
+   delimiting words.  This is a reasonable default value that
+   most languages should be able to use.  */
+
+char *
+default_word_break_characters (void)
+{
+  return " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
+}
 
 /* Define the language that is no language.  */
 
This page took 0.023239 seconds and 4 git commands to generate.