diff options
| author | Michael Albinus | 2016-12-31 10:40:04 +0100 |
|---|---|---|
| committer | Michael Albinus | 2016-12-31 10:40:04 +0100 |
| commit | 3b25ffa7eb59e12834a2f5155c97a9104750ecd1 (patch) | |
| tree | f9a71725948c061a1577fd551e162b3cc36ca60a /src | |
| parent | 53d5bd786130a937a0e691e0c470675fe9c55485 (diff) | |
| download | emacs-3b25ffa7eb59e12834a2f5155c97a9104750ecd1.tar.gz emacs-3b25ffa7eb59e12834a2f5155c97a9104750ecd1.zip | |
* src/gfilenotify.c (Fgfile_monitor_name): Return interned symbol.
Diffstat (limited to 'src')
| -rw-r--r-- | src/gfilenotify.c | 2 |
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 | ||