aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Albinus2016-12-31 10:40:04 +0100
committerMichael Albinus2016-12-31 10:40:04 +0100
commit3b25ffa7eb59e12834a2f5155c97a9104750ecd1 (patch)
treef9a71725948c061a1577fd551e162b3cc36ca60a /src
parent53d5bd786130a937a0e691e0c470675fe9c55485 (diff)
downloademacs-3b25ffa7eb59e12834a2f5155c97a9104750ecd1.tar.gz
emacs-3b25ffa7eb59e12834a2f5155c97a9104750ecd1.zip
* src/gfilenotify.c (Fgfile_monitor_name): Return interned symbol.
Diffstat (limited to 'src')
-rw-r--r--src/gfilenotify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gfilenotify.c b/src/gfilenotify.c
index 18ccfe4c462..66248050693 100644
--- a/src/gfilenotify.c
+++ b/src/gfilenotify.c
@@ -293,7 +293,7 @@ If WATCH-DESCRIPTOR is not valid, nil is returned. */)
293 else 293 else
294 { 294 {
295 GFileMonitor *monitor = XINTPTR (watch_descriptor); 295 GFileMonitor *monitor = XINTPTR (watch_descriptor);
296 return Fmake_symbol (build_string (G_OBJECT_TYPE_NAME (monitor))); 296 return intern (G_OBJECT_TYPE_NAME (monitor));
297 } 297 }
298} 298}
299 299