aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lib-src/etags.c3
2 files changed, 7 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 42a44f9712d..f204ab517e2 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,7 @@
12014-07-12 Paul Eggert <eggert@cs.ucla.edu>
2
3 * etags.c (Lisp_functions): Also record cl-defun etc. (Bug#17965)
4
12014-05-20 Paul Eggert <eggert@cs.ucla.edu> 52014-05-20 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 Fix rcs2log problems with CVS. 7 Fix rcs2log problems with CVS.
diff --git a/lib-src/etags.c b/lib-src/etags.c
index 66e7fbb467f..5f1f99c4677 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -4747,6 +4747,9 @@ Lisp_functions (FILE *inf)
4747 } 4747 }
4748 } 4748 }
4749 4749
4750 if (strneq (dbp + 1, "cl-", 3) || strneq (dbp + 1, "CL-", 3))
4751 dbp += 3;
4752
4750 if (strneq (dbp+1, "def", 3) || strneq (dbp+1, "DEF", 3)) 4753 if (strneq (dbp+1, "def", 3) || strneq (dbp+1, "DEF", 3))
4751 { 4754 {
4752 dbp = skip_non_spaces (dbp); 4755 dbp = skip_non_spaces (dbp);