All of lore.kernel.org
 help / color / mirror / Atom feed
* [lm-sensors] [PATCH] sensord: Remove leading whitespaces in empty
@ 2009-03-10  8:30 Andre Prendel
  2009-03-10 10:08 ` [lm-sensors] [PATCH] sensord: Remove leading whitespaces in Jean Delvare
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Andre Prendel @ 2009-03-10  8:30 UTC (permalink / raw)
  To: lm-sensors

Hi Jean,

as you noticed about my last patch series, there were some whitespaces
in the code. Unfortunately quilt complains only about trailing
whitespaces, not leading ones in empty lines. So there are some ones left.

With this patch we get rid of the remaining ones.

Andre

--
 args.c  |    8 ++++----
 chips.c |    6 +++---
 rrd.c   |   14 +++++++-------
 3 files changed, 14 insertions(+), 14 deletions(-)

diff -ur quilt-sensors/prog/sensord/args.c sensors-whitespace/prog/sensord/args.c
--- quilt-sensors/prog/sensord/args.c	2009-03-09 16:26:22.000000000 +0100
+++ sensors-whitespace/prog/sensord/args.c	2009-03-09 23:49:06.000000000 +0100
@@ -257,13 +257,13 @@
 			"Error: Incompatible --set and --alarm-scan.\n");
 		return -1;
 	}
-  
+
 	if (rrdFile && doSet) {
 		fprintf(stderr,
 			"Error: Incompatible --set and --rrd-file.\n");
 		return -1;
 	}
-  
+
 	if (doScan && rrdFile) {
 		fprintf(stderr,
 			"Error: Incompatible --rrd-file and --alarm-scan.\n");
@@ -275,13 +275,13 @@
 			"Error: Incompatible --rrd-cgi without --rrd-file.\n");
 		return -1;
 	}
-  
+
 	if (rrdFile && !rrdTime) {
 		fprintf(stderr,
 			"Error: Incompatible --rrd-file without --rrd-interval.\n");
 		return -1;
 	}
-  
+
 	if (!logTime && !scanTime && !rrdFile) {
 		fprintf(stderr,
 			"Error: No logging, alarm or RRD scanning.\n");
diff -ur quilt-sensors/prog/sensord/chips.c sensors-whitespace/prog/sensord/chips.c
--- quilt-sensors/prog/sensord/chips.c	2009-03-09 16:26:22.000000000 +0100
+++ sensors-whitespace/prog/sensord/chips.c	2009-03-09 23:49:33.000000000 +0100
@@ -157,7 +157,7 @@
 	} else {
 		voltage->format = fmtVolt_2;
 	}
-  
+
 	/* terminate the list */
 	voltage->dataNumbers[pos] = -1;
 
@@ -213,7 +213,7 @@
 	} else {
 		temperature->format = fmtTemp_only;
 	}
-  
+
 	/* terminate the list */
 	temperature->dataNumbers[pos] = -1;
 
@@ -265,7 +265,7 @@
 	} else {
 		fan->format = fmtFan_only;
 	}
-  
+
 	/* terminate the list */
 	fan->dataNumbers[pos] = -1;
 
diff -ur quilt-sensors/prog/sensord/rrd.c sensors-whitespace/prog/sensord/rrd.c
--- quilt-sensors/prog/sensord/rrd.c	2009-03-09 16:26:23.000000000 +0100
+++ sensors-whitespace/prog/sensord/rrd.c	2009-03-09 23:51:05.000000000 +0100
@@ -23,7 +23,7 @@
 
 /*
  * RRD is the Round Robin Database
- * 
+ *
  * Get this package from:
  *   http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/
  *
@@ -87,7 +87,7 @@
 {
 	char *buffer = rrdLabels[index0];
 	int i, j, okay;
-  
+
 	i = 0;
 	/* contrain raw label to [A-Za-z0-9_] */
 	while ((i < RAW_LABEL_LENGTH) && rawLabel[i]) {
@@ -243,7 +243,7 @@
 {
 	int ret = 0;
 	struct stat tmp;
-  
+
 	sensorLog(LOG_DEBUG, "sensor RRD init");
 	if (stat(rrdFile, &tmp)) {
 		if (errno = ENOENT) {
@@ -252,7 +252,7 @@
 			const char *argv[6 + MAX_RRD_SENSORS] = {
 				"sensord", rrdFile, "-s", stepBuff
 			};
-      
+
 			sensorLog(LOG_INFO, "creating round robin database");
 			num = rrdGetSensors(argv + argc);
 			if (num = 0) {
@@ -286,7 +286,7 @@
 		}
 	}
 	sensorLog(LOG_DEBUG, "sensor RRD inited");
-  
+
 	return ret;
 }
 
@@ -450,7 +450,7 @@
 		}
 	}
 	sensorLog(LOG_DEBUG, "sensor rrd updated");
-  
+
 	return ret;
 }
 
@@ -480,6 +480,6 @@
 	}
 	printf("<p>\n<small><b>sensord</b> by <a href=\"mailto:merlin@merlin.org\">Merlin Hughes</a>, all credit to the <a href=\"http://www.lm-sensors.org/\">lm_sensors</a> crew.</small>\n</p>\n");
 	printf("</BODY>\n</HTML>\n");
-  
+
 	return ret;
 }

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [lm-sensors] [PATCH] sensord: Remove leading whitespaces in
  2009-03-10  8:30 [lm-sensors] [PATCH] sensord: Remove leading whitespaces in empty Andre Prendel
@ 2009-03-10 10:08 ` Jean Delvare
  2009-03-10 10:45 ` Andre Prendel
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Jean Delvare @ 2009-03-10 10:08 UTC (permalink / raw)
  To: lm-sensors

On Tue, 10 Mar 2009 09:30:14 +0100, Andre Prendel wrote:
> Hi Jean,
> 
> as you noticed about my last patch series, there were some whitespaces
> in the code. Unfortunately quilt complains only about trailing
> whitespaces, not leading ones in empty lines. So there are some ones left.

That's pretty strange, I pretty much thought it did for me at least at
some point in time...

> With this patch we get rid of the remaining ones.

Sure, please apply.

-- 
Jean Delvare

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [lm-sensors] [PATCH] sensord: Remove leading whitespaces in
  2009-03-10  8:30 [lm-sensors] [PATCH] sensord: Remove leading whitespaces in empty Andre Prendel
  2009-03-10 10:08 ` [lm-sensors] [PATCH] sensord: Remove leading whitespaces in Jean Delvare
@ 2009-03-10 10:45 ` Andre Prendel
  2009-03-10 11:02 ` Jean Delvare
  2009-03-10 12:00 ` Andre Prendel
  3 siblings, 0 replies; 5+ messages in thread
From: Andre Prendel @ 2009-03-10 10:45 UTC (permalink / raw)
  To: lm-sensors

On Tue, Mar 10, 2009 at 11:08:17AM +0100, Jean Delvare wrote:
> On Tue, 10 Mar 2009 09:30:14 +0100, Andre Prendel wrote:
> > Hi Jean,
> > 
> > as you noticed about my last patch series, there were some whitespaces
> > in the code. Unfortunately quilt complains only about trailing
> > whitespaces, not leading ones in empty lines. So there are some ones left.
> 
> That's pretty strange, I pretty much thought it did for me at least at
> some point in time...
> 
> > With this patch we get rid of the remaining ones.
> 
> Sure, please apply.

Applied.

Another question for you. How can I get rid of the committed patches
in quilt? Google don't give me much information about that. Once I
have committed the patches, I want to remove them from the series. I want
to remove them completly from quilt without unapplying the
changes. What's the right approach, do you know?

Thanks
Andre

> 
> -- 
> Jean Delvare

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [lm-sensors] [PATCH] sensord: Remove leading whitespaces in
  2009-03-10  8:30 [lm-sensors] [PATCH] sensord: Remove leading whitespaces in empty Andre Prendel
  2009-03-10 10:08 ` [lm-sensors] [PATCH] sensord: Remove leading whitespaces in Jean Delvare
  2009-03-10 10:45 ` Andre Prendel
@ 2009-03-10 11:02 ` Jean Delvare
  2009-03-10 12:00 ` Andre Prendel
  3 siblings, 0 replies; 5+ messages in thread
From: Jean Delvare @ 2009-03-10 11:02 UTC (permalink / raw)
  To: lm-sensors

Hallo Andre,

On Tue, 10 Mar 2009 11:45:42 +0100, Andre Prendel wrote:
> Another question for you. How can I get rid of the committed patches
> in quilt? Google don't give me much information about that. Once I
> have committed the patches, I want to remove them from the series. I want
> to remove them completly from quilt without unapplying the
> changes. What's the right approach, do you know?

quilt unfortunately doesn't support this operation. My own method is
the following: once patches have been applied upstream, I remove them
manually from patches/series, and then rm -rf .pc. Then you can delete
the patch files from the patches subdirectory if you don't want to keep
a copy of them.

The alternative is to pop the patch before you commit it, apply it
manually (patch -p1 < patches/$(quilt next)), commit it, and the delete
it (quilt delete -rn).

The lack of this functionality has been discussed on the quilt-dev
mailing list some times ago. Everybody agreed if would be pretty much
needed, unfortunately implementing it in a safe and clear way is not
trivial, because it changes the logic from a stack-based one to a
FIFO-based one. If the implementation is not crystal clear and
ultra-safe it would be very easy to screw up your source tree.

-- 
Jean Delvare

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [lm-sensors] [PATCH] sensord: Remove leading whitespaces in
  2009-03-10  8:30 [lm-sensors] [PATCH] sensord: Remove leading whitespaces in empty Andre Prendel
                   ` (2 preceding siblings ...)
  2009-03-10 11:02 ` Jean Delvare
@ 2009-03-10 12:00 ` Andre Prendel
  3 siblings, 0 replies; 5+ messages in thread
From: Andre Prendel @ 2009-03-10 12:00 UTC (permalink / raw)
  To: lm-sensors

On Tue, Mar 10, 2009 at 12:02:29PM +0100, Jean Delvare wrote:
> Hallo Andre,
> 
> On Tue, 10 Mar 2009 11:45:42 +0100, Andre Prendel wrote:
> > Another question for you. How can I get rid of the committed patches
> > in quilt? Google don't give me much information about that. Once I
> > have committed the patches, I want to remove them from the series. I want
> > to remove them completly from quilt without unapplying the
> > changes. What's the right approach, do you know?
> 
> quilt unfortunately doesn't support this operation. My own method is
> the following: once patches have been applied upstream, I remove them
> manually from patches/series, and then rm -rf .pc. Then you can delete
> the patch files from the patches subdirectory if you don't want to keep
> a copy of them.
> 
> The alternative is to pop the patch before you commit it, apply it
> manually (patch -p1 < patches/$(quilt next)), commit it, and the delete
> it (quilt delete -rn).
> 
> The lack of this functionality has been discussed on the quilt-dev
> mailing list some times ago. Everybody agreed if would be pretty much
> needed, unfortunately implementing it in a safe and clear way is not
> trivial, because it changes the logic from a stack-based one to a
> FIFO-based one. If the implementation is not crystal clear and
> ultra-safe it would be very easy to screw up your source tree.

Thank you very much for this detailed explanation.

Andre
 
> -- 
> Jean Delvare

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-03-10 12:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-10  8:30 [lm-sensors] [PATCH] sensord: Remove leading whitespaces in empty Andre Prendel
2009-03-10 10:08 ` [lm-sensors] [PATCH] sensord: Remove leading whitespaces in Jean Delvare
2009-03-10 10:45 ` Andre Prendel
2009-03-10 11:02 ` Jean Delvare
2009-03-10 12:00 ` Andre Prendel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.