Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1e3d9386
Commit
1e3d9386
authored
Feb 18, 2009
by
Martin Rudalics
Browse files
(custom-group-value-create): Insert some
informatory text in the WIDGET-misses-doc-string case.
parent
3ef3d89d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/cus-edit.el
lisp/cus-edit.el
+5
-2
No files found.
lisp/ChangeLog
View file @
1e3d9386
2009-02-18 Martin Rudalics <rudalics@gmx.at>
* cus-edit.el (custom-group-value-create): Insert some
informatory text in the WIDGET-misses-doc-string case.
2009-02-18 Sam Steingold <sds@gnu.org>
* progmodes/compile.el: Require comint at top level to fix the
...
...
lisp/cus-edit.el
View file @
1e3d9386
...
...
@@ -4006,8 +4006,11 @@ If GROUPS-ONLY non-nil, return only those members that are groups."
(let ((start (point)))
(insert tag " group: ")
(widget-specify-sample widget start (point)))
(when (and doc (< (length doc) 50))
(insert doc))
(cond
((not doc)
(insert " Group definition missing. "))
((< (length doc) 50)
(insert doc)))
;; Create visibility indicator.
(unless (eq custom-buffer-style 'links)
(insert "--------")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment