blob: f8e2d88bce8b7391c5d45e0050947810d7280e1e (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | --- src/aneditor.cxx.orig	Tue Nov  5 15:51:38 2002
+++ src/aneditor.cxx	Tue Nov  5 15:52:01 2002
@@ -289,6 +289,9 @@
 	void EvalOutputArrived(GList* lines, int textPos, const string &expression);
 };
 
+inline bool nonFuncChar(char ch) {
+    return strchr("\t\n\r !\"#%&'()*+,-./:;<=>?@[\\]^`{|}~", ch) != NULL;
+}
 
 class ExpressionEvaluationTipInfo
 // Utility class to help displaying expression values in tips.
 |