aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2018-02-28 09:40:40 -0800
committerGlenn Morris2018-02-28 09:40:40 -0800
commit3959892419eff45a7006deceddcc1962fdbcc1c9 (patch)
tree315d0425dad9a5b89a4c881102241fbab9f45c94 /src
parent51537b9e4937d7853647871dc264f0be9412a9fa (diff)
parentfd5023874872dcb559cb7acdca6b019273c9de07 (diff)
downloademacs-3959892419eff45a7006deceddcc1962fdbcc1c9.tar.gz
emacs-3959892419eff45a7006deceddcc1962fdbcc1c9.zip
Merge from origin/emacs-26
fd50238 (origin/emacs-26) * doc/lispref/streams.texi (Output Variable... 769ea57 Use "GTK+" where applicable in the manual 5e69219 Document print-escape-control-characters c00fea9 Merge branch 'emacs-26' of git.savannah.gnu.org:/srv/git/emac... a2ab0d0 * doc/emacs/killing.texi (Rectangles): Don't use @key for cha... 6288c3d * lisp/emulation/viper.el: Unbreak it. bf3535e More fixes in the Emacs manual c87d04e Avoid aborts in 'md5' 9743f48 Mark keys consistently in manuals ce557a9 Remove @key{} markups from @kindex entries in manuals 71243f0 * doc/emacs/display.texi (Standard Faces): Fix markup of inde... 7a069f3 Fix @kindex entries in manuals 6218933 Fix @cindex entries in manuals 57c9f12 Merge branch 'emacs-26' of git.sv.gnu.org:/srv/git/emacs into... e415309 Fix @cindex entries in org.texi 560a23e Document reserved keys 105d085 * doc/misc/ebrowse.texi: Use @key{} for keys. Conflicts: doc/misc/tramp.texi etc/NEWS
Diffstat (limited to 'src')
-rw-r--r--src/fns.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fns.c b/src/fns.c
index 47457e44c8e..ff1c0495693 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -4953,6 +4953,9 @@ extract_data_from_object (Lisp_Object spec,
4953#endif 4953#endif
4954 } 4954 }
4955 4955
4956 if (!STRINGP (object))
4957 signal_error ("Invalid object argument",
4958 NILP (object) ? build_string ("nil") : object);
4956 return SSDATA (object); 4959 return SSDATA (object);
4957} 4960}
4958 4961