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
908e900d
Commit
908e900d
authored
Feb 09, 2009
by
Ulf Jasper
Browse files
newsticker: kill groups buffer after saving/loading.
parent
833374ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
lisp/ChangeLog
lisp/ChangeLog
+6
-0
lisp/net/newst-treeview.el
lisp/net/newst-treeview.el
+5
-3
No files found.
lisp/ChangeLog
View file @
908e900d
2009-02-09 Ulf Jasper <ulf.jasper@web.de>
* net/newst-treeview.el (newsticker-treeview-save)
(newsticker--treeview-load): Kill groups buffer after
saving/loading.
2009-02-09 Tassilo Horn <tassilo@member.fsf.org>
* doc-view.el (doc-view-scroll-up-or-next-page)
...
...
lisp/net/newst-treeview.el
View file @
908e900d
...
...
@@ -7,7 +7,7 @@
;; URL: http://www.nongnu.org/newsticker
;; Created: 2007
;; Keywords: News, RSS, Atom
;; Time-stamp: "
7
. Februar 2009, 1
1:46
:0
0
(ulf)"
;; Time-stamp: "
8
. Februar 2009, 1
9:24
:0
5
(ulf)"
;; ======================================================================
...
...
@@ -1246,7 +1246,8 @@ Note: does not update the layout."
(
erase-buffer
)
(
insert
";; -*- coding: utf-8 -*-\n"
)
(
insert
(
prin1-to-string
newsticker-groups
))
(
save-buffer
)))))
(
save-buffer
)
(
kill-buffer
)))))
(
defun
newsticker--treeview-load
()
"Load treeview settings."
...
...
@@ -1267,7 +1268,8 @@ Note: does not update the layout."
(
setq
newsticker-groups
(
read
buf
))
(
error
(
message
"Error while reading newsticker groups file!"
)
(
setq
newsticker-groups
nil
))))))
(
setq
newsticker-groups
nil
)))
(
kill-buffer
buf
))))
(
defun
newsticker-treeview-scroll-item
()
...
...
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