Unverified Commit e02e3e49 authored by Kevin Lyda's avatar Kevin Lyda
Browse files

More doc fixes

parent 600a9c64
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
// Package repl implements the main event loop.
package repl

import "git.lyda.ie/kevin/bulletin/dclish"
+0 −1
Original line number Diff line number Diff line
// Package repl implements the main event loop.
package repl

import (
+0 −1
Original line number Diff line number Diff line
// Package repl implements the main event loop.
package repl

import (
+3 −6
Original line number Diff line number Diff line
@@ -8,18 +8,15 @@ import (

// ActionForward handles the `FORWARD` command.
func ActionForward(_ *dclish.Command) error {
	errors.New("Mail system is not yet implemented (see issue 9)")
	return nil
	return errors.New("Mail system is not yet implemented (see issue 9)")
}

// ActionMail handles the `MAIL` command.
func ActionMail(_ *dclish.Command) error {
	errors.New("Mail system is not yet implemented (see issue 9)")
	return nil
	return errors.New("Mail system is not yet implemented (see issue 9)")
}

// ActionRespond handles the `RESPOND` command.
func ActionRespond(_ *dclish.Command) error {
	errors.New("Mail system is not yet implemented (see issue 9)")
	return nil
	return errors.New("Mail system is not yet implemented (see issue 9)")
}
+1 −2
Original line number Diff line number Diff line
// Package repl implements the main event loop.
package repl

import (
@@ -716,7 +715,7 @@ func ActionSearch(cmd *dclish.Command) error {
	}

	allMsgs := []storage.Message{}
	msgs := []storage.Message{}
	var msgs []storage.Message
	var start int64
	for i := range optFolders {
		switch optStart {
Loading