]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/gfilenotify.c (Fgfile_monitor_name): Return interned symbol.
authorMichael Albinus <michael.albinus@gmx.de>
Sat, 31 Dec 2016 09:40:04 +0000 (10:40 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Sat, 31 Dec 2016 09:40:04 +0000 (10:40 +0100)
src/gfilenotify.c

index 18ccfe4c462fc812a049adc9d96f0a0c91935da1..662480506933258bb3c22d2e9f6bdda2519e1732 100644 (file)
@@ -293,7 +293,7 @@ If WATCH-DESCRIPTOR is not valid, nil is returned.  */)
   else
     {
       GFileMonitor *monitor = XINTPTR (watch_descriptor);
-      return Fmake_symbol (build_string (G_OBJECT_TYPE_NAME (monitor)));
+      return intern (G_OBJECT_TYPE_NAME (monitor));
     }
 }