From: Michael Albinus Date: Sat, 31 Dec 2016 09:40:04 +0000 (+0100) Subject: * src/gfilenotify.c (Fgfile_monitor_name): Return interned symbol. X-Git-Tag: emacs-26.0.90~983 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3b25ffa7eb59e12834a2f5155c97a9104750ecd1;p=emacs.git * src/gfilenotify.c (Fgfile_monitor_name): Return interned symbol. --- 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. */) else { GFileMonitor *monitor = XINTPTR (watch_descriptor); - return Fmake_symbol (build_string (G_OBJECT_TYPE_NAME (monitor))); + return intern (G_OBJECT_TYPE_NAME (monitor)); } }