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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
56d95d02
Commit
56d95d02
authored
Sep 25, 2010
by
Lars Magne Ingebrigtsen
Committed by
Katsumi Yamaoka
Sep 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gnus-ems.el (gnus-put-image):Don't put any non-blank text into the buffer when inserting images.
parent
a41db107
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+6
-0
lisp/gnus/gnus-ems.el
lisp/gnus/gnus-ems.el
+1
-1
No files found.
lisp/gnus/ChangeLog
View file @
56d95d02
2010-09-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
buffer when inserting images. Inserting text into the headers, for
instance, can make them invalid.
2010-09-25 Julien Danjou <julien@danjou.info>
* rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
...
...
lisp/gnus/gnus-ems.el
View file @
56d95d02
...
...
@@ -276,7 +276,7 @@
(
defun
gnus-put-image
(
glyph
&optional
string
category
)
(
let
((
point
(
point
)))
(
insert-image
glyph
(
or
string
"
*
"
))
(
insert-image
glyph
(
or
string
"
"
))
(
put-text-property
point
(
point
)
'gnus-image-category
category
)
(
unless
string
(
put-text-property
(
1-
(
point
))
(
point
)
...
...
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